|
What happens when your article gets on second page of hackernews - 2024
-
newbeelearn.com
-
2 years ago
-
eng
TLDR; Details of traffic volume and other insights when page is featured on hackernews and authors lame attempt at humor
|
There is a huge gap in generative AI between the quality you observe when you’re playing with it open endedly, and the quality you observe when you try to use it for a task where you have a specific end goal in mind. This is I think where most of the hype/reality mismatch occurs. This accurately sums up my experience using generating AI in a daily base and building products with this technology.
|
|
There is a huge gap in generative AI between the quality you observe when you’re playing with it open endedly, and the quality you observe when you try to use it for a task where you have a specific end goal in mind. This is I think where most of the hype/reality mismatch occurs. This accurately sums up my experience using generating AI in a daily base and building products with this technology. source
|
There is a huge gap in generative AI between the quality you observe when you’re playing with it open endedly, and the quality you observe when you try to use it for a task where you have a specific end goal in mind. This is I think where most of the hype/reality mismatch occurs. This accurately sums up my experience using generating AI in a daily base and building products with this technology.
|
If you need another reason to hate office politics, Dave Anderson shares some awful advice on how to join office politics, one of them is: Slow down other teams If other teams move quickly, your team can become a bottleneck. That never looks good. When a wild animal is chasing you, you need to not be the slowest. Slow down your peer teams by asking for info, or starting processes. As a bonus, you look as if you’re holding a high bar.
|
|
If you need another reason to hate office politics, Dave Anderson shares some awful advice on how to join office politics, one of them is: Slow down other teams If other teams move quickly, your team can become a bottleneck. That never looks good. When a wild animal is chasing you, you need to not be the slowest. Slow down your peer teams by asking for info, or starting processes. As a bonus, you look as if you’re holding a high bar. ..
|
If you need another reason to hate office politics, Dave Anderson shares some awful advice on how to join office politics, one of them is: Slow down other teams If other teams move quickly, your team can become a bottleneck. That never looks good. When a wild animal is chasing you, you need to not be the slowest. Slow down your peer teams by asking for info, or starting processes. As a bonus, you look as if you’re holding a high bar.
|
|
Bootstrap v5.3.3 is here with bug fixes, documentation improvements, and more follow-up enhancements for color modes. Keep reading for the highlights! Highlights Fixed a breaking change introduced with color modes where it was required to manually import variables-dark.scss when building Bootstrap with Sass. Now, _variables.scss will automatically import _variables-dark.scss. If you were already importing _variables-dark.scss manually, yo....
|
|
Many skeptics about the impact of AI are focused on the flaws that LLMs have today: hallucinations, short context windows, slow answers, and so on. These are legitimate concerns, and, if AI advancement were to stop, they might prove to be huge issues in the utility of AI. But AI is advancing rapidly, and some of these concerns may soon vanish, even if others (like hallucinations) are not completely solved.
|
|
Many skeptics about the impact of AI are focused on the flaws that LLMs have today: hallucinations, short context windows, slow answers, and so on. These are legitimate concerns, and, if AI advancement were to stop, they might prove to be huge issues in the utility of AI. But AI is advancing rapidly, and some of these concerns may soon vanish, even if others (like hallucinations) are not completely solved.
|
|
I created "The Critic", a tool to help review text from different perspectives, like accessibility or API design. It uses LLMs to simulate multiple "agents" who provide feedback, streamlining the review process. It's built with Breadboard and aims to enhance, not replace, human review. While the UI is basic, it effectively identifies potential improvement areas, sparks discussions, and integrates with LLMs for convenience.
|
|
I created "The Critic", a tool to help review text from different perspectives, like accessibility or API design. It uses LLMs to simulate multiple "agents" who provide feedback, streamlining the review process. It's built with Breadboard and aims to enhance, not replace, human review. While the UI is basic, it effectively identifies potential improvement areas, sparks discussions, and integrates with LLMs for convenience.
|
|
I built tldr-site.vercel.app to help me quickly understand web development trends. It summarizes search results and news snippets, giving me a high-level overview before I dive into specific details. I use it frequently, for example, to research community feedback like on the Web Environment Integrity API. The code is on GitHub and uses Breadboard to manage data flow. It works well, but could be improved by adding article content for riche..
|
|
I built tldr-site.vercel.app to help me quickly understand web development trends. It summarizes search results and news snippets, giving me a high-level overview before I dive into specific details. I use it frequently, for example, to research community feedback like on the Web Environment Integrity API. The code is on GitHub and uses Breadboard to manage data flow. It works well, but could be improved by adding article content for riche..
|
|
I've made a couple of small changes to the blog. I removed the personal journal section and added my projects to the RSS feed so you can see what I've been working on with Generative AI. Happy New Year!
|
|
I've made a couple of small changes to the blog. I removed the personal journal section and added my projects to the RSS feed so you can see what I've been working on with Generative AI. Happy New Year!
|
|
Today, I learned the hard way that the default port for ASP.NET Core 8 container images has been updated from port 80 to 8080, quite a remarkable breaking change. We upgraded our web application from .NET 7 and let the CI pipeline do its work. Finally, we checked the application in the browser to ensure everything was okay, but unfortunately, we got a 502 Bad Gateway error. The Nginx logs revealed that the app was rejecting connections, w..
|
|
I've created the Claude Breadboard Kit, a simple plugin to easily connect your Breadboards with the Claude API. It features a single generateCompletion node for streamlined integration. Add it to your breadboard runtime using addRuntimeKit(Claude) and start using the generateCompletion node.
|
|
I've created the Claude Breadboard Kit, a simple plugin to easily connect your Breadboards with the Claude API. It features a single generateCompletion node for streamlined integration. Add it to your breadboard runtime using addRuntimeKit(Claude) and start using the generateCompletion node.
|
|
I created tldr.rocks, a simple site that summarizes Hacker News posts and comment sentiment. As a DevRel, it's crucial to understand developer sentiment towards our work. This tool helps me quickly identify key comments and critical challenges, although it doesn't replace direct engagement with the community. It's built with Hugo, uses Breadboard to manage the Generative AI, and leverages Anthropic's Claude via my "Claude Kit" Breadboard ..
|
|
I created tldr.rocks, a simple site that summarizes Hacker News posts and comment sentiment. As a DevRel, it's crucial to understand developer sentiment towards our work. This tool helps me quickly identify key comments and critical challenges, although it doesn't replace direct engagement with the community. It's built with Hugo, uses Breadboard to manage the Generative AI, and leverages Anthropic's Claude via my "Claude Kit" Breadboard ..
|
|
In many applications it’s a requirement to keep track of when a record was created and updated the last time. Often, this is implemented by having columns such as created_at and updated_at within each table. To make things as simple as possible for application developers, the database itself should take care of maintaining these values automatically when a record gets inserted or updated.
|
|
In many applications it’s a requirement to keep track of when a record was created and updated the last time. Often, this is implemented by having columns such as created_at and updated_at within each table. To make things as simple as possible for application developers, the database itself should take care of maintaining these values automatically when a record gets inserted or updated.
|
|
DevOps / Full Stack / Hacker Hello, I’m Alex Spezowka . With over a decade of experience building scalable systems, I architect complete technology solutions from infrastructure to user interface. I specialize in transforming legacy systems into modern architectures, implementing AI-powered applications, and solving complex technical challenges across the full stack. Currently Freelancing. If you need a Hacker in Residence, let’s ..
|
|
This article will explore SSRF, its potential risks, and the strategies to mitigate SSRF in Node.js applications.
|
|
In this article, you'll learn more about why SQL injection attacks pose a significant threat and how to shield your Node.js applications against them.
|
|
rabbot.love is a little helper I whipped up to check the programs the kids were writing for a neat little paper computer . video; 25 seconds
|
|
Imagine a city mayor considering a project offering to build parks in several neighborhoods. It can be a good budget investment since it can potentially increase the happiness level of the citizens. However, it is just a hypothesis: if parks do not impact happiness, it is worth considering other city renovation projects. It makes sense to perform a pilot experiment before spending the budget on all the parks. The mayor is thinking about the....
|
|
Imagine a city mayor considering a project offering to build parks in several neighborhoods. It can be a good budget investment since it can potentially increase the happiness level of the citizens. However, it is just a hypothesis: if parks do not impact happiness, it is worth considering other city renovation projects. It makes sense to perform a pilot experiment before spending the budget on all the parks. The mayor is thinking about the....
|
|
Java Foreign Function Interface (FFI) Evolved Binary has been working on several aspects of how the Java API to RocksDB can be improved. The recently introduced FFI features in Java provide significant opportunities for improving the API. We have investigated this through a prototype implementation. Java 19 introduced a new FFI Preview which is described as an API by which Java programs can interoperate with code and data outside of t....
|
|
This is a note to myself that’s a list of resources to refer to when I’m feeling stuck or in a rut epsecially if I’m browsing the internet mindlessly.
|
Bitcoin Atlantis is just around the corner. This conference, happening here in Madeira, is something unusual for us locals. The common pattern is that we have to fly to attend such conferences. I plan to attend the event, and I will be there with an open mindset, since there are always new things to learn. […]
|
|
Introduction This feature is mis-documented /dev/fd/* behave different on other Unixes Part 1: An experiment! Duplicating the file descriptor using dup(2) Duplicating the file descriptor through /proc Other file types TCP Sockets: Can not be reopened through /proc Pipes: Can be reopened through /proc Part 2: What is really happening Where did the no_open pointer come from? Summary Introduction Unix ....
|
|
Introduction This feature is mis-documented /dev/fd/* behave different on other Unixes Part 1: An experiment! Duplicating the file descriptor using dup(2) Duplicating the file descriptor through /proc Other file types TCP Sockets: Can not be reopened through /proc Pipes: Can be reopened through /proc Part 2: What is really happening Where did the no_open pointer come from? Summary Introduction Unix ....
|
|
Introduction This feature is mis-documented /dev/fd/* behave different on other Unixes Part 1: An experiment! Duplicating the file descriptor using dup(2) Duplicating the file descriptor through /proc Other file types TCP Sockets: Can not be reopened through /proc Pipes: Can be reopened through /proc Part 2: What is really happening Where did the no_open pointer come from? Summary Introduction Unix ....
|
|
TLDR; Describes how author used chatgpt to create workaround for downloading data from cloudflare D1 beta that he would have long given up on if not for chatGPT
|