{"id":44806,"date":"2023-02-16T08:52:52","date_gmt":"2023-02-16T13:52:52","guid":{"rendered":"https:\/\/simpleprogrammer.com\/?p=44806"},"modified":"2026-03-11T01:50:47","modified_gmt":"2026-03-11T01:50:47","slug":"technical-skills-software-developer","status":"publish","type":"post","link":"https:\/\/simpleprogrammer.com\/technical-skills-software-developer\/","title":{"rendered":"32 Technical Skills You Need to Have as a Software Developer"},"content":{"rendered":"<h2 id=\"t-1676553919003\">32 Essential Technical Programmer Skills<\/h2>\n<h3 id=\"t-1676553919006\" data-alt-text=\"1. Language\">1. Knowing the Right Programming Language(s)<\/h3>\n<p style=\"\">I\u2019d advise you to go deep and focus on&nbsp;<a href=\"https:\/\/simpleprogrammer.com\/top-10-programming-languages-learn-2018-javascript-c-python\/\" style=\"outline: none;\">learning the ins and outs of a single programming language<\/a>, so you can feel really confident in your ability to write code in that language.<\/p>\n<h3 id=\"t-1676553919007\" data-alt-text=\"2. Platform\">2. Mastering a Development Platform<\/h3>\n<p>You should have some experience and mastery of at least one development platform and the related technologies or frameworks that go with it.<\/p>\n<p><em>What do I mean by platform?<\/em><\/p>\n<p>Well, generally it means operating system (OS), but it can also apply to other abstractions that act similar to operating systems.<\/p>\n<p>For example, you could be a Mac developer or Windows developer focusing on the Mac or Windows operating systems, but you could also be a web developer focused on a specific web platform.<\/p>\n<p>It\u2019s not so important what you choose, so much as it is that you choose something. Companies usually hire developers to develop for a specific platform or technology. You\u2019ll have a much easier time getting a job as an iOS developer if you have expertise with that specific platform.<\/p>\n<p>This means being familiar with the platform itself, as well as what development tools, idiomatic patterns, and common frameworks programmers typically use when developing for that platform.<\/p>\n<p>So don\u2019t just pick a language; pick a platform as well.<\/p>\n<h3 id=\"t-1676553919008\" data-alt-text=\"3. Framework\">3. A Framework or Stack<\/h3>\n<p><a href=\"https:\/\/simpleprogrammer.com\/cross-platform-app-development-frameworks-2021\/\" style=\"outline: none;\"><strong>A framework is simply a set of libraries<\/strong><\/a><strong>&nbsp;that are used to develop code on a particular platform or on multiple platforms<\/strong>. It usually makes common programming tasks on that platform easier.<\/p>\n<p>For example: Most C# developers use the .NET Framework for writing C# applications. The .NET Framework consists of many libraries and classes that allow a C# developer to work at a higher level of abstraction since he doesn\u2019t have to completely reinvent the wheel every time he wants to do something.<\/p>\n<p>A stack is a bit different.<strong>&nbsp;A stack is a set of technologies, usually including a framework, that are commonly used together to create a full application<\/strong>.<\/p>\n<p>For example, there is a common stack called the MEAN stack. It stands for MongoDB, Express.js, AngularJS, and Node.js.<\/p>\n<p><em>MongoDB<\/em>&nbsp;is a database technology.&nbsp;<em>Express.js<\/em>&nbsp;is a Node.js framework for creating web applications.&nbsp;<em>AngularJS<\/em>&nbsp;is a front end JavaScript framework for creating the user interfaces for web applications.&nbsp;<em>Node.js<\/em>&nbsp;is a runtime environment for developing web-based applications in JavaScript.<\/p>\n<p>If you know all those technologies and frameworks, you\u2019ll be able to develop an entire web application. Learning a stack can be extremely valuable because it means you have all the required skills to develop a full application.<\/p>\n<h3 id=\"t-1676553919009\" data-alt-text=\"4. Databases\">4. Basic Database Knowledge<\/h3>\n<p>There are two main&nbsp;<strong>database technologies<\/strong>: relational databases and document databases.<\/p>\n<p style=\"\">At the very least, you should know:<\/p>\n<ul>\n<li>How databases work<\/li>\n<li>How to perform basic queries to get data<\/li>\n<li>How to insert, update, and delete data<\/li>\n<li style=\"\">How to join datasets together<\/li>\n<\/ul>\n<p>In addition, know how to&nbsp;<strong>retrieve and store data programmatically from your code<\/strong>&nbsp;with your chosen platform and \/ or framework.<\/p>\n<p>Most developers are expected to be able to write code that can interact with a database.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919010\" data-alt-text=\"5. Logic\">5. Programming logic<\/h3>\n<p>Logical thinking is the number one skill required for programming.<\/p>\n<p>The best way to <a href=\"https:\/\/simpleprogrammer.com\/programming-logic-get-better\/\" style=\"outline: none;\">get better at programming logic<\/a> is to create software. Problems will come up, and you\u2019ll have to use logic to figure out the solution.<\/p>\n<p>This is a superior way of improvement compared to memorizing syntax or pieces of code. It\u2019s focusing on the logic behind the code, and then having a purpose for implementing the syntax \u2013 leading to deep understanding and skill.<\/p>\n<h3 id=\"t-1676553919011\" data-alt-text=\"6. Algorithms\">6. Algorithms &amp; Data Structures<\/h3>\n<p><strong>Algorithms<\/strong>&nbsp;are the common ways of solving various computer science \/ programming problems.<\/p>\n<p>For example, there are several algorithms that are commonly used for sorting lists of things programmatically. Each of these sorting algorithms has a different set of properties regarding speed, memory size requirements, and the ideal kind of data it works on.<\/p>\n<p>There are many of these algorithms in the field of computer science, and it is also important to understand how to write your own variations of these algorithms to solve the kind of tricky problems you might encounter when solving real programming problems.<\/p>\n<p>Often,&nbsp;<a href=\"https:\/\/simpleprogrammer.com\/learning-algorithms-really-necessary\/\">being good with algorithms<\/a> can allow one developer to solve a problem in an hour that might take another developer several days to figure out.<\/p>\n<p><strong>Data structures<\/strong>&nbsp;fall into a similar category and work in conjunction with algorithms.There are several data structures all software developers should be familiar with including:<\/p>\n<ul>\n<li>Arrays or vectors<\/li>\n<li>Linked lists<\/li>\n<li>Stacks<\/li>\n<li>Queues<\/li>\n<li>Trees<\/li>\n<li>Hashes<\/li>\n<li>Sets<\/li>\n<\/ul>\n<p>By having a good grasp of data structures and algorithms, you can easily and elegantly solve many difficult programming problems.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919012\">7. Naming<\/h3>\n<p>The ability to name your pieces of code appropriately is essential to being a good Software Engineer.<\/p>\n<p>Your variables, functions and classes should be named such that anyone reading your code can grasp their meaning.<\/p>\n<p><a href=\"https:\/\/simpleprogrammer.com\/choose-good-names-code\/\" style=\"outline: none;\">Choosing good names for your code<\/a> makes it easy for yourself or others to work with or on your code without wasting time and extra brainpower.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919013\" data-alt-text=\"8. Readability\">8. Readable code<\/h3>\n<p dir=\"ltr\">How readable a programmer\u2019s code is depends on the knowledge level of who\u2019s reading the code, as well as the capabilities of the programming language itself.&nbsp;<\/p>\n<p dir=\"ltr\">A few things hold true no matter what, though:<\/p>\n<ul>\n<li dir=\"ltr\">Picking good names for classes, methods and variables<\/li>\n<li dir=\"ltr\">Giving each of these just one purpose<\/li>\n<li dir=\"ltr\">Formatting your code consistently<\/li>\n<li dir=\"ltr\">Avoiding excessive nesting<\/li>\n<\/ul>\n<p ltr\"\"=\"\">These are some&nbsp;<a href=\"https:\/\/simpleprogrammer.com\/what-makes-code-readable-not-what-you-think\/\" style=\"outline: none;\">principles for readable code<\/a>. Do keep in mind who will be reading it and how they\u2019ll perceive it based on their own skill background.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919014\" data-alt-text=\"9. Quality\">9. Writing quality code = reducing bugs<\/h3>\n<p>The ability to write quality code is one of the biggest differentiators between beginner and advanced developers. <a href=\"https:\/\/simpleprogrammer.com\/reduce-software-bugs-quality-code\/\" style=\"outline: none;\">With high-quality code come fewer bugs<\/a> \u2013 making the lives of the development team, QA, and management easier at the same time.<\/p>\n<p>But how do you achieve \u201cquality code\u201d?<\/p>\n<p>Simplicity and testability are key. Don\u2019t make your code more complex than it needs to be, and split it up into independent modules as much as possible.<\/p>\n<p>This also ensures it\u2019s easy to test. Testing your code and writing it in a way that facilitates testing is at the heart of quality code.<\/p>\n<p>Sure, this can take more time up front \u2013 but the quality code you\u2019ve created as a result of your diligence will make for a more useful and valuable product.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919015\" data-alt-text=\"10. Duplication\">10. Avoiding code duplication<\/h3>\n<p>It\u2019s easy for duplication to sneak into our code. To have the ability to prevent it means you\u2019ll be wasting less time, space, and maintenance effort.<\/p>\n<p>The three <a href=\"https:\/\/simpleprogrammer.com\/types-of-duplication-in-code\/\">types of code duplication<\/a> that can happen are data duplication, type duplication and algorithm duplication.<\/p>\n<p>After you\u2019ve identified these in your code, you can use the technical skill of refactoring to eliminate them.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919016\" data-alt-text=\"11. Cleanliness\">11. Clean code principles<\/h3>\n<p>Great Software Engineers know how to write clean code.<\/p>\n<p>They do it because it\u2019s necessary for improving time efficiency, collaborating on your code, debugging and maintenance.&nbsp;<\/p>\n<p>Some <a href=\"https:\/\/simpleprogrammer.com\/clean-code-principles-better-programmer\/\" style=\"outline: none;\">principles you should follow to write clean code<\/a> are simplicity, consistency and clarity in naming, avoiding repetition, and readability.<\/p>\n<p>Clean code is a delight to read and work with, and any Software Engineer worth his weight will aim to produce the cleanest code possible.<\/p>\n<h3 id=\"t-1676553919017\" data-alt-text=\"12. OOP\">12. Understanding Object-Oriented Design<\/h3>\n<p>In software development, we are always trying to manage complexity.<\/p>\n<p>Thinking in terms of objects helps us do that because it allows us to define and design a complicated system out of a bunch of interacting components, rather than trying to tackle the entire complexity as a whole.<\/p>\n<p>The most popular languages and patterns you\u2019ll find in software development are still heavily, if not completely, influenced by object oriented design and analysis.<\/p>\n<p>You should have a good understanding of what a class is, what the different types of inheritance are\u2014and when to use them\u2014as well as understanding terms like polymorphism and encapsulation.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919018\" data-alt-text=\"13. Patterns\">13. Design patterns<\/h3>\n<p>A design pattern (e.g. the <a href=\"https:\/\/simpleprogrammer.com\/design-patterns-simplified-the-bridge-pattern\/\" style=\"outline: none;\">bridge pattern<\/a>) is a guideline for solving a problem that\u2019s recurring in your programs. This helps prevent issues that can come up with ad-hoc solutions.<\/p>\n<p>Design patterns can be classified into creational patterns, structural patterns, and behavioral patterns.<\/p>\n<p>Although they\u2019re useful in many instances, it\u2019s important for Software Engineers <a href=\"https:\/\/simpleprogrammer.com\/dont-get-obsessed-design-patterns\/\" style=\"outline: none;\">not to get obsessed with applying design patterns<\/a> whenever possible.<\/p>\n<p>Sometimes <em>leaving the code as-is<\/em> makes more sense \u2013 you need to use discernment.<\/p>\n<h3 id=\"t-1676553919019\">14. Testing<\/h3>\n<p><strong>It used to be that we developers would write a bunch of code and \u201cthrow it over the wall\u201d<\/strong>&nbsp;to a bunch of testers who would find all kinds of bugs in our code, we\u2019d fix the bugs, and that was that.<\/p>\n<p>Not anymore.<\/p>\n<p>With so many software projects adopting what is called an Agile process, (we\u2019ll discuss this more when we get to methodologies), software developers and testers are having to work much more closely together.<\/p>\n<p>You should at least be familiar with some basic terms like:<\/p>\n<ul>\n<li>Whitebox testing<\/li>\n<li>Blackbox testing<\/li>\n<li>Unit testing (not really testing)<\/li>\n<li>Boundary conditions<\/li>\n<li>Test automation<\/li>\n<li>Acceptance testing<\/li>\n<\/ul>\n<p>A good developer\u2014and I\u2019m assuming you want to at least become <a href=\"https:\/\/simpleprogrammer.com\/back-to-basics-why-unit-testing-is-hard\/\" style=\"outline: none;\">a good developer\u2014tests their own code<\/a> before giving it to someone else.<\/p>\n<p>If you really want to be considered a professional and not just a hack, this is&nbsp;<strong>non-negotiable<\/strong>.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919020\">15. Debugging<\/h3>\n<p><strong>You&#8217;re going to spend perhaps 90% of your time as a software developer figuring out why your code doesn\u2019t work<\/strong>.<\/p>\n<p>Using the debugger is not all that the skill of debugging is about. Instead, a good Software Engineer or Developer will first apply their problem-solving brain to the issue.<\/p>\n<p>He\u2019ll look for where the bug is coming from, theorize about possible causes, and test out solutions.&nbsp;<\/p>\n<ol>\n<li style=\"\">The first step is reproducing the error.&nbsp;<\/li>\n<li style=\"\">The second step of <a href=\"https:\/\/simpleprogrammer.com\/effective-debugging\/\" style=\"outline: none;\">effective debugging<\/a> is thinking about the problem and its likely cause.<\/li>\n<li style=\"\">Third step: Writing unit tests for the ideas you came up with.<\/li>\n<\/ol>\n<p>If you still can\u2019t get to the root of the issue, try doing away with parts of the program and focus on smaller pieces at a time. This way you can isolate where the bug is coming from.<\/p>\n<p>Finally, if you\u2019ve fixed a bug, make sure you understand the solution and can reproduce it at will.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919021\" data-alt-text=\"16. Maintenance\">16. Code maintenance<\/h3>\n<p>You\u2019ll have much code maintenance to do in your Software Engineering career \u2013 both of others\u2019, and your own.<\/p>\n<p><a href=\"https:\/\/simpleprogrammer.com\/maintaining-code\/\" style=\"outline: none;\">Maintaining code well<\/a>&nbsp;means improving it every time you work on it:<\/p>\n<p>Whether it be creating unit tests, clearing up names, making new methods, or refactoring whole code segments.<\/p>\n<p>Your goal is to end up with code that\u2019s a lot more readable, so the next round of maintenance will be even easier for whoever is doing it.<\/p>\n<p>Try to automate as much of this process as possible to save time and energy down the road. And only add (high-quality!) comments if absolutely necessary.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919022\" data-alt-text=\"17. Source Control\">17. Source control<\/h3>\n<p>Source control at its most basic level allows you to keep a history of the changes made to different files in a software project.<\/p>\n<p>It also allows for multiple developers to work on the same code at the same time and to merge those changes back together.<\/p>\n<p><strong>You should know how to use at least one source control system very well<\/strong>, and you should be familiar with most of the basic source control concepts.<\/p>\n<p dir=\"ltr\">If a programmer is working on a software together with others, he has to know how to manage &nbsp;different versions of its source code that his team might be working with.<\/p>\n<p dir=\"ltr\">Good <a href=\"https:\/\/simpleprogrammer.com\/software-developers-know-source-control\/\" style=\"outline: none;\">source control<\/a> also mitigates the risk of the source code being accidentally deleted. But most importantly, it helps coordinate a team of developers working on the same software.<\/p>\n<p dir=\"ltr\">A source control system includes a repository to store the code, which individual developers can then \u201ccheck out\u201d a copy of onto their local drive.<\/p>\n<p dir=\"ltr\">After making changes, you then \u201ccheck-in\u201d the modified code to the repository. New versions can such be managed between multiple programmers.&nbsp;<\/p>\n<p dir=\"ltr\">The most popular source control systems today are Git, CVS, Subversion and Mercurial.<\/p>\n<h4 dir=\"ltr\">Proficiency in Git<\/h4>\n<p dir=\"ltr\"><a href=\"https:\/\/simpleprogrammer.com\/git-relevant-in-2021\/\" style=\"outline: none;\">Git is the number one source control system for programmers today<\/a> \u2013 and more and more development teams are switching to it over time. It offers many features, but its basics are easy to learn.<\/p>\n<p dir=\"ltr\">Git\u2019s codebase is also constantly evolving, making it a future proof system for version control.<\/p>\n<p dir=\"ltr\">There\u2019s no reason why being proficient in Git shouldn\u2019t be something in every developer\u2019s toolbox.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919023\" data-alt-text=\"18. Reuse\">18. Code Reuse<\/h3>\n<p>Programmers should reuse code to speed up development and reduce costs, as well as make a better product for the user.<\/p>\n<p>But they need to know when <a href=\"https:\/\/simpleprogrammer.com\/code-reuse-benefit\/\" style=\"outline: none;\">reusing code is feasible<\/a> \u2013 <em>and&nbsp;<\/em><em>the code has to be of high quality in the first place<\/em>.<\/p>\n<p>This calls for the developer to have advanced knowledge and skill.&nbsp;<\/p>\n<p>If you\u2019re aware of the benefits and challenges, and follow the best practices of code reuse, it\u2019s a powerful tool for building software better and more efficiently.<\/p>\n<h3 id=\"t-1676553919024\">19. Methodologies<\/h3>\n<p>Today, the most common software development methodologies<a href=\"https:\/\/simpleprogrammer.com\/dont-go-chasing-waterfalls-mini-waterfall-vs-agile\/\">&nbsp;are waterfall development and Agile development<\/a>.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919025\" data-alt-text=\"20. Architecture\">20. Software Architecture<\/h3>\n<p dir=\"ltr\">Learn how to use <a href=\"https:\/\/simpleprogrammer.com\/software-architecture-principles\/\" style=\"outline: none;\">the principles of Software Architecture<\/a> to properly design software, and be able to understand and communicate its workings as a whole.<\/p>\n<p dir=\"ltr\">These include the five SOLID principles (Single Responsibility Principle, Open-Closed Principle, Liskov Substitution Principle, Interface Segregation Principle and Dependency Inversion Principle), economic principles (Opportunity Cost Principle, Cost of Delay Principle), as well as the \u201cLeast\u201d, or minimalist principles (Principle of Least Astonishment and Principle of Least Effort).<\/p>\n<p dir=\"ltr\">If you respect Software Architecture principles, your development projects will be more coherent, executed more smoothly, and have a higher chance of success.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919026\" data-alt-text=\"21. Plans\">21. Software Implementation Plans<\/h3>\n<p dir=\"ltr\">A developer should be able to engineer a detailed plan for what tasks lie ahead and how exactly they should be completed \u2013 before he ever starts to dive into development.<\/p>\n<p dir=\"ltr\">This <a href=\"https:\/\/simpleprogrammer.com\/software-implementation-plan\/\" style=\"outline: none;\">software implementation plan<\/a> should be extensive, detailed, precise and well-structured. You can set up the plan as a checklist with subheadings for the different parts of the task (e.g. Back End, Front End, etc.)<\/p>\n<p dir=\"ltr\">Programmers can use this approach to bring clarity and direction to the development process.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919027\" data-alt-text=\"22. Speed\">22. High coding speed<\/h3>\n<p>Being able to type fast is one ingredient to <a href=\"https:\/\/simpleprogrammer.com\/improve-coding-speed\/\" style=\"outline: none;\">improving coding speed<\/a>. But it\u2019s not the only one. The most important thing is to become a subject matter expert.<\/p>\n<p>By expanding your knowledge, you\u2019ll be able to see the big picture. You can then lay out your tasks with precision \u2013 which helps you optimize your code creation.<\/p>\n<p>Use time management to properly plan and execute your workflow.<\/p>\n<p>Finally, if you focus on code quality\/cleanliness, you\u2019ll be able to read, debug, and change it much faster if you need to.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919028\" data-alt-text=\"23. Deployment\">23. Build &amp; Deployment<\/h3>\n<p>Today, most software development projects have some kind of automated build and deployment system.<\/p>\n<p>There are several different software applications out there that help teams to automate both of these tasks, which used to be manual and, for some teams, still are.<\/p>\n<p>You know how you write that code and check it into a source control system?<\/p>\n<p><strong>You need some way to make sure that code actually works after you check it in<\/strong>.<\/p>\n<p><em>That\u2019s where a build system comes in.<\/em><\/p>\n<p>At least, a build system is going to compile all the code and make sure there are no compilation errors.<\/p>\n<p>A sophisticated build system may also&nbsp;<strong>run unit tests or user tests, run code quality checks, and provide some reporting<\/strong>&nbsp;on the current state of the code base.<\/p>\n<h4>Deployment systems<\/h4>\n<p><strong>A deployment system<\/strong> will be responsible for deploying the code either to a production machine or perhaps to some kind of a test environment.<\/p>\n<p>Often, the actual responsibilities for creating and maintaining a build and deployment system will belong to a quickly growing field called DevOps (short for developer operations).<\/p>\n<p>But, that doesn\u2019t excuse you from understanding at least the basics of how this process works.<\/p>\n<h4>Best practices for deployment<\/h4>\n<p dir=\"ltr\">Some <a href=\"https:\/\/simpleprogrammer.com\/best-practices-deployment\/\" style=\"outline: none;\">best practices for software deployment<\/a> Software Engineers should know about are:<\/p>\n<p dir=\"ltr\">First test your application in a virtual environment. Then test it with power users \u2013 you might want to choose members of your company for this.&nbsp;<\/p>\n<p dir=\"ltr\">There\u2019s different methods for deployment, e.g. rolling out new software only to few users, deploying it in phases, releasing it on one server at a time, or creating two environments, one live and one waiting to go live.<\/p>\n<p dir=\"ltr\">Which method you\u2019ll choose for deploying your software depends on the scope of your project, and how much time and resources you have available.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919029\" data-alt-text=\"24. Interfaces\">24. Understanding Interfaces<\/h3>\n<p>In object-oriented programming languages, an <a href=\"https:\/\/simpleprogrammer.com\/back-to-basics-what-is-an-interface\/\">interface<\/a> can force properties on a number of classes. It declares which actions are allowed by these classes.<\/p>\n<p>If a programmer knows how to do it, using interfaces will make his programs them easier to test, expand on and maintain.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919030\" data-alt-text=\"25. DP\">25. Dynamic Programming<\/h3>\n<p dir=\"ltr\">Dynamic Programming helps optimize solutions that need recurring work to be done.<\/p>\n<p dir=\"ltr\">You can apply DP when a problem has an optimal substructure \u2013 i.e. the best solution to its sub-problems is the best solution for the main problem as well \u2013 AND it needs to have overlapping subproblems.<\/p>\n<p dir=\"ltr\">This means you\u2019ll be solving the same problem multiple times.&nbsp;<\/p>\n<p dir=\"ltr\">Use a solution structure as your&nbsp;<a href=\"https:\/\/simpleprogrammer.com\/guide-dynamic-programming\/\" style=\"outline: none;\">guide to solving problems using Dynamic Programming<\/a>, and you\u2019ll soon become confident wielding DP as a powerful tool.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919031\" data-alt-text=\"26. Low-Code\">26. Low-Code Development<\/h3>\n<p dir=\"ltr\">Why would an experienced Software Engineer bother with using low-code tools to develop (parts of) their software?<\/p>\n<p dir=\"ltr\">Saved time is the biggest benefit of <a href=\"https:\/\/simpleprogrammer.com\/low-code-development-traditional-coding\/\" style=\"outline: none;\">low-code development vs traditional coding<\/a>. Low-code platforms work like page builders for websites, which allow you to insert pre-coded blocks, instead of having to write each line of every piece manually.<\/p>\n<p dir=\"ltr\">This can even lead to a better product \u2013 because your team can focus more on the customer\u2019s needs when it isn\u2019t bogged down by repetitive coding tasks.<\/p>\n<p dir=\"ltr\">Don\u2019t scoff at the idea of low-code development. Rather think of it as an easily applicable skill you can use to your advantage.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919032\">27. Flowcharts<\/h3>\n<p>By <a href=\"https:\/\/simpleprogrammer.com\/flowcharts-for-programmers\/\" style=\"outline: none;\">visualizing code in a flowchart<\/a> before writing it, a programmer can better understand the challenges of a development project \u2013 and more effectively design the right solutions.<\/p>\n<p>A software flowchart includes a starting point, multiple processes (algorithms), inputs and outputs, decision points, connectors, documents, and manual inputs.<\/p>\n<p>Not only does this make coding easier, it also helps with communicating how the software will work, analyzing functionality, identifying bugs, as well as documentation and maintenance.<\/p>\n<p>Knowing how to create and work with these charts is a great skill to have for any professional programmer.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919033\" data-alt-text=\"28. Static Methods\">28. Creating Static Methods<\/h3>\n<p>Static methods are useful for declaring a global constant or creating an object in OOP \u2013 which is why the skill of creating them is useful to programmers.<\/p>\n<p>A static method is not part of a class, and can be called from anywhere.<\/p>\n<p>This does go against object oriented design \u2013 so apart from the cases mentioned, you <a href=\"https:\/\/simpleprogrammer.com\/static-methods-will-shock-you\/\" style=\"outline: none;\">shouldn\u2019t be using static methods<\/a>:<\/p>\n<p>They can\u2019t be overridden, are hard to test, and increase complexity.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919034\" data-alt-text=\"29. Customer-Centricity\">29. Customer-Centric Programming<\/h3>\n<p dir=\"ltr\">Nowadays customers expect frequent real-time interaction and immediate influence on the development process.<\/p>\n<p dir=\"ltr\">As a programmer, you need to have the flexibility to cater to these demands.<\/p>\n<p dir=\"ltr\"><a href=\"https:\/\/simpleprogrammer.com\/customer-centric-programming\/\" style=\"outline: none;\">Customer-centric programming<\/a> requires meticulous planning and prototyping, excellent communication, and incorporating feedback in a timely manner.&nbsp;<\/p>\n<p dir=\"ltr\">The benefit for you is that this close connection to the customer forges a loyal bond to your brand.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919035\" data-alt-text=\"30. End-User Guides\">30. Creating End-User Guides<\/h3>\n<p>Tech writers and customers will be made happy by <a href=\"https:\/\/simpleprogrammer.com\/write-visual-end-user-guide\/\" style=\"outline: none;\">Software Engineers creating helpful end-user guides with visual elements<\/a>. Making these guides valuable starts with choosing a proper title and building out the table of contents.<\/p>\n<p>Every section of the guide should be created like a user story. Use screenshots wherever you can to make everything less dry and more easy to follow.<\/p>\n<p>Developers who can write high-quality end-user guides like this will be loved by project managers and customers alike.<\/p>\n<h3 dir=\"ltr\" id=\"t-1676553919036\" data-alt-text=\"31. Back-up\">31. Data Backup Strategy<\/h3>\n<p>This skill sounds basic. And backing up your code doesn\u2019t have to be complicated. But you do need a strategy, and you need to execute it, or you\u2019re risking some bad outcomes.<\/p>\n<p>Here\u2019s a <a href=\"https:\/\/simpleprogrammer.com\/create-simple-backup-solution-can-trust\/\" style=\"outline: none;\">simple backup strategy for software developers<\/a>:<\/p>\n<ol>\n<li>Firstly, don\u2019t save unnecessary files \u2013 to save time and reduce mental clutter.&nbsp;<\/li>\n<li>Differentiate between critical and non-critical data. Only the critical data, like source code, will have to be uploaded to the cloud.&nbsp;<\/li>\n<li>Create three copies of anything critical: A working copy, a local backup, and an offsite backup.<\/li>\n<\/ol>\n<h3 dir=\"ltr\" id=\"t-1676553919037\" data-alt-text=\"32. GDPR\">32. GDPR Knowledge<\/h3>\n<p>Programmers need to know the European GDPR (General Data Protection Regulation) and know how to build features compliant with these laws.<\/p>\n<p>Examples of these features are a \u201ccache delete\u201d method, the ability for users to export their data, notifying third-party services of data deletion, options for personalization, and functionality for users to give their consent.<\/p>\n<p>A <a href=\"https:\/\/simpleprogrammer.com\/general-data-protection-regulation-gdpr\/\" style=\"outline: none;\">developer who knows GDPR<\/a> and its intricacies will be confident working with European customers and will greatly reduce the risk of producing violations.<\/p>\n<h2 id=\"t-1676553919004\">How to measure your programming ability<\/h2>\n<p dir=\"ltr\">Evaluating the quality of your solutions against those of others in coding competitions like HackerRank is a good way to <a href=\"https:\/\/simpleprogrammer.com\/honestly-evaluating-your-skills\/\">measure your programming skills<\/a>.<\/p>\n<p dir=\"ltr\">Also seek out feedback from others, especially those ahead of you.<\/p>\n<p dir=\"ltr\">Measure your progression: For short-term improvement, track one skill. For medium to long term, track multiple.<\/p>\n<h2 id=\"t-1676553919005\">How to improve your technical skills<\/h2>\n<p>Reading thick programming books cover to cover might give you some new knowledge \u2013 but it\u2019s not the most efficient way to upgrade your abilities.<\/p>\n<p>Here\u2019s your roadmap to <a href=\"https:\/\/simpleprogrammer.com\/develop-technical-skills\/\" style=\"outline: none;\">gain new programming skills<\/a> quickly:<\/p>\n<ol>\n<li>First, scope out the territory, getting a big-picture view of what you\u2019re trying to learn.&nbsp;<\/li>\n<li>Secondly, set a goal for your learning. You must be able to measure your progress towards it by some metric.<\/li>\n<li>Then you can start to gather learning resources. With these in hand, create your study plan.<\/li>\n<li>Now it\u2019s time for action. Learn as much as you can by doing the actual thing.<\/li>\n<li>The final step is to teach your new skill to someone else \u2013 to prove you\u2019ve fully absorbed all learnings.<\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<p>32 Essential Technical Programmer Skills 1. Knowing the Right Programming Language(s) I\u2019d advise you to go deep and focus on&nbsp;learning the ins and outs of a single programming language, so you can feel really confident in your ability to write code in that language. 2. Mastering a Development Platform You should have some experience and&#8230;<\/p>\n","protected":false},"author":2,"featured_media":45224,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"categories":[162232878],"tags":[],"class_list":["post-44806","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technical-programmer-skills"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Software Developer Skills - The Technical Skills You Need To Have<\/title>\n<meta name=\"description\" content=\"What Languages to Learn, How to Structure Code, Algorithms &amp; Data Structures, Methodologies, Source Control, Object Oriented Design, Frameworks or Stack ...\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/simpleprogrammer.com\/technical-skills-software-developer\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Software Developer Skills - The Technical Skills You Need To Have\" \/>\n<meta property=\"og:description\" content=\"What Languages to Learn, How to Structure Code, Algorithms &amp; Data Structures, Methodologies, Source Control, Object Oriented Design, Frameworks or Stack ...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/simpleprogrammer.com\/technical-skills-software-developer\/\" \/>\n<meta property=\"og:site_name\" content=\"Simple Programmer\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-16T13:52:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-11T01:50:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/simpleprogrammer.com\/wp-content\/uploads\/2023\/02\/Technical-Programmer-Skills.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"1200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"John Sonmez\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"John Sonmez\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"17 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/technical-skills-software-developer\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/technical-skills-software-developer\\\/\"},\"author\":{\"name\":\"John Sonmez\",\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/#\\\/schema\\\/person\\\/1abc70edfb189184827740310672de67\"},\"headline\":\"32 Technical Skills You Need to Have as a Software Developer\",\"datePublished\":\"2023-02-16T13:52:52+00:00\",\"dateModified\":\"2026-03-11T01:50:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/technical-skills-software-developer\\\/\"},\"wordCount\":3738,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/technical-skills-software-developer\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/simpleprogrammer.com\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/Technical-Programmer-Skills.jpg\",\"articleSection\":[\"Technical Programmer Skills\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/simpleprogrammer.com\\\/technical-skills-software-developer\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/technical-skills-software-developer\\\/\",\"url\":\"https:\\\/\\\/simpleprogrammer.com\\\/technical-skills-software-developer\\\/\",\"name\":\"Software Developer Skills - The Technical Skills You Need To Have\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/technical-skills-software-developer\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/technical-skills-software-developer\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/simpleprogrammer.com\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/Technical-Programmer-Skills.jpg\",\"datePublished\":\"2023-02-16T13:52:52+00:00\",\"dateModified\":\"2026-03-11T01:50:47+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/#\\\/schema\\\/person\\\/1abc70edfb189184827740310672de67\"},\"description\":\"What Languages to Learn, How to Structure Code, Algorithms & Data Structures, Methodologies, Source Control, Object Oriented Design, Frameworks or Stack ...\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/technical-skills-software-developer\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/simpleprogrammer.com\\\/technical-skills-software-developer\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/technical-skills-software-developer\\\/#primaryimage\",\"url\":\"https:\\\/\\\/simpleprogrammer.com\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/Technical-Programmer-Skills.jpg\",\"contentUrl\":\"https:\\\/\\\/simpleprogrammer.com\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/Technical-Programmer-Skills.jpg\",\"width\":1200,\"height\":1200},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/technical-skills-software-developer\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/simpleprogrammer.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"32 Technical Skills You Need to Have as a Software Developer\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/#website\",\"url\":\"https:\\\/\\\/simpleprogrammer.com\\\/\",\"name\":\"Simple Programmer\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/simpleprogrammer.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/simpleprogrammer.com\\\/#\\\/schema\\\/person\\\/1abc70edfb189184827740310672de67\",\"name\":\"John Sonmez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/dc2f18dfa76e017566ce607de002d7abe4acfd5ec19a6db82c180b00867b8d94?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/dc2f18dfa76e017566ce607de002d7abe4acfd5ec19a6db82c180b00867b8d94?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/dc2f18dfa76e017566ce607de002d7abe4acfd5ec19a6db82c180b00867b8d94?s=96&d=mm&r=g\",\"caption\":\"John Sonmez\"},\"url\":\"https:\\\/\\\/simpleprogrammer.com\\\/author\\\/jsonmez\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Software Developer Skills - The Technical Skills You Need To Have","description":"What Languages to Learn, How to Structure Code, Algorithms & Data Structures, Methodologies, Source Control, Object Oriented Design, Frameworks or Stack ...","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/simpleprogrammer.com\/technical-skills-software-developer\/","og_locale":"en_US","og_type":"article","og_title":"Software Developer Skills - The Technical Skills You Need To Have","og_description":"What Languages to Learn, How to Structure Code, Algorithms & Data Structures, Methodologies, Source Control, Object Oriented Design, Frameworks or Stack ...","og_url":"https:\/\/simpleprogrammer.com\/technical-skills-software-developer\/","og_site_name":"Simple Programmer","article_published_time":"2023-02-16T13:52:52+00:00","article_modified_time":"2026-03-11T01:50:47+00:00","og_image":[{"width":1200,"height":1200,"url":"https:\/\/simpleprogrammer.com\/wp-content\/uploads\/2023\/02\/Technical-Programmer-Skills.jpg","type":"image\/jpeg"}],"author":"John Sonmez","twitter_card":"summary_large_image","twitter_misc":{"Written by":"John Sonmez","Est. reading time":"17 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/simpleprogrammer.com\/technical-skills-software-developer\/#article","isPartOf":{"@id":"https:\/\/simpleprogrammer.com\/technical-skills-software-developer\/"},"author":{"name":"John Sonmez","@id":"https:\/\/simpleprogrammer.com\/#\/schema\/person\/1abc70edfb189184827740310672de67"},"headline":"32 Technical Skills You Need to Have as a Software Developer","datePublished":"2023-02-16T13:52:52+00:00","dateModified":"2026-03-11T01:50:47+00:00","mainEntityOfPage":{"@id":"https:\/\/simpleprogrammer.com\/technical-skills-software-developer\/"},"wordCount":3738,"commentCount":0,"image":{"@id":"https:\/\/simpleprogrammer.com\/technical-skills-software-developer\/#primaryimage"},"thumbnailUrl":"https:\/\/simpleprogrammer.com\/wp-content\/uploads\/2023\/02\/Technical-Programmer-Skills.jpg","articleSection":["Technical Programmer Skills"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/simpleprogrammer.com\/technical-skills-software-developer\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/simpleprogrammer.com\/technical-skills-software-developer\/","url":"https:\/\/simpleprogrammer.com\/technical-skills-software-developer\/","name":"Software Developer Skills - The Technical Skills You Need To Have","isPartOf":{"@id":"https:\/\/simpleprogrammer.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/simpleprogrammer.com\/technical-skills-software-developer\/#primaryimage"},"image":{"@id":"https:\/\/simpleprogrammer.com\/technical-skills-software-developer\/#primaryimage"},"thumbnailUrl":"https:\/\/simpleprogrammer.com\/wp-content\/uploads\/2023\/02\/Technical-Programmer-Skills.jpg","datePublished":"2023-02-16T13:52:52+00:00","dateModified":"2026-03-11T01:50:47+00:00","author":{"@id":"https:\/\/simpleprogrammer.com\/#\/schema\/person\/1abc70edfb189184827740310672de67"},"description":"What Languages to Learn, How to Structure Code, Algorithms & Data Structures, Methodologies, Source Control, Object Oriented Design, Frameworks or Stack ...","breadcrumb":{"@id":"https:\/\/simpleprogrammer.com\/technical-skills-software-developer\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/simpleprogrammer.com\/technical-skills-software-developer\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/simpleprogrammer.com\/technical-skills-software-developer\/#primaryimage","url":"https:\/\/simpleprogrammer.com\/wp-content\/uploads\/2023\/02\/Technical-Programmer-Skills.jpg","contentUrl":"https:\/\/simpleprogrammer.com\/wp-content\/uploads\/2023\/02\/Technical-Programmer-Skills.jpg","width":1200,"height":1200},{"@type":"BreadcrumbList","@id":"https:\/\/simpleprogrammer.com\/technical-skills-software-developer\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/simpleprogrammer.com\/"},{"@type":"ListItem","position":2,"name":"32 Technical Skills You Need to Have as a Software Developer"}]},{"@type":"WebSite","@id":"https:\/\/simpleprogrammer.com\/#website","url":"https:\/\/simpleprogrammer.com\/","name":"Simple Programmer","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/simpleprogrammer.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/simpleprogrammer.com\/#\/schema\/person\/1abc70edfb189184827740310672de67","name":"John Sonmez","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/dc2f18dfa76e017566ce607de002d7abe4acfd5ec19a6db82c180b00867b8d94?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/dc2f18dfa76e017566ce607de002d7abe4acfd5ec19a6db82c180b00867b8d94?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/dc2f18dfa76e017566ce607de002d7abe4acfd5ec19a6db82c180b00867b8d94?s=96&d=mm&r=g","caption":"John Sonmez"},"url":"https:\/\/simpleprogrammer.com\/author\/jsonmez\/"}]}},"_links":{"self":[{"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/posts\/44806","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/comments?post=44806"}],"version-history":[{"count":2,"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/posts\/44806\/revisions"}],"predecessor-version":[{"id":47079,"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/posts\/44806\/revisions\/47079"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/media\/45224"}],"wp:attachment":[{"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/media?parent=44806"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/categories?post=44806"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/simpleprogrammer.com\/wp-json\/wp\/v2\/tags?post=44806"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}