PinnedHow to Manage PostgreSQL JSON data with Go(golang)the simple way This story is the continuation of How to Manage JSON data in PostgreSQL. If you didn’t read that story, I advice you to review it before continue to this one. To manage data with go programming language, we’ll use a Object Relational Mapping (ORM) called “gorm”. …Postgresql4 min readPostgresql4 min read
Apr 10, 2021How to set up a Docker Hostthe simple way Let client = Docker client server = Docker Host So that client is your computer (Mac, Linux, *BSD or other) where you have docker application installed, and you do your software development. …Docker2 min readDocker2 min read
Feb 26, 2021How to manage JSON data in PostgreSQLthe simple way Some times we just want to store some non (that) structured data on SQL database and the big issue may be how to manage them. Having the following planets data: lets create simple table structure: CREATE TABLE planets( id SERIAL PRIMARY KEY, name…Postgresql3 min readPostgresql3 min read
Published iniostrap·Aug 26, 2020How to transfer files between servers using NetcatOn linux/unix environments scp are rsyncare widely used to transfer/synchronize files between servers since they provide a secure way to transfer files between two or more computer nodes. Quickly: me@server1 ~ % nc -l -p 4444 < file.txt me@server2 ~ % nc -w 3 server1 4444 > file.txt Netcat for…File Transfer3 min readFile Transfer3 min read