Hacker News new | past | comments | ask | show | jobs | submit | ajoseps's comments login

I use the brick app: https://getbrick.app/, and it works pretty well, but they have this weird bug where selecting certain apps on a block list crashes the app. They have a pop-up indicating that it's some apple-related bug, which I find kind of hard to believe. Is this something that also happens in your app?

I haven't noticed this on my personal use. It does seem like they use the family picker activity built into iOS. So maybe the issue is here as well.

It doesn't happen to every search. For me personally, if I try to search for apps starting with "r", it tends to crash. Not sure if it's related to the number of applications it needs to search for that match the prefix (for this case I was trying to block reddit).

Maybe its the list of app you have on your device? For me its fine but changes as the list is to long? Just a random guess though

yeah i’m also seeing this. It might be a bug but highly suspicious

It's not a bug, people are reporting a long list of phrases that follow the same patterns (pro Trump, anti Democrat).

Can you link to where you find more reports? Is that in the Mastodon thread?

every now and then I read a comment that sounds so familiar and I realize it's an ex-coworker

and it’s the same guy


I've also been using this and I think it's a great product. It's exactly as you describe it, just some extra friction makes a huge difference. I've even bought some for friends


This is definitely not true in practice except for maybe highly liquid ETFs and underliers


I don’t live in London but have traveled for work weeks at a time. Coming from a car focused area, I think this sentiment is surprising. I think the London Underground is one of the best things about London and preferring to widen roads and highways sounds extremely backwards for me who lived in a very car focused area. I don’t think it’s appreciated just how great the underground is compared to other transport systems around the world.


I’ve lived both, car centric US/Canada and London. At first public transport seems great but over time the realization sets in about how uncomfortable it is (no seat warmers, cleanliness, having your face in people’s armpits) and inconvenient it is (not door to door) and that wouldn’t be so bad but then the unreliability (signal issues) and expense of the tickets and tax subsidies makes it a bad deal. It should exist as an option, I’m glad it does so I can have less traffic on the roads, but it’s overrated. HS2 in the article is this expensive just to build, imagine the maintenance costs for the next century. Whether you use it or not, residents will have to pay for it.


> tax subsidies makes it a bad deal.

Unlike roads? How exactly do you think roads are paid for, if not by 100% tax subsidies? TfL doesn’t get any tax subsidies anyway, the Tories got rid of that years ago.

> imagine the maintenance costs for the next century. Whether you use it or not, residents will have to pay for it.

And somehow this doesn’t apply to roads?


pretty sure OP meant the naming itself of GIMP is poor and hard to sell in an enterprise environment


maybe dropbox didn’t optimize naming their in-house software for HN readers


if the data files are all just text files, what are the differences between DVC and using plain git?


DVC does a lot more than git.

It essentially makes sure that your results can reproducibly be generated from your original data. If any script or data file is changed, the parts of your pipeline that depend on it, possibly recursively, get re-run and the relevant results get updated automatically.

There's no chance of e.g. changing the structure of your original dataset slightly, forgetting to regenerate one of the intermediate models by accident, not noticing that the script to regenerate it doesn't work any more due to the new dataset structure, and then getting reminded a year later when moving to a new computer and trying to regen everything from scratch.

It's a lot like Unix make, but with the ability to keep track of different git branches and the data / intermediates they need, which saves you from needing to regen everything every time you make a new checkout, lets you easily exchange large datasets with teammates etc.

In theory, you could store everything in git, but then every time you made a small change to your scripts that e.g. changed the way some model works and slightly adjusted a score for each of ten million rows, your diff would be 10m LOC, and all versions of that dataset would be stored in your repo, forever, making it unbelievably large.


Sounds like it is more a framework than a tool.

Not everybody wants a framework.


> Sounds like it is more a framework than a tool.

> Not everybody wants a framework.

The second part of this comment seems strange to me. Surely nothing on Hacker News is shared with the expectation that it will be interesting, or useful, to everyone. Equally, surely there are some people on HN who will be interested in a framework, even if it might be too heavy for other people.


Just saying that what makes Git so appealing is that it does one thing well, and from this view DVC seems to be in an entirely different category.


It doesn’t force you to use any of the extra functionality. My team has been using it just for the version control part for a couple years and it has worked great.


Yep. I personally like DVC's pipeline implementation because it's lightweight and language-agnostic, but haven't gotten into using their experiment tracking features.


This sounds a lot like the experimental project Jacquard [0] from Ink & Switch.

[0] https://www.inkandswitch.com/jacquard/notebook/


So where do the adjusted 10M rows live instead? S3?


DVC support multiple remotes. S3 is one of them, there are also WebDAV, local FS, Google Drive, and a bunch of others. You could see the full list here [0]. Disclaimer: not affiliated with DVC in anyway, just a user.

[0] https://dvc.org/doc/user-guide/data-management/remote-storag...


In this cases, you need DVC if:

1. File are too large for Git and Git LFS.

2. You prefer using S3/GCS/Azure as a storage.

3. You need to track transformations/piplines on the file - clean up text file, train mode, etc.

Otherwise, vanilla Git may be sufficient.


It's not just to manage file versioning. Yo can define a pipeline with different stages, the dependencies and outputs of each stage and DVC will figure out which stages need running depending on what dependencies have changed. Stages can also output metrics and plots, and DVC has utilities to expose, explore and compare those.


Consider applying for YC's Spring batch! Applications are open till Feb 11.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: