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

And it makes a world of difference for a small kid as I've experienced recently, totally worth it if you can afford a lightweight bike (eg 5kg 16" vs standard 8-9kg).

Absolutely, some of these bikes are the adult equivalent of 150lb bikes for kids. No wonder the kids hate them. Even a light weight bike is like a 70lb bike.

They do?

I don't remember hating my bike when I was a kid, and I had the cheap kind. I also don't remember it being too heavy or anything. Of course if I wanted to ride my bike, I had to lift the heavy wooden garage door up (elementary-school-age). Kids that I volunteer with all seem weak and have issues that I never had.

There's a parable about helping a butterfly out of a cocoon:

https://paulocoelhoblog.com/2007/12/10/the-lesson-of-the-but...


> Compared to JPEG XL, HEIC — an implementation of HEIF — is just not good.

I would've loved an explanation with this statement.


I'm the same, I brush and floss regularly, occasionally use chx mouthwash, dental disclosing tables and oral probiotics. She forgets to brush sometimes, eats more sweet. She had only one or two cavities in twenty years we've known each other. I've had two root canals and have fillings regularly. Truth be told, she doesn't drink coffee at all, I drink several cups a day. She also doesn't drink much alcohol, I have one or two beers every week. In addition to bad genetics (both parents smokers and developed gum disease) I attribute this to poor oral hygiene when I was a kid, parents didn't really control my brushing, so ended up with a lot of fillings. In contrast, we brush our kid's teeth every day religiously, almost 5, no cavities whatsoever, and she eats plenty of sweets.


How many different dentists have you been to in the past twenty years? Does she see the same dentist as you now?

I once had a dentist who claimed I had a cavity every visit. I saw him once a year, and he did little more than look at my teeth. I've since switched dentists three times as I moved around the country and my dental insurance changed, and with all three, I've gotten nothing but rave reviews about the state of my teeth. I see my latest dentist twice a year, and he does an X-ray and an intraoral scan every other visit, and on my most recent visit, he discovered that one of those alleged cavities my first dentist had filled was filled improperly and appeared to have become reinfected. Unfortunately for me, I was busy at the time and postponed treatment for too long, and now the filling has fallen out and the tooth has collapsed in on itself, requiring a root canal and a crown, which in addition to being somewhat painful, will likely set me back several thousand dollars.

If you have access to the Journal of American Medicine (JAMA), I highly recommend reading this recent review of overdiagnosis and overtreatment in dentistry[1]. If you don't have access to JAMA, you can find pertinent excerpts in this Reddit post[2], along with some interesting backlash from some thoroughly offended dentists (all of it without any real supporting evidence, of course, though some of the points brought up are worth considering).

[1] https://doi.org/10.1001/jamainternmed.2024.0222

[2] https://old.reddit.com/r/Dentistry/comments/1cql9a8/interest...


I think my current dentist might be overdiagnosing a bit, we were doing a bunch of work even though another dentist said everything was fine just a year before. My biggest regret currently is a decade old root canal done by my previous dentist that was never good and kept getting sore and inflamed in the gums. The new dentist eagerly redid the root canal a year ago but we eventually had to pull it out since a big abscess formed. Looking back, I should've extracted it sooner, since the bone was basically eaten away by lingering bacteria and I'll have to do some bone augmentation for an implant.


I'm sorry to hear that. Like you correctly mention, genetics play a big role and are unfortunately (currently?) not modifiable, and there is plenty of evidence that a restored tooth is at higher risk of further issues/loss, so prevention is the best thing you can do.

Good job with your daughter! FYI, we are working on expanding the instructions to children, so watch this space ;)


Did you have asthma as kid? I know a couple of people whose teeth are wrecked from inhaler usage. Now they tell you to rinse your teeth after using them, but didn't in the past.


No, but I do have a smaller lower jaw and wear a night guard because I do sometimes clench and grind (depending on stress levels, caffeine intake, etc). This might cause excessive wear. My mother also suffers from bruxism.


