The 10 Technologies that Will Help You Stay Employed

The 10 Technologies that Will Help You Stay Employed

don’t know anything about your specific job. I don’t know whether you’re in danger of losing it, if you’re a guru in some niche technology and therefore indispensable, or if your company is so staid that your present skills will be sufficient for the rest of your tenure there. So please hang onto those letters telling me that your company is perfectly happy with VB3 or that you’ll never ever have to do anything except C development. And save those missives about how .NET will wipe Java off the face of the development map, or how XML will replace relational databases, or how you can write anything in assembler or C, so no other development tool is even important.

Instead, speculate on what might happen if you didn’t have a job?like so many of your development peers who have been affected by layoffs and closings over the past couple of years. What if you suddenly needed to move? Or, suppose your company were to make a sudden technology turn?

In this job market, with managers looking to hire for current and future development practices, what you know, as a developer, is key to finding work and keeping it. Just as important, you need to know where technology is headed so you can keep up with changes down the road even if you never have to look for development work again.

Here are my picks for the 10 most important development technologies today, with the most important ones first. After you’ve read my list, be sure to join us in the talk.editors.devx discussion group to submit your own technology top 10 list.

1. XML
First, and above all else, you should know about XML. I’m not speaking only of the XML specification itself, but also of a family of related XML-based languages: the most important of which are XHTML, XSLT, XSL, DTDs, XML Schema (XSD), XPath, XQuery, and SOAP. For those who have been hiding in the basement slinging code without looking up from the keyboard for the last five years, XML is a text file containing HTML-like tags that define a tree structure and describe the data that they hold.

The nicest thing about XML is that you can store both structured and unstructured data in it?it can contain and describe “ragged” document data just as well as it holds and describes “regular” table data.

  • XHTML is the preferred method for writing HTML these days; because it’s well formed XML, you can manipulate XHTML-formatted documents much more easily than the older, usually malformed HTML documents.
  • XSLT and XSL are languages that transform XML documents into something else. That something might be text documents, PDF files, HTML, comma-delimited files, or some other XML document.
  • DTDs and XML Schema describe the type of content that an XML file can contain, and let you “validate” the contents of XML documents without writing custom code to enforce the rules for that content.
  • XPath and XQuery are query languages that let you extract single items or lists of items from XML documents. XQuery is particularly powerful because it extends XPath queries and essentially is to XML what SQL is to relational databases.
  • SOAP is the standard communication protocol between Web services. While you don’t need to know the SOAP standard inside and out, you should become familiar with the general schema and the way it works so that you can use ?

2. Web Services
Web services are a direct outgrowth of XML’s popularity. Because you can use XML to describe data and objects, because you can use schema to ensure that the content of an XML document is valid, and because XML is a text-based specification, XML makes an extremely convenient base format for a cross-platform communications standard. If you haven’t been exposed to Web services yet, you probably will be soon, and you almost certainly will be within five years. Web service familiarity is important because it’s the simplest way anyone has yet invented for applications to communicate across disparate machines, languages, platforms, and locations. Whether you need them or not, Web services are a major step forward for interoperability.

John Bosak, chair of the XML Working Group, once said that XML “gives Java something to do.” Well, Web services give every language something to do. Web services let COBOL applications running on mainframes talk to Java applications running on handheld devices; let Java applets talk to .NET servers; let desktop applications interact seamlessly with Web servers; and generally provide a relatively easy way for businesses to expose not only data, but also functionality?and do it in a language-, platform-, and location-agnostic way.

3. Object-Oriented Programming
Many programmers still regard OOP as an ivory-tower technology, but just think for a second about which languages have become dominant over the past decade and you’ll begin to understand that it’s not. Starting with Smalltalk, OOP spread to C++ and Pascal (Delphi). It made a serious mainstream leap with Java, and a few years later to VB.NET and C#, completing its ascendance. While you don’t have to learn OOP to use most of these languages, I suspect that there are a diminishing number of programming jobs that you can get if you don’t know the basic concepts and how to use them.

4. Java, C++, C#, VB.NET
I’ve lumped these together not because I’m recommending that you become a guru in every one of these languages. No. The reason is that one of the most efficient ways of learning to program is by looking at code?and a huge amount of the code available to look at is probably not written in your favorite development language.

Over the past few years, language capabilities have become increasingly similar. You can write that Windows Service, Web application, or command-line app in VB.NET these days. Even if you only write in one of these languages, you owe it to yourself to learn enough about the others to be able to read and understand the available examples, and to translate code from them into your preferred language. While the four languages listed here form the basic core of a strong developer’s toolbox, there are others that may prove just as useful, depending on your particular field, such as FORTRAN, COBOL, APL, ADA, Perl, and Lisp.

5. JavaScript
Despite the similarity in their names, Java and JavaScript are unrelated. Why is a scripting language so important? Consider that all the major browsers use JavaScript. If you need to write Web applications, that’s enough of a reason right there. But you can also use JavaScript as a server language for ASP or ASP.NET or as a functional language for extending XSLT. Javascript is the preferred language to activate XUL-based interfaces in Mozilla/Netscape, a derivative, ActionScript, is the programming language for Flash MX applications, and JavaScript is highly likely to be the scripting language for new devices in the future, as well as the macro language for major applications.

In contrast, VBScript, although well supported in Microsoft applications, is a poor relation?and probably a poor choice for future development work. Even Microsoft tends to write its client-side code examples in JavaScript (or its own derivative, JScript) these days. When you have a choice of scripting languages, choose JavaScript.

The Last Five
6. Regular Expressions
You search relational databases with SQL, XML with XPath and XQuery, and plain text with regular expressions. For example, you can do things such as find and remove all comments from an HTML document via a single command. The simpler text-searching functions built into the various development languages such as “IndexOf” or VB classic’s “InStr” function or “Like” operator are no match for regular expressions?and every major development language now provides access to a regular expressions implementation. Although the expressions themselves are difficult to write and even more difficult to read (a throwback to earlier days of computing), they’re a powerful and underused tool.

7. Design Patterns
Just as OOP simplifies programming by letting you collect and classify objects, design patterns classify common object interactions into named patterns. The more you use OOP, the more useful design patterns become. The most common patterns have names that are working their way into the common development argot, so you need to understand them at least well enough to keep up with the general flow of information.

8. Flash MX
When you need more client-side graphics and programming power than you can get with HTML and CSS, Flash is the answer. Programming in Flash is much faster and easier than programming graphics applications with Java applets or .NET code.

In its newest version (MX), Flash is not just a drawing and animation package, it’s also become a highly programmable application environment. and it’s capable of consuming SOAP Web services and calling ColdFusion, Java, or .NET code running on a remote server. Flash is ubiquitous; its runtime is on most of the client machines in the world, including handheld devices, set-top boxes, and even the new Tablet PCs, so using it may actually extend your programs’ reach.

9. Linux/Windows
Get familiar with Linux. Install it on an old machine?or a new one. Download the GUI interfaces and program some applications on it. Install Apache and write a Web application. The world no longer belongs exclusively to Windows, and that trend will probably continue. In contrast, if you’re a hard-core Linux developer, drop your antipathy toward Windows and see what you can adopt. There’s a reason why Windows is still king of the desktop?and it’s not just that Microsoft controls the market.

There’s no telling when your company may decide to switch from Linux to Windows (or vice versa), or when you might want to switch to a company that uses a different platform?or when you might come up with the next killer application idea?so you should try to gain experience on more than one platform.

10. SQL
Although SQL isn’t as new as most of the technologies discussed in this article, and it’s likely to diminish in importance over the next decade, it’s still an essential skill?and one that many developers either don’t have or understand only well enough to use it inefficiently. Don’t rely on GUI-based SQL builders to do the job for you; write your queries by hand until you’re comfortable with the basic SQL syntax. Not only will understanding SQL now help you learn XQuery later, but you may find ways to immediately simplify or improve your current development projects.

Cultivate Curiosity
Finally, (and yes, I realize this is No. 11), the most important skill you can acquire is curiosity. Try things out. That new language or new technology may or not be important to you in your present or future job; but not everything you learn needs to be job-focused. Don’t be afraid of failing; it’s always difficult to be a beginner at any new technology. Most failures happen because people expect too much of themselves too fast. Be satisfied with small steps, and don’t let time (or the absence of it) get in your way. Instead, make time to look at, research, and test new development techniques and tools.

You may never need to become an expert in any of these technologies?and my selections here may be way off-base for your particular situation?but by cultivating curiosity you’ll find out the things that you do need to know.

Editor’s Note: Go to the talk.editors.devx discussion group now to assess Russell’s picks and to contribute a list of your own.
devx-admin

devx-admin

Share the Post:
Global Layoffs

Tech Layoffs Are Getting Worse Globally

Since the start of 2023, the global technology sector has experienced a significant rise in layoffs, with over 236,000 workers being let go by 1,019

Cybersecurity Banking Revolution

Digital Banking Needs Cybersecurity

The banking, financial, and insurance (BFSI) sectors are pioneers in digital transformation, using web applications and application programming interfaces (APIs) to provide seamless services to

FinTech Leadership

Terry Clune’s Fintech Empire

Over the past 30 years, Terry Clune has built a remarkable business empire, with CluneTech at the helm. The CEO and Founder has successfully created

The Role Of AI Within A Web Design Agency?

In the digital age, the role of Artificial Intelligence (AI) in web design is rapidly evolving, transitioning from a futuristic concept to practical tools used

Global Layoffs

Tech Layoffs Are Getting Worse Globally

Since the start of 2023, the global technology sector has experienced a significant rise in layoffs, with over 236,000 workers being let go by 1,019 tech firms, as per data

Huawei Electric Dazzle

Huawei Dazzles with Electric Vehicles and Wireless Earbuds

During a prominent unveiling event, Huawei, the Chinese telecommunications powerhouse, kept quiet about its enigmatic new 5G phone and alleged cutting-edge chip development. Instead, Huawei astounded the audience by presenting

Cybersecurity Banking Revolution

Digital Banking Needs Cybersecurity

