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

Just last week. a new large-scale study was published about what happens to the mental health of adolescents who get transgender treatments. It was published in the journal Acta Paediatrica. The data comes from gender identity clinics in Finland. I waited a few days to see what the response from critics would be and it’s … Continue reading New study: Adolescents have worse mental health after transgender treatments →



I’ve been working at Culture Amp for over 8 years – 4 times longer than any other place I’ve worked. Clearly something here is working well for me. I’ve been working at Culture Amp for over 8 years – 4 times longer than any other place I’ve worked. Clearly something here is working well for […]

I built Graph Explorer Base View to solve a real problem: LLM Wikis generate tons of interconnected notes, but without a visual layer, you can't see clusters, gaps, or what still needs review.

He is risen.  In each of the Gospel portraits of Jesus Christ the events of a single week occupy a sizeable portion of the text.  This is the week which began with His triumphal entry into Jerusalem. riding on a donkey in fulfilment of the prophecy of Zechariah. and thus publicly announcing Himself to the nation as the long-awaited Messiah.  This is the week which ended on the Sabbath in which in the visible world His body lay in the tomb i....

Hello! We're very glad to announce that Eddie Android edition 4.0.0 has been released This is a major update: for the first time Eddie Android edition features AmneziaWG complete support. UPDATE 2026-04-24: please note that a patch (4.0.1) replacing Eddie Android edition 4.0.0 is available. It is just a patch fixing a bug, everything written here applies identically to 4.0.1 of course. Eddie Android edition is a fully integrated with Ai....

Hello! We're very glad to announce that Eddie Android edition 4.0.0 has been released This is a major update: for the first time Eddie Android edition features AmneziaWG complete support. UPDATE 2026-04-24: please note that a patch (4.0.1) replacing Eddie Android edition 4.0.0 is available. It is just a patch fixing a bug, everything written here applies identically to 4.0.1 of course. Eddie Android edition is a fully integrated with Ai....

All across the country, police have convinced communities to pay for mass surveillance systems like license plate readers, claiming they will help stop the most serious crimes. But once these ever-watchful electronic eyes are installed in your city, it's not just violent criminals they're recording—it's everyone. Time and time again, we've seen police surveillance suffer from "mission creep." Technology that was sold as a way to catch ....

I wrote recently that I do not enjoy software development the way I used to. That is still true. Most of the joy is gone. Too much of modern development feels like meetings, process, alignment, and maintenance of systems nobody really likes but everyone has agreed to keep alive. And yet over the last few months I built three iOS apps: Yomu, Aira, and Ledgee. All three started the same way: I wanted them to exist for myself.

The Moon, seen here backlit by the Sun during a solar eclipse on April 6, 2026, is photographed by one of the cameras on the Orion spacecraft’s solar array wings. Orion is visible in the foreground on the left. Earth is reflecting sunlight at the left edge of the Moon, which is slightly brighter than […]

I mass-deleted requirements.txt files from a monorepo last month. Fourteen of them. Some had unpinned dependencies, some had pins from 2021, one had a comment that said # TODO: fix this next to a package that no longer exists on PyPI. Nobody cried. The CI pipeline didn’t break. We’d already moved everything to pyproject.toml and uv. Python packaging has been a punchline for years. “It’s 2024 and we still can’t install packages properly” w..

GoAccess - codeyarns.com - 3 months ago - eng
GoAccess is an open-source log analyzer and interactive viewer for the terminal or the browser. I like to use it to see the traffic to nginx. Install $ sudo apt install goaccess View nginx traffic For a live view of the traffic at the terminal: $ goaccess /var/log/nginx/access.log --log-format=COMBINED Generate a interactive HTML file and view it from the browser at yourdomain.com/stats.html: $ sudo goaccess /var/log/nginx/access.l..

nginx - codeyarns.com - 3 months ago - eng
Nginx is a popular web server for Linux. Install $ sudo apt install nginx Configuration /etc/nginx/nginx.conf: This file has the configuration options for nginx server itself. For settings specific to a website, look at /etc/nginx/sites-enabled directory. /etc/nginx/sites-available/: This is the directory where we can store all the website configuration files. Note that the files in this directory are not read by nginx - it is ....

I am now sending to you - june.kim - 3 months ago - eng

Type the question - june.kim - 3 months ago - eng

Today I’m very happy to share that Mario Zechner is joining Earendil . First things first: I think you should read Mario’s post . This is his news more than it is ours, and he tells his side of it better than I could. What I want to do here is add a more personal note about why this matters so much to me, how the last months led us here, and why I am so excited to have him on board. Last year changed the way many of us thought about....


I am now sending to you - june.kim - 3 months ago - eng

