|
A new Halo game is coming - this time its another Halo CE remake. This time Halo: Campaign Evolved on Unreal Engine.
|
|
A little over a week ago, I introduced time-zones , an Emacs utility to easily check city times around the world. Today, I'm happy to report, the package has been accepted into MELPA . It's been wonderful to see how well time-zones was received on Reddit . ✓ You asked for MELPA publishing and I delivered . ✓ You asked for DST display and I delivered . ✓ You asked for a UTC picker and I delivered . ✓ You asked for UTC offs..
|
|
Claude as My External Brain: Autistic, ADHD, and Finally Supported
-
zackproser.com
-
7 months ago
-
eng
How I use Claude as an external brain and assistant—combining voice, agents, and a hardened CI/CD lane—to support an autistic mind with severe ADHD.
|
|
Walking and Talking in the Woods with AI: The Future of Untethered Software Development
-
zackproser.com
-
7 months ago
-
eng
A DevSecCon 2025 keynote summary: orchestrate voice, agents, and a hardened CI/CD lane so you can think where you think best—while background agents safely ship production-grade code.
|
|
Hello, Clojurians! I haven't written here in a long time. Was I tired? Is anybody reading blogs anymore? Who knows. But that was not the main reason. I've been working on several Clojure projects sponsored by the Clojurists Together Foundation. I did a ton of things, but after all this programming, I was kinda tired, and kept slugging when it comes to telling people about the work done! That's not very smart, but you know how it goes…....
|
|
Hello, Clojurians! I haven't written here in a long time. Was I tired? Is anybody reading blogs anymore? Who knows. But that was not the main reason. I've been working on several Clojure projects sponsored by the Clojurists Together Foundation. I did a ton of things, but after all this programming, I was kinda tired, and kept slugging when it comes to telling people about the work done! That's not very smart, but you know how it goes…....
|
|
A note to remind myself that in future tech build outs, do some research at the start who the big suppliers are. Seems completely obvious now but I totally didn't think to figure out who would be supplying the materials and core components for the current data centre boom we are seing as a result of the AI industry build out. Several Japanese engineering companies have been ripping , between 30% to 500% added to their value. The companie..
|
|
In this blog-post, we will start by discussing the evolution of timekeeping, leading all the way to its use in computers. We will then introduce software timer modules, and explain timing wheels as a fast and memory efficient way to manage timers. Finally, we will discuss both the classic Linux timer wheel implementation and its modern variant.
|
|
When people talk about computer vision, they usually think of OpenCV or deep neural networks like YOLO. But in most cases, doing computer vision implies understanding of the core algorithms, so you can use or adapt them for your own needs. I wanted to see how far I could go by stripping computer vision down to the bare minimum: only grayscale 8-bit images, no fancy data structures, plain old C, some byte arrays and a single header file.
|
|
When people talk about computer vision, they usually think of OpenCV or deep neural networks like YOLO. But in most cases, doing computer vision implies understanding of the core algorithms, so you can use or adapt them for your own needs. I wanted to see how far I could go by stripping computer vision down to the bare minimum: only grayscale 8-bit images, no fancy data structures, plain old C, some byte arrays and a single header file.
|
|
Spent several hours today on the social media auto-poster . It’s starting to look really awesome. The project structure is just right and everything is easily repeatable. I showed Gemini the existing setup with a bit of explanation, and basically just said, do the same sort of thing for some other social networks, and it obliged, and synthesized new code based loosely on the existing structure, but with relevant variations to accommodate t..
|
|
Feeling quite under the weather today. Rough day yesterday, and today I’ve got a sneezy cold that’s been steadily gaining momentum the entire day. One presses on nevertheless. Some progress in my blogging setup. I decided to do an overhaul of all the bash scripts I use for day to day blogging. I use a static site generator to build the blog, but separate to that I previously had a very basic bash script combined with some aliases that ena....
|
|
After reading Developing our position on AI from the Recurse Center , the corresponding entry in my newsletter grew long enough I’ve decided to break it out into a full blog post. Above and beyond its specific findings, I think the post charts a path for a more civil and considered mode of discussion that we should all strive for on the Internet and in our own lives. I’ve long been fascinated by the Recurse Center. Throughout my care....
|
|
After reading Developing our position on AI from the Recurse Center , the corresponding entry in my newsletter grew long enough I’ve decided to break it out into a full blog post. Above and beyond its specific findings, I think the post charts a path for a more civil and considered mode of discussion that we should all strive for on the Internet and in our own lives. I’ve long been fascinated by the Recurse Center. Throughout my care....
|
Last night, I ended up watching the AFC Champions League Two, Group G match : Persib Bandung vs Selangor FC.
|
|
About a month ago I got my ZSA Navigator , and have been using it every work day since, so I thought I would leave some semi-structured thoughts at this point. First and foremost I should say: It took me at least two and a half weeks of puttering around before I was remotely happy. There’s a few things that I did right, and a few things that aren’t yet supported which would have sped that up, but it’s not a “wow, you’re instantly capabl....
|
|
It occurs the me that the main reasons I read so much from the Guardian is that: It's basically free, though of course you should donate if you can. The writting is a good read most of the time. It just looks so much nicer that any of the other MSM news sites. However, I find that a lot of the opinions I either don't agree with, or cause my eyes to roll. It's astonishing to me how much of an effect beauty has. I very much like reading..
|
|
How does Python 3.14 perform under a few hand-crafted benchmarks? Does the performance of asyncio scale on the free-threaded build? Christopher Trudeau is back on the show this week, bringing another batch of PyCoder's Weekly articles and projects.
|
|
How to Download Google Spreadsheet as a CSV from a Public URL
-
yasha.solutions
-
7 months ago
-
eng
Learn how to download public Google Spreadsheets as CSV files using URL parameters and Python scripts
|
|
How to Download Google Spreadsheet as a CSV from a Public URL
-
yasha.solutions
-
7 months ago
-
eng
Learn how to download public Google Spreadsheets as CSV files using URL parameters and Python scripts
|
|
Evolution of Type Hints in Python — From Comments to Inline Typing and Beyond
-
www.safjan.com
-
7 months ago
-
eng
Learn about the evolution of type hints in Python, from initial comments to modern inline typing and key features introduced in each major version, enabling powerful static type checking with tools like mypy and pyright.
|
|
Keeping performance results in a separate Git branch using `git checkout --orphan`
-
www.safjan.com
-
7 months ago
-
eng
Learn how to use git checkout --orphan to create a separate Git branch with no history, ideal for storing performance results or other generated content independently from your codebase. Discover the process and benefits of using orphan branches, including an example GitHub Actions workflow for publishing test results.
|
|
Evolution of Type Hints in Python — From Comments to Inline Typing and Beyond
-
www.safjan.com
-
7 months ago
-
eng
Learn about the evolution of type hints in Python, from initial comments to modern inline typing and key features introduced in each major version, enabling powerful static type checking with tools like mypy and pyright.
|
|
Keeping performance results in a separate Git branch using `git checkout --orphan`
-
www.safjan.com
-
7 months ago
-
eng
Learn how to use git checkout --orphan to create a separate Git branch with no history, ideal for storing performance results or other generated content independently from your codebase. Discover the process and benefits of using orphan branches, including an example GitHub Actions workflow for publishing test results.
|
|
Introducing the set of standards that Geomys maintainers strive to uphold in our professional activity as open source maintainers.
|
|
RavenDB Ltd (formerly Hibernating Rhinos) has been around for quite some time!In its current form, we've been building the RavenDB database for over 15 years now.In late 2010, we officially moved into our first real offices. Our first place was a small second-story office space deep in the industrial section, a bit out of the way, but it served us incredibly well until we grew and needed more space.Then we grew again, and again, and again..
|
|
事象:メルカリのアプリを開いたら突然ログアウトされて、アプリ内でログインしようとしてもログインができない。パスワードが違うとか、そういうのはない。 対処方法:サファリでメルカリのブラウザー版(jp.mercari.com)を開いて、ログインする。ログインできる場合、今度はアプリを開いて、ログインボタンを押す。〇〇でログインされています、のようなメッセージが表示されているはず。パスワードを入れなくてもボタンを押すだけでログインができるはず。 効果がなかった対処方法:メルカリのアプリを削除して再度インストールしたりもしたが、効果がなかったので関係がないと思います。上の対処方法だけで良いはず。 もしかしたらやや古いiPhoneでしか発生しないかもしれません。最新のiOSは17だけど、iPhone 8とかはiOS 16までです。 PS 筆者はiPhoneユーザではありません。
|