How to Program in Fortran

Many people perceive Fortran as an archaic and “dead” programming language. However, most scientific and engineering code is written in Fortran. As such, programming in F77 and F90 remains a necessary skill for most technical programmers. Moreover, the latest Fortran standards (2003, 2008, 2015) allow the programmer to write highly efficient code with minimum effort, … Read more

How to Make a Program Start at High Priority (Windows)

Do your programs run more slowly than you’d like? It’s a pretty common problem, but few know how to fix it. If you run them high-priority, everything goes a lot faster. Keep reading for simple instructions. Steps Open “Notepad” from the Start menu. Type the following command into Notepad: Start “program name” /high “c:program files … Read more

How to Avoid Becoming a Script Kiddie

A script kiddie is someone who knows basic information about the operation of computer systems, but lacks the knowledge or desire to discover and exploit/patch security holes without the use of tools written by better hackers. Script kiddies usually just use tools that abstract the underlying concepts of computer security. Script kiddies are widely considered … Read more

How to Become a Free Software Hacker

This minHour teaches you how to begin developing and maintaining free, open source software in a programming community. While people who do this are sometimes referred to as “software hackers”, the position itself is more oriented toward creating and tweaking software than breaking into it. If you’re interested in becoming the kind of hacker who … Read more

How to Configure a Network on Cisco Packet Tracer

Cisco Packet Tracer is a network simulation program that gives students the opportunity to experiment and learn the different behaviors of networks and ask “what if” questions. It is also a vital part of the Networking Academy learning experience. The Packet Tracer provides simulation, visualization, authoring, assessment, and enhances the teaching and learning of complex … Read more

How to Program with VBScript

VBScript is a Windows-native programming language that is mainly used to create web server applications. VBScript is embedded within an HTML file, and is fairly straightforward. Note that VBScript differs from Visual Basic, which is used for desktop programming. Setting Up Your Development Environment Get a good code editor. You can use Notepad, but a … Read more