The Mongolian Meta
22 by deletionist | 6 comments on Hacker News.
World News - Find latest world news and headlines today based on politics, crime, entertainment, sports, lifestyle, technology and many
Sunday, 31 March 2024
Saturday, 30 March 2024
Friday, 29 March 2024
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.
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.
Thursday, 28 March 2024
Wednesday, 27 March 2024
Tuesday, 26 March 2024
Monday, 25 March 2024
Sunday, 24 March 2024
BJP misusing national agencies in panic, Kejriwal’s arrest politically motivated: INDIA bloc leaders in Kurukshetra
from India News | Latest India News Headlines & Live Updates from India - Times of India https://ift.tt/VF7hant
Bleak images show snapshots of daily life in the closed world of North Korea
from Yahoo News - Latest News & Headlines https://ift.tt/72RYVBs
Saturday, 23 March 2024
Friday, 22 March 2024
Thursday, 21 March 2024
Wednesday, 20 March 2024
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: 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
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
Monday, 18 March 2024
Sunday, 17 March 2024
Saturday, 16 March 2024
Friday, 15 March 2024
A judge tosses claims against a former Wisconsin police officer who killed 3 people in five years
from Yahoo News - Latest News & Headlines https://ift.tt/IlDghzs
Watch: Tornado photographer captures apocalyptic scene as Ohio twister nearly sucks him out the door
from Yahoo News - Latest News & Headlines https://ift.tt/gZLv2Ud
Thursday, 14 March 2024
Wednesday, 13 March 2024
Tuesday, 12 March 2024
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.
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.
Sunday, 10 March 2024
Saturday, 9 March 2024
A surge of illegal homemade machine guns has helped fuel gun violence in the US
from Yahoo News - Latest News & Headlines https://ift.tt/YVN4SIF
Friday, 8 March 2024
Thursday, 7 March 2024
VA official who tried to ban iconic WWII kissing photo has controversial history: 'Unequivocally offensive'
from Yahoo News - Latest News & Headlines https://ift.tt/t20KTQU
Wednesday, 6 March 2024
Tuesday, 5 March 2024
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.
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.
Monday, 4 March 2024
New top story on Hacker News: Java is becoming more like Rust, and I am here for it
Java is becoming more like Rust, and I am here for it
44 by joshaustintech | 30 comments on Hacker News.
44 by joshaustintech | 30 comments on Hacker News.
Sunday, 3 March 2024
New top story on Hacker News: The Achilles Trap: how the US fatally failed to read Saddam
The Achilles Trap: how the US fatally failed to read Saddam
16 by curiousObject | 11 comments on Hacker News.
16 by curiousObject | 11 comments on Hacker News.
Saturday, 2 March 2024
Friday, 1 March 2024
Oregon Dad Accused of Drugging Girls at 12-Year-Old Daughter's Sleepover: 'I Don't Feel Safe'
from Yahoo News - Latest News & Headlines https://ift.tt/pkIW0Rm
Married St. Louis principal pleads guilty to hiring hitman to kill his pregnant teacher girlfriend and her unborn baby
from Yahoo News - Latest News & Headlines https://ift.tt/MVU1PXk
Subscribe to:
Posts (Atom)