One Two Bytes
banner
onetwobytes.bsky.social
One Two Bytes
@onetwobytes.bsky.social
Roaming the software world. A smorgasbord of topics I come across while writing software.

https://www.onetwobytes.com
Now working on reading news feeds from websites #buildinpublic #software-dev
May 2, 2025 at 2:46 PM
Added a reader mode to the agent webloader, showing good results in extracting meaningful content from cluttered websites #buildinpublic #software-dev
May 2, 2025 at 2:45 PM
Reposted by One Two Bytes
Problem 2: Big context windows ≠ smarter

LLMs often drew incorrect conclusions or overlooked details when parsing the entire HTML for the page.

We had to transform everything into simplified, structured formats like CSV with filtered columns.
April 17, 2025 at 2:07 PM
Wrote a OneTenAgent. Example: one_ten_agent.run("On a scale from 1 to 10, how interesting would this post be for Swimmers?") and it returns the number. Works surprisingly well
github.com/tm243/agent-...

#PythonDev #SoftwareDev
April 13, 2025 at 9:10 AM
Reposted by One Two Bytes
I think I'm gonna have a go at doing an animated version of this old client concept work, I wanna see those capes billowing and cannons popping! #pixelart #gamedev
April 7, 2025 at 5:53 PM
it's possible to run a small LLM like Gemma3 4b using Ollama in a basic CircleCI pipeline #Dev #PythonDev #LLM
How to run Ollama in CircleCI
It's possible to run an LLM like Gemma3 4b using Ollama in a basic CircleCI pipeline, which allows you to integrate lightweight AI capabilities, such as semantic unittests or simple agents, into your CI/CD workflows.
onetwobytes.com
April 2, 2025 at 5:36 AM
Looks like Telia is down, website, mobile, internet
April 1, 2025 at 6:56 AM
Reposted by One Two Bytes
I also think one of the most powerful forms of radicalization is educating as many people as possible about mechanics - financial, systemic and technological - behind the tech industry. Their entire success has been based on obfuscating their work as too big or complex for "normal" people to "get."
March 27, 2025 at 3:55 PM
Reposted by One Two Bytes
Pluses of using LLMs in coding:
- Quickly showcase prototypes and get instant client feedback.

Minuses of using LLMs in coding:
- Explaining to clients that prototypes still require proper development before production.
March 27, 2025 at 4:56 PM
Ollama Docker image with Gemma3:4b works well on CircleCI’s free plan. #dev #PythonDev #LLM
March 27, 2025 at 3:50 PM
Typescript 7 compiler will be written in Go devblogs.microsoft.com/typescript/t...
March 21, 2025 at 8:24 PM
Just wrote about how traditional unit tests struggle with slightly changing text and using semantic assertions to test meaning instead - practical for LLM output. #unittest #LLM #PythonDev #Development #GameDev
Semantic Unittests
Traditional unit tests struggle with AI-generated text that varies slightly each time. Semantic unit testing solves this by comparing meaning rather than exact wording, making it ideal for validating AI outputs like classification, summarization, and text moderation.
onetwobytes.com
March 19, 2025 at 2:36 PM
Reposted by One Two Bytes
AI Language Model Breakthrough: New Method Enables Self-Correcting Text Generation https://replug.link/d17cda91 #google #tecnologia #computerscience
AI Language Model Breakthrough: New Method Enables Self-Correcting Text Generation
AI Language Model Breakthrough: New Method Enables Self-Correcting Text Generation
replug.link
March 11, 2025 at 5:47 PM
Reposted by One Two Bytes
In 2024, Python surpassed JavaScript as the most popular programming language on GitHub for the first time.

#programming #coding #python #java #javascript #typescript #csharp #c++ #php #c #go #golang #shell #ruby #obj-c
March 11, 2025 at 4:47 AM
VS Code 1.98 Copilot Vision supposedly writes HTML/CSS based on a screenshot, has anyone tried that? #dev
March 7, 2025 at 6:46 AM
Gotta check how a TrapC program integrates with existing C and C++ codebases. #C #C++ #Programming #MemorySafety #Tech
March 5, 2025 at 5:13 AM
reading the source code of Command & Conquer Tiberian Dawn today ☺️ #OpenSource #GameDev #RetroGaming #CodeAsLiterature #DigitalArchaeology
March 4, 2025 at 9:25 AM
Working with Copilot

Just something I wanted to share: Me: when working with Copilot, many things get easier, but the core problems remain the same and fixing hairy problems such as concurrency issues and the like, or test edge cases etc are still manual work. It helps mainly with boilerplate…
Working with Copilot
Just something I wanted to share: Me: when working with Copilot, many things get easier, but the core problems remain the same and fixing hairy problems such as concurrency issues and the like, or test edge cases etc are still manual work. It helps mainly with boilerplate code, which aren't difficult to write anyway, but it saves time ChatGPT said:
onetwobytes.com
March 2, 2025 at 3:31 PM
Reposted by One Two Bytes
Vertical AI agents are transforming the AI industry

Here’s what you need to learn to put yourself out there.

• Understand Autonomous Agents
• Master Goal-Driven Behavior
• Explore Multi-Agent Systems
• Learn Reinforcement Learning Basics
• Hands-On Practice
February 21, 2025 at 2:45 PM
NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the ‘ssl’ module is compiled with ‘LibreSSL 2.8.3’.

site-packages/urllib3/__init__.py:34: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: Turns out…
NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the ‘ssl’ module is compiled with ‘LibreSSL 2.8.3’.
site-packages/urllib3/__init__.py:34: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: Turns out that urllib3 version 2 wants OpenSSL to work properly. The earlier versions of urllib3 version 2 even stopped entirely, the later ones throw this warning. But my current ssl module appears to be LibreSSL. The idea is to install an…
onetwobytes.com
February 9, 2025 at 8:42 AM
How to install the yaml package for Python?

I want to read the config for my backend from a yaml file and when installing the yaml package I am getting the following error: pip install yaml Looking in indexes: ERROR: Could not find a version that satisfies the requirement yaml (from versions:…
How to install the yaml package for Python?
I want to read the config for my backend from a yaml file and when installing the yaml package I am getting the following error: pip install yaml Looking in indexes: ERROR: Could not find a version that satisfies the requirement yaml (from versions: none) ERROR: No matching distribution found for yaml Quick Answer pip install pyyaml More Details…
onetwobytes.com
February 7, 2025 at 11:38 AM
How to Install and Use Salesforce’s CodeGen LLM

CodeGen is an AI (LLM) from Salesforce that can generate source code, as well as describe what a piece of code does. It comes under the Apache license and has a good performance while being lightweight enough to run on a laptop for both inference and…
How to Install and Use Salesforce’s CodeGen LLM
CodeGen is an AI (LLM) from Salesforce that can generate source code, as well as describe what a piece of code does. It comes under the Apache license and has a good performance while being lightweight enough to run on a laptop for both inference and fine tuning. Here is how to set it up and how to use it. …
onetwobytes.com
February 5, 2025 at 7:41 AM
Python-Alpaca Dataset

A dataset of 22,600 verified Python code examples. Tested for functionality and sourced from top projects, it’s perfect for training AI models on reliable, clean code.
Python-Alpaca Dataset
A dataset of 22,600 verified Python code examples. Tested for functionality and sourced from top projects, it’s perfect for training AI models on reliable, clean code.
onetwobytes.wordpress.com
January 31, 2025 at 8:05 PM