Type the question - june.kim - 3 months ago - eng

ITT: scripting languages general we discuss our favorite scripting languages, their usecases, post our syntactic sugar, and render cute anime girls stylized like high-level programming languages i'll start by saying i'm most proficient using bash and I use it every single day! here's my .bash_aliases alias updoot = "sudo apt update && sudo apt upgrade" alias sinstall = "sudo apt install" alias ytdl = "yt-dlp -f 'bestvi....




Amazon S3 Files makes S3 buckets accessible as high-performance file systems on AWS compute resources, eliminating the tradeoff between object storage benefits and interactive file capabilities while enabling seamless data sharing with ~1ms latencies.



Yesterday, I wrote about the Lethal Trifecta when using coding agents and how I am escaping it via sandboxing. I built a place to code where there is nothing valuable to lose. The agents might be poisoned by prompt injection and able to phone home, but there’s nothing to send. I can wipe the entire […]

HTML video and audio lazy loading is now a web standard and quickly gaining support in all major browsers. Given Squarespace’s role in proposing and implementing it, we’re very excited to see how developers use it on the web. Let’s cover some best practices for using video and audio lazy loading in any website, as well as some gotchas to avoid.

Problem: Determine if a 32-bit number is prime (deterministically) Solution: (in C++) // Bases to test. Using the first 4 prime bases makes the test deterministic // for all 32-bit integers. See https://oeis.org/A014233. int64_t bases[] = {2, 3, 5, 7}; inline int countTrailingZeros(uint64_t n) { if (n == 0) return 64; return __builtin_ctzll(n); } int64_t modularExponentiation(int64_t base, int64_t exponent, int64_t modulus) { int64_t res = ..

Problem: Determine if a 32-bit number is prime (deterministically) Solution: (in C++) // Bases to test. Using the first 4 prime bases makes the test deterministic // for all 32-bit integers. See https://oeis.org/A014233. int64_t bases[] = {2, 3, 5, 7}; inline int countTrailingZeros(uint64_t n) { if (n == 0) return 64; return __builtin_ctzll(n); } int64_t modularExponentiation(int64_t base, int64_t exponent, int64_t modulus) { int64_t res = ..

Problem: Determine if a 32-bit number is prime (deterministically) Solution: (in C++) // Bases to test. Using the first 4 prime bases makes the test deterministic // for all 32-bit integers. See https://oeis.org/A014233. int64_t bases[] = {2, 3, 5, 7}; inline int countTrailingZeros(uint64_t n) { if (n == 0) return 64; return __builtin_ctzll(n); } int64_t modularExponentiation(int64_t base, int64_t exponent, int64_t modulus) { int64_t res = ..

Discover how autonomous, agent-driven data pipelines are transforming web scraping in 2026, enabling self-healing systems, API discovery, and end-to-end automation.

Programmers were raised on long-standing core principles of the craft. What if those tenets are no longer relevant?

During a long drive to (and from) Florida, and a lot of thinking about maps, I realized something that I really wanted, and something that…

I find myself unreasonably excited for the work that Taalas is doing. They’re turning open weight models directly into ASICs (application specific integrated circuits) so that the chip essentially acts as the model - and only as the model. You get raw transistor switching speed within the model. Not only does this result in incredibly fast computation (~15k tokens a second for llama 8b!) but you are doing so at ridiculously low power ..

About ten years ago I sat down in front of a camera and recorded eleven videos showing how I play mandolin for contra dances . I've now done something similar with piano, this time with thirteen videos. This is not a high quality effort: I didn't write any scripts or even plan what I was going to say. Think of it as if we spent half an hour together, with me showing you how I play. Also keep in mind that I'm self taught, and my parti....

About ten years ago I sat down in front of a camera and recorded eleven videos showing how I play mandolin for contra dances . I've now done something similar with piano, this time with thirteen videos. This is not a high quality effort: I didn't write any scripts or even plan what I was going to say. Think of it as if we spent half an hour together, with me showing you how I play. Also keep in mind that I'm self taught, and my parti....

About ten years ago I sat down in front of a camera and recorded eleven videos showing how I play mandolin for contra dances . I've now done something similar with piano, this time with thirteen videos. This is not a high quality effort: I didn't write any scripts or even plan what I was going to say. Think of it as if we spent half an hour together, with me showing you how I play. Also keep in mind that I'm self taught, and my parti....




When you build a product that uses LLMs and prompts, security becomes a specific kind of hard problem. Simon Willison described the core risk well in The Lethal Trifecta. When three things combine in

Announcing Snyk Container Registry Sync GA for automated image management and runtime intelligence. Scale container security effortlessly for the fast-paced AI era.

91 visitors online