Any IT professional with even a little experience is familiar with DHCP. Dynamic host configuration protocol is responsible for handing out IP addresses on your network. there is generally one device or server responsible for handing out IP addresses on a given Network. Using DHCP, you can specify the IP address, subnet mask, DNS server, …| I Don't Know, Read The Manual
For those who are new to Python development, it is good to have a roadmap of what tools are needed to get started with development. For those who are more experienced with development, it is nice to have all the links in one place so you don’t have to go searching everytime. This article lists …| I Don't Know, Read The Manual
Stop words are the words that are filtered out when a computer is doing natural language processing.| I Don't Know, Read The Manual
Today we will discuss what these different kinds of compute are, how to use them, and when you might use each kind of compute.| I Don't Know, Read The Manual
Looking at the differences between different datastructures, how to use these datastructures, and the history of each of the most common data structures| I Don't Know, Read The Manual
All modern programming languages have the concept of functions or methods. Functions and methods are the same things, but depending on the specific language you are using, they are called one or the other. Functions and methods are one way you can create reusable blocks of code. Then call them over and over throughout your …| I Don't Know, Read The Manual
As you are writing your software, you need to ensure everything is working properly. You can best achieve your goal through the use of automated and manual tests. There are four main categories of tests are: Unit Integration Functional (AKA Systems Tests) Acceptance Later in this article, we will discuss what each of these tests …| I Don't Know, Read The Manual
Today we will discuss: How to deploy wordpress to Amazon Lightsail, What is the difference between Lightsail and EC2, and what does it cost...| I Don't Know, Read The Manual
We will disucss: How to setup a Netapp lab using VM's running on VMWare ESX, What are the prerequisites, and how ro do the initial configuration.| I Don't Know, Read The Manual
Today we will discuss how you can convert your JSON files to CSV files. And how to convert your CSV files into JSON files. along with plenty of code examples.| I Don't Know, Read The Manual
If you do any sort of automation, you have probably done a fair amount of work using the CLI on your computer. This is applicable regardless of the platform. If you use Python you might have asked yourself how you could start making your own command line utilities to help you in your daily …| I Don't Know, Read The Manual
WordPress is a very popular platform for running websites. I have read reports of WordPress hosting up to 27% of websites. With WordPress powering so much of the web, you might be asking yourself how you can design your website to run on wordpress. There are many WordPress hosting sites out there that you …| I Don't Know, Read The Manual
Today we will answer the following questions: What is reqiurements.txt? How do you use it? How do you create it? How does it fit in with virtualenv?| I Don't Know, Read The Manual
MacOS ships with Python 2.7 Pre-installed. This is helpful when you are just getting started with Python since you can just start using it with no setup. Unfortunately, Python 2.7 is going out of support in 2020, so we all need to get to upgrading to Python 3. When you start upgrading Python, there is …| I Don't Know, Read The Manual
Moving stuff to the cloud has been all the rage in the last few years. And for many situations that is the right thing to do. Especially when you are working on a Greenfield project where you can design everything from scratch. However, in many organizations, you have applications and servers that cannot or should …| I Don't Know, Read The Manual
Unit testing is the act of testing a small unit of your code. Generally, this means you are testing a function or a class in isolation. If you are doing this unit testing manually, you simply run your function, then check and make sure it gave you the expected output. This is what you have …| I Don't Know, Read The Manual
For the last few years, the word Cloud has been used a lot. It seems as though everyone has latched onto this word cloud. But what does the cloud really mean? My definition of the cloud is the internet. A cloud service would be a service that is hosted by someone else and you access …| I Don't Know, Read The Manual
Agile is a set of principles that developers can follow to be more effective in developing their software. The whole thing started with a set of principles that were developed by a group of industry leaders back in 2001. Given that Agile is a set of principles, it is more guidelines vs strict rules to …| I Don't Know, Read The Manual
In python, almost everything is an object. This includes variables like String and Integers and containers like lists and dictionaries. Given that everything is an object, what are data types? Data types are simply how you classify your objects. If you have an object with the type of String, then that object will have all …| I Don't Know, Read The Manual
I have spent a lot of time with various vendors support departments, and I have to say, Netapp has one of the best support departments. If I call Netapp at 2:00 AM on a Sunday morning, I can get someone on the phone right away. My one complaint is that I cannot open a ticket via E-Mail. …| I Don't Know, Read The Manual