How To Automate A Task With Windows Task Scheduler
HOW TO CREATE A SCHEDULED TASK THAT SHUTS DOWN THE COMPUTER AT 11 PM EVERY WEEKDAY. Introduction Windows is an operating system that manages…
AdminTuts is a computer science blog about machine learning, artificial intelligence & server administration providing written coding tutorials.
My name Nikolas, and i manage servers for nearly 7 years. I started working online as an internet marketer back in 2007, but server maintenance and configuration were always one of my deepest passions. These blog serves mostly as a place that I document my personal "server journey", while at the same time i like teaching others, and help them having fewer headaches while configuring their servers :) I'm also into Machine Learning since i find it fascinating, and it's the ability to reveal hidden patterns is unparalleled. In real life i love hanging out with friends, drinking coffee by the beach, and watching movies. Below you can take a look of my most recent tutorials, so be sure to check them out :) All of the public available projects i created, can be found at github.com
HOW TO CREATE A SCHEDULED TASK THAT SHUTS DOWN THE COMPUTER AT 11 PM EVERY WEEKDAY. Introduction Windows is an operating system that manages…
Introduction In this article, you will learn how to create clusters on the GCP Google Kubernetes Engine (GKE) with the gcloud command-line interface and…
Introduction In this tutorial, you will learn how to use OpenCV Python’s library for cartooning a webcam stream. While this is a relatively simple…
Introduction Portworx is a software-defined persistent storage solution designed and purpose-built for applications deployed as containers, via container orchestrators such as Kubernetes, Nomad, Marathon, …
Introduction Jenkins is an essential tool in the DevOps world, and countless organizations use it for their CI/CD pipeline needs. However, security concerns can…
System Administration System Information uname -a uname -r IP Address Management ifconfig eth0 #show specific interface On Centos ifconfig ens3 #show specific interface On…
Introduction The “Fizz-Buzz programming test” is an interview technical question aiming to filter out the 99.5% of programming job candidates who can’t seem to…
Git Basics Creating a new repository mkdir project cd project git init git remote add origin git@github.com:yourlogin/your-repo.git git add . git commit -am “new…
Introduction In a previous tutorial, you learned how to install Jenkins on a Kubernetes Cluster. In this tutorial, we will create a Jenkins CI/CD…
Introduction Jenkins is one of the most popular CI/CD tools for many companies nowadays, but it doesn’t scale out of the box. One could…