Thanks to the advanced camera systems and even LiDARs nowadays in our smartphones Augmented reality is subtly blending into everyday consumer life; you can actually see how a new Ikea couch or Apple Homepod will look in your living room before you decide and buy one. Companies like Meta (formerly Facebook) are building an entirely new world using Virtual Reality termed Metaverse where you can create virtual office spaces to have real-time meetings with your colleagues, play a game of basketball and even attend concerts.
AR augments the real-world scene by adding layers on top of your real world, whereas VR creates completely immersive virtual environments that need VR goggles or headsets to experience it. Both of these technologies started as the next chapter of the gaming industry but quickly found their way into other applications like Fashion, Interior Designing, e-commerce, Architecture and Metaverse. You no longer have to visit a physical store to experience how a new jacket or pair of glasses will look on you or a theme park in Florida to enjoy a roller-coaster ride.
Download the Aspiring AR/VR Developer infographic here!
The Developer Nation surveys are designed in a way that giving back to the community becomes an integral part of them. For each survey wave we run we donate 0.10$ to the favourite charities of our Developer Nation Community. The goal is to reach at least $2000 in donations.
During our 23rd Developer Nation global survey, we collected a total of 26,183 qualified responses, that means we were able to meet and surpass our goal by donating $2,618- and support the causes that you care about.
Though most of these organisations and NGOs are developer centric, helping people learn software development and grow in their career, we welcome more diversity in theorgs we are supporting . You can use the comments section below and add your suggestions.i
For the 23rd Developer Nation global survey, here is the list of organisations we donated to:
The mission of freeCodeCamp is to help people learn code for free. I’m personally a huge fan of the work they are doing and have myself learned quite a bit from there. A total of 7979 survey participants picked them for support so we were able to donate $798 to freeCodeCamp.
The Free Software Foundation (FSF) is a nonprofit with a worldwide mission to promote computer user freedom. A total of 5622 participants picked FSF, hence we were able to donate $562 to support their cause.
Women Who Code (WWCode) is an international nonprofit dedicated to inspiring women to excel in technology careers. We donated $528 to help support the cause of this wonderful inclusive organisation. They have many local chapters around the world, so if you’re a woman who is trying to learn to code or find some mentorship, the Women Who Code community and local chapter is definitely a place to look for.
A non-profit organisation on a mission to develop and scaling technologies to rid the oceans of plastic. A much needed cause to support in order to sustain the ecological balance or marine ecosystems. Our developer community has enabled us to donate $470 to them.
Ada developer academy offers an immersive and intentional coding school prioritising community over competition. It’s very welcoming and inclusive and we were able to donate $261 for their cause.
It really feels great to give back to the community in a way that can help them further their noble cause and create a more sustainable ecosystem for everyone to live and thrive in.
We’re truly grateful to our community members who have enabled us to do this and without your survey participation it won’t be possible so we extend our thank you and promise to continue to do this in future.
Rarely any software project today is built from the ground up. Frameworks and libraries have made developers’ lives so easy that there’s no need to reinvent the wheel anymore when it comes to software development. But these frameworks and libraries become dependencies of our projects, and as the software grows in complexity over time, it can become pretty challenging to efficiently manage these dependencies.
Sooner than later developers can find their code depending on software projects of other developers which are either open source, hosted online or being developed in-house, in maybe another department of the organisation. These dependencies are also evolving, and need to be updated and in sync with your main source tree. This ensures that a small change breaks nothing and your project is not outdated and does not have any known security vulnerability or bugs.
A good recent example of this is log4j, a popular framework for logging, initially released in 1999, which became a huge headache for many businesses at the end of 2021, including Apple, Microsoft and VMware. log4jt was a dependency in a variety of software and the vulnerabilities discovered affected all of them. This is a classic example of how dependencies play a huge role in software lifecycle and why managing them efficiently becomes important.
While there are a variety of ways and frameworks to manage software dependencies, depending on software complexity, today I’ll cover one of the most common and easy to use methods called “git submodule”:. As the name suggests it is built right into git itself, which is the de facto version control system for the majority of software projects.
Hands-on with git submodules:
Let us assume your project name “hello-world” depends on an open source library called “print”.
A not-so-great way to manage the project is to clone the “print” library code and push it alongside the “Hello World” code tree to GitHub (or any version control server). This works and everything runs as expected. But what happens when the author of “print” makes some changes to its code or fixes a bug?Since you’ve used your own local copy of print and there is no tracking to the upstream project, you won’t be able to get these new changes in, therefore you need to manually patch it yourself or re-fetch and push the code once again. Is this the best way of doing it, one may ask?
git has this feature baked in which allows you to add other git repos (dependencies projects) as submodules. This means your project will follow a modular approach and you can update the submodules, independent of your main project. You can add as many submodules in your project as you want and assign rules such as “where to fetch it from” and “where to store the code once it is fetched”. This obviously works if you use git for your software project version control.
Let’s see this in action:
So I’ve created a new git project namely “hello-world” on my GitHub account, which has two directories:
src – where my main source code is stored
lib – where all the libraries a.k.a dependencies are stored which my source code is using.
These libraries are hosted on GitHub by their maintainers as independent projects. For this example, I’m using two libraries.
hello – which is also created by me as a separate github repo
resources – which is another git repository in Developer Nation account
To add these two above-mentioned libraries as submodules to my project, let’s open the terminal, change to the main project directory where I want them to be located. In this case, I want them in my lib directory, so I’ll execute the following commands:
cd hello-world/lib
Add submodule with command : git submodule add <link to repo>
This will fetch the source code of these libraries and save them in your lib folder. Also, now you’ll find a new hidden file created in root of your main project directory with name .gitmodules which has the following meta-data:
Now every time someone clones the project, they can separately clone the submodule using following commands:
git clone < Your project URL >
cd <Your project URL>
git submodule init
git submodule update
OR:
This can also be done in one command as:
git clone <Your Project URL> —recursive, in this case
git clone git@github.com:iayanpahwa/hello-world.git —recursive
One more thing you’ll notice on GitHub project repo is in lib directory, folders are named as :
print @ fa3f …
resources @ c22
The hash after @ denotes the last commit from where print and resources libraries were fetched. This is a very powerful feature as by default, the submodule will be fetched from the latest commit available upstream i.e HEAD of master branch, but you can fetch from different branches as well. More details and options can be found on the official doc here.
Now you can track and update dependency projects independent of your main source tree. One thing to note is all your dependencies need not to be on the same hosting site as long as they’re using git. For example: If hello-world was hosted on Github and printed on Gitlab, the git submodule will still work the same.
I hope this was a useful tutorial and you can now leverage git submodules to better manage your project dependencies. If you have any questions and ideas for more blogs, I’d love to hear from you in the comments below.