Dbeaver Jump Server Tunneling Problem On Linux

Overview I want to connect to remote MySQL server using DBeaver on linux. Note I need to connect jump server before I could open a connection to the database server. On Windows I could do that using Putty tunneling by SSH to first server, then from that server, I SSH second time to the DB server and tunnel the connection to a port. Using this recipe does not work on linux in my case. it will show error: ...

2020-02-26

docker-compose.yml for Golang Development

Hi, test things

2020-02-26

Using For Loop In Alpine JS

The steps are: add alpine.js to head section of your HTML create loop data get data on template loop and show data Create Loop Data Make a function inside a script tag just above the </body> tag ... <body> ... <script> function theData() { return { produk: [ { name: "Boaty McBoatface", price: "$300.000", }, { name: "WD-40", price: "$45.000", }, { name: "Bugs for lyfe", price: "$105.000", }, ]}; } </script> </body> Get Data to HTML We need to make it available on the HTML. Use x-data from alpine.js to get the produk list above ...

2020-02-26

uRxvt's .Xresources Not Loaded Properly on Manjaro

The Problem When I open urxvt after booting up the linux, it is terrible. The hide scrollbar part is working, but the color is off, way off. I wanted to use solarized-dark color theme, but the display it shows is pink text color on pink backgroud. I couldn’t see the text!! The config is working properly only after loading the resource file with xrdb ~/.Xresources. What I Wanted To Do I wanted to use urxvt to replace gnome-terminal as my terminal because it has more feature(I think) than the latter. I have a minimal setting on ~/.Xresources which I have used on my previous Ubuntu, and it worked. But now it does not worked like how it was. ...

2019-06-16