Minimal safe Bash script template
Bash scripts.
Almost anyone needs to write one sooner or later.
Almost no one says "yeah, I love writing them". And that's why almost everyone is putting low attention while writing them.
December 14, 2020
Read more
→
My AWS toolbox - tools, plugins and applications
Developers, like all specialists, discover and collect their favorite tools over time.
Having a good, proven set of tools makes the work easier and more pleasant.
We can focus on getting the job done.
Sometimes eliminating minor inconveniences or improving a small element of everyday activity makes the greatest impact on the comfort of work.
October 22, 2020
Read more
→
Command line arguments anatomy explained with examples
Many of the scripts and executables allow providing some command line arguments.
They may be required or optional.
There are flags, that are just switches changing command behavior.
There are, of course, arguments with values.
And there are so-called positional arguments – parameters given in some order without any extra indications.
September 25, 2020
Read more
→
Speed up everyday work with handy Git aliases
Git allows us to define aliases, which are basically our own commands we can use.
They may be just a calls for other commands with parameters, or even shell scripts.
Possibilities are unlimited.
September 13, 2020
Read more
→
Simpler Git branch first push with no more errors
How many times did you try to make
git push
for a newly created branch to the remote repository, only to get a strange "no upstream branch" error? Here I will show how to change Git
configuration with a single command to get rid of it for good.September 11, 2020
Read more
→
Git fast-forward merge - why you should turn it off
Git
is a standard version control tool.
You should definitely use it even for small personal projects.
And when it comes to any teamwork, it's mandatory.
September 9, 2020
Read more
→