Posts

Creating and adding to Linux file manager a right-click action using nemo_action

When using the file manager I like files to be sorted by date descending. Hence seeing the newest files and directories first on top and the ones I recently updated. The problem is when you have nested directories and you update a file in a sub directory. For example, consider this directory structure: - flights    +- Athens 2026-01          +- Hotels If I add or update something in the "Hotels" directory, the "Athens 2026-01" directory does not pop up because I updated a sub-dir. For this, I like the command " touch " in Linux. Touch allows me to change the timestamp of a file or a directory (and also creates new files and more). I wanted to add the option inside the GUI of Linux file manager to right-click and "touch" a directory or a file. I used nemo_actions (nemo actions) option to do so. Step 1: Open the Actions Directory Nemo looks for custom actions in a specific hidden folder.  Open your file manager (Nemo). Press Ctrl + H to show hidden...

My Tiny Spreadsheet Extension - A spreadsheet that lives in your browser

Image
Download now   The problem You need a simple fast spreadsheet  Google Sheet is clutters up Excel files are lost Google Sheets are saved on the cloud You need an account to use Google Sheet  The solution: My Tiny Spreadsheet Extension A small spreadsheet inside your browser Data is saved locally It's fast It's good for smart note taking   Install Extension   https://freesheet.io  

GeekCon 2025 - Building an Arcade Machine (rhythm machine)

Image
GeekCon is by far the best conference I have ever participated in. If you are not that familiar about GeekCon , so shortly, once every year, around September we gather from all around Israel and outside of it, a bunch of heavy geeks, makers, developers, scientists and crazy technology savvy people to build crazy projects, non profit for a full weekend. Learn more . Some examples from this year 2025, a robotic Lama that follows you and spit on you, a huge keyboard and a missile defense system that throws chairs on missiles, and more ... This year, I went to GeekCon with my son and from his choosing we have decided to build an arcade machine, with a rhythm game. You need to press the buttons by the rhythm   The spec was like this: Writing the game (rhythm machine game) in Python Running the game on a Raspberry Pi  (Version 5) Connecting the buttons and reading the buttons state on the RaspberryPi Using the buttons in the game Building the arcade box itself (+printing butto...

Setting program_name in mysql session_connect_attrs allows you to see the name of the program connected

I am using mysql for quite some time now. I have noticed that looking at client connections using mysql workbench so an interesting column called "Program". I can see that the program column indicate "MySQL Workbench":  This column can be very useful and help to filter different mysql database connections. It took me a while to understand how to set up this column data. So first thing I needed to do is understand where is this column name is actually coming from. I inspected the "SHOW FULL PROCESSLIST" command by mysql - but I did not get any answer there. I then looked at the query the mysql workbench itself running to get this data "Program" column: Using the "show details" button in the "client connections" view, show me this: Copying the query, it looks like that: SELECT t.PROCESSLIST_ID,IF (NAME = 'thread/sql/event_scheduler','event_scheduler',t.PROCESSLIST_USER) PROCESSLIST_USER, t.PROCESSLIST_HOST, ...