Linux Unix Training Classes in Washington D C, Virginia

Learn Linux Unix in Washington D C, Virginia and surrounding areas via our hands-on, expert led courses. All of our classes either are offered on an onsite, online or public instructor led basis. Here is a list of our current Linux Unix related training offerings in Washington D C, Virginia: Linux Unix Training

We offer private customized training for groups of 3 or more attendees.
Washington-D-C  Upcoming Instructor Led Online and Public Linux Unix Training Classes
Enterprise Linux System Administration Training/Class 10 June, 2024 - 14 June, 2024 $2190
HSG Training Center instructor led online
Washington-D-C, Virginia
Hartmann Software Group Training Registration
Linux Fundaments GL120 Training/Class 15 April, 2024 - 19 April, 2024 $2090
HSG Training Center instructor led online
Washington-D-C, Virginia
Hartmann Software Group Training Registration
LINUX SHELL SCRIPTING Training/Class 29 May, 2024 - 30 May, 2024 $990
HSG Training Center instructor led online
Washington-D-C, Virginia
Hartmann Software Group Training Registration
OpenShift Fundamentals Training/Class 22 April, 2024 - 24 April, 2024 $2090
HSG Training Center instructor led online
Washington-D-C, Virginia
Hartmann Software Group Training Registration
RED HAT ENTERPRISE LINUX AUTOMATION WITH ANSIBLE Training/Class 25 March, 2024 - 28 March, 2024 $2735
HSG Training Center instructor led online
Washington-D-C, Virginia
Hartmann Software Group Training Registration
RED HAT ENTERPRISE LINUX V7 DIFFERENCES Training/Class 13 May, 2024 - 15 May, 2024 $1690
HSG Training Center instructor led online
Washington-D-C, Virginia
Hartmann Software Group Training Registration
RHCSA EXAM PREP Training/Class 17 June, 2024 - 21 June, 2024 $2090
HSG Training Center instructor led online
Washington-D-C, Virginia
Hartmann Software Group Training Registration
Docker Training/Class 29 April, 2024 - 1 May, 2024 $1690
HSG Training Center instructor led online
Washington-D-C, Virginia
Hartmann Software Group Training Registration
DOCKER WITH KUBERNETES ADMINISTRATION Training/Class 6 May, 2024 - 10 May, 2024 $2490
HSG Training Center instructor led online
Washington-D-C, Virginia
Hartmann Software Group Training Registration
RED HAT SATELLITE V6 (FOREMAN/KATELLO) ADMINISTRATION Training/Class 1 April, 2024 - 4 April, 2024 $2590
HSG Training Center instructor led online
Washington-D-C, Virginia
Hartmann Software Group Training Registration

View all Scheduled Linux Unix Training Classes

Linux Unix Training Catalog

cost: $ 1390length: 4 day(s)
cost: $ 1390length: 4 day(s)
cost: $ 1990length: 3 day(s)
cost: $ 2090length: 5 day(s)
cost: $ 2800length: 4 day(s)
cost: $ 2490length: 5 day(s)
cost: $ 2800length: 4 day(s)
cost: $ 2090length: 5 day(s)
cost: $ 2090length: 5 day(s)
cost: $ 2290length: 4 day(s)
cost: $ 2190length: 5 day(s)
cost: $ 2200length: 4 day(s)
cost: $ 2090length: 4 day(s)
cost: $ 1690length: 4 day(s)
cost: $ 1890length: 3 day(s)
cost: $ 1890length: 4 day(s)
cost: $ 1290length: 3 day(s)
cost: $ 1890length: 4 day(s)
cost: $ 2800length: 4 day(s)
cost: $ 2490length: 4 day(s)
cost: $ 2800length: 4 day(s)
cost: $ 1290length: 3 day(s)
cost: $ 2800length: 4 day(s)
cost: $ 2090length: 5 day(s)
cost: $ 1090length: 3 day(s)
cost: $ 2090length: 5 day(s)
cost: $ 2400length: 5 day(s)
cost: $ 2090length: 5 day(s)
cost: $ 2800length: 4 day(s)
cost: $ 2490length: 4 day(s)
cost: $ 2800length: 4 day(s)
cost: $ 990length: 2 day(s)
cost: $ 2800length: 4 day(s)
cost: $ 2290length: 5 day(s)
cost: $ 2090length: 5 day(s)
cost: $ 1890length: 4 day(s)
cost: $ 1890length: 4 day(s)
cost: $ 1890length: 4 day(s)
cost: $ 2400length: 4 day(s)
cost: $ 2090length: 3 day(s)
cost: $ 2090length: 3 day(s)
cost: $ 1790length: 4 day(s)
cost: $ 2090length: 5 day(s)
cost: $ 1690length: 3 day(s)
cost: $ 2090length: 5 day(s)
cost: $ 2090length: 5 day(s)
cost: $ 2590length: 3 day(s)
cost: $ 1690length: 5 day(s)
cost: $ 1690length: 5 day(s)
cost: $ 1690length: 5 day(s)
cost: $ 1390length: 4 day(s)

