.NET Training Classes in Corpus Christi, Texas
Learn .NET in Corpus Christi, 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 .NET related training offerings in Corpus Christi, Texas: .NET Training
.NET Training Catalog
subcategories
C# Programming Classes
Design Patterns Classes
F# Programming Classes
JUnit, TDD, CPTC, Web Penetration Classes
Microsoft Development Classes
Microsoft Windows Server Classes
SharePoint Classes
Course Directory [training on all levels]
- .NET Classes
- Agile/Scrum Classes
- AI Classes
- Ajax Classes
- Android and iPhone Programming Classes
- Azure Classes
- Blaze Advisor Classes
- C Programming Classes
- C# Programming Classes
- C++ Programming Classes
- Cisco Classes
- Cloud Classes
- CompTIA Classes
- Crystal Reports Classes
- Data 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
- SAS 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
- ASP.NET Core MVC (VS2022)
24 November, 2025 - 25 November, 2025 - RHCSA EXAM PREP
17 November, 2025 - 21 November, 2025 - Python for Scientists
8 December, 2025 - 12 December, 2025 - Introduction to Spring 6, Spring Boot 3, and Spring REST
15 December, 2025 - 19 December, 2025 - Fast Track to Java 17 and OO Development
8 December, 2025 - 12 December, 2025 - See our complete public course listing
Blog Entries publications that: entertain, make you think, offer insight
When businesses are trying to expand and require professionals to lead teams, terminology may get in the way of who performs what roles. When it comes to information technology (IT), new and vital professionals may seem hard to differentiate between one another. However, there are key differences between specific professionals needed with IT departments. Here are the responsibilities that differentiate between an IT manager and an IT project manager.
IT Managers
IT managers are the leaders of the entire IT infrastructure a business has to function properly. The IT manager must lead the entire IT department to regulate and maintain the IT network for the business. As a manager, this IT professional corresponds with other departments in the business about how the IT department is implementing the goals the business is aiming toward. In addition, the manager must be fiscally responsible and answer to executives and financial officers in the business the reasons behind certain costs and investments. Because of the dual computer technology and business acumen this profession requires, many IT managers have a Master of Business Administration (MBA) related to information technology.
IT Project Managers
People are optimistic about problem solving, but in most cases this is easier said than done. How do you do it?
In Adobe’s 2016 global study on creativity in business, 96% of people identified creativity as essential to their success, both in terms of their income and the value they bring to the world. Moreover, 78% wished they were capable of thinking differently, believing that they would progress through their careers more quickly if they did.
According to Malcom Gladwell, the world's most successful people have one thing in common: they think differently from most everyone else. In his book, How Successful People Think, Malcom opens with the following: “Good thinkers are always in demand. A person who knows how may always have a job, but the person who knows why will always be his boss. Good thinkers solve problems, they never lack ideas that can build an organization, and they always have hope for a better future”
Too often we attribute creative and “different” thinking to natural, innate characteristics that belong only to the lucky. The truth is that you can study how ridiculously successful people think and incorporate their approach into your world.
Snippets and Quotes from Tech Innovators.
The world of technology moves faster than the speed of light it seems. Devices are updated and software upgraded annually and sometimes more frequent than that. Society wants to be able to function and be as productive as they can be as well as be entertained “now”.
Software companies must be ready to meet the demands of their loyal customers while increasing their market share among new customers. These companies are always looking to the ingenuity and creativity of their colleagues to keep them in the consumer’s focus. But, who are these “colleagues”? Are they required to be young, twenty-somethings that are fresh out of college with a host of ideas and energy about software and hardware that the consumer may enjoy? Or can they be more mature with a little more experience in the working world and may know a bit more about the consumer’s needs and some knowledge of today’s devices?
Older candidates for IT positions face many challenges when competing with their younger counterparts. The primary challenge that most will face is the ability to prove their knowledge of current hardware and the development and application of software used by consumers. Candidates will have to prove that although they may be older, their knowledge and experience is very current. They will have to make more of an effort to show that they are on pace with the younger candidates.
Another challenge will be marketing what should be considered prized assets; maturity and work experience. More mature candidates bring along a history of work experience and a level of maturity that can be utilized as a resource for most companies. They are more experienced with time management, organization and communication skills as well as balancing home and work. They can quickly become role models for younger colleagues within the company.
Unfortunately, some mature candidates can be seen as a threat to existing leadership, especially if that leadership is younger. Younger members of a leadership team may be concerned that the older candidate may be able to move them out of their position. If the candidate has a considerably robust technological background this will be a special concern and could cause the candidate to lose the opportunity.
Demonstrating that their knowledge or training is current, marketing their experience and maturity, and not being seen as a threat to existing leadership make job hunting an even more daunting task for the mature candidate. There are often times that they are overlooked for positions for these very reasons. But, software companies who know what they need and how to utilize talent will not pass up the opportunity to hire these jewels.
Related:
H-1B Visas, the Dance Between Large Corporations and the Local IT Professional
Is a period of free consulting an effective way to acquire new business with a potential client?
In programming, memory leaks are a common issue, and it occurs when a computer uses memory but does not give it back to the operating system. Experienced programmers have the ability to diagnose a leak based on the symptoms. Some believe every undesired increase in memory usage is a memory leak, but this is not an accurate representation of a leak. Certain leaks only run for a short time and are virtually undetectable.
Memory Leak Consequences
Applications that suffer severe memory leaks will eventually exceed the memory resulting in a severe slowdown or a termination of the application.
How to Protect Code from Memory Leaks?
Preventing memory leaks in the first place is more convenient than trying to locate the leak later. To do this, you can use defensive programming techniques such as smart pointers for C++. A smart pointer is safer than a raw pointer because it provides augmented behavior that raw pointers do not have. This includes garbage collection and checking for nulls.
If you are going to use a raw pointer, avoid operations that are dangerous for specific contexts. This means pointer arithmetic and pointer copying. Smart pointers use a reference count for the object being referred to. Once the reference count reaches zero, the excess goes into garbage collection. The most commonly used smart pointer is shared_ptr from the TR1 extensions of the C++ standard library.
Static Analysis
The second approach to memory leaks is referred to as static analysis and attempts to detect errors in your source-code. CodeSonar is one of the effective tools for detection. It provides checkers for the Power of Ten coding rules, and it is especially competent at procedural analysis. However, some might find it lagging for bigger code bases.
How to Handle a Memory Leak
For some memory leaks, the only solution is to read through the code to find and correct the error. Another one of the common approaches to C++ is to use RAII, which an acronym for Resource Acquisition Is Initialization. This approach means associating scoped objects using the acquired resources, which automatically releases the resources when the objects are no longer within scope. RAII has the advantage of knowing when objects exist and when they do not. This gives it a distinct advantage over garbage collection. Regardless, RAII is not always recommended because some situations require ordinary pointers to manage raw memory and increase performance. Use it with caution.
The Most Serious Leaks
Urgency of a leak depends on the situation, and where the leak has occurred in the operating system. Additionally, it becomes more urgent if the leak occurs where the memory is limited such as in embedded systems and portable devices.
To protect code from memory leaks, people have to stay vigilant and avoid codes that could result in a leak. Memory leaks continue until someone turns the system off, which makes the memory available again, but the slow process of a leak can eventually prejudice a machine that normally runs correctly.
Related:
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 .NET programming
- Get your questions answered by easy to follow, organized .NET experts
- Get up to speed with vital .NET 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…















