Development
How To Build a Neural Network to Recognize Handwritten Digits with TensorFlow
Tutorials
Development
Machine Learning
Programming Project
Python
Introduction> Introduction # Neural networks are used as a method of deep learning, one of the many subfields of artificial intelligence. They were first proposed around 70 years ago as an attempt at simulating the way the human brain works, though in a much more simplified form.
How To Construct For Loops in Python 3
Tutorials
Development
Python
Using loops in computer programming allows us to automate and repeat similar tasks multiple times. In this tutorial, we’ll be covering Python’s for loop.
A for loop implements the repeated execution of code based on a loop counter or loop variable.
How To Make a Calculator Program in Python 3
Tutorials
Development
Programming Project
Python
Introduction> Introduction # The Python programming language is a great tool to use when working with numbers and evaluating mathematical expressions. This quality can be utilized to make useful programs.
A Guide to Time Series Forecasting with ARIMA in Python 3
Tutorials
Data Analysis
Development
Programming Project
Python
Introduction> Introduction # Time series provide the opportunity to forecast future values. Based on previous values, time series can be used to forecast trends in economics, weather, and capacity planning, to name a few.
How To Import Modules in Python 3
Tutorials
Development
Python
Introduction> Introduction # The Python programming language comes with a variety of built-in functions. Among these are several common functions, including:
print() which prints expressions out
abs() which returns the absolute value of a number
How To Construct While Loops in Python 3
Tutorials
Development
Python
Introduction> Introduction # Computer programs are great to use for automating and repeating tasks so that we don’t have to. One way to repeat similar tasks is through using loops. We’ll be covering Python’s while loop in this tutorial.
How To Write Conditional Statements in JavaScript
Tutorials
Development
JavaScript
Introduction> Introduction # In programming, there will be many occasions in which you will want different blocks of code to run depending on user input or other factors.
As an example, you might want a form to submit if each field is filled out properly, but you might want to prevent that form from submitting if some required fields are missing.
How To Work with Arrays in Ruby
Tutorials
Development
Ruby
Introduction> Introduction # An array is a data structure that represents a list of values, called elements. Arrays let you store multiple values in a single variable. In Ruby, arrays can contain any data type, including numbers, strings, and other Ruby objects.
How To Use node-cron to Run Scheduled Jobs in Node.js
Tutorials
Development
DigitalOcean App Platform
JavaScript
Node.js
Introduction> Introduction # cron provides a way to repeat a task at a specific time interval. There may be repetitive tasks such as logging and performing backups that need to occur on a daily or weekly or monthly basis.
Understanding List Comprehensions in Python 3
Tutorials
Development
Python
Introduction> Introduction # List comprehensions offer a succinct way to create lists based on existing lists. When using list comprehensions, lists can be built by leveraging any iterable, including strings and tuples.