A software engineer's blog

About this Blog

Welcome to my blog! My name is Nikos and I am an engineer. In this blog I will post algorithms and software related stuff that I find interesting or I had a hard time to find online.

A software engineer's blog

Monday, October 3, 2022

Friday, September 9, 2022

Split String Algorithm for FreeBasic


I often use string expressions to pass data between web services, microcontrollers and desktop Applications and the Split algorithm is something I often use to parse them. Unfortunately, this algorithm is missing from the FreeBasic programming language, so I decided to publish my implementation of the Split string algorithm.Hope you find it useful ! /' Split Text Algorithm v2.1 for FreeBasic...

Wednesday, September 7, 2022

Tuesday, September 6, 2022

A performance comparison between various programming languages


The first programming language I ever write code was Microsoft's QBasic. After QBasic I moved to Visual Basic 6.0 and some Pascal and when I grew up and I had to work my life I wrote in C#, Java, ASP, ASP .NET, ActionScript and later PHP. The last decade I write in Java, PHP, some JavaScript and some C for the Arduino framework on a daily basis.I also got involved with Python but I soon realized that...

Sunday, September 4, 2022

Pure Java implementation of MD5 Algorithm


The following Java algorithm generates MD5 hashes from String, Byte array and File. import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; /** * * @author Nikos...

Java implementation of the Brute Force Algorithm


This is my single threaded implementation of the Brute Force algorithm for Java. I build this algorithm purely for scientific purposes.A brief code explanation:The fCharList array holds the characters involved in the algorithm. You can add or remove characters according...

Wednesday, October 19, 2016

Java: Generate Bitcoin & Ethereum Target from Difficulty


The other day I was making a small CPU miner for Ethereum using Java. I decided to implement the stratum protocol and I came to the following... difficulty. Stratum does not send the target directly to the miner as the Getwork protocol does. Stratum sends a double data type that holds the difficulty and the miner have to generate the target from that. Stratum example message of mining difficulty: {...