Editors' Pick

Trending Posts

Popular Post

Recent Posts

post-thumb

Open Source is not only about code

This is the second article in our open source series. After having briefly discussed the history of open source in the first article, let’s focus now on the several dimensions or layers of FOSS (Free and Open Source Software). We won’t linger much on the development side here. Obviously, coding is a large part of Free and Open Source Software (FOSS) but it’s only the tip of the iceberg. As we wrote in the first post of this Open Source Series, the evolutions of both FOSS and of the Internet are interleaved and interrelated. One of the biggest disruptions that FOSS created regarding coding is collaborative development. FOSS generated several methods and tools to coordinate and organize projects with many developers spread around the globe. Distributed Versionning Systems like Git , bug and case management systems like BugZilla , continuous integration and nightly builds, quality tools like SonarQube , etc. Today, all these tools have been adopted into our companies and are used every day as commodities by enterprise developers to design, build and implement industrial development pipelines. More recently, FOSS reinforced this trend with DevOps tools and methods, largely promoted by Open Source native companies like the Internet giants. So yes, FOSS is a major source of IT industrialization and will continue to be so.

Read more Details
post-thumb

Kotlin Inline classes

Kotlin logo

Introduction

Any C++ developer knows about inline functions. Kotlin tries to provide a similar concept to classes. The following post explains the basic idea behind inline classes by providing code examples. We first start by defining what an inline class is.

Read more Details