Friday, 29 March 2024

New top story on Hacker News: A muon collider could revolutionize particle physics–if it can be built

A muon collider could revolutionize particle physics–if it can be built
6 by rbanffy | 0 comments on Hacker News.


New top story on Hacker News: When New Hires Get Paid More, Top Performers Resign First

When New Hires Get Paid More, Top Performers Resign First
41 by mooreds | 19 comments on Hacker News.


New top story on Hacker News: Navigating the Challenges and Opportunities of Synthetic Voices

Navigating the Challenges and Opportunities of Synthetic Voices
37 by Josely | 9 comments on Hacker News.


New top story on Hacker News: Beware Scaling on AWS in Early Days

Beware Scaling on AWS in Early Days
9 by Kalanos | 3 comments on Hacker News.
During my first month on AWS, I used AWS Batch a lot. AWS decided to bill me mid-month (for more than I utilized I should add) even though the cycle ends on the 31st. The transaction failed. Instead of contacting me to resolve the issue, AWS completely locked me out of the account. Card is also now locked due to "fraud." I've been trying to resolve this for a week now (closer to 3 weeks if you include quota-related tickets). It's Friday, and I have a demo with a Fortune 100 company next week. In order to get results for this demo, I need to run a lot of Batch jobs - not great. I shudder to think about what would happened if this had been a launch with paid customers. From their perspective, I get that crypto miners probably sign up and cancel their credit cards, but I was just using the cloud as intended. I had multiple tickets related to resource quotas that explained why I was using the cloud.

Tuesday, 19 March 2024

Gangs unleash new attacks on upscale areas in Haiti's capital, with at least a dozen killed nearby



from Yahoo News - Latest News & Headlines https://ift.tt/f6LpbdP

New top story on Hacker News: What does Alan Kay think about LLMs?

What does Alan Kay think about LLMs?
14 by agomez314 | 2 comments on Hacker News.


New top story on Hacker News: Show HN: Godspeed is a fast, 100% keyboard oriented todo app for Mac

Show HN: Godspeed is a fast, 100% keyboard oriented todo app for Mac
80 by DanielDe | 33 comments on Hacker News.
Hi everybody, today I'm launching version 1.0 of Godspeed, a todo manager built with two priorities in mind: speed and 100% keyboard orientation. Every action in Godspeed can be done from your keyboard and will respond instantly. It's like Superhuman for your todo list. Godspeed has everything you expect in a todo manager like shared lists, labels, smart lists, boolean search operators, and cloud sync. If you're already a user of an app like Todoist or OmniFocus you should be able find everything you need in Godspeed. I think the most appealing thing to most HN users would be the keyboard orientation. Literally every single action in Godspeed is doable from your keyboard. I'm so serious about this that I built "hardcore mode" to completely disable the mouse - this both helps you break the habit of reaching for your mouse, and keeps us honest about 100% hotkey support. You can fully customize the hotkeys, but if you're into Vim or Emacs you'll feel right at home by default. We've got a 2 week free trial with no limitations, and then offer subscription or one-time purchase options. Thanks for checking out Godspeed, I'd love to hear your feedback! https://ift.tt/X6fxrjE

New top story on Hacker News: Draft Paper Discovered in Which Joseph Weizenbaum Envisions ELIZA's Applications

Draft Paper Discovered in Which Joseph Weizenbaum Envisions ELIZA's Applications
12 by abrax3141 | 0 comments on Hacker News.


Monday, 11 March 2024

New top story on Hacker News: Show HN: Async tasks in 350 lines of C

