-
Recent Posts
Categories
Archives
- July 2023
- April 2023
- March 2023
- February 2023
- January 2023
- November 2022
- October 2022
- September 2022
- August 2022
- July 2022
- June 2022
- May 2022
- April 2022
- March 2022
- February 2022
- January 2022
- December 2021
- November 2021
- October 2021
- September 2021
- August 2021
- July 2021
- June 2021
- May 2021
- April 2021
- March 2021
- February 2021
- January 2021
- December 2020
- November 2020
- October 2020
- September 2020
- August 2020
- July 2020
- June 2020
- April 2020
- February 2020
- January 2020
- December 2019
- November 2019
- October 2019
- September 2019
- August 2019
- July 2019
- June 2019
- May 2019
- April 2019
- March 2019
- February 2019
- January 2019
- December 2018
- November 2018
- October 2018
- September 2018
- August 2018
- July 2018
- June 2018
- May 2018
- April 2018
- March 2018
- February 2018
- January 2018
- December 2017
- November 2017
- October 2017
- September 2017
- August 2017
- July 2017
- June 2017
- May 2017
- April 2017
- March 2017
- February 2017
- January 2017
- December 2016
- November 2016
- October 2016
- September 2016
- August 2016
- July 2016
- June 2016
- May 2016
- April 2016
- March 2016
- February 2016
- January 2016
- December 2015
- November 2015
- October 2015
Meta
Tags
- arduino
- aws
- best practices
- boot
- booting from grub
- c / c+
- cloud computing
- DIY
- docker
- dos
- encryption
- FOP
- grub
- hardware
- howto
- humor
- java
- linux
- load testing
- medicine
- oldschool
- online shopping
- open source
- paranoid
- pcbuilding
- performance testing
- political activism
- politicians
- programming
- review
- scripting
- security
- soapbox
- strangelaws
- surveillance
- tinfoil hat
- UK
- vaccine
- virtual computing
- virus
- web services
- websphere
- windows
- wordpress
- XSL-FO
Tag Archives: linux
command line fun – transferring data with sftp
I must admit that I misunderstood the task when I first saw it. The vendor had changed how they provide the data. We will no longer be able to retrieve the data using ftp – the data should be picked … Continue reading
Posted in Command line, programming
Tagged encryption, linux, scripting
Comments Off on command line fun – transferring data with sftp
command line fun – juliane day number to gregorian
In a previous blog, I implemented a routine to convert a Gregorian date into a Juliane day number to allow simple math and comparisons on dates. This was pretty cool but it is less useful if you cannot convert back … Continue reading
Posted in Command line, programming
Tagged linux, scripting
Comments Off on command line fun – juliane day number to gregorian
command line fun – julian day number
I keep getting into a situation where I need to do some simple date calculations. This is not a problem using a language like Java or when using a language that lets you add additional modules like Perl. Unfortunately, some … Continue reading
Posted in Command line, programming
Tagged linux, scripting
Comments Off on command line fun – julian day number
command line – stupid date tricks
Just because you can do something doesn’t mean that you should do it. I try and keep to that simple rule but from time to time it is fun to see what crazy things you can do in a simple … Continue reading
command line junkie – speed test
Graphical operating systems really does make it easier to multi-task, especially for people who are not comfortable on the command line. It is really easy to switch between your spreadsheet, web browsers and photo viewer programs in this type of … Continue reading
Posted in Command line, Setup From Scratch
Tagged linux, scripting
Comments Off on command line junkie – speed test
command line fun – math
What is nice about shell scripting on Linux is that the language is just as complete as most of the compiled languages. What elements makes up a pretty good computer language. variables assignments conditionals statements flow control expressions functions These … Continue reading
command line fun – flow control
Shell scripting is like any other programming language as far as control statements go. To be honest, all your favorite control statements can be whipped up using either if/then statement or a loop. The good news is that we don’t … Continue reading
Posted in Command line, programming
Tagged linux, scripting
Comments Off on command line fun – flow control
command line fun – logs and logging
Before writing this blog entry, I never considered the actual similarities between the Linux shell and the dos shell. I shouldn’t have been too surprised as the similarities have less to do with the operating systems than with the general … Continue reading
Posted in Command line
Tagged dos, linux, scripting
Comments Off on command line fun – logs and logging
booting Linux from a USB stick
Most of the Linux distributions are downloadable as a ISO image which can be burned to a CD or DVD. This is pretty convenient, download the distribution and create your own disks. In the beginning floppy disks were used by … Continue reading
command line fun – the basics
I was meeting with a younger friend to fix his virus laden laptop, it turned out to be quite a mess so we decided it would be more efficient to restore it from the recovery partition. I was a bit … Continue reading