Project Management Training in Erie, Pennsylvania

Learn Project Management in Erie, Pennsylvania 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 Project Management related training offerings in Erie, Pennsylvania: Project Management Training

We offer private customized training for groups of 3 or more attendees.

Project Management Training Catalog

subcategories

cost: $ 1190length: 3 day(s)
cost: $ 790length: 2 day(s)
cost: $ 790length: 2 day(s)
cost: $ 1190length: 3 day(s)
cost: $ 790length: 2 day(s)
cost: $ 790length: 2 day(s)
cost: $ 1190length: 3 day(s)
cost: $ 390length: 1 day(s)
cost: $ 2190length: 5 day(s)

Agile/Scrum Classes

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

In Python, the following list is considered False:

 

False, None, 0, 0.0, "",'',(),{},[]

 

As someone who works in many facets of the music industry, I used to seethe with a mixture of anger and jealousy when I would hear people in more “traditional” goods-based industries argue in favor of music content-based piracy. They made all the classic talking points, like “I wouldn’t spend money on this artist normally, and maybe if I like it I’ll spend money on them when they come to town” (which never happened), or “artists are rich and I’m poor, they don’t need my money” (rarely the case), or the worst, “if it were fairly priced and worth paying for, I’d buy it” (not true).  I always wondered if they’d have the same attitude if 63% of the things acquired by customers in their industries weren’t actually paid for, as was conservatively estimated as the case for the music industry in 2009 (other estimations put the figure of pirated music at 95%). Well, we may soon see the answer to curiosities like that. Though one can say with tentative confidence that music piracy is on the decline thanks to services like Spotify and Rdio, it could be looming on the horizon for the entire global, physical supply chain. Yes, I’m talking about 3d printers.

Before I get into the heart of this article, let me take a moment to make one thing clear: I think these machines are incredible. It’s damn near inspiring to think of even a few of their potentially world-changing applications: affordable, perfectly fit prosthetic limbs for wounded servicemen and women; the ability to create a piece of machinery on the spot instead of having to wait for a spare to arrive in the mail, or en route if your car or ship breaks down in a far away place; a company based out of Austin, TX even made a fully functioning firearm from a 3d printer a few months ago.

If these machines become as consumer-friendly and idiot-proof as possible (like computers), it’s possible that in a matter of decades (maybe less), a majority of U.S. households will have their own 3d printer. There’s also the possibility they could take the tech-hobbyist path, one that is much less appealing to the masses. Dale Dougherty of Makezine.com estimates there are currently around 100,000 “personal” 3d printers, or those not owned for business or educational purposes. I don’t think they’ll ever be as ubiquitous as computers, but there are plenty of mechanically inclined, crafty hobbyists out there who would love to play around with a 3d printer if it was affordable enough.

That being said, is there reason to worry about the economic implications of consumers making what they want, essentially for free, instead of paying someone else to produce it? Or will the printers instead be used for unique items more so than replicating and ripping off other companies’ merchandise in mass amounts? The number of people working in industries that would be affected by a development like this is far greater than the number of people who work in content-based industries, so any downturn would probably have a much larger economic implications. Certainly, those times are a ways off, but a little foresightedness never hurt anyone!

Computers. They’re a part of our everyday lives. Most of us couldn’t imagine living a day without them. We use them for school, work, and fun and use them to stay connected to those we love and care about. Since the invention of the web cam, millions of us use webcams to communicate with loved-ones and business contacts far away.

Web camera use has leveled the playing field for business entrepreneurs and given teenagers a fun way to chat with friends. However, solid citizens aren’t the only ones who make use of this popular modern technology. Recently, there have been reports of criminals using a type of webcam spy hack to insert themselves unseen into the living rooms and bedrooms of millions of unsuspecting users.

The Webcam Spy Hack

The most popular way criminals gain access to your webcam is through innocent-looking emails. You may receive an e-card from someone in your contacts list. When you click on it, you’re directed to another website to view the e-card. While you’re listening to music and watching animated puppies scroll across the screen, a Trojan horse is silently installed into your computer’s hard drive.

The original article was posted by Michael Veksler on Quora

A very well known fact is that code is written once, but it is read many times. This means that a good developer, in any language, writes understandable code. Writing understandable code is not always easy, and takes practice. The difficult part, is that you read what you have just written and it makes perfect sense to you, but a year later you curse the idiot who wrote that code, without realizing it was you.

The best way to learn how to write readable code, is to collaborate with others. Other people will spot badly written code, faster than the author. There are plenty of open source projects, which you can start working on and learn from more experienced programmers.

Readability is a tricky thing, and involves several aspects:

  1. Never surprise the reader of your code, even if it will be you a year from now. For example, don’t call a function max() when sometimes it returns the minimum().
  2. Be consistent, and use the same conventions throughout your code. Not only the same naming conventions, and the same indentation, but also the same semantics. If, for example, most of your functions return a negative value for failure and a positive for success, then avoid writing functions that return false on failure.
  3. Write short functions, so that they fit your screen. I hate strict rules, since there are always exceptions, but from my experience you can almost always write functions short enough to fit your screen. Throughout my carrier I had only a few cases when writing short function was either impossible, or resulted in much worse code.
  4. Use descriptive names, unless this is one of those standard names, such as i or it in a loop. Don’t make the name too long, on one hand, but don’t make it cryptic on the other.
  5. Define function names by what they do, not by what they are used for or how they are implemented. If you name functions by what they do, then code will be much more readable, and much more reusable.
  6. Avoid global state as much as you can. Global variables, and sometimes attributes in an object, are difficult to reason about. It is difficult to understand why such global state changes, when it does, and requires a lot of debugging.
  7. As Donald Knuth wrote in one of his papers: “Early optimization is the root of all evil”. Meaning, write for readability first, optimize later.
  8. The opposite of the previous rule: if you have an alternative which has similar readability, but lower complexity, use it. Also, if you have a polynomial alternative to your exponential algorithm (when N > 10), you should use that.

Use standard library whenever it makes your code shorter; don’t implement everything yourself. External libraries are more problematic, and are both good and bad. With external libraries, such as boost, you can save a lot of work. You should really learn boost, with the added benefit that the c++ standard gets more and more form boost. The negative with boost is that it changes over time, and code that works today may break tomorrow. Also, if you try to combine a third-party library, which uses a specific version of boost, it may break with your current version of boost. This does not happen often, but it may.

Don’t blindly use C++ standard library without understanding what it does - learn it. You look at std::vector::push_back() documentation at it tells you that its complexity is O(1), amortized. What does that mean? How does it work? What are benefits and what are the costs? Same with std::map, and with std::unordered_map. Knowing the difference between these two maps, you’d know when to use each one of them.

Never call new or delete directly, use std::make_unique and [cost c++]std::make_shared[/code] instead. Try to implement usique_ptr, shared_ptr, weak_ptr yourself, in order to understand what they actually do. People do dumb things with these types, since they don’t understand what these pointers are.

Every time you look at a new class or function, in boost or in std, ask yourself “why is it done this way and not another?”. It will help you understand trade-offs in software development, and will help you use the right tool for your job. Don’t be afraid to peek into the source of boost and the std, and try to understand how it works. It will not be easy, at first, but you will learn a lot.

Know what complexity is, and how to calculate it. Avoid exponential and cubic complexity, unless you know your N is very low, and will always stay low.

Learn data-structures and algorithms, and know them. Many people think that it is simply a wasted time, since all data-structures are implemented in standard libraries, but this is not as simple as that. By understanding data-structures, you’d find it easier to pick the right library. Also, believe it or now, after 25 years since I learned data-structures, I still use this knowledge. Half a year ago I had to implemented a hash table, since I needed fast serialization capability which the available libraries did not provide. Now I am writing some sort of interval-btree, since using std::map, for the same purpose, turned up to be very very slow, and the performance bottleneck of my code.

Notice that you can’t just find interval-btree on Wikipedia, or stack-overflow. The closest thing you can find is Interval tree, but it has some performance drawbacks. So how can you implement an interval-btree, unless you know what a btree is and what an interval-tree is? I strongly suggest, again, that you learn and remember data-structures.

These are the most important things, which will make you a better programmer. The other things will follow.

Tech Life in Pennsylvania

The first daily newspaper was published in Philadelphia in 1784. In 1946 Philadelphia became home to the first computer. The State College Area High School was the first school in the country to teach drivers education in 1958. Pennsylvania has an impressive collection of schools, 500 public school districts, thousands of private schools, publicly funded colleges and universities, and over 100 private institutions of higher education. The University of Pennsylvania is also the Commonwealth's only, and geographically the most southern, Ivy League school.
I am always doing that which I can not do, in order that I may learn how to do it.~ Pablo Picasso
other Learning Options
Software developers near Erie 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 Pennsylvania that offer opportunities for Project Management developers
Company Name City Industry Secondary Industry
The Hershey Company Hershey Manufacturing Food and Dairy Product Manufacturing and Packaging
Crown Holdings, Inc. Philadelphia Manufacturing Metals Manufacturing
Air Products and Chemicals, Inc. Allentown Manufacturing Chemicals and Petrochemicals
Dick's Sporting Goods Inc Coraopolis Retail Sporting Goods, Hobby, Book, and Music Stores
Mylan Inc. Canonsburg Healthcare, Pharmaceuticals and Biotech Pharmaceuticals
UGI Corporation King Of Prussia Energy and Utilities Gas and Electric Utilities
Aramark Corporation Philadelphia Business Services Business Services Other
United States Steel Corporation Pittsburgh Manufacturing Manufacturing Other
Comcast Corporation Philadelphia Telecommunications Cable Television Providers
PPL Corporation Allentown Energy and Utilities Gas and Electric Utilities
SunGard Wayne Computers and Electronics IT and Network Services and Support
WESCO Distribution, Inc. Pittsburgh Energy and Utilities Energy and Utilities Other
PPG Industries, Inc. Pittsburgh Manufacturing Chemicals and Petrochemicals
Airgas Inc Radnor Manufacturing Chemicals and Petrochemicals
Rite Aid Corporation Camp Hill Retail Grocery and Specialty Food Stores
The PNC Financial Services Group Pittsburgh Financial Services Banks
Universal Health Services, Inc. King Of Prussia Healthcare, Pharmaceuticals and Biotech Hospitals
Erie Insurance Group Erie Financial Services Insurance and Risk Management
Pierrel Research Wayne Healthcare, Pharmaceuticals and Biotech Biotechnology
Unisys Corporation Blue Bell Computers and Electronics IT and Network Services and Support
Lincoln Financial Group Radnor Financial Services Insurance and Risk Management
AmerisourceBergen Wayne Healthcare, Pharmaceuticals and Biotech Pharmaceuticals
Sunoco, Inc. Philadelphia Manufacturing Chemicals and Petrochemicals
CONSOL Energy Inc. Canonsburg Energy and Utilities Gas and Electric Utilities
H. J. Heinz Company Pittsburgh Manufacturing Food and Dairy Product Manufacturing and Packaging

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 Pennsylvania 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 Project Management programming
  • Get your questions answered by easy to follow, organized Project Management experts
  • Get up to speed with vital Project Management 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
Erie, Pennsylvania Project Management, Erie, Pennsylvania Project ManagementClasses, Erie, Pennsylvania Project ManagementCourses, Erie, Pennsylvania Project ManagementCourse, Erie, Pennsylvania Project ManagementSeminar
training locations
Pennsylvania cities where we offer Project Management

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