<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<title>bobignou.red</title>
<author><name>Maxime Bouillot</name></author>
<id>https://bobignou.red/atom.xml</id>
<updated>2023-05-19T22:54:45</updated>
<dc:date>2023-05-19T22:54:45</dc:date>
<entry>
<id>https://bobignou.red/posts/Writing-Hello-world-from-scratch-Part-III.html</id>
<link href="https://bobignou.red/posts/Writing-Hello-world-from-scratch-Part-III.html"/>
<title>Writing Hello world from scratch Part III</title>
<updated>2023-05-19T22:54:45</updated>
<dc:date>2023-05-19T22:54:45</dc:date>
<summary type="html">In the [last post](Writing-Hello-world-from-scratch-Part-II.html), I connected a CPU to a UART to print "Hello, world over this serial link. Even if the endeavor is quite fun, it's not as impressive as writing it on a screen. To do so, we would need some sort of GPU.</summary>
</entry>
<entry>
<id>https://bobignou.red/posts/Writing-Hello-world-from-scratch-Part-II.html</id>
<link href="https://bobignou.red/posts/Writing-Hello-world-from-scratch-Part-II.html"/>
<title>Writing Hello world from scratch Part II</title>
<updated>2023-01-05T00:22:45</updated>
<dc:date>2023-01-05T00:22:45</dc:date>
<summary type="html">Designing the ISA and the simulator is fine and dandy but it does not beat running a custom CPU on real hardware. Unfortunately, I don't have tens of thousands of euros to make a custom chip. The best I can do is to run it on an FPGA. An FPGA is a chip with a lot of logic gates that can be wired together to make any logic circuit. And our CPU is a logic circuit.</summary>
</entry>
<entry>
<id>https://bobignou.red/posts/DevTerm-R-01-Review.html</id>
<link href="https://bobignou.red/posts/DevTerm-R-01-Review.html"/>
<title>DevTerm R-01 Review</title>
<updated>2022-10-18T11:49:04</updated>
<dc:date>2022-10-18T11:49:04</dc:date>
<summary type="html">I have been interested in RISC-V for a while. I played a bit with RISC-V cores on FPGA but it is quite hard to find RISC-V cores on general-purpose computers.  Fortunately, the company ClockworkPi is making the [DevTerm R-01](https://www.clockworkpi.com/product-page/devterm-kit-r01), a handheld computer with a RISC-V processor. The DevTerm R1 is a handheld computer featuring an RV64IMAFDCVU</summary>
</entry>
<entry>
<id>https://bobignou.red/posts/G-forces-at-Disneyland-Paris.html</id>
<link href="https://bobignou.red/posts/G-forces-at-Disneyland-Paris.html"/>
<title>G-forces at Disneyland Paris</title>
<updated>2022-05-20T13:57:55</updated>
<dc:date>2022-05-20T13:57:55</dc:date>
<summary type="html">The last time I went to Disneyland Paris, I used my smartphone to record the G-forces during some rides. I used an app called Physics Toolbox Accelerometer to record the acceleration to CSV files. Then, I made a small Python script to filter the data and plot it.</summary>
</entry>
<entry>
<id>https://bobignou.red/posts/Writing-Hello-world-from-scratch-Part-I.html</id>
<link href="https://bobignou.red/posts/Writing-Hello-world-from-scratch-Part-I.html"/>
<title>Writing Hello world from scratch Part I</title>
<updated>2022-05-06T19:13:13</updated>
<dc:date>2022-05-06T19:13:13</dc:date>
<summary type="html"> “If you wish to make an apple pie from scratch, you must first invent the universe.”</summary>
</entry>
<entry>
<id>https://bobignou.red/posts/Making-a-Vim-plugin-with-Python.html</id>
<link href="https://bobignou.red/posts/Making-a-Vim-plugin-with-Python.html"/>
<title>Making a Vim plugin with Python</title>
<updated>2022-04-25T18:29:10</updated>
<dc:date>2022-04-25T18:29:10</dc:date>
<summary type="html">Vimscript is a well-designed language that is really tailored to extend Vim. Unfortunately, this language is not very powerful and quite clunky for general-purpose computing.</summary>
</entry>
<entry>
<id>https://bobignou.red/posts/SSH-services.html</id>
<link href="https://bobignou.red/posts/SSH-services.html"/>
<title>SSH services</title>
<updated>2022-02-02T08:56:44</updated>
<dc:date>2022-02-02T08:56:44</dc:date>
<summary type="html">SSH is a nice technology. Not only can it be used to securely access another computer, but it can be used for other encrypted communication. Indeed, running a custom-made SSH server can be a way to expose nice services to the outside world. I want to give here some examples.</summary>
</entry>
<entry>
<id>https://bobignou.red/posts/Gemini.html</id>
<link href="https://bobignou.red/posts/Gemini.html"/>
<title>Gemini</title>
<updated>2022-01-08T15:16:24</updated>
<dc:date>2022-01-08T15:16:24</dc:date>
<summary type="html">[Gemini](https://gemini.circumlunar.space/) is a nice alternative to the web. It is lighter than the web and very simple to host so I decided to host a copy of this blog as a Gemini server.</summary>
</entry>
<entry>
<id>https://bobignou.red/posts/Git-server.html</id>
<link href="https://bobignou.red/posts/Git-server.html"/>
<title>Git server</title>
<updated>2021-12-09T14:45:32</updated>
<dc:date>2021-12-09T14:45:32</dc:date>
<summary type="html">I recently found a very nice Git server named [Soft Serve](https://github.com/charmbracelet/soft-serve). This software offers both a git server to store repositories and a nice TUI front-end to list the stored repositories.</summary>
</entry>
<entry>
<id>https://bobignou.red/posts/Running-this-server.html</id>
<link href="https://bobignou.red/posts/Running-this-server.html"/>
<title>Running this server</title>
<updated>2021-11-18T09:20:27</updated>
<dc:date>2021-11-18T09:20:27</dc:date>
<summary type="html">Multiples tools and components are used in this server to make it run and accessible from the internet. I want to describe them here to help me reconfigure a similar server in the future if needed. It might also be useful to anyone searching to run a similar web server themselves.</summary>
</entry>
<entry>
<id>https://bobignou.red/posts/Prime-numbers.html</id>
<link href="https://bobignou.red/posts/Prime-numbers.html"/>
<title>Prime numbers</title>
<updated>2021-11-01T20:07:58</updated>
<dc:date>2021-11-01T20:07:58</dc:date>
<summary type="html">Algorithms made to find primes numbers are a good way to try out a new programming language. I include here some lists of numbers to compare the output of your programs.</summary>
</entry>
<entry>
<id>https://bobignou.red/posts/BouingBouing.html</id>
<link href="https://bobignou.red/posts/BouingBouing.html"/>
<title>BouingBouing</title>
<updated>2021-10-28T13:51:34</updated>
<dc:date>2021-10-28T13:51:34</dc:date>
<summary type="html">BouingBouing is a cute seal that loves to bounce on the ice caps.</summary>
</entry>
</feed>