The banking, financial, and insurance (BFSI) sectors are pioneers in digital transformation, using web applications and application programming interfaces (APIs) to provide seamless services to customers around the world. Rising

FinTech Leadership

Terry Clune’s Fintech Empire

Over the past 30 years, Terry Clune has built a remarkable business empire, with CluneTech at the helm. The CEO and Founder has successfully created eight fintech firms, attracting renowned

The Role Of AI Within A Web Design Agency?

In the digital age, the role of Artificial Intelligence (AI) in web design is rapidly evolving, transitioning from a futuristic concept to practical tools used in design, coding, content writing

Generative AI Revolution

Is Generative AI the Next Internet?

The increasing demand for Generative AI models has led to a surge in its adoption across diverse sectors, with healthcare, automotive, and financial services being among the top beneficiaries. These

Microsoft Laptop

The New Surface Laptop Studio 2 Is Nuts

The Surface Laptop Studio 2 is a dynamic and robust all-in-one laptop designed for creators and professionals alike. It features a 14.4″ touchscreen and a cutting-edge design that is over

5G Innovations

GPU-Accelerated 5G in Japan

NTT DOCOMO, a global telecommunications giant, is set to break new ground in the industry as it prepares to launch a GPU-accelerated 5G network in Japan. This innovative approach will

AI Ethics

AI Journalism: Balancing Integrity and Innovation

An op-ed, produced using Microsoft’s Bing Chat AI software, recently appeared in the St. Louis Post-Dispatch, discussing the potential concerns surrounding the employment of artificial intelligence (AI) in journalism. These

Savings Extravaganza

Big Deal Days Extravaganza

The highly awaited Big Deal Days event for October 2023 is nearly here, scheduled for the 10th and 11th. Similar to the previous year, this autumn sale has already created

Cisco Splunk Deal

Cisco Splunk Deal Sparks Tech Acquisition Frenzy

Cisco’s recent massive purchase of Splunk, an AI-powered cybersecurity firm, for $28 billion signals a potential boost in tech deals after a year of subdued mergers and acquisitions in the

Iran Drone Expansion

Iran’s Jet-Propelled Drone Reshapes Power Balance

Iran has recently unveiled a jet-propelled variant of its Shahed series drone, marking a significant advancement in the nation’s drone technology. The new drone is poised to reshape the regional

Solar Geoengineering

Did the Overshoot Commission Shoot Down Geoengineering?

The Overshoot Commission has recently released a comprehensive report that discusses the controversial topic of Solar Geoengineering, also known as Solar Radiation Modification (SRM). The Commission’s primary objective is to

Remote Learning

Revolutionizing Remote Learning for Success

School districts are preparing to reveal a substantial technological upgrade designed to significantly improve remote learning experiences for both educators and students amid the ongoing pandemic. This major investment, which

Revolutionary SABERS Transforming

SABERS Batteries Transforming Industries

Scientists John Connell and Yi Lin from NASA’s Solid-state Architecture Batteries for Enhanced Rechargeability and Safety (SABERS) project are working on experimental solid-state battery packs that could dramatically change the

Build a Website

How Much Does It Cost to Build a Website?

Are you wondering how much it costs to build a website? The approximated cost is based on several factors, including which add-ons and platforms you choose. For example, a self-hosted

Battery Investments

Battery Startups Attract Billion-Dollar Investments

In recent times, battery startups have experienced a significant boost in investments, with three businesses obtaining over $1 billion in funding within the last month. French company Verkor amassed $2.1

Copilot Revolution

Microsoft Copilot: A Suit of AI Features

Microsoft’s latest offering, Microsoft Copilot, aims to revolutionize the way we interact with technology. By integrating various AI capabilities, this all-in-one tool provides users with an improved experience that not

AI Girlfriend Craze

AI Girlfriend Craze Threatens Relationships

The surge in virtual AI girlfriends’ popularity is playing a role in the escalating issue of loneliness among young males, and this could have serious repercussions for America’s future. A

AIOps Innovations

Senser is Changing AIOps

Senser, an AIOps platform based in Tel Aviv, has introduced its groundbreaking AI-powered observability solution to support developers and operations teams in promptly pinpointing the root causes of service disruptions

Bebop Charging Stations

Check Out The New Bebob Battery Charging Stations

Bebob has introduced new 4- and 8-channel battery charging stations primarily aimed at rental companies, providing a convenient solution for clients with a large quantity of batteries. These wall-mountable and

Malyasian Networks

Malaysia’s Dual 5G Network Growth

On Wednesday, Malaysia’s Prime Minister Anwar Ibrahim announced the country’s plan to implement a dual 5G network strategy. This move is designed to achieve a more equitable incorporation of both

Advanced Drones Race

Pentagon’s Bold Race for Advanced Drones

The Pentagon has recently unveiled its ambitious strategy to acquire thousands of sophisticated drones within the next two years. This decision comes in response to Russia’s rapid utilization of airborne

Important Updates

You Need to See the New Microsoft Updates

Microsoft has recently announced a series of new features and updates across their applications, including Outlook, Microsoft Teams, and SharePoint. These new developments are centered around improving user experience, streamlining