DevOps Classes

cost: $ 1690length: 3 day(s)
cost: $ 1690length: 3 day(s)

Foundations of Web Design & Web Authoring Classes

cost: $ 790length: 2 day(s)
cost: $ 1190length: 3 day(s)

Course Directory [training on all levels]

Upcoming Classes
Gain insight and ideas from students with different perspectives and experiences.

Blog Entries publications that: entertain, make you think, offer insight

I will begin our blog on Java Tutorial with an incredibly important aspect of java development:  memory management.  The importance of this topic should not be minimized as an application's performance and footprint size are at stake.

From the outset, the Java Virtual Machine (JVM) manages memory via a mechanism known as Garbage Collection (GC).  The Garbage collector

  • Manages the heap memory.   All obects are stored on the heap; therefore, all objects are managed.  The keyword, new, allocates the requisite memory to instantiate an object and places the newly allocated memory on the heap.  This object is marked as live until it is no longer being reference.
  • Deallocates or reclaims those objects that are no longer being referened. 
  • Traditionally, employs a Mark and Sweep algorithm.  In the mark phase, the collector identifies which objects are still alive.  The sweep phase identifies objects that are no longer alive.
  • Deallocates the memory of objects that are not marked as live.
  • Is automatically run by the JVM and not explicitely called by the Java developer.  Unlike languages such as C++, the Java developer has no explict control over memory management.
  • Does not manage the stack.  Local primitive types and local object references are not managed by the GC.

So if the Java developer has no control over memory management, why even worry about the GC?  It turns out that memory management is an integral part of an application's performance, all things being equal.  The more memory that is required for the application to run, the greater the likelihood that computational efficiency suffers. To that end, the developer has to take into account the amount of memory being allocated when writing code.  This translates into the amount of heap memory being consumed.

Memory is split into two types:  stack and heap.  Stack memory is memory set aside for a thread of execution e.g. a function.  When a function is called, a block of memory is reserved for those variables local to the function, provided that they are either a type of Java primitive or an object reference.  Upon runtime completion of the function call, the reserved memory block is now available for the next thread of execution.  Heap memory, on the otherhand, is dynamically allocated.  That is, there is no set pattern for allocating or deallocating this memory.  Therefore, keeping track or managing this type of memory is a complicated process. In Java, such memory is allocated when instantiating an object:

String s = new String();  // new operator being employed
String m = "A String";    /* object instantiated by the JVM and then being set to a value.  The JVM
calls the new operator */

One of the most recent updates to the iPhone, and more specifically the operating system that is packaged with the iPhone, iOS, brought one of the most fantastic and phenomenal updates ever: an update to Maps. Maps has been used as an application that provides an easy way to find routes, and (obviously) maps about certain areas, businesses in the local vicinity, and also leaving pins on favorited locations, or pins where you have explored, and for many other reasons. However, although Maps has always been a great way to travel with, it has always been redundant to travel with, also. When you used Maps a while ago, you had to route your map, and then manually click each next button as you reached each turn or freeway exit, and the like. So, if you had to turn left on a certain street, you had to tell your phone you had done so, so it would give you the next directions. As a result, it could become very dangerous to always have your phone out, looking at it, while you are on a high-speed freeway. But, the newest update solved that, and brought a great amount of new features.

Using Maps GPS

Using Maps is as easy as it gets. Most of the time, when you are using Maps, you are using it to search for a location, and finding a way to get there. To start off, let’s search for the nearest mall, and routes to get there. Simply search a nearby mall you know about, or search the general word “mall” by tapping on the top text box, and typing in mall, and searching. Pins will drop down on the screen, and locating the mall by zooming into certain streets and locations will help you find the mall you want. Once you find the mall you desire to go to, click on the blue arrow, and scroll down, and tap on the button that says “Directions To Here.”

 

As a result of tapping on that particular button, a new window should show up asking where your starting location is. On default, this location is your current location; if it is anything else, simply type in the starting location into the top address bar, such as your house. Once you are ready to go, tap on route, and you should be ready to go. Well, not exactly. One of the best features that has been implemented in the new system is suggested routes, and alternative routes. If you don’t like to drive on certain streets, or roads, the system provides you with different methods to get to your destination, which may avoid a road you don’t feel like driving on that certain day, or time, or you simply don’t want to take the freeway. It’s all okay, as Maps provides you with many different routes to take. Once you find the route you want (by tapping on the certain route’s outline), click start, and you should be ready to go. Make sure you turn up your volume so you can hear the directions!

Maps for Alternative Transportation

For many people, one of the most exciting and challenging career choices is computer programming. There are several ways that people can enter the computer programming profession; however, the most popular method has traditionally been the educational route through an educational institution of higher learning such as a college or technical school.

Even though many people think of computer programmers as individuals with a technical background, some programmers enter the computer programming profession without a structured technical background. In addition, after further investigation several interesting facts are uncovered when a profile of the best computer programmers is analyzed.

When observing how the top programmers in the profession work, there are four characteristics that tend to separate the top programmers from the average programmers. These four characteristics are:

1.Creativity.
2.Attention To Detail.
3.Learns New Things Quickly.
4.Works Well With Others.

Creativity.

Being a top computer programmer requires a combination of several unique qualities. One of these qualities is creativity. In its very essence, computer programming is about creating programs to accomplish specific tasks in the most efficient manner. The ability to develop computer code to accomplish tasks takes a certain level of creativity. The top computer programmers tend to have a great deal of creativity, and they have the desire to try things in a variety of ways to produce the best results for a particular situation.

Attention To Detail.

While creativity is important for top programmers an almost opposite quality is needed to produce great computer programs on a consistent basis, this quality is attention to detail. The very nature of computer programming requires the need to enter thousands of lines of computer programming code. What separates many top programmers from average programmers is the ability to enter these lines of code with a minimum amount of errors and just as importantly test the code to catch any unseen errors. Top computer programmers have the necessary attention to detail to successfully create and enter the necessary computer code project after project.

Learns New Things Quickly.

The technology field is constantly changing. Almost daily new technology innovations are being developed that require computer programmers to learn new technology or enhancements to current technology on a regular basis. The top computer programmers are able to learn new technology or enhancements quickly, and then they are able to apply what has been learned to their current and future programming projects in a seamless manner.

Works Well With Others.

There are several differences between top computer programmers and other programmers. However, one of the biggest differences is the ability to work well with others. By its very nature, computer programming requires programmers to spend a lot of time alone developing computer code, but the top computer programmers are able to excel at this aspect of computer programming along with being able to work well with other people.

Regarding computer programmers, the top programmers approach and handle their jobs differently than other programmers, and these differences set them apart from the other programmers. For any average programmers who have the desire to excel as a computer programmer, they must understand and embrace the characteristics of top programmers.

 

Related:

How important is it to exercise for people in technology that sit for hours on end?

What are a few unique pieces of career advice that nobody ever mentions?

A business rule is the basic unit of rule processing in a Business Rule Management System (BRMS) and, as such, requires a fundamental understanding. Rules consist of a set of actions and a set of conditions whereby actions are the consequences of each condition statement being satisfied or true. With rare exception, conditions test the property values of objects taken from an object model which itself is gleaned from a Data Dictionary and UML diagrams. See my article on Data Dictionaries for a better understanding on this subject matter.

A simple rule takes the form:

if condition(s)

then actions.

An alternative form includes an else statement where alternate actions are executed in the event that the conditions in the if statement are not satisfied:

if condition(s)

then actions

else alternate_actions

It is not considered a best prectice to write rules via nested if-then-else statements as they tend to be difficult to understand, hard to maintain and even harder to extend as the depth of these statements increases; in other words, adding if statements within a then clause makes it especially hard to determine which if statement was executed when looking at a bucket of rules. Moreoever, how can we determine whether the if or the else statement was satisfied without having to read the rule itself. Rules such as these are often organized into simple rule statements and provided with a name so that when reviewing rule execution logs one can determine which rule fired and not worry about whether the if or else statement was satisfied. Another limitation of this type of rule processing is that it does not take full advantage of rule inferencing and may have a negative performance impact on the Rete engine execution. Take a class with HSG and find out why.

Rule Conditions

Tech Life in Virginia

