Hacker Newsnew | past | comments | ask | show | jobs | submit | _whiteCaps_'s commentslogin

The pattern I often see is a Patreon release a week before the public release.

I've had three different Kobos (two with touchscreen) and never ran into this issue.

But the Overdrive issues are infuriating, especially when you miss out on a hold from the library and have to get in the queue again. On popular books it can take months. :(


Seems like the approach should be to have an LLM set up HA.

https://investor.helenoftroy.com/press-releases/press-releas...

I wonder if that coincides with their purchase by Helen Of Troy.


It literally happened here in Canada:

https://www.cbc.ca/news/business/loblaw-bread-price-settleme...

> The class-action case was brought against a group of companies that includes Loblaw and the Weston companies, Metro, Walmart Canada, Giant Tiger, and Sobeys and its owner, Empire Co. Ltd.

> The plaintiffs allege those companies participated in a 14-year industry-wide price-fixing conspiracy between 2001 and 2015, leading to an artificial increase in packaged bread prices.


https://www.usatoday.com/story/life/health-wellness/2024/08/...

> On Friday, a social media user tweeted an image from the Nirvana exhibit at the Museum of Pop Culture in Seattle. A placard dedicated to the “27 Club” read, “Kurt Cobain un-alived himself at 27.”


Net 30 is a standard way to do this. Lots of examples online on how to add this to your invoices.

Well run businesses will pay you on the 29th day. :)


Government auctions are interesting. Not a lot of information on pricing.

My dad bid on multiple LCVPs, guessing on a reasonable price for them based on what the engines were worth.

Fortunately he only won one of them. If all 4 had shown up at our house, my mom would have killed him.

Interesting aside, the casting date on the transmission housing was 1945 - but the hulls were built in 1967. Those Detroit Diesel 6-71s engines / transmissions last a long time!


absolute beasts of engines for sure


this is a fascinating example of how I'm interested in what any of this meant, but not interested enough to look it up, bravo!


why did you feel the need to say this?


the substantive nature of the comment is regarding overuse of niche terms and acronyms without defining them, in a forum not related to those things

how it would be poorer signal and even less substantive to have a subthread of people asking about what it means, some respondents saying just look it up and more, all when the parent poster could say what they are


yeah makes sense to be honest


Bram Cohen doesn't just use version control, he invented one.

https://bramcohen.livejournal.com/17319.html


I post this in every FreeCAD thread: If you're going to start designing something with it, use the spreadsheet tool to make everything parametric. You'll save yourself a ton of time as your designs get more complicated.

Maybe this isn't anything new to experience CAD users. I don't know if other CAD tools do this as I started using FreeCAD after playing with 3D printing.


You can also use VarSet[0], which I think is easier than spreadsheet since you don't have to switch the workbench.

[0]: https://wiki.freecad.org/Std_VarSet


The downside of spreadsheets is they can really slow your model down. Every cell change triggers a full recompute of the 3D model. VarSets offer much faster performance while sacrificing a couple spreadsheet features. So always choose VarSets over spreadsheets if you can.


On the one hand it's clearly suboptimal for any change, even ones that nothing depends on, to trigger a recompute. But also it feels like there's something a bit broken with spreadsheet dependency resolution in the first place. I've never been able to nail down a test case, but models seem to go over a performance cliff at a certain point. Ordinarily I'd put it down to something being unavoidably quadratic, but I've had cases where I'm certain that the same model is radically slower after being reloaded off disk.


Did not know about this. How do you see all the properties?


Just click the varset in the tree view and it lists them in the properties pane


This is an outdated advice. Spreadsheet is hard to use in comparison to VarSets [0]. Recent changes in 1.1 make them even easier and more intuitive to use.

[0] https://wiki.freecad.org/Std_VarSet


It's very common (Fusion calls it User Parameters, etc.) and indeed nice practice. FreeCAD has a few ways to do it, Spreadsheets but also free-form properties on objects. It's very flexible in this regard.


The Fusion implementation sucks. A spreadsheet is a far more natural way to do this, Im surprised FreeCad is doing it better than the paid variant.


The only issue I have with the Spreadsheet is that I need to add an alias for every value I want to use in the Sketch or Part Design workbench. In practice, this usually looks like

    A       B
    width   2mm
    length  3mm
and for every cell in B I add an alias with the same value as in column A. Is there a way around that?


VarSets[0] introduced recently in 1.0 and mentioned in a grand-aunt comment are a good alternative to spreadsheets used this way.

[0]: https://wiki.freecad.org/Std_VarSet



not "maybe" this is an absolute must if using parameters in a spreadsheet :)


Its existence has been used by the devs as a reason not to prioritise fixing user-facing bugs. It really should be in core at this point.


Oh. I didn't even know there were macros. But that looks very useful!


Hmmm - I seem to recall there was at least 1-2 scripts or macros available to help with aliasing.


The Fusion implementation is awful - you can adjust one variable, one time, then you have to reopen the dialog to do another. At least for me it's always become non-responsive after a single edit, for years now. I've always assumed I'm just holding it wrong, but I don't know. I've moved on.


The worst part about fusions implementation is that you CANNOT edit the User Parameters while you are viewing the part easily. I like to edit the params and drag it around, but it SUCKS in fusion


Super flexible. I love being able to use Python to manipulate spreadsheet data.


Some CAD systems, i think NX for example, let you give it a reference to an actual Excel (or csv?) file, that you edit in Excel.


This seems like good advice. To this day I haven't explored spreadsheets or variable sets, which makes resizing stuff a giant pain in the ass.

This is an area where FreeCAD really needs work: scaling stuff.


I'm not experienced with other CAD programs, but I think scaling stuff works fine.

If you want to scale your entire object, there's a scale part operation in the part toolbench.

But in general you wouldn't want to do this. For most real world part, the dimensions you set are based on real world requirements. E.g. These holes need to be M3 and spaced 30mm apart because that's what the part we are connecting to has, but the space to the next set of holes should scale linearly with the length growing, etc.

If you have requirements like that, you should build them into your constraints. If you do this from the start, it's usually pretty easy to make size adjustments to your model.


Or don't and adjust it in the sketcher? If you name your constrains you can just reference them directly elsewhere.

I think that's much easier as you don't have to go back and forth with a spreadsheet.


Tracking down individual values in the sketcher can get annoying too. Just depends on the complexity of your part


You can name them if you want, and the names will show up in the properties of the operation, and you can reuse the values in formulas.

There's a lot of options, and I think a lot of it is a matter of taste/experience what to use


Other cad tools do support this but in my experience it's always pretty awkward to use. I haven't tried the FreeCAD implementation.


Spreadsheets are better in theory but varsets work so much better in practice.


Consider applying for YC's Summer 2026 batch! Applications are open till May 4

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

Search: