I bought a laptop recently. HP 14 A4 8GB 256GB SSD. It came with Windows 10 and was bundled with so many applications, I didn’t want to use. I tried to install it via PXE. But I couldn’t get that working. Finally, I decided to buy a USB drive and install Ubuntu. I have to start with the installation. Ubuntu ...
I bought a laptop recently. HP 14 A4 8GB 256GB SSD. It came with Windows 10 and was bundled with so many applications, I didn’t want to use. I tried to install it via PXE. But I couldn’t get that working. Finally, I decided to buy a USB drive and install Ubuntu. I have to start with the installation. Ubuntu ...
One day, I had to go through a large bash script and create a Debian package for our system. It could have been a strenuous job if I had to understand it. I was lazy to read it. So I found an easy way to get all the steps. I downloaded this on a container and ran with bash -x. ...
One day, I had to go through a large bash script and create a Debian package for our system. It could have been a strenuous job if I had to understand it. I was lazy to read it. So I found an easy way to get all the steps. I downloaded this on a container and ran with bash -x. ...
Postgres 12 has introduced new format in psql CLI. There are 9 types available. They are listed below. aligned asciidoc csv html latex latex-longtable troff-ms unaligned wrapped For more information look -> https://www.postgresql.org/docs/12/app-psql.html Lets check each and every format. Example of aligned is shown here. This is not good with wide column. It can overflow. Less readable. This is the ...
Postgres 12 has introduced a new format in psql CLI. There are 9 types available. They are listed below. aligned asciidoc csv html latex latex-longtable troff-ms unaligned wrapped For more information look -> https://www.postgresql.org/docs/12/app-psql.html Let’s check each format. An example of aligned is shown here. This is not good with a wide table/output. It can overflow. Less readable. This is ...
Are we developing so-called solutions to diminish free-will, relationships and society as we know it? First of all, free-will is itself questionable that if it exists. Our choices depend on the influences that we have grown up, environment and many other uncountable factors. But it is naturally a gradual process of shaping up a human and building up an identity. ...
Are we developing so-called solutions to diminish free-will, relationships and society as we know it? First of all, free-will is itself questionable that if it exists. Our choices depend on the influences that we have grown up, environment and many other uncountable factors. But it is naturally a gradual process of shaping up a human and building up an identity. ...
My blog has been living on self-hosted Wordpress, wordpress.com and blogger.com. But I have migrated it several times at the cost of losing posts and even domain names. But I have been holding dedunu.info since 2011. Recently Blogger is testing a new editor which doesn’t support HTML editing. I started to worry about that. I already had the personal site ...
My blog has been living on self-hosted Wordpress, wordpress.com and blogger.com. But I have migrated it several times at the cost of losing posts and even domain names. But I have been holding dedunu.info since 2011. Recently Blogger is testing a new editor which doesn’t support HTML editing. I started to worry about that. I already had the personal site ...
On the terminal, viewing code with colour might improve productivity. You can use pygmentize to view code in colour. Install pygmentize using below commands. $ sudo apt install python3-pip $ pip3 install Pygments You can use view code using: $ pygmentize -g /etc/profile.d/gawk.sh If you add an alias like below you will be able to use pygmentize as a short ...
On the terminal, viewing code with colour might improve productivity. You can use pygmentize to view code in colour. Install pygmentize using below commands. $ sudo apt install python3-pip $ pip3 install Pygments You can use view code using: $ pygmentize -g /etc/profile.d/gawk.sh If you add an alias like below you will be able to use pygmentize as a short ...
I recently bought a Nokia 4.2 phone. I am quite happy with it. But I wanted to write down the pros and cons of the device. I bought this device three months ago. It costs me around 120 EUR/130 USD. Prior to this, I used an Xiaomi Redmi Note 7. I was never happy with the software. It was bloated ...
I recently bought a Nokia 4.2 32GB/3GB phone. I am quite happy with it. But I wanted to write down the pros and cons of the device. I bought this device three months ago. It costs me around 120 EUR/130 USD. Prior to this, I used an Xiaomi Redmi Note 7. I was never happy with the software. It was ...
I recently bought a Nokia 4.2 phone. I am quite happy with it. But I wanted to write down the pros and cons of the device. I bought this device three months ago. It costs me around 120 EUR/130 USD. Prior to this, I used an Xiaomi Redmi Note 7. I was never happy with the software. It was bloated ...
I used iTerm2 for a while. But it is taking a lot of memory. I wanted to configure the native terminal application on OS X.I have a virtual box and I used it for my development. I connect to a bridge to access production. I wanted the terminal to change colours/themes when I log in to each and every host. ...
I used iTerm2 for a while. But it is taking a lot of memory. I wanted to configure the native terminal application on OS X. I have a virtual box and I used it for my development. I connect to a bridge to access production. I wanted the terminal to change colours/themes when I log in to each and every ...
I used iTerm2 for a while. But it is taking a lot of memory. I wanted to configure the native terminal application on OS X.I have a virtual box and I used it for my development. I connect to a bridge to access production. I wanted the terminal to change colours/themes when I log in to each and every host. ...
I use a VirtualBox for my day to day work. The whole purpose is to move it to a new laptop and start using it with all the tools, configuration files and keys. But I don't want to open the VirtualBox with a windowSo I found a way to launch the virtual machine using the command line without the window. My virtual machine is called "dev". Use below command.VBoxManage startvm "dev" --type headless