Using annotated Spring Boot entities in a Library
When I moved a bunch of classes from a rather large Spring Boot application into a separate library (se more about that process here), I […]
Continue reading »Golden nuggets where no entry is longer than my expected attention span
When I moved a bunch of classes from a rather large Spring Boot application into a separate library (se more about that process here), I […]
Continue reading »
Why it sucks? The TL;DR is “It’s not Linux”. I really want to like Windows. And God knows I have tried. A couple of times […]
Continue reading »
Running webservers on own hardware I develop a lot of websites, and I run them on my own hardware (a Ubuntu Server). When developing (on […]
Continue reading »
How the system path is set is quite complicated, depending on your system and shell setup. But for the most common one (Linux Mint/Bash in […]
Continue reading »
ActiveStorage is a gem, I really think so. Before AS, whenevener I needed to attach a “blob” (image or other document) to a model it […]
Continue reading »
A friend asked me to help debug an app that tried to detect three different colors. It was written in Python and used three precreated […]
Continue reading »
The major difference between Linux and Windows is the quality of the terminal. I would say the comparison is like comparing a with a But […]
Continue reading »In ~/Desktop, create a file named Eclipse.desktop with content: [Desktop Entry] Version=x.y Name=ProgramName Comment=This is my comment Exec=/home/peter/Documents/exec.sh Icon=/home/peter/Pictures/icon.png Terminal=false Type=Application Categories=Utility;Application; if you need […]
Continue reading »This code connects to a Mysql database, reads ths content of a table and imports it into a Dataframe. From there you can twist and […]
Continue reading »
Even with a moderately large React app, you try to structure your modules and end up here in the end: import ../../../components/dialogs/enter.jsx WTF?? Good luck […]
Continue reading »
How do you setup VS Code, which is a great code editor, for Ruby development? Well you start by installing these gems: gem install solargraph […]
Continue reading »
It’s not as straightforward as you might think to completely remove MySQL from your linux box. Here are the details: Use apt to uninstall and […]
Continue reading »I just found this amazing article about the finer details of Websockets, and how to implement a WS server using Ruby. I just had to […]
Continue reading »Top 10 javascript console tips! Tip #0 console.assert() Tip #1 console.trace() Tip #2 console.time() && console.timeEnd() Tip #3 console.memory Tip #4 console.profile(‘profileName’) & console.profileEnd(‘profileName’) Tip […]
Continue reading »
Installation Add the necessary modules yarn add react-redux yarn add redux Fix the component import {connect} from ‘react-redux’; // definition of DummyComponent here… const mapStateToProps […]
Continue reading »
The Actuator is a great tool. The documentation and history of changed configuration and implementation is however a big big mess. To cut a LONG […]
Continue reading »This is how you can test the excellent Highcharts library. Make sure you have JQuery added first. <link rel=”stylesheet” href=”https://cdnjs.cloudflare.com/ajax/libs/highstock/6.0.2/css/highcharts.css” integrity=”sha256-ji+33kRPEXS0+FM/AbApEs8n5kT2UBiGyk36zs1F9gE=” crossorigin=”anonymous” /> Also include […]
Continue reading »This is a piece of code I keep to remind me of the magic in Ruby. class Main # you can dynamically define methods with […]
Continue reading »If you, like me, often code applications against the TWS API from Interactive Brokers, you will have good use of the following resources: The official […]
Continue reading »
Yes it’s awesome, I know! But even more so, is the list of tools, gems and frameworks that are available for Ruby programmers. Here is […]
Continue reading »Perfecting your Python development setup by RealPython Perfect Your Python Development Setup (Learning Path) – Real Python Optimize your Python development setup with this learning […]
Continue reading »
Since I was used to use rvm to handle multiple ruby versions, and a .ruby-version file which automatically switched version for me, of course I […]
Continue reading »
If you have an account at the eminent service dyndns.com, you can update it automatically from your host by using this method: Start by installing […]
Continue reading »If you use the Pandas DataReader and get this message: pandas_datareader.exceptions.ImmediateDeprecationError: Google finance has been immediately deprecated due to large breaks in the API without […]
Continue reading »
I can’t stand long articles so here’s a short bullet list: Searching in:channelname, in:name, from:username, from:me, has:link, has:star, has:emojiname, before, after, on, during Commands /remind […]
Continue reading »This is a no-nonsense instruction of how to create a child theme in WordPress. We create it from the existing theme “twentynineteen” 1. Create a […]
Continue reading »
Since I think the documentation is lacking and I always have to rely on Stackoverflow every time I want to use it, I keep this […]
Continue reading »
Lets say you get sick and tired of writing this in your views: <div class=”field”> <%=form.label :location %> <%=form.text_field :location %> </div> and instead you […]
Continue reading »I like the fixed menu, that stays in place when your scroll the content, but I have seen a few websites do a cool transition […]
Continue reading »Since you need a domain name, and I almost always use dynamic domain services, I recommend setting up ddclient so that the dynamic DNS is […]
Continue reading »
Putting a server on the internet is today similar to walking alone at night in a part of the city you know nothing about, where […]
Continue reading »You should specify a lot of things in your HTML header nowadays. Previously it was enough with some CSS and JS script includes. Now we […]
Continue reading »
Creating a Domain Specific Language has been on my TODO-list for a long time! Ruby is the perfect language for this task I have collected […]
Continue reading »
Python is a great language, but sometimes it makes life more complicated than necessary. I don’t know if this is because it’s heritage (C) or […]
Continue reading »
Rails helpers like image_url, link_to, form_with, fields_for etc are nifty little “macros” that makes your Rails code smaller and clearer. I mean, who doesn’t prefer […]
Continue reading »
I know, it’s a mouthful! I never thought I’d understand asymmetric cryptography, partly because I tend to stay away from REALLY complicated stuff, and partly […]
Continue reading »
Lots of harddisk space leads to…. lots of files. Why throw stuff away when keeping it is so cheap? I always end up with a […]
Continue reading »Too many frameworks? Check. Too many tools? Check. Too many crossroads? Then use this roadmap. It will help you decide which path to take in […]
Continue reading »
UPDATED OCT 2020 See this link for a much better procedure: https://medium.com/@aadeshshah/pre-installed-and-pre-configured-raspbian-with-opencv-4-1-0-for-raspberry-pi-3-model-b-b-9c307b9a993a This is left for archiving purposes: As usual, I will keep this […]
Continue reading »If the title to this post seems impossible to understand, please read this conversation between Gavin Sinclair and Martin de Mello. Something that was really […]
Continue reading »
If you haven’t lived under a rock for a couple of years, you must have stumbled upon npm, the standard node package manager, in one way […]
Continue reading »Wish I had this list a couple of years ago! https://dev.to/citizen428/10-common-git-problems-and-how-to-fix-them-234o
Continue reading »
The Raspberry Pi is a fantastic piece of equipment, and what I like the most is that it resembles a standard computer with Ubuntu, just […]
Continue reading »
A Complete Guide to Grid A great example of how to use Grid CSS to show thumbnails https://codepen.io/SitePoint/pen/JBqgGm
Continue reading »
There are so many web frameworks. And their supporters all claim that “their” framework is the one with the most momentum. The site http://hotframeworks.com tries […]
Continue reading »First of all, Gulp and Webpack are not beasts of the same kind. Gulp is a task runner, which you can use for various tasks […]
Continue reading »What do you do, when you want to extract some data from a system, but there is no neat API for that particular service? Well […]
Continue reading »
Introduction Design Patterns are an important power tool in your toolbox. You will fall back on these trusty patterns again and again, knowing that you […]
Continue reading »Rails is great, but nowadays a full page refresh is as unpopular as male ponytails or shoulder pads. Some write full-stack SPA sites, which is […]
Continue reading »
OK, let’s have it, are you a Gulper or a Grunter? To some, build systems are a major issue. To me, not so much. In […]
Continue reading »Intro Nowadays it is popular to create fullstack-JS applications (meaning both front- and backend written in Javascript) but what if you want to use the […]
Continue reading »
Very often, I would say almost always, you have nested models in a Web application. In Rails, you (most often) specify it using has_many and […]
Continue reading »From Quora: https://www.quora.com/What-makes-Rails-a-framework-worth-learning-in-2017 David Heinemeier Hansson, Creator of Ruby on Rails, Founder & CTO at Basecamp The same reasons why it was a framework […]
Continue reading »
I’d like to present a short and to-the-point instruction on how to add some Ajax pizazz to a simple Rails-generated page. It won’t take you […]
Continue reading »