# jupyter notebook (blogs) — RSS Amplifier

Recent posts from the 22 feeds in the RSS Amplifier directory that cover jupyter notebook.

Page: <https://rssamplifier.com/topics/jupyter-notebook/blogs>  
Feed: <https://rssamplifier.com/topics/jupyter-notebook/blogs.md>

---

## [The Quantum Mechanics of Discrete Optimization I](https://iagoleal.com/posts/quantum-optimization/)

_2026-08-09 · Iago Leal de Freitas · Iago's Blog_

How to reformulate a classical discrete unconstrained optimization model into a quantum mechanical system.

## [Token Balancing](https://rachitsingh.com/reading/token-balancing/)

_2026-07-23 · Unknown · Rachit Singh_

Mixture of Experts (MoEs) are very popular. They've been popular for a long time, but I'm currently catching up, so there's a lot of new things here for me. I think we generally all understand why imbalanced experts are bad; both from a learning perspective (experts don't improve if they don't get enough gradients) and a performance perspective (unbalanced routing means many GPUs idle). Recently I…

## [Emacs Security Profiles: A Proposal](https://juanjose.garciaripoll.com/blog/emacs-security-model/index.html)

_2026-05-24 · Juanjo García-Ripoll's blog_

## [25 Years of Attending Python Conferences](https://droettboom.com/blog/2026/05/10/25-years-of-attending-python-conferences/)

_2026-05-10 · Michael Droettboom · Boom! Michael Droettboom's blog_

Reflections on 25 years of Python conferences

## [Training MoEs - efficiency](https://rachitsingh.com/reading/training-moes-efficiency/)

_2026-05-02 · Unknown · Rachit Singh_

