Simon Marache-Francisco

Memory access: sequential vs. random

  • 27/01/2015
  • POST
It is well known that accessing the memory in a non-sequential way is slower because it leads to a lot of cache miss. This micro-project was made to evaluate the difference in performance. An array of 10 000 000 elements (size_t) is created. It represents a typical data structure that you will access in your program. A random list of 1 000 000 offsets is generated. I compare the time used to fetch this million offset in a random order with the time used to fetch the same offsets, but in ascending (or descending) order.

Software rasterizer

  • 06/01/2015
  • POST
Edit: there is a more recent post on this project. The new version has more feature and is finally able to render any STL. This is the follow-up on a project I started on November 2010. The goal was to code a very simple rasterizer in c++. I used the framebuffer provided by the SDL library to perform the rendering. In other word, SDL only provide a canvas on which I “paint” the model, pixel by pixel.

Lost'n Phoned update

  • 27/11/2014
  • POST
There were several bugs still present in this app, mostly under the new versions of Android. I started a new project on Android, so I took some times to make this app more resilient to errors, and to do some extensive testing for KitKat. Screenshot of the application The application is available on the Play store, and the source code is on Github.

Fractals in the browser using WebGl

  • 27/10/2014
  • POST
Following my work on almost real-time fractals generation, I wanted to test OpenGL shaders. I have been really impressed with the results. You can render fractals in real-time on a full screen with an nvidia GTX 770. The shaders I have been using are probably not very optimized, but the results is great nevertheless. Access the demo Features: Julia fractal : You can change the values of c0 in the Julia function ( x’=x?

Fractal Maps

  • 31/08/2014
  • POST
I’m currently working on the second iteration of my fractal drawing software. The biggest problem of the original one (see here) was that you couldn’t move around like in google maps. The goal of this versions is to enable you to move around, and the software will generate pieces of the fractal on the fly. Since it is not feasible, even on high-end hardware to generate 1080p fractal pictures in vanilla C# in real-time, i’m implementing a somewhat efficient caching system.

Small JS Files

  • 31/08/2014
  • POST
I needed a robust counter for my work, but none of thoses I found were good enough. So I made mine ! The features list is small, and the interface is primitive, but it works. I needed mostly a way to get the exact time of every action, the time elapsed since the last action, since the beginning, and a spreadsheet-friendly output format. And because it is always useful, there’s a programmer-friendly integer format converter too.

Mozaic Creator

  • 22/03/2014
  • POST
This program will create a mosaic image made from thousands of thumbnails, close to a reference image : WARNING: This is a small hack I made in a few afternoon, the code quality is pretty bad. 😔 You will need to provide a directory with the thumbnails used to generate the final image. How to generate it is left as an exercice to the reader. Features Can handle more than 2000 small images.

Fractal Generator

  • 13/01/2014
  • POST
I made this small project in C# (winforms). The interface may be (and most certainly is) confusing, but the concepts are rather simple, as long as you know a little bit about the fractal image generation. Screenshot of FractalExplorer Some examples: How it works It generates fractals. I am going to talk bout the Julia set, but other fractals have been implemented. For Julia, C.real and C.Imag represents the parameter. This software will render the fractals using the CPU, with a bit of threading to make things run more smoothly (Parallel.

Android development

  • 29/08/2013
  • POST
I am currently working on four softwares, at various stage of completion: SleekTodo, a simple Todo manager. Already on the Play Store, Sources. Lost’n’Phoned : A tool to help find your lost phone. Published on the Play Store, Source. Game100 : A simple number game, not enough polish, even if it works quite well ! Source. Screenshot of SleekTODO Updates 29/08/2013: Github links added, major improvements on SleekTODO 27/08/2013: Lost’n’Phoned is published, working on Game100 and SleekTodo 24/07/2013: First version of this page

Linux tips and tricks

  • 13/01/2013
  • POST
This post list a few tips that I discovered when I started working back in 2013. I have improved my knowledge a great deal over the last years but the informations there can still be useful. Bash (any) Use a default value if the variable is unset or null (see more on parameter expansion): echo "${TEST:-default}" Transfer the parameters to a command: test.sh: my_function "$@" test.sh "this has spaces" 25 => my_function will correctly receive 2 parameters: "this has spaces" and 25.
Prev Next
LATESTS
The small migration
  • 20/03/2025
  • POST
Wiki of Babel. Experimenting with an infinite Wikipedia
  • 30/10/2024
  • POST
Experiments with Retrieval-Augmented Generation (RAG or AI Search)
  • 03/07/2024
  • POST
What I Have Been Up To
  • 01/05/2024
  • POST
Automated French translation of the Lewis and Clark expedition journals using ChatGPT4 Turbo
  • 26/12/2023
  • POST
Traduction automatique du journal de Lewis et Clark à l'aide de ChatGPT4 Turbo
  • 26/12/2023
  • POST
Migrating my infra to Github Action
  • 10/06/2023
  • POST
A new project: Immediate mode UI in rust
  • 22/05/2023
  • POST
Hype cycle in tech
  • 20/05/2023
  • POST
X As a Service
  • 20/10/2021
  • POST

© Simon Marache-Francisco

Powered by Hugo.

Robust designed by Daisuke Tsuji.