Show HN: Async tasks in 350 lines of C
21 by rkaehn | 1 comments on Hacker News.
Tasks are a primitive for asynchronous programming and an alternative to working with threads directly. Instead of creating a thread, performing work, then waiting on it using synchronization primitives, you only define a unit of work and let a scheduler decide when and where to execute it. The threads that the scheduler uses are created once and reused for many tasks throughout the program's lifetime. In most cases, creating and executing a task requires not even a single syscall and is a significantly faster operation than creating a thread, resulting in lower latency. Furthermore, tasks from different subsystems can be automatically interleaved by the scheduler, which is difficult to achieve manually with threads without communication between the subsystems. The library is written in standard C11 and only depends on the C POSIX library. It is designed to be easy to integrate into a project by just copying the header and simple enough to be understood in an afternoon.

Tuesday, 5 March 2024

New top story on Hacker News: Microsoft is ending support for the Windows Subsystem for Android (WSA)

Microsoft is ending support for the Windows Subsystem for Android (WSA)
53 by lemoine0461 | 48 comments on Hacker News.


New top story on Hacker News: Ancient Counterfeiters and Their Fake Coins

Ancient Counterfeiters and Their Fake Coins
7 by goles | 3 comments on Hacker News.


New top story on Hacker News: Event Interception

Event Interception
2 by ingve | 0 comments on Hacker News.


New top story on Hacker News: Show HN: NeedleDrop – Guess the movie from a song

Show HN: NeedleDrop – Guess the movie from a song
24 by wernah | 24 comments on Hacker News.
Backstory: I'm a product designer who's mostly worked for startups and now big tech, and I haven't really touched html/css for nearly a decade. I've worked closely with engineers my entire career but never really rolled the sleeves up and dived into a scripting language. I'd seen some engineers playing around with CodeGPT over a year ago when it launched–we huddled around a screen and tried to decide how quickly our jobs would be replaced by this new technology. At the time, we weren’t in any real danger, but I caught a glimpse of how well it understood prompts and stubbed out large amounts of code. For the past four or five years, I've played a hacky trivia game with family and friends where I play a song, and they have to guess the movie that features the song; Guess the Needle Drop. After many passionate debates and over-the-top celebrations fueled by my generation’s nostalgia for popular classic songs and films, people often told me that I needed to “build an app for this.” I started doodling in Figma before quickly starting to build the website in Node, and then read somewhere that it's a better approach to learn vanilla javascript before trying to benefit from frameworks like React, etc. So I started again with a static vanilla website and, piece by piece, built out each chunk of functionality I’d envisioned. My mind was consistently blown at how helpful ChatGPT was–far beyond my lofty expectations, even with all the AI hype. It was like having a 24/7 personal tutor for free. I rarely had to google console errors hoping that a Stack Overflow discussion catered to my exact scenario. With enough information, ChatGPT always knew what was wrong and explained in terms I could understand. The workflow went like this: I would describe the desired user experience, parse the code GPT suggested, copy it to my editor, and paste back any errors I came across along the way. The errors were abundant at the beginning, but I got better over time at anticipating issues. Perhaps my biggest takeaway was that I had to learn how to converse with ChatGPT: sometimes I would spend 10 minutes crafting a prompt, forcing me to fully understand and articulate my own line of thinking about what I was trying to achieve . Using ChatGPT to make a static local website is fairly trivial, but the deployment and automation stage is where I fully realised the scope of what I could achieve. As a product designer, I’ve had the luxury of listening to engineers discuss solutions without personally having to sweat the execution. Working solo I couldn’t stay in the periphery anymore. I kinda knew AWS was a whole thing. That git was non-negotiable. That having a staging server is sensible and that APIs could do a lot of the heavy lifting for me. I would sanity-check with ChatGPT whether I understood these tools correctly and whether it was appropriate to use them for what I was building. A few of the things that initially intimidated me but I ended up working out: - GitHub Actions workflows - AWS hosting and CloudFront - Route 53 DNS hosting - SSL certificates - Implementing fuzzy search - LocalStorage and JSON manipulation - Even some basic python to scrub data It’s a fairly basic game, and for anyone sneaking a look with the inspector, it’s a dog’s div soup breakfast served with a side of spaghetti logic. But it still goes to show how much AI seems like a learning steroid.