While the opinions of industry experts tend to vary, there is a growing consensus about what constitutes modern software development, and a few common themes emerged in the conversations Computer Weekly had when discussing the subject.
For Mark Holt, chief technology officer at Trainline, the history of software development has been about providing programming tools that offer higher and higher levels of abstraction. Increasingly powerful software is now just a download away. A database used to be a big scary thing with restricted access now you can download 15 databases from the internet, he says.
Bola Rotibi, a research director at CCS Insight, defines modern software development as the task of building cloud-native, cloud-first and multicloud applications. Its also about embracing data-driven big data insights and making use of artificial intelligence [AI] and machine learning, she says.
But modern software development is also about granular code reuse and low-coding tools.
Apart from everything cloud-related, there has been a shift in emphasis on the basic model that underpins a software-based system, to reflect the importance of data. AI represents the pinnacle of this data-driven model for application architectures. The AI is programmed by training it using sample data; it can then make decisions for itself using real-world data. The better the training data, the more likely the AI is to make the correct decision when presented with a dataset it has not encountered before.
Looking at the role of AI in software development, there has been plenty of talk on the web about OpenAIs GPT-3, a new AI for text processing. Its designers say it provides a general-purpose text in, text out interface, which can work on any English language task. In June 2020, OpenAI released an application programming interface (API) for GPT-3. In a blog post describing the algorithm, OpenAI said: Given any text prompt, the API will return a text completion, attempting to match the pattern you gave it. You can program it by showing it just a few examples of what youd like it to do; its success generally varies depending on how complex the task is. The API also allows you to hone performance on specific tasks by training on a dataset (small or large) of examples you provide, or by learning from human feedback provided by users or labelers.
In effect, programming GPT-3 involves showing it some examples; it then figures out everything else for itself.
Twilio software developer Miguel Grinberg recently uploaded an example of how he used GPT-3 and the Flack framework to build a Twilio chatbot using Python. What is intriguing about the application is that the steps he describes, which involve some pretty basic Python code, actually invoke one of the most powerful AI engines that exists, to provide human-like responses to random questions.
Why stop at producing English language responses? Some commentators on the web have used GPT-3 to write programs. Crowdbotics is one of the companies that sees GPT-3 as revolutionary for software development. In a recent blog post, the company wrote: We think the emergence of high-quality natural language interfaces will have a transformative impact on most tech tools used by humans. Any tech company with a product that contains user interfaces will need to come up with a strategy for how GPT-3 will affect their business or be supplanted by tools that use language more intelligently.
PayPal chief technology officer (CTO) Sri Shivananda believes AI could be trained to create some applications. Code is made of building blocks, which can be built on to make large, complex systems. As such, a programmer could write a script to speed up a repetitive task. This may be enhanced into a simple app. Eventually, it could become a payment system. At the very bottom of the software stack, there will be a database and an operating system. AI can assist in coding, says Shivananda. You can create knowledge in code and dynamic logic, but rule-based code writing can only go so far.
While some code will be written by AI, programming has differing levels of complexity, which means AI may be better suited to some tasks than others. Word processors, for instance, can correct sentences intelligently. Any document processor already offers a lot of basic grammar checking, says Shivananda. The word processor reads the sentences and applies the rules of grammar. The same technique is used in programming editors and interactive development environments to correct syntax.
Such rule-based checking has existed since programmers began using compilers and high-level programming languages to develop applications. Compilers and static code analysis tools effectively check that the lines of code are constructed in the right format.
But Boris Paskalev, CEO and co-founder of DeepCode, says: Compilers and code analysis are far from perfect. They are ultimately built and designed to catch and prevent specific issues that are part of the design of a given language, as well as pieces of the knowledge of the architects and developers building those systems.
Paskalev says non-trivial bugs and issues that exist in software development are related to the intricacy or ambiguity of the programming language used by the software developer. These nuances are covered by the code compilers or existing code analysis tools. In such cases, AI and the global development community come in by automatically learning from the hundreds of millions of bugs already solved by developers around the world and preventing/alerting every developer in case they are having the same or similar issues, says Paskalev.
He says DeepCodes system was recently used to identify an issue in a complex embedded system for engines, where specialists had been suffering for months searching for a serious problem. Paskalev says DeepCodes system, which is trained on millions of bugs that other developers have already fixed, was applied to the embedded system, and identified the problem in seconds.
Consumers have grown accustomed to seeing related products and recommendations when they shop online. The idea of having an e-commerce site suggest that people who bought a particular battery-operated toy also bought AA batteries, can and should be applied to programming.
The rule of never reinventing the wheel means software programming draws heavily on pre-built components, software libraries and, more recently, microservices, to enable programmers to add new functionality to their apps quickly. Thanks, in part, to the success of open source, programmers around the world are both consumers of open source code and are contributing code, by finding new ways to do things. Open source is a two-way street. You contribute and share like a social network, says Shivananda.
Programmers have always faced a learning curve to master a new programming library. But as systems have become more complex, the host of APIs, components and microservices available to achieve a given programming task has expanded beyond the capacity for any human to fully understand. Crowdbotics says GPT-3 can intelligently recommend open source code packages to solve development problems. Another possible use is to process a formal specification. As a programming aide, it may even be possible for an AI such as GPT-3 to check that the code a human programmer creates complies with the formal specification.
According to Paskalev, when using machine learning to capture all semantic logic and possible interactions, transitions and constructs in code, a well-trained AI will have no problem explaining what the programmer is trying to do. AI also offers programmers the potential to flatten the learning curve by drawing on the wisdom of the masses to infer what task the programmer is trying to achieve, and recommend the most popular approaches that others took.
We have already seen that working in a more localised/semantic way, but this will expand further towards business logic and larger architectural scope, says Paskalev. This expansion will require much larger datasets and computing power than we have today, as well as novel AI models that feed on the existing AI models and systems as data points. I call this an AI of AIs, encapsulating various AI techniques, representations, models and datasets. This is when we get closer to real AI and depart from the mostly augmented intelligence that we benefit from today.
AI will inevitably influence software development tools, supporting debugging and helping developers to write clean code quickly using the most appropriate programming libraries available on the internet. It is hard to predict whether GPT-3, or something like it, will replace hand coding, but low-code tools are gaining in popularity, because they lower the technical barrier to entry, so people from the business can write applications.
But for Trainlines Holt, although many of these tools are great for building a simple hello world style app that programmers often use to learn the basics of a new software development language, how many can work at enterprise scale?
The best line of code is the one you dont have to write, but there is a danger. You need to rein in using the latest thing, he says.
There are, for instance, numerous JavaScript libraries that come and go out of fashion. As Holt points out, the risk for an enterprise is that finding developers with the know-how will be much harder once the library is no longer fashionable. It is more important to focus on the end goal, and not necessarily get too enthralled in the tech to achieve it. Optimise your tooling, people and processes to create the best customer experience, he says.
Irrespective of the underlying technology, this is perhaps the main focus of a modern software developer modern software development is about building applications that deliver the best possible customer experience.
Go here to see the original:
The art of developing happy customers - ComputerWeekly.com
- Research, Evaluation and Learning at the International Rescue Committee - World - ReliefWeb [Last Updated On: August 10th, 2020] [Originally Added On: August 10th, 2020]
- Conserving Biodiversity with AI - BBN Times [Last Updated On: August 10th, 2020] [Originally Added On: August 10th, 2020]
- DevOps Fundamentals You Ever Wanted To Know - hackernoon.com [Last Updated On: August 10th, 2020] [Originally Added On: August 10th, 2020]
- Another Perspective on Evictions - Bacon's Rebellion [Last Updated On: August 10th, 2020] [Originally Added On: August 10th, 2020]
- Amitabh Bachchan on fans alternate job suggestion: My job is now insured - The Indian Express [Last Updated On: August 10th, 2020] [Originally Added On: August 10th, 2020]
- Will You Soon Download Packaging Machine Controls from the Internet? - Packaging Digest [Last Updated On: August 10th, 2020] [Originally Added On: August 10th, 2020]
- 5 free resources every data scientist should start using today - The Next Web [Last Updated On: August 10th, 2020] [Originally Added On: August 10th, 2020]
- Who's hoping to make an Epic impact on Green Bay area music scene with a new concert venue? | Streetwise - Green Bay Press Gazette [Last Updated On: August 10th, 2020] [Originally Added On: August 10th, 2020]
- Industrial robots are dominating but are they safe from cyber-attacks? - TechHQ [Last Updated On: August 10th, 2020] [Originally Added On: August 10th, 2020]
- Friday Rant - Rise of the Rogue-Bots? - Diginomica [Last Updated On: August 10th, 2020] [Originally Added On: August 10th, 2020]
- Important Reasons Why You Should Pick RoR As Your Web-Based Development Project - Customer Think [Last Updated On: August 10th, 2020] [Originally Added On: August 10th, 2020]
- Portrait of the software developer as an artist - ComputerWeekly.com [Last Updated On: August 10th, 2020] [Originally Added On: August 10th, 2020]
- Python may be your safest bet for a career in coding - Gadgets Now [Last Updated On: August 10th, 2020] [Originally Added On: August 10th, 2020]
- 1Password is coming to Linux - ZDNet [Last Updated On: August 10th, 2020] [Originally Added On: August 10th, 2020]
- IBM creates an open source tool to simplify API documentation - TechRepublic [Last Updated On: August 10th, 2020] [Originally Added On: August 10th, 2020]
- Mastercard : Accelerate Ignites Next Generation of Fintech Disruptors and Partners to Build the Future of Commerce - Marketscreener.com [Last Updated On: August 12th, 2020] [Originally Added On: August 12th, 2020]
- Expanding the Universe of Haptics | by Lofelt | Aug, 2020 - Medium [Last Updated On: August 12th, 2020] [Originally Added On: August 12th, 2020]
- UX Designer Salary: 5 Important Things to Know - Dice Insights [Last Updated On: August 12th, 2020] [Originally Added On: August 12th, 2020]
- Persistent memory reshaping advanced analytics to improve customer experiences - IT World Canada [Last Updated On: August 12th, 2020] [Originally Added On: August 12th, 2020]
- NextCorps and SecondMuse Open Application Period for Programs that Help Climate Technology Startups Accelerate Hardware Manufacturing - GlobeNewswire [Last Updated On: August 12th, 2020] [Originally Added On: August 12th, 2020]
- Buried deep in the ice is the GitHub code vault humanity's safeguard against devastation - ABC News [Last Updated On: August 12th, 2020] [Originally Added On: August 12th, 2020]
- Top 12 Most Used Tools By Developers In 2020 - Analytics India Magazine [Last Updated On: August 12th, 2020] [Originally Added On: August 12th, 2020]
- Facebook's React 17 JavaScript library: Here's why its top feature is 'no new features' - ZDNet [Last Updated On: August 12th, 2020] [Originally Added On: August 12th, 2020]
- CORRECTING and REPLACING Anyscale Hosts Inaugural Ray Summit on Scalable Python and Scalable Machine Learning - Business Wire [Last Updated On: August 12th, 2020] [Originally Added On: August 12th, 2020]
- Google: Here's how much we give to open source through our GitHub activity - ZDNet [Last Updated On: August 12th, 2020] [Originally Added On: August 12th, 2020]
- How Chriselle Lim And Joan Nguyen Created Bmo, The Coworking Space And Virtual Classroom Of The Future (With A Childcare Twist) - Forbes [Last Updated On: August 13th, 2020] [Originally Added On: August 13th, 2020]
- How Will Public Libraries Adapt To New School Year Norms? - Book Riot [Last Updated On: August 13th, 2020] [Originally Added On: August 13th, 2020]
- Google: We'll test hiding the full URL in Chrome 86 to combat phishing - ZDNet [Last Updated On: August 13th, 2020] [Originally Added On: August 13th, 2020]
- How to install Python 3 and PIP 3 on Ubuntu 20.04 LTS - Linux Shout - H2S Media [Last Updated On: August 13th, 2020] [Originally Added On: August 13th, 2020]
- What are Bitcoin Wallets: Everything You Need to Know - Programming Insider [Last Updated On: August 13th, 2020] [Originally Added On: August 13th, 2020]
- JSHint is Now Free Software after Updating License to MIT Expat - WP Tavern [Last Updated On: August 13th, 2020] [Originally Added On: August 13th, 2020]
- How to learn JavaScript: These are the best online courses - Mashable [Last Updated On: August 13th, 2020] [Originally Added On: August 13th, 2020]
- What developers need to know about inter-blockchain communication - ComputerWeekly.com [Last Updated On: August 14th, 2020] [Originally Added On: August 14th, 2020]
- Introducing the CDK construct library for the serverless LAMP stack - idk.dev [Last Updated On: August 14th, 2020] [Originally Added On: August 14th, 2020]
- IBM asked software developers to take on the wrath of Mother Nature - The Drum [Last Updated On: August 14th, 2020] [Originally Added On: August 14th, 2020]
- Aspire Technology Launches First Truly Secure Public Blockchain for Creation of Digital Assets - GlobeNewswire [Last Updated On: August 14th, 2020] [Originally Added On: August 14th, 2020]
- GM Creates And Shares New Workplace Safety Technologies - Pulse 2.0 [Last Updated On: August 14th, 2020] [Originally Added On: August 14th, 2020]
- Key Considerations and Tools for IP Protection of Computer Programs in Europe and Beyond - Lexology [Last Updated On: August 14th, 2020] [Originally Added On: August 14th, 2020]
- The state of application security: What the statistics tell us - CSO Online [Last Updated On: August 14th, 2020] [Originally Added On: August 14th, 2020]
- Open Source: What's the delay on the former high/middle school on North Mulberry? - knoxpages.com [Last Updated On: August 14th, 2020] [Originally Added On: August 14th, 2020]
- The Risks Associated with OSS and How to Mitigate Them - Security Boulevard [Last Updated On: August 14th, 2020] [Originally Added On: August 14th, 2020]
- news digest: Microsoft launches open source website, TensorFlow Recorder released, and Stackery brings serverless to the Jamstack - SD Times -... [Last Updated On: August 14th, 2020] [Originally Added On: August 14th, 2020]
- Build Your Own PaaS with Crossplane: Kubernetes, OAM, and Core Workflows - InfoQ.com [Last Updated On: August 17th, 2020] [Originally Added On: August 17th, 2020]
- ISRO Is Recruiting For Vacancies with Salary Upto Rs 54000: How to Apply - The Better India [Last Updated On: August 17th, 2020] [Originally Added On: August 17th, 2020]
- Does technology increase the problem of racism and discrimination? - TechTarget [Last Updated On: August 17th, 2020] [Originally Added On: August 17th, 2020]
- CORRECTING and REPLACING Anyscale Hosts Inaugural Ray Summit on Scalable Python and Scalable Machine Learning - Yahoo Finance [Last Updated On: August 17th, 2020] [Originally Added On: August 17th, 2020]
- In the City: Take advantage of open recreation, cultural and park amenities - Coloradoan [Last Updated On: August 17th, 2020] [Originally Added On: August 17th, 2020]
- Exploring the future of modern software development - ComputerWeekly.com [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- Hadoop Developer Interview Questions: What to Know to Land the Job - Dice Insights [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- SiFive Opens Business Unit to Build Chips With Arm and RISC-V Inside - Electronic Design [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- Use Pulumi and Azure DevOps to deploy infrastructure as code - TechTarget [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- Why ASP.NET Core Is Regarded As One Of The Best Frameworks For Building Highly Scalable And Modern Web Applications - WhaTech [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- NITK figures 4th in Google Summer of Code ranking - BusinessLine [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- Learn More About Dynamo for Revit: Features, Functions, and News - ArchDaily [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- Linux Foundation showcases the greater good of open source - ComputerWeekly.com [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- Programming language Kotlin 1.4 is out: This is how it's improved quality and performance - ZDNet [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- Top 10 Languages That Paid Highest Salaries Worldwide In 2020 - Analytics India Magazine [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- Programming language Rust: Mozilla job cuts have hit us badly but here's how we'll survive - ZDNet [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- In-App Bidding Gathers Steam, But Adoption Looks Nothing Like Header Bidding On The Web - AdExchanger [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- 13 thoughts on Fitting Snake Into A QR Code - Hackaday [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- Newham test and trace app was designed by man who grew up in the borough - Newham Recorder [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- 'Trapped in a code' the fight over our algorithmic future - Open Democracy [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- Telegram launches one-on-one video calls on iOS and Android - The Verge [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- AWS Controllers for Kubernetes Will Be A 'Boon For Developers' - CRN: Technology news for channel partners and solution providers [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- Coding within company constraints - ComputerWeekly.com [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- Open Source and Open Standards: The Recipe for Success Featured - The Fast Mode [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- How Intel helped give the worlds first cyborg a voice - The Next Web [Last Updated On: August 21st, 2020] [Originally Added On: August 21st, 2020]
- Tiger Woods, Rory McIlroy near bottom of field at The Northern Trust - ESPN [Last Updated On: August 22nd, 2020] [Originally Added On: August 22nd, 2020]
- Intel Owl OSINT tool automates the intel-gathering process using a single API - The Daily Swig [Last Updated On: August 22nd, 2020] [Originally Added On: August 22nd, 2020]
- IOTA Foundation presents the current projects in the mobility industry - Crypto News Flash [Last Updated On: August 22nd, 2020] [Originally Added On: August 22nd, 2020]
- How 'Fortnite' and 'Second Life' Shaped the Future of Indian Market - Santa Fe Reporter [Last Updated On: August 22nd, 2020] [Originally Added On: August 22nd, 2020]
- Apple Enters $ 2 Trillion Club, Github's Chinese Counterpart And More In This Week's Top News - Analytics India Magazine [Last Updated On: August 22nd, 2020] [Originally Added On: August 22nd, 2020]
- As world grapples with pandemic, schools are the epicenter - ABC News [Last Updated On: August 24th, 2020] [Originally Added On: August 24th, 2020]
- Why Businesses Should Embrace Modernizing Their Legacy Applications - TechBullion [Last Updated On: August 24th, 2020] [Originally Added On: August 24th, 2020]
- Is It Time To Rename RPG? - IT Jungle [Last Updated On: August 24th, 2020] [Originally Added On: August 24th, 2020]
- Phantasy Star Online programmers on breaking new ground and their Diablo-style isometric prototype - Polygon [Last Updated On: August 24th, 2020] [Originally Added On: August 24th, 2020]
- How To Learn To Program In Python By Playing Videogames - Analytics India Magazine [Last Updated On: August 24th, 2020] [Originally Added On: August 24th, 2020]
- New Microsoft program to help develop the quantum computing workforce of the future in India - Microsoft [Last Updated On: August 24th, 2020] [Originally Added On: August 24th, 2020]
- How the Docker Revolution Will Change Your Programming, Part 1 - Walter Bradley Center for Natural and Artificial Intelligence [Last Updated On: August 24th, 2020] [Originally Added On: August 24th, 2020]
- Spring Hill Library Exhibit Celebrates 100 Years of Women's Voting - Williamson Source [Last Updated On: August 26th, 2020] [Originally Added On: August 26th, 2020]