Site uses cookies to provide basic functionality.
Javascript rendering is set to off by default when visiting the site via .onion and .i2p domains. It can be enabled back again in user's settings section. Javascript rendering set to off means, that you can disable javascript in your browser now and the site will remain functional.
There is also IRC server now available via native IRC clients or non javascript web based one.
Fonts can be adjusted in user's settings section as well.
Check FAQ for more.

OK

Learn about Snyk's incoming GenAI Partner Program and how it secures the code produced by AI coding assistants, ensuring developers can code faster and more securely.

Introduction: Welcome to Episode 3 of the Fearless Concurrency series! In this episode, Herbert explores advanced threading techniques in Rust, focusing on scoped threads and the Rayon library to help developers build more efficient and parallelized applications. This episode is packed with practical insights on when and how to use different threading models to optimize performance and handle complex workloads. Scoped Threads: Ensuri..

This books is an amazing resource for upping you mental game. It's super dense, so you might not finish it in one sitting, nor should you. If you implement at least 5% of the advice in this book you will drastically improve as a human being.

Wonderful book about writing content that people will resonate. Very simple approach, but that is not to say it is not easy. It will take work to implement, but I have no doubt it will work.

System administrators often use load averages to quickly assess whether a server is overloaded. These values are easily accessible in tools like uptime and top. However, load averages alone do not provide enough detail about which resource—CPU or I/O—may be causing the bottleneck, and they lack granularity in time and cgroup-specific data. According to man uptime: System load averages is the average number of processes that are either..

If your cloud application performs poorly or is unreliable, users will walk away, and your enterprise will suffer. To know what’s going on inside of your million-concurrent-user application (Don’t worry, you’ll get there!), you need observability. Observability gives you the insights you need to understand how your application behaves. As your application and architecture scale […] The post Best Practices for Optimizing Your Enterprise C..

A common code sample I like to write when learning a new language is to have multiple threads or processes “do something” on an interval. For example, publishing to Kafka or RabbitMQ, invoking a REST API, etc., as a way of simulating a multi-process worker system. As a starting point, I like to build these to simply output a string to the console and then build my way up from there.


Turns out, creating an HTML table that has both horizontal scroll and fixed headers can be a tricky problem. As another developer said about…

Reformed believers don’t like to be accused of being Romanists. Yet it’s a powerful insult: you can shut down any argument if you can prove your opponent is using Papist logic. Let’s talk about the text of Scripture. Modern critical text advocates call those on the Received Text side Romanists. And the Received Text folks do the same right back. Who is the real Romanist? Are Received Text advocates Romanists? Some on the Textus Re....

Reformed believers don’t like to be accused of being Romanists. Yet it’s a powerful insult: you can shut down any argument if you can prove your opponent is using Papist logic. Let’s talk about the text of Scripture. Modern critical text advocates call those on the Received Text side Romanists. And the Received Text folks do the same right back. Who is the real Romanist? Are Received Text advocates Romanists? Some on the Textus Re....

Hello Lain, basically I was relatively well-known person until recently. For privacy reasons, I want to delete all of my presence online, and I mean all of it. I don't want my name to be known. I've already deleted all my social media accounts and also removed my accounts from the cache of the biggest search engines. Is there any way to complete erase search results (websites and images) related to your name in all big search engines, som..


Jak mierzyć skuteczność aplikacji? Dlaczego? Na co uważać? - artykuł odpowie na te pytania i umożliwi Ci tworzenie lepszych aplikacji opartych o AI!

Read a recap of our SnykLaunch event for October 2024, covering our new features that power a developer-first, risk-centric security experience.

2024-10-08-002 - srijan.ch - 1 year ago - eng
Read an interesting set of posts today: https://lethain.com/extract-the-kernel/ and https://lethain.com/executive-translation/ . The basic concept is: ... executives are generally directionally correct but specifically wrong, and it’s your job to understand the overarching direction without getting distracted by the narrow errors in their idea. This resonates well with my experience. I have been …

2024-10-08-002 - srijan.ch - 1 year ago - eng
Read an interesting set of posts today: https://lethain.com/extract-the-kernel/ and https://lethain.com/executive-translation/ . The basic concept is: ... executives are generally directionally correct but specifically wrong, and it’s your job to understand the overarching direction without getting distracted by the narrow errors in their idea. This resonates well with my experience. I have been …

2024-10-08-002 - srijan.ch - 1 year ago - bod
Read an interesting set of posts today: https://lethain.com/extract-the-kernel/ and https://lethain.com/executive-translation/ . The basic concept is: ... executives are generally directionally correct but specifically wrong, and it’s your job to understand the overarching direction without getting distracted by the narrow errors in their idea. This resonates well with my experience. I have been …

So you’re building a container where it has packages, like npm ci or go mod download, and would you like to make it quicker? For example: COPY go.mod go.sum ./ RUN go mod download Normally when you edit go.mod or go.sum the go mod download will have to redownload all the packages as its cache was busted by the change in the files. Well - we can use inline bind mounts to avoid that.

