Science and technology

6 articles to get you enthusiastic about programming

Programming is on the coronary heart of open supply software program. Learning programming is an effective way to discover new concepts and create packages which can be helpful for you. This yr, Opensource.com authors shared many glorious articles about programming, from how new programmers can get began, to how consultants can study extra in regards to the particulars. Here are six articles to get you enthusiastic about programming:

Write documentation such as you develop code

For many programmers, writing documentation is sort of an afterthought. We’ve written the code, however writing the documentation is a complete new problem. Lorna Mitchell shares a number of tips that will help you change your method to writing documentation. If you concentrate on writing documentation such as you would write code, you will have a neater time. Think about textual content codecs, supply management, pull requests, overview cycles, and steady integration and deployment.

Guide to GCC

You write the code, click on a button in your growth atmosphere to construct it, and also you’re performed. But there’s much more taking place behind the scenes. Jayashree Huttanagoudar wrote a superb rationalization of what it takes for the compiler to provide a binary file. The article walks by means of the steps to show supply code into an executable program utilizing the GNU C Compiler, together with pre-processing, compiling, assembling, and linking.

If you want that article and need to study extra in regards to the internals of how packages get constructed, you also needs to learn Jayashree’s follow-up article about How dynamic linking for modular libraries works on Linux.

Parsing knowledge with strtok in C

Some packages can course of a whole file without delay, however different packages want to look at the file line-by-line. In the latter case, you seemingly have to parse knowledge in every line. Fortunately, the C programming language has a typical C library operate to just do that. I write about the best way to use the strtok operate in C to parse knowledge out of strings. Use it in your subsequent mission to simplify the way you learn knowledge into your program.

Learn Perl

Perl is a strong programming language. Sometimes thought-about merely a scripting system, Perl additionally supplies object oriented programming. It additionally comes backed by 1000’s of libraries and frameworks that will help you construct extra advanced purposes. Seth Kenlon and Dave Morriss shared an outline that will help you get began, and created a cheat sheet that serves as a helpful programmer’s reference.

Programming and growth

Practical recommendation for brand new programmers

If you are getting began in studying the best way to write your personal packages, Sachin Samal wrote a superb article that will help you get began. Don’t be afraid to experiment with new concepts and to maintain working towards by writing new packages. Being an environment friendly and curious problem-solver will assist you to succeed as a programmer.

10 common steps for open supply code overview

Working in open supply software program initiatives means working with different builders from all over the world. Open supply work is not all programming. Developers additionally overview code from different contributors. Martin Kopec wrote about his perspective in the best way to carry out a code overview. He additionally features a few helpful recommendations on what to search for, and inquiries to ask your self when doing the overview.

Write code

Programming is difficult work, but it surely’s additionally numerous enjoyable. Read up on a brand new library, a brand new language, or a brand new approach, after which go and put it into follow. And after all, make it open supply!

Most Popular

To Top