It's pretty safe but accidents still happen. Just the other day I sliced my finger while grabbing my king gillette from the filled sink. It happened because I wasn't looking and the blade was exposed. I basically unscrewed it to clean out the hairs and didn't tighten in back up before dropping in the sink. And this happens to me sometimes that I don't fully tighten it. Even though I've been using this type of razor for a couple of years already I still manage to nick myself occasionally if I'm not careful.


I really rarely nick myself. I usually use a towel to grab the head of the razor when tightening/loosening it for cleaning or changing blades. Luckily for me I have not cut myself yet in the process.

I have a scar on my pointer finger from a deep cut from playing with the head of a HDD as a kid. It is similar to a deep razorblade cut. It still aches sometimes 20+ years after the accident. Be careful!


I got 174 as well.


Me too... Apple Silicon era MBA, with Samsung 4K display with corresponding U28D590 driver...


I don't think those specs make a difference. You would need a wide gamut display and a hardware calibrator to be sure you were looking at the colour as it should be


> Things disappearing with insufficient explicit feedback

Toasts appear somewhere in the corner and then disappear very quickly. Not sure how useful that feedback is. It's distracting at best.


I feel like flexbox is the float grid system done right, and you can lay out children either vertically or horizontally, whereas floats with the clearfix hack were only laid out as rows. But it's still mostly one-dimensional with possible wrapping, so the trick is to nest and stack. With grids it's different, a grid has a template and then the direct children occupy those predefined areas, which is more static than flexbox and the grid doesn't affect other nested elements, which is a limitation, but subgrid should change that.


C can be used in C++ code, no?


It is true that there is C code that is conforming C++ code. However I would say if you’re using a C compiler with with “extern C” in the headers for C++ linker compatibility (as this library does) then saying C++ is about as misleading as saying a Rust library is C++ as you can link to that too.

As far as compatibility and “history” the languages are different enough now. There are both: features in C that do not exist in C++, and code that is conforming C that would be UB in C++. Saying C/C++ (for real) is usually a dumb target when it’s better to pick one and settle with that.

If it’s C, just say so. Everyone knows what extern C is, you don’t need to confuse.


Even Pascal is closer to C than C++ is, yet historically people use this term implying they are very close.


Something very close, but that's not what you would expect for something that markets itself as a C++ library IMHO. Especially in 2024, most people would hope (or assume) that "C++" means "C++ 11" at least.

Definitely doesn't count as _lying_, but still underwhelming.


Yes. And C can also be used with Python and Rust. That does not make this a Rust library.


Right, but C++ started as an extension of C and is mostly compatible and historically you could compile C with the C++ compiler. I don't think it's a good comparison.


Zig can compile C. That makes this C/C++/Zig library. Right? :^)


> historically you could compile C with the C++ compiler.

not any C, only the C++-compatible subset.

    int* foo = malloc(sizeof(int)); 
has never worked in C++ for instance while it's valid C. Code that worked is code that people actually did effort to express in a way compatible with a C++ compiler.


  #ifdef _cplusplus
      #include <iostream>
      #define print() int main(){cout << "Hello world! -- from C++" << endl;}
  #elif (defined __STDC__) || (defined __STDC_VERSION__)
      #include <stdio.h>
      #define print() int main(){printf("Hello world! -- from C\n");}
  #else
  import builtins
  print = lambda : builtins.print("Hello world! -- from Python")
  #endif
  
  print()
Some python code works in C and C++ as well but people don't group them together and call Python/C/C++


You must admit that C/Python doesn't quite have the same cachet as C/C++. C & C++ also share the same name, C++ was born as a derivative of C (with classes), they have the same syntax, logical constructs etc. Python is not even a systems language.


Depends, not all C is C++, eg, there is no (yet) `restrict` keyword in C++ (even if lots of C++ compilers support __restrict__, it's not in the spec)


It's also for Python, I just discovered it a few days ago. This is the website https://audioflux.top/


I couldn't read the article since it's asking me to sign up. But the recommendation from our pediatrician is to only give our kid antipyretics once the temperature goes above 38 Celsius (under arm reading).


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

Search: