Sugalvojau parašyti seriją straipsnių apie investavimą. Ir į vieną vietą surinkti informaciją, kuri gali būti naudinga žmonėms, galvojantiems pradėti investuoti į vertybinius popierius. Pirmo straipsnio tema – investavimo mitai ir realybė 🙂 Tačiau pirmiausia privalau įspėti – visa informacija yra tiktai mano asmeninė…
Ernesto blogas Posts
If you want to run Docker Compose with Kafka and Zookeeper, you could use the following code:
Turbūt visi girdime, kas vyksta Baltarusijoje. Beklausant naujienų pranešimų, man pradėjo kirbėti galvoje, kad situacija primena kažką. Ir tikrai – prisiminiau ką. Ir vėlgi, kaip ir straipsnio apie Melą ir dezinformaciją atveju, tai man priminė skaitytas knygas apie Šaltąjį karą arba laikotarpį po…
Turiu tokį hobį – mėgstu skaityti knygas. Ir nemažai laiko praleidau skaitydamas, kaip veikia įvairios žvalgybos tarnybos Šaltojo karo metu. Kas keisčiausia – tie “seni” veiklos principai labai puikiai veikia ir šiuolaikiniame pasaulyje. Norite pavyzdžio? Tai, kas dabar vadinama “fake news”, lietuviškai verčiamos…
I had a slight issue, of how to start MySQL server by using Docker Compose. So, I came up with the following configuration: Works 🙂
I have just started working with a Gradle project, that needs a simple way of incrementing its version. And I came up with a simple solution. Project’s version is following the standard: major.minor.patch. So, first of all create a version.properties file that looks…
In order to run GitLab and GitLab Runner on your local PC, simplest way is to create docker-compose.yml file and add the following content to it: Once it’s up and running, you can access GitLab via http://localhost/ by using username root and the…
Sometimes you need to look for something (i.e. grep) in file, but you want to see several lines BEFORE and AFTER the line you’re looking for. So, how can you do this in Linux? Try: It looks for text “Deploying” in file catalina.out…
One day I got tired of entering ssh mycoolusername@my.awesome.server.com Because my username is the same on all the servers. So, what I did – I’ve created a file and added a default username for the servers: $ cat ~/.ssh/configCanonicalizeHostname yesHost *.my.awesome.server.com User mycoolusername…
You create a tag in GIT, accidentally pushed it into remote repository. But after some time you understood that you don’t want it. So, how can you remove a tag in GIT? You can do this easily by:git tag -d NAME_OF_YOUR_BAD_TAGgit push origin…