Kozmik1 | 3 months ago | on: EFF launches Age Verification Hub
Kozmik1's comments
Kozmik1 | 3 months ago | on: EFF launches Age Verification Hub
Kozmik1 | 7 months ago | on: M8.7 earthquake in Western Pacific, tsunami warning issued
Kozmik1 | 7 months ago | on: M8.7 earthquake in Western Pacific, tsunami warning issued
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
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 | 8 months ago | on: Microsoft Is Deleting Old Drivers from Windows Update and It Might Break Your PC
Kozmik1 | 10 months ago | on: The pigeon whistle: A defining sound of old Beijing (2019)
Kozmik1 | 10 months ago | on: 21 GB/s CSV Parsing Using SIMD on AMD 9950X
Kozmik1 | 10 months ago
Here's a video of the NYC Pool Noodle Bike Ride: https://www.youtube.com/watch?v=97YJOQRQ4Ds&ab_channel=Stree...
Kozmik1 | 10 months ago | on: The effect of deactivating Facebook and Instagram on users' emotional state
Kozmik1 | 11 months ago | on: Busy Bar
Kozmik1 | 1 year ago | on: Contra Chrome: How Google's browser became a threat to privacy and democracy
Kozmik1 | 1 year ago | on: “The closer to the train station, the worse the kebab” – a “study”
Kozmik1 | 1 year ago | on: “The closer to the train station, the worse the kebab” – a “study”
https://www.tripadvisor.com/Restaurant_Review-g187147-d11097...
Kozmik1 | 1 year ago | on: Promising results from DeepSeek R1 for code
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
Kozmik1 | 1 year ago | on: Man trapped inside driverless Waymo car as it spins in circles
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
Kozmik1 | 1 year ago | on: Ask HN: Does anyone use sound effects in their dev environment?
Kozmik1 | 1 year ago | on: Ask HN: Does anyone use sound effects in their dev environment?
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.