En
All English articles are marked under this category
-
QB64: basic Revenge
Jun 27, 2020 · 1 min read ·
Quick Basic64 is a QBasic compatible programming language actively mantained.

It produce C-compiled code and works under Linux and MacOS too. It resemble the original QBasic IDE, and supports its dialect.
If you have some old qbasic code to "update", QB64 is your best friend:Give it a try!
Read More -
Java 15 will remove Solaris Support. This with the removal of Java Applet in JDK 9 is the final end of another Java mutation process cycle.
I mean, Java 1.0 is dead as we know it. Vector, Applet and the Solaris-only version are all dead. Template was a “too complex feature”.
Read More -
With t3a.nano instance you got 512MB at a very reasonable price per month (around $5 / 4.5€ for an on-demand instance). It should be enough for running a micro wordpress blog with docker, but sometime it is not. A pair of docker containers can eat up all the memory and your little box will be unable to launch docker-compose shutdown commands with out of memory error all way around. But we are here to solve the issue, and get the best bang for your bucks :)
Read More -
Docker was born for the cloud. It is the easiest way to run different software in a tiny box, installing it in a rapid way and with a nice way to wipe it in a snap. But when docker shines are the little docker compose files, which realize the Infrastructure as Code, a configuration file which declare in an easy and simple way how services are connected.
Read More -
runif
May 28, 2020 · 2 min read ·
Idempotent and minimal python 3 library for rapid scripting. Provide support for creating file, adding data to them, patching and so on.
Why?
(Ba)sh scripting is very easy to setup. So we end up using it all the time for simple procedural script.
Read More -
I am happy to announce pyc64 now supports save and load programs on top of real emulation. Irmen point me to the right code to look, and I implemented the fix in the weekend; happy hacking!
-
In 1985, all my work started with a VIC-20 with 5Kb of RAM, and only 3583 bytes free for the BASIC. With 3 more kilobytes, VIC-20 would be able to unveil its more versatile graphic capabilities, but we have no luck. In 1995 I got a 8 MegaBytes computer with 512MB hard disk as workstation for my University Exams. I was a lucky boy, and that PC helped me to graduate up to 2000.
Read More -
Hosting your own email server is not a mandatory task; it increase your attack surface too. But relaying too much on big emails provider (Gmail, Outlook, Aruba, Fastmail) could be a risk for our democracy. For instance, who decide how Spam is managed (i.e. what could be a Spam email)? Can we trust big providers? Email has legal value, and its content should stay as much as private as possible.

Read More -
JDK 1.11 is the next LTS (Long Term Support) Release.
A lot of Enterprise Customers are still with JDK 1.8, but nowadays you need to provide migration path to JDK 1.11 (or to JDK 1.14 LTS).
JDK11 will be supported by Amazon Corretto at least up to 2024, so it seems a good candidate for a migration target. Maven is highly recommended as build system, so we will focus on this use case.
Read More -
The project has been renamed into “runif”. This page left only for Google Search happiness.
Pybash is a python library to make python script as easy as in Bourne Again Shell (Bash).
Bash scripting is very easy to setup. So we end up using it all the time for simple procedural script.
Read More -
How to monitor MySQL / MariaDB query progressThe progress indicator of MySQL or MariaDB long-running commands and queries is extremely extremely and frustratingly coarse. In an index update I’m running now it was stuck in the same state for more than three hours. Thankfully, the pmonitor tool allows us to precisely monitor the progress of many commands. Here’s an example of its application on MariaDB.
Source: blog dds: 2019.11.03 - How to monitor MySQL / MariaDB query progress -
It is already history, and you can read my review there.
But if you like to try it yourself, you can order the C/64 Replica below. PS: if you wait some time, I predict it will ha a sale price of 40% of more, in a couple of months…versus the current 104€ retail price.
-
Alexa EaSy :-)
Alexa Easy free you from your daunting social tasks. Let Alexa Easy take a pause (break up) with your partner or organize a funding event with guys you did not call in the last ten years, and regain credibility.
Personal life mixed up with job responsabilities? Let Alexa Easy fire your best friends, with a nice hug.
Read More -
Suppose you are developing a boring Jenkins pipline (like Jenkinsfile-s) with no time at all.
You are forced to commit and then run the jenkins pipeline. Jenkins download the code from your LOCAL repository.
To avoid commit& push roundtrip you are using the simple git daemon command to expose your local repository to jenkins. So jenkins see every commit you has just done.
And you end up doing a lot of commits, full of trial and errors: you would like to “squash” them before pushing your work to your remote repository, to avoid co-worker laugh your wasted time(!)
Git can do that, but I have an hard time to find the easier way of doing it, even reading git books!
So let me explain to you:
Read More