Scripting

Set Up a TFTP Server on Linux | Linux.com

Set Up a TFTP Server on Linux | Linux.com

<img src="/img/2017/03/linuxlogo.png" alt=""> Most users are familiar with FTP, but if you want to kickstart Red Hat installs, PXE boot systems, auto-provision VoIP phones or unbrick a Linux-based router, you want a Trivial File Transfer Protocol (TFTP) server. Setting one up on Linux is easy, and a perfect project to take on over the weekend. Source: Weekend Project: Set Up a TFTP Server on Linux | Linux.com | The source for Linux information

How To Record Everything You Do In Terminal - OSTechNix

<img src="/img/2017/03/record-everything-you-do-in-terminal.png" alt=""> Synopsis: script -a my_history mkdir test cd test touch hello_world.txt echo 'Hello World' > ./hello_world.txt # This closes the "script -a my_history" file exit Source: How To Record Everything You Do In Terminal - OSTechNix

The Future of Web Development: Coding as a Service

<img src="/img/2017/03/webdevelopment2.png" alt=""> The article talks about the comoditization of web development as a service (Coding as a Service - CaaS). For the price of two Venti Iced Caramel Macchiatos per month you can run a respectable website with little to no technical experience... Artificial Intelligence will enable more complex combinations of code to be fit together through an automated process... The quantity and quality of customization with AI will be staggering.

Tired of "Terminate batch job (Y/N)?", try this

When you invoke a batch file or most applications in a command-prompt and when you wish to close the application by doing a CTRL+C, you get the annoying “Terminate batch job (Y/N)?” prompt. And in most cases, even if you type a “n”, it still kills the application. Example is the Tomcat startup. To avoid this, try this: [sourcecode language=“jscript”] YourScript.cmd < Nul [/sourcecode] This should no longer ask you with the annoying prompt “Terminate batch job (Y/N)?