Kozmik1's comments

Kozmik1 | 3 months ago | on: EFF launches Age Verification Hub

That's a funny choice, I thought Europe was done with SMS. I can see this 1-to-1 mapping with other cellphone derived messaging like Whatsapp, etc being an issue for privacy but it's certainly possible to have multiple phones.

Kozmik1 | 7 months ago | on: M8.7 earthquake in Western Pacific, tsunami warning issued

Do not stay in Haleiwa or go to Waikiki. Consult a map, and find some uphill areas above 100ft to drive to. Drive towards Mililani and wait it out in the upland areas.

My kids are at camp right now on the North Shore and are being evacuated by bus to Mililani.

Kozmik1 | 8 months ago | on: Radio Garden

I've been using Radio Garden for years.

A tip that took me a while is you have to click the place name for larger locations to get a list of all stations.

Try music from Dakar, Senegal or Guinea-Bissau. Super funky music. There used to be a station called Radio Gumbe, but I can't find it any more.

I'd love a plugin to MS Flight Sim 2020 which would play a local radio station as I fly over any location in the world.

The worst part is having the immersion interrupted by localized ads for a US car dealer, credit card or VPN service. I guess one could pass custom location information to Radio Garden however...

I also find this so good to get context on the opinion on the US from outside the US, listening to call-in radio news shows from the UK, for example.

Kozmik1 | 10 months ago | on: The pigeon whistle: A defining sound of old Beijing (2019)

I saw trained pigeons flying from my hotel rooftop in Wuhan when I visited in 2001. Someone on another building was commanding them to fly in patterns with flags. I don't recall if there were any whistles involved, but it was a really captivating sight to watch that I have never seen since.

Kozmik1 | 10 months ago | on: 21 GB/s CSV Parsing Using SIMD on AMD 9950X

I made the mistake early in our startup of spending several months and quite a bit of cash building our first iot product on the Intel Edison platform, only to get zero support on the bugs in the SPI chip and the non-existent (but advertised) microcontroller. We finally gave up and made our own boards based on another SOM (and eventually stopped building boards entirely) and they rather unceremoniously cancelled the Edison in 2017. I guess nobody else was surprised, but I had naively thought the platform did have potential and a huge company like Intel would support the things they sold.

Kozmik1 | 11 months ago | on: Busy Bar

Back in my day the arrogant devs just used printer paper and a hand drawn sign saying "GO AWAY!" taped to the back of their chair.

Kozmik1 | 1 year ago | on: Promising results from DeepSeek R1 for code

I think we can talk about it. If you lived in Taiwan you would want it talked about. If you live in Greenland you would want your concerns talked about.

Watershed moments of rapid change such as these can be democratizing, or not... It is worth standing up for little guys around the globe right now.

Kozmik1 | 1 year ago | on: How shut-down Bay Area tech companies ditch their fancy gear

For anyone getting started, especially if you just got funded, I highly suggest you personally buy a stack of laptops, chairs or desks from one of these places to provide all your new hires. The experience should leave you humbled and give some foreshadowing of what is likely to come.

Kozmik1 | 1 year ago | on: Man trapped inside driverless Waymo car as it spins in circles

It's easy enough to imagine an actual emergency which would necessitate remote or local intervention to stop the car, and the call seems to indicate that they don't have an emergency override or at least not without escalation.

What if there were a:

medical emergency of the passenger

crash up ahead

fire up ahead

earthquake

flood

malfunction of the driverless car

really anything that would make you pull over your actual car to the side of the road for your own safety or emergent needs.

And then you have to imagine if so, even with an e-stop button are you in a less safe situation if you do not have ability to reach the wheel from the back seat.

Those are concerns that would give me pause.

Kozmik1 | 1 year ago | on: Treating bullying as everyone's problem reduces incidence in primary schools

Can anyone comment on the current prevalence of bullying in schools in the UK vs the USA? We have been considering moving from the Us to the UK but perceived higher likelihood of bullying for our mixed race kids is one concern holding us back. It's hard to know if we are exaggerating that concern or if it is warranted, it would seem hard to know the level of hostility of a school environment prior to moving there.

Kozmik1 | 1 year ago | on: Ask HN: Does anyone use sound effects in their dev environment?

I remembered as I enabled this great setting, that I am usually very quick to turn it OFF because it causes the configured sound to play when you hit backspace at a blank prompt, which I tend to do when I'm thinking of what to type, or clearing lines, I just hit backspace excessively for fun. Unfortunately the bell causes me to get penalized for that, so I will probably disable it again.

Kozmik1 | 1 year ago | on: Ask HN: Does anyone use sound effects in their dev environment?

The classic audio diagnostic on Linux/Unix is some beeps occurring and kernel debug text on all virtual terminals when something really horrible has gone wrong.

If you want to make a beep in a linux console, try adding this to your shell scripts. It should trigger the default system "beep" sound. I used to include this in my scripts that ran really long tests or cluster jobs to wake me up and check the results.

Sadly, on many laptops and PCs today, there seems to be no action on the PC speaker at all, but you can configure this system beep code to trigger a sound of your choice from your favorite gui console application.

In Python I believe you can trigger the system 'beep' sound with one of the following: print("\a") # cross platform print('\007') # linux only

My gui favorite, Konsole does not make any sound using these standard methods unless you manually configure it to play a file for "Bell in focused session" under Notifications. Of course this plays a wav/ogg file instead of triggering the PC speaker.

It can be really hard to make a little beep these days, when you consider you may have 4 different sound outputs (one for each display and video card, one or two for the motherboard), application specific audio levels that get set to quiet or muted by default arbitrarily, and then application specific opt-ins needed just to support a little sound that was kind of a failsafe notification in earlier times.

page 1