$$ \\newcommand{\\on}\[1\]{\\operatorname{#1}} \\newcommand{\\dmodel}{d\_{\\on{model}}} \\newcommand{\\dexpert}{d\_{\\on{expert}}} $$ MoEs are a new major paradigm for scaling models upwards without necessarily increasing compute costs, and they seem to work quite well. There's a lot of interesting work here, but this blog post focuses on recent work on increasing efficiency of MoE kernels. I'm mostly writng…

## [Encrypted Void Linux Installation Booting From EFI Stub](https://iagoleal.com/posts/void-install/)

_2026-04-30 · Iago Leal de Freitas · Iago's Blog_

How to install Void Linux with LVM over LUKS for full-disk encryption, boot directly from kernel EFI Stub, hibernation, and per-user encryption.

## [About](https://rachitsingh.com/about/)

_2026-04-24 · Unknown · Rachit Singh_

Hi, I'm Rachit. I model energy systems (generation, transmission, and loads) using machine learning, and like to write in my spare time. I previously spent time at Stripe , Jane Street , DE Shaw , HRT and in the Harvard NLP group . In college, I trained some LSTMs in Lua torch(7) , and spent some time thinking about statistical inference . Afterwards, I worked as a quant and programmer at DE Shaw.…

## [Applied research failure modes](https://rachitsingh.com/applied-research/)

_2026-04-22 · Unknown · Rachit Singh_

Applied research teams slow down not because they lack good ideas but because of simpler issues: unclear metrics, confusing experiment design, poor iteration loops, and vague takeaways. I've been working on applied research 1 in some form for my entire career so far. These are notes for early-career quants, ML researchers, and other applied computer scientists trying to improve their research…

## [Learning in low precision](https://rachitsingh.com/reading/learning-in-low-precision/)

_2026-04-21 · Unknown · Rachit Singh_

$\\newcommand{\\on}\[1\]{\\operatorname{#1}}$ I think I should be writing down some of the things I learn a little more frequently, so I'll try with a small note here. I read this paper recently: Training LLMs with MXFP4 . MXFP4 is a 4-bit OCP low precision format most well known for use in OpenAI's gpt-oss models. It uses an E2M1 layout (1 sign, 2 exponent, 1 mantissa bit) for the main data, with an…

## [Encrypting an external device with LUKS](https://iagoleal.com/posts/usb-crypt/)

_2026-04-13 · Iago Leal de Freitas · Iago's Blog_

A tutorial on how to wipe, encrypt, auto mount, and decrypt an external usd drive on linux.

## [Home Internet From Space (Sponsored)](https://crawlproof.com/a/4v6skK9WFuDr)

_2026-04-12 · **Sponsored**_

Residential satellite internet that brings connectivity to homes beyond conventional networks

## [🤖 SO-101 Nexus](https://johnsutor.com/projects/so101-nexus/)

_2026-03-22 · John Sutor_

An open-source toolkit for training and deploying learned policies on the SO-100/SO-101 robotic arms.

## [Your Favorite Problem as an Ising Model](https://iagoleal.com/posts/ising-qubo-milp/)

_2026-01-29 · Iago Leal de Freitas · Iago's Blog_

Quantum Computers are advancing and one should know how to fit classical problems into them.

## [Are spammers using your SaaS product as an attack vector?](https://tedspence.com/are-spammers-using-your-saas-product-as-an-attack-vector-b6cbdb196d77?source=rss----a64ade8b16ac---4)

_2025-11-22 · Ted Spence · tedspence.com - Medium_

Preventing invitee vector attacks, a type of vulnerability easily overlooked Your SaaS product is popular and thousands of people sign up for a new account or a trial every day. The daily dashboards show perpetual growth, and nearly all of these new accounts are legitimate. But what about the few that aren’t? I’d like to talk today about a threat that may be hiding underneath your radar: attackers…

## [API design: The problems with PUT and PATCH](https://tedspence.com/api-design-the-problem-with-updates-86abc0f5c552?source=rss----a64ade8b16ac---4)

_2025-11-02 · Ted Spence · tedspence.com - Medium_

Can we solve the usability problems of the humble update API? At its heart an API must solve five core problems, affectionately known as CRUD plus querying. Your API allows developers to create, retrieve, update, and delete information — queries being a special type of retrieve action. Compared to the complexity of queries, the main CRUD methods are often considered trivial. Are they, though? For…

## [Can professional engineers teach?](https://tedspence.com/after-thirty-years-could-i-teach-241400778122?source=rss----a64ade8b16ac---4)

_2025-11-02 · Ted Spence · tedspence.com - Medium_

Learning from a successful career in engineering and helping the next generation I began lecturing at Bellevue College a few months prior to the spread of COVID-19. I had always been an autodidact myself, hacking together code in many languages as I bounced from job to job. But over time I gained a deeper appreciation for teaching , and I hoped to do it justice. I had been fortunate to get my…

## [Unit tests for DotNet database projects](https://tedspence.com/unit-tests-for-dotnet-database-projects-68181e1d66f5?source=rss----a64ade8b16ac---4)

_2025-11-02 · Ted Spence · tedspence.com - Medium_

Unit Tests For DotNet Database Projects Make your program testable even if it depends on an underlying data store I recently wrote about Searchlight , a DotNet API domain specific language for REST API queries . This package is available on NuGet and it’s used in a couple of high profile APIs. Since I care deeply about the quality and stability of this query language, I always try to improve my…

## [Bias towards action](https://tedspence.com/bias-towards-action-a6a865d388a1?source=rss----a64ade8b16ac---4)

_2025-11-02 · Ted Spence · tedspence.com - Medium_

You can write software as part of a team without creating roadblocks for yourself A famous proverb goes something like this: “If you want to go fast, go alone; if you want to go far, go with others.” As software developers, we know that it takes effort to work with other people. Even your closest friends and colleagues don’t automatically know the same things you do, and it takes time to explain…

## [Data analysis in Google Colab with MongoDB](https://tedspence.com/data-analysis-in-google-colab-with-mongodb-aa1039979397?source=rss----a64ade8b16ac---4)

_2025-11-02 · Ted Spence · tedspence.com - Medium_

Let’s review common problems faced by students using the Colab platform In early 2025 I chose to update my course curriculum to use Google Colab instead of my former platform of Jupyter, Visual Studio Code, and Python . I expect students to hit problems and to learn how to overcome them; but the issues we faced with locally installed software were becoming less and less valuable every year. For a…

## [Unix File Permissions: A Comprehensive Technical Overview](https://vhald.hashnode.dev/unix-file-permissions-a-comprehensive-technical-overview)

_2025-10-23 · Vaibhav Haldia · vhald's blog_

Permissions in Unix are an integral part of the operating system. You can see the details of all files in the current directory by using options -l and -a combinedly with ls command: ls -al Every file has an owner (also referred to as the user), a g...

## [Software Testing Types: Technical Reference](https://vhald.hashnode.dev/software-testing-types-technical-reference)

_2025-10-07 · Vaibhav Haldia · vhald's blog_

Evaluation Framework Every test type answers three questions: What does it test? When is it executed? What does failure indicate? Unit Tests AspectDescription TestsIndividual functions/methods in isolation ScopeSingle atomic unit with no e...

## [Hire AI-Powered Professionals (Sponsored)](https://crawlproof.com/a/C2wN1rvIVppq)

_2025-10-07 · **Sponsored**_

Browse public gigs, message candidates, and run video interviews — free to start.

## [Why Reactive Programming Hasn't Taken Off in Python (And How Signals Can Change That)](https://bui.app/why-reactive-programming-hasnt-taken-off-in-python-and-how-signals-can-change-that/)

_2025-10-05 · Tuan Anh Bui · bui.app_

TL;DR: Reactive programming offers significant benefits for Python applications - it reduces bugs, simplifies complexity, and improves maintainability. Yet most Python developers avoid it. The problem isn&apos;t reactive programming itself, it&apos;s how we&apos;ve been doing it. Python&apos;s reaktiv makes reactive programming

## [Monoids Let You Run Automata in Parallel](https://iagoleal.com/posts/automata-monoids/)

_2025-09-24 · Iago Leal de Freitas · Iago's Blog_

Finite automata are awesome but inherently sequential. On the other hand, finite monoid machines solve the same problems while being amenable to parallel execution.

## [Essential Jupyter Notebook Shortcuts for Faster Workflow](https://vhald.hashnode.dev/essential-jupyter-notebook-shortcuts-for-faster-workflow)

_2025-09-13 · Vaibhav Haldia · vhald's blog_

Here are the most frequently used Jupyter shortcuts organized by importance: 🔥 ESSENTIAL (Daily Use) Command ModeShortcutEdit ModeShortcut Run cell, select belowShift + EnterRun cell, select belowShift + Enter Run selected cellsCtrl + EnterR...

## [The Death of Arc](https://butterwith.space/blog/the-death-of-arc)

_2025-07-25 · Tom Butterwith_

Reflections on switching from the Arc browser back to Firefox: speed improvements, vertical tabs, and the trade-offs in features and workflow.

## [🇩🇪 German Language Mastery Timeline](https://vhald.hashnode.dev/german-language-mastery-timeline)

_2025-07-24 · Vaibhav Haldia · vhald's blog_

Systematic 6-Month Journey to A1/B2 Proficiency Learning Architecture Overview Foundation Phase (A1/A2) - 2.5 Months Intermediate Phase (B1/B2) - 3.5 Months Foundation Phase: A1/A2 Mastery 2.5 MonthsMonth 1: Core Foundation\*\*Month 2: Grammar Exp...

## [All Knowing AI](https://butterwith.space/blog/all-knowing-ai)

_2025-07-24 · Tom Butterwith_

The hidden costs of AI tools: privacy concerns, trust issues, and the potential for data breaches in an era of hasty software development.

## [Math Symbols Explained with Python](https://vhald.hashnode.dev/math-symbols-explained-with-python)

_2025-07-23 · Vaibhav Haldia · vhald's blog_

When working with Machine Learning projects, you will come across a wide variety of equations that you need to implement in code. Mathematical notations capture a concept so eloquently but unfamiliarity with them makes them obscure. In this post, I’l...

## [Claude Code to (my) exhaustion: a DP worklog](https://rachitsingh.com/claude-code/)

_2025-07-22 · Unknown · Rachit Singh_

Recently at work I had a side quest on the following task: choose a binning scheme for some 1-dimensional data that has an annoying distribution. Quantile binning wasn't great (at the sparse tails it produces very wide bins, and in the center very tiny ones), and equal width was also out. Basically I wanted to be able to specify a number of bins ( n\_bins ) and get some "reasonable" bin edges out.…

## [How to think about LLMs for OSS development](https://droettboom.com/blog/2025/07/13/how-to-think-about-llms-for-oss-development/)

_2025-07-13 · Michael Droettboom · Boom! Michael Droettboom's blog_

A talk I gave at PyCon Colombia 2025

## [New Mac setup script](https://rachitsingh.com/notes/new-mac-setup-script/)

_2025-07-07 · Unknown · Rachit Singh_

One of the best things about LLMs is that the cost of writing bash or zsh has gone to 0. Here's a way to get started on a new Mac by setting up uv then using it to drive a bunch of macOS automation: #!/usr/bin/env zsh set -euo pipefail # 0. Install uv if missing if ! command -v uv \> /dev/null ; then echo " → Installing uv… " curl -LsSf https://astral.sh/uv/install.sh | sh export PATH = " $HOME…

## [PixelRift — Platforming with Level Editor (Sponsored)](https://crawlproof.com/a/GTW4p6dp7hhz)

_2025-07-06 · **Sponsored**_

Includes a built-in level editor, campaign with elemental heroes, and boss encounters.

## [Optimization Passes for Your Repo](https://wkaisertexas.github.io/blog/custom-optimization-passes/)

_2025-06-26 · William Kaiser's Portfolio_

In the age of LLMs, standardized repos for your codebases can really affect performance. Luckily, ChatGPT can one-shot generating these which is why the code is not provided.

## [Finally! A proper Python library for MKS servo controllers with CAN](https://ricardodeazambuja.com/hardware/2025/06/21/mks-servo-can-python/)

_2025-06-21 · Ricardo's Place_

If you’ve ever tried to control MKS SERVO42D or SERVO57D stepper motor controllers from Python, you know the pain. These controllers transform regular stepper motors into servo-like systems with closed-loop feedback, position control, and CAN communication. They’re affordable and capable, but the lack of a proper Python library meant you were stuck writing raw CAN commands or wrestling with…

## [The Missing Manual for Signals: State Management for Python Developers](https://bui.app/the-missing-manual-for-signals-state-management-for-python-developers/)

_2025-06-13 · Tuan Anh Bui · bui.app_

A practical guide to reactive state management with Signals in Python For All Signals Developers : While this manual uses Python examples, the concepts apply universally to Signals in Angular, SolidJS, Vue, and beyond. Unlike most tutorials that focus on UI rendering, this explores the fundamental mental models of reactive state

## [Breaking down my personal development setup](https://wkaisertexas.github.io/blog/personal-development-setup/)

_2025-06-02 · William Kaiser's Portfolio_

Go-to references for configurations and custom-build tools. Includes tools for copy-pasting context into large language models. Largely published so I can quickly graph this stuff on my work computer!

## [Arithmancia Automatorum](https://iagoleal.com/posts/automata-divisibility/)

_2025-05-23 · Iago Leal de Freitas · Iago's Blog_

Did you know that Finite Automata can recognize divisibility? To find one such automaton, the procedure is simple but constructing the minimal one requires a lot of modular arithmetic.

## [🚫 Say no to vibe-coding — be the Manager of AIs instead 🤖](https://ricardodeazambuja.com/ai/2025/05/19/ai-management/)

_2025-05-19 · Ricardo's Place_

I’m convinced that AI tools will soon dominate most engineering workflows, not by replacing engineers, but by becoming the tool we all need to master. Like any tool, you don’t get good at it just by reading about it. You practice! So I set myself a new challenge: How far could I go in a single day(ish), using only an LLM, to build something I actually needed? 🛠️ The result: ✅ A complete library…

## [Finite Automata as Quantum Tensor Networks](https://iagoleal.com/posts/automata-tensor-networks/)

_2025-05-14 · Iago Leal de Freitas · Iago's Blog_

Finite automata accept a description using linear algebra that we can translate into a system of tensors or quantum circuits. These provide examples of quantum systems only requiring a polynomial amount of information to represent and simulate classicaly.

## [Adding Reactivity to Jupyter Notebooks with reaktiv](https://bui.app/adding-reactivity-to-jupyter-notebooks-with-reaktiv/)

_2025-05-03 · Tuan Anh Bui · bui.app_

Have you ever been frustrated when using Jupyter notebooks because you had to manually re-run cells after changing a variable? Or wished your data visualizations would automatically update when parameters change? While specialized platforms like Marimo offer reactive notebooks, you don&apos;t need to leave the Jupyter ecosystem to

## [When Frontend Reactivity Meets Backend Python: The Story of My First 1,000-Download Library](https://bui.app/when-frontend-reactivity-meets-backend-python-the-story-of-my-first-1-000-download-library/)

_2025-04-29 · Tuan Anh Bui · bui.app_

After years of building software for others, I decided to scratch my own itch and create something for the wider developer community. Today, I&apos;m humbled to share that reaktiv , my first serious open source library, recently crossed 100 stars on GitHub and reached over 1,000 pip installs

## [ROS 2 C++ Code Coverage](https://wkaisertexas.github.io/blog/ros-code-coverage-with-clang/)

_2025-04-23 · William Kaiser's Portfolio_

Instructions on setting up C++ code coverage using ROS, colcon and clang based on my experience on Cavalier Autonomous Racing. A problem with a surprisingly simple setup, but took many iterations to get right.

## [New Barcode Generator and Scanner](https://ricardodeazambuja.com/web/2025/04/19/barcodetool/)

_2025-04-19 · Ricardo's Place_

This webside already has an Advanced QR code Generator , but as the name says, it only generates QR codes. The nice thing about QR codes is that anyone can read them directly from the smartphone camera app (at least modern ones). However, there are other codes that you need to install an app only for reading them. I’m not a big fan of installing “yet-another-phone-app”, so I decided to fix this…

## [Running Jupyter Notebooks from a Supercomputer](https://iagoleal.com/posts/jupyter-hpc/)

_2025-04-06 · Iago Leal de Freitas · Iago's Blog_

A simple ssh workflow for interacting with Jupyter notebooks from your browser while using an HPC supercomputer’s resources.

## [Running Ignition Gazebo Ionic on Google Colab](https://ricardodeazambuja.com/robotics/2025/03/15/ignition-gazebo-google-colab/)

_2025-03-15 · Ricardo's Place_

Last week, I saw this post on LinkedIn where Carlos Argueta was showing some interesting robotics perception experiments that were running on Google Colab. I mentioned in the comments that I had, in the past, managed to run Gazebo on Google Colab. So, I decided to find that old notebook and here it’s:…

## [📝 Some GRPO Training Notes](https://johnsutor.com/blog/grpo-notes/)

_2025-03-03 · John Sutor_

Some basic notes for effectively training with GRPO.

## [Advanced QR Code Generator](https://ricardodeazambuja.com/web/2025/03/01/qrcode-on-your-browser/)

_2025-03-01 · Ricardo's Place_

I was testing some ideas at home and I needed to create a QR code. I searched online and found a few websites, but they were full of ads and I was not sure what they were doing with my data. So, I went to my “friend” Gemini and asked it for a single webpage QR code generator. After a few iterations, I got something quite interesting! https://ricardodeazambuja.com/qrcodegenerator/ Usage example of…

## [Block a method call in your DotNet project with Roslyn](https://tedspence.com/block-a-method-call-in-your-dotnet-project-with-roslyn-7692b1cbbd22?source=rss----a64ade8b16ac---4)

_2025-02-24 · Ted Spence · tedspence.com - Medium_

A quick and easy way to block function calls known to be unsafe I decided that I wanted to get rid of a synchronous function in my DotNet code and standardize on the async version. The obvious path forward is to right click on a function call in my GUI and select “Find Usages”, then work through each usage and replace it with the async version. But what if another developer on the team later goes…

## [Learning](https://rachitsingh.com/learning/)

_2025-02-12 · Unknown · Rachit Singh_

Gardner was so serious about this learning imperative, so determined that the message would get through, that he wrote the speech out in advance because he wanted “every sentence to hit its target.” What was his message? “We have to face the fact that most men and women out there in the world of work are more stale than they know, more bored than they would care to admit,” he said. “Boredom is the…

## [Software to make Macs friendlier to Windows people](https://rachitsingh.com/notes/windows-to-macos/)

_2025-01-21 · Unknown · Rachit Singh_

macOS has a few UX differences from Windows that can make it difficult to switch from Windows to macOS. Here's some tools and tricks to work around them: Remap keys You can change some default keybinds using the Settings app directly under Customize modifier keys (search for this in Settings). If you're more gung-ho, you can use hidutil (easier with this software tool to generate configs). You can…

## [Changing valve guides yourself](https://jmreiche.github.io/removing-valve-guides-yourself)

_2025-01-19 · Doing things_

This is the first time I have tried to change valve guides, so please take the following with that huge caveat. Initially I had not planned to renovate the cylinder head on my 1959 Triumph Bonneville. I knew the valve guides were shot and I even had a piece of carbon that has made a dent in the seat and valve on one of the exhaust ports. But as I was in for quite a lot of money on the bottom end…

## [Using PowerShell to make bulk changes to DotNet .csproj files](https://tedspence.com/using-powershell-to-make-bulk-changes-to-dotnet-csproj-files-053e85888849?source=rss----a64ade8b16ac---4)

_2025-01-10 · Ted Spence · tedspence.com - Medium_

Using PowerShell to make bulk changes to DotNet .csproj files Enforce your project configuration standards quickly using a simple script When working on a big DotNet team, it’s easy to create a library but forget to set a configuration property according to your team’s standards. Most people don’t spend a lot of time looking at their .csproj files! For today’s little project, let’s create a script…