So you have a docker build which requires access to an authenticated resource? Docker Secrets can help do this cleanly! Temporarily provide build-time secrets There are times when you want to provide a secret, or file with secrets in it, for use in your docker build. Now if you COPY secert.yaml /etc/secrets that’s going to end up in your public image 🫢😨 Also, secret are commonly outside the context of the docker build, say it’s $HOME/..

So you have some config that you want to provide to a service started from docker compose. Did you know you can keep things simple by inlining that config in the compose file, rather than messing with mounts? Inline content in docker-compose.yaml In our case we want a json file with 👇 mounted at /etc/consul/client.json { "node_name" : "consul-client" , "data_dir" : "/consul/data" , "log_level" : "..

This post is part of the T4p Series. In this post, we will briefly discuss candlesticks, their basics, types, and how you can use OHLC data to identify them. I’ll aim to keep it short and to the point. What is a CandleStick Candlesticks are graphical representations of price movements in financial markets, typically showing the opening, closing, high, and low prices for a specific time period. History of CandleSticks Candlestick charting ha....

2024-10-08-001 - srijan.ch - 1 year ago - eng
Tried using X11 on #Linux the last few days due to some issues with Zoom screensharing in Wayland with the latest pipewire, and I already miss #Wayland. Issues I faced with X11: Smooth scrolling broken Apps work noticeably slower Screen tearing This bug in Emacs GTK build: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=67654 (To be fair, this is a GTK-specific issue, not X11 specific) I will go …

2024-10-08-001 - srijan.ch - 1 year ago - eng
Tried using X11 on #Linux the last few days due to some issues with Zoom screensharing in Wayland with the latest pipewire, and I already miss #Wayland. Issues I faced with X11: Smooth scrolling broken Apps work noticeably slower Screen tearing This bug in Emacs GTK build: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=67654 (To be fair, this is a GTK-specific issue, not X11 specific) I will go …

2024-10-08-001 - srijan.ch - 1 year ago - bod
Tried using X11 on #Linux the last few days due to some issues with Zoom screensharing in Wayland with the latest pipewire, and I already miss #Wayland. Issues I faced with X11: Smooth scrolling broken Apps work noticeably slower Screen tearing This bug in Emacs GTK build: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=67654 (To be fair, this is a GTK-specific issue, not X11 specific) I will go …



This article explains how to install and configure the Intel VTune Profiler on Fedora to use advanced analysis such as the Memory Access tool

This article explains how to install and configure the Intel VTune Profiler on Fedora to use advanced analysis such as the Memory Access tool

Our Analytics team noticed an abnormally high volume of "accordion" toggle events on theScore Bet website. The site is built with React, and the component at the root of the issue was built on top of the native
and HTML elements for better accessibility. After investigating, we found that the issue stemmed from a misunderstanding of how the
element behaves. Let's start by looking at how the
and ....

For years I used email drafts as quick ways to gather notes. I’d hit compose, start writing notes and leave them as a draft until I needed them later.





2024-10-07-002 - srijan.ch - 1 year ago - bod

2024-10-07-001 - srijan.ch - 1 year ago - bod
Reply to Lloyd: "Question for #indieweb people - why do most peopl…" - Mastodon I do it because that's the way most social feeds display, so in my mind, that's how users expect it. Though I can see the benefit of maybe adding a sorting toggle or option.

People talk about htmx as though it's saving the web from single-page apps. Well, I guess I missed the memo, because I used htmx to build a single-page app.

People talk about htmx as though it's saving the web from single-page apps. Well, I guess I missed the memo, because I used htmx to build a single-page app.


Aviation has been a love of mine since I was a very little person. Living in Nevada, seeing posters and ads for the Reno Air Races, specifically the Texans, transfixed me. I was hooked. As a teenager, I got an RC glider and dabbled in RC gliders and planes until my early 20’s. Later in … Continue reading The post I Finally Bought My Dream Airplane appeared first on MiscDotGeek .

My daughter loves to make a big pile of books and then bring them over, asking me to read each one. This means I might read ten or so books in one sitting to her.

Table of Contents Creating Instances Configuring SSH Provisioning Software Try It Out Yourself Whenever I’ve need a Linux box for some testing or experimentation, or projects like the One Billion Row Challenge a few months back, my go-to solution is Hetzner Online , a data center operator here in Europe. Their prices for VMs are unbeatable, starting with 3,92 €/month for two shared vCPUs (either x64 or AArch64), fou....

Table of Contents Creating Instances Configuring SSH Provisioning Software Try It Out Yourself Whenever I’ve need a Linux box for some testing or experimentation, or projects like the One Billion Row Challenge a few months back, my go-to solution is Hetzner Online , a data center operator here in Europe. Their prices for VMs are unbeatable, starting with 3,92 €/month for two shared vCPUs (either x64 or AArch64), fou....

91 visitors online