Agile/Scrum Training Classes in Tyler, Texas
Learn Agile/Scrum in Tyler, Texas 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 Agile/Scrum related training offerings in Tyler, Texas: Agile/Scrum Training
Agile/Scrum Training Catalog
Course Directory [training on all levels]
- .NET Classes
- Agile/Scrum Classes
- Ajax Classes
- Android and iPhone Programming Classes
- Blaze Advisor Classes
- C Programming Classes
- C# Programming Classes
- C++ Programming Classes
- Cisco Classes
- Cloud Classes
- CompTIA Classes
- Crystal Reports Classes
- Design Patterns Classes
- DevOps Classes
- Foundations of Web Design & Web Authoring Classes
- Git, Jira, Wicket, Gradle, Tableau Classes
- IBM Classes
- Java Programming Classes
- JBoss Administration Classes
- JUnit, TDD, CPTC, Web Penetration Classes
- Linux Unix Classes
- Machine Learning Classes
- Microsoft Classes
- Microsoft Development Classes
- Microsoft SQL Server Classes
- Microsoft Team Foundation Server Classes
- Microsoft Windows Server Classes
- Oracle, MySQL, Cassandra, Hadoop Database Classes
- Perl Programming Classes
- Python Programming Classes
- Ruby Programming Classes
- Security Classes
- SharePoint Classes
- SOA Classes
- Tcl, Awk, Bash, Shell Classes
- UML Classes
- VMWare Classes
- Web Development Classes
- Web Services Classes
- Weblogic Administration Classes
- XML Classes
- Working with Elastic Search
20 November, 2024 - 21 November, 2024 - VMware vSphere 8.0 Boot Camp
9 December, 2024 - 13 December, 2024 - Introduction to C++ for Absolute Beginners
16 December, 2024 - 17 December, 2024 - Fast Track to Java 17 and OO Development
9 December, 2024 - 13 December, 2024 - RED HAT ENTERPRISE LINUX AUTOMATION WITH ANSIBLE
2 December, 2024 - 5 December, 2024 - See our complete public course listing
Blog Entries publications that: entertain, make you think, offer insight
Below are two pdf's which discuss and outline the Java Message Service, JMS, tutorial.
One Hour Java Messaging Service Tutorial
Advanced One Hour Java Messaging Service Tutorial
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 */
The python keyword global is used in a function to distinguish a local representation of a variable with the same name.
glbvar = 0
def setglbvar():
global glbvar
# include this declaration so that updates to glbvar are NOT LOCAL to this function
glbvar
= 1
def printglbvar():
print glbvar # No need for global declaration to read value of globvar
setglbvar()
printglbvar() # Prints 1
Every programming language has a mechanism to allow the programmer to create variables which hold custom data entered in by either the coder themselves or by the user of the application.
Regardless of whether you’re new to programming or not, you will have used variables and you should understand that in javascript they can hold any value such as a number or a string of text.
There is also another type of variable called an Array. Now, depending on who you talk to, some will say an array is actually an object, while others say it is a variable. Neither one is wrong but for the sake of simplicity we’ll refer to it as a variable.
Now, arrays are special because they can hold multiple values as opposed to standard variables which can only hold a single value at one time. If you can, try and imagine that your computer’s memory is made up of thousands of little boxes, and each of those boxes has an address which javascript will use to retrieve the array values when needed.
Tech Life in Texas
Company Name | City | Industry | Secondary Industry |
---|---|---|---|
Dr Pepper Snapple Group | Plano | Manufacturing | Nonalcoholic Beverages |
Western Refining, Inc. | El Paso | Energy and Utilities | Gasoline and Oil Refineries |
Frontier Oil Corporation | Dallas | Manufacturing | Chemicals and Petrochemicals |
ConocoPhillips | Houston | Energy and Utilities | Gasoline and Oil Refineries |
Dell Inc | Round Rock | Computers and Electronics | Computers, Parts and Repair |
Enbridge Energy Partners, L.P. | Houston | Transportation and Storage | Transportation & Storage Other |
GameStop Corp. | Grapevine | Retail | Retail Other |
Fluor Corporation | Irving | Business Services | Management Consulting |
Kimberly-Clark Corporation | Irving | Manufacturing | Paper and Paper Products |
Exxon Mobil Corporation | Irving | Energy and Utilities | Gasoline and Oil Refineries |
Plains All American Pipeline, L.P. | Houston | Energy and Utilities | Gasoline and Oil Refineries |
Cameron International Corporation | Houston | Energy and Utilities | Energy and Utilities Other |
Celanese Corporation | Irving | Manufacturing | Chemicals and Petrochemicals |
HollyFrontier Corporation | Dallas | Energy and Utilities | Gasoline and Oil Refineries |
Kinder Morgan, Inc. | Houston | Energy and Utilities | Gas and Electric Utilities |
Marathon Oil Corporation | Houston | Energy and Utilities | Gasoline and Oil Refineries |
United Services Automobile Association | San Antonio | Financial Services | Personal Financial Planning and Private Banking |
J. C. Penney Company, Inc. | Plano | Retail | Department Stores |
Energy Transfer Partners, L.P. | Dallas | Energy and Utilities | Energy and Utilities Other |
Atmos Energy Corporation | Dallas | Energy and Utilities | Alternative Energy Sources |
National Oilwell Varco Inc. | Houston | Manufacturing | Manufacturing Other |
Tesoro Corporation | San Antonio | Manufacturing | Chemicals and Petrochemicals |
Halliburton Company | Houston | Energy and Utilities | Energy and Utilities Other |
Flowserve Corporation | Irving | Manufacturing | Tools, Hardware and Light Machinery |
Commercial Metals Company | Irving | Manufacturing | Metals Manufacturing |
EOG Resources, Inc. | Houston | Energy and Utilities | Gasoline and Oil Refineries |
Whole Foods Market, Inc. | Austin | Retail | Grocery and Specialty Food Stores |
Waste Management, Inc. | Houston | Energy and Utilities | Waste Management and Recycling |
CenterPoint Energy, Inc. | Houston | Energy and Utilities | Gas and Electric Utilities |
Valero Energy Corporation | San Antonio | Manufacturing | Chemicals and Petrochemicals |
FMC Technologies, Inc. | Houston | Energy and Utilities | Alternative Energy Sources |
Calpine Corporation | Houston | Energy and Utilities | Gas and Electric Utilities |
Texas Instruments Incorporated | Dallas | Computers and Electronics | Semiconductor and Microchip Manufacturing |
SYSCO Corporation | Houston | Wholesale and Distribution | Grocery and Food Wholesalers |
BNSF Railway Company | Fort Worth | Transportation and Storage | Freight Hauling (Rail and Truck) |
Affiliated Computer Services, Incorporated (ACS), a Xerox Company | Dallas | Software and Internet | E-commerce and Internet Businesses |
Tenet Healthcare Corporation | Dallas | Healthcare, Pharmaceuticals and Biotech | Hospitals |
XTO Energy Inc. | Fort Worth | Energy and Utilities | Gasoline and Oil Refineries |
Group 1 Automotive | Houston | Retail | Automobile Dealers |
ATandT | Dallas | Telecommunications | Telephone Service Providers and Carriers |
Anadarko Petroleum Corporation | Spring | Energy and Utilities | Gasoline and Oil Refineries |
Apache Corporation | Houston | Energy and Utilities | Gasoline and Oil Refineries |
Dean Foods Company | Dallas | Manufacturing | Food and Dairy Product Manufacturing and Packaging |
American Airlines | Fort Worth | Travel, Recreation and Leisure | Passenger Airlines |
Baker Hughes Incorporated | Houston | Energy and Utilities | Gasoline and Oil Refineries |
Continental Airlines, Inc. | Houston | Travel, Recreation and Leisure | Passenger Airlines |
RadioShack Corporation | Fort Worth | Computers and Electronics | Consumer Electronics, Parts and Repair |
KBR, Inc. | Houston | Government | International Bodies and Organizations |
Spectra Energy Partners, L.P. | Houston | Energy and Utilities | Gas and Electric Utilities |
Energy Future Holdings | Dallas | Energy and Utilities | Energy and Utilities Other |
Southwest Airlines Corporation | Dallas | Transportation and Storage | Air Couriers and Cargo Services |
training details locations, tags and why hsg
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.
- We have provided software development and other IT related training to many major corporations in Texas since 2002.
- 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 Agile/Scrum programming
- Get your questions answered by easy to follow, organized Agile/Scrum experts
- Get up to speed with vital Agile/Scrum 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…