Virginia is known as "the birthplace of a nation,? is nicknamed the "Old Dominion" and has had 3 capital cities, Jamestown, Williamsburg, and Richmond. The state motto is "Sic Semper Tyrannis"??Thus always to tyrants? More people work for the U.S. government than any other industry in this region. Virginia's largest private employer is also the world's largest ship building yard. Because the state hosts some major Net firms such as AOL, Network Solutions, and MCI WorldCom it has dubbed itself the "Internet Capital of the world".
All the world is a laboratory to the inquiring mind.  ~Martin H. Fischer
other Learning Options
Software developers near Washington D C have ample opportunities to meet like minded techie individuals, collaborate and expend their career choices by participating in Meet-Up Groups. The following is a list of Technology Groups in the area.
Fortune 500 and 1000 companies in Virginia that offer opportunities for Linux Unix developers
Company Name City Industry Secondary Industry
Brink's Inc. Richmond Business Services Security Services
Federal Home Loan Mortgage Corporation (Freddie Mac) Mc Lean Financial Services Lending and Mortgage
General Dynamics Corporation Falls Church Manufacturing Aerospace and Defense
CarMax, Inc. Henrico Retail Automobile Dealers
NVR, Inc. Reston Real Estate and Construction Construction and Remodeling
Gannett Co., Inc. Mc Lean Media and Entertainment Newspapers, Books and Periodicals
Smithfield Foods, Inc. Smithfield Manufacturing Food and Dairy Product Manufacturing and Packaging
ManTech International Corporation Fairfax Computers and Electronics IT and Network Services and Support
DynCorp International Falls Church Manufacturing Aerospace and Defense
Genworth Financial, Inc. Richmond Financial Services Insurance and Risk Management
MeadWestvaco Corporation Richmond Manufacturing Paper and Paper Products
Dollar Tree, Inc. Chesapeake Retail Department Stores
Alpha Natural Resources, Inc. Abingdon Agriculture and Mining Mining and Quarrying
SRA International, Inc. Fairfax Business Services Business Services Other
NII Holdings, Inc. Reston Telecommunications Wireless and Mobile
Dominion Resources, Inc. Richmond Energy and Utilities Gas and Electric Utilities
Norfolk Southern Corporation Norfolk Transportation and Storage Freight Hauling (Rail and Truck)
CACI International Inc. Arlington Software and Internet Data Analytics, Management and Storage
Amerigroup Corporation Virginia Beach Financial Services Insurance and Risk Management
Owens and Minor, Inc. Mechanicsville Healthcare, Pharmaceuticals and Biotech Personal Health Care Products
Advance Auto Parts, Inc Roanoke Retail Automobile Parts Stores
SAIC Mc Lean Software and Internet Software
AES Corporation Arlington Energy and Utilities Gas and Electric Utilities
Capital One Financial Corporation Mc Lean Financial Services Credit Cards and Related Services
Sunrise Senior Living, Inc. Mc Lean Healthcare, Pharmaceuticals and Biotech Residential and Long-Term Care Facilities
Computer Sciences Corporation Falls Church Software and Internet Software
Altria Group, Inc. Richmond Manufacturing Manufacturing Other
Northrop Grumman Corporation Falls Church Manufacturing Aerospace and Defense
Alliant Techsystems Inc. Arlington Manufacturing Aerospace and Defense
Markel Corporation Glen Allen Financial Services Insurance and Risk Management

training details locations, tags and why hsg

A successful career as a software developer or other IT professional requires a solid understanding of software development processes, design patterns, enterprise application architectures, web services, security, networking and much more. The progression from novice to expert can be a daunting endeavor; this is especially true when traversing the learning curve without expert guidance. A common experience is that too much time and money is wasted on a career plan or application due to misinformation.

The Hartmann Software Group understands these issues and addresses them and others during any training engagement. Although no IT educational institution can guarantee career or application development success, HSG can get you closer to your goals at a far faster rate than self paced learning and, arguably, than the competition. Here are the reasons why we are so successful at teaching:

  • Learn from the experts.
    1. We have provided software development and other IT related training to many major corporations in Virginia since 2002.
    2. Our educators have years of consulting and training experience; moreover, we require each trainer to have cross-discipline expertise i.e. be Java and .NET experts so that you get a broad understanding of how industry wide experts work and think.
  • Discover tips and tricks about Linux Unix programming
  • Get your questions answered by easy to follow, organized Linux Unix experts
  • Get up to speed with vital Linux Unix programming tools
  • Save on travel expenses by learning right from your desk or home office. Enroll in an online instructor led class. Nearly all of our classes are offered in this way.
  • Prepare to hit the ground running for a new job or a new position
  • See the big picture and have the instructor fill in the gaps
  • We teach with sophisticated learning tools and provide excellent supporting course material
  • Books and course material are provided in advance
  • Get a book of your choice from the HSG Store as a gift from us when you register for a class
  • Gain a lot of practical skills in a short amount of time
  • We teach what we know…software
  • We care…
learn more
page tags
what brought you to visit us
Washington D C, Virginia Linux Unix Training , Washington D C, Virginia Linux Unix Training Classes, Washington D C, Virginia Linux Unix Training Courses, Washington D C, Virginia Linux Unix Training Course, Washington D C, Virginia Linux Unix Training Seminar

Interesting Reads Take a class with us and receive a book of your choosing for 50% off MSRP.