Tag: Programming
-
7 Easy functional programming techniques in Go
Posted on February 27, 2020, Level intermediate Resource Length medium
Deepu K Sasidharan put together this article for Go developers interested in functional programming. Do not worry, you don't have to learn functional programming oriented languages like Haskell or Clojure(or even Scala or JavaScript though they are not pure functional programming languages) since Go has you covered and this post is for you.
Tags golang programming functional-programming
-
The magic of generating an Xcode project
Posted on February 21, 2020, Level intermediate Resource Length short
Planet Earth vs. Jupiter. There is the same order of magnitude between the ratio of these two planets and the amount of code that defined the SoundCloud iOS project before -- Jupiter -- and after -- Earth -- generating it using Tuist. By Andrea Cipriani.
Tags ios machine-learning app-development programming
-
Building an adaptive, multi-tenant stream bus with Kafka and Golang
Posted on February 20, 2020, Level intermediate Resource Length medium
Back in the 2000s, SOAP/WSDL with ESB (Enterprise Service Bus) was the dominant server-side architecture for many companies. Since the 2010s, microservices and service mesh technologies have grown wildly and thus became the de-facto industry standards. By Xinyu Liu.
Tags software-architecture apache streaming apis devops web-development programming
-
7 ways to remove duplicates from an array in JavaScript
Posted on February 19, 2020, Level beginner Resource Length medium
Jayanth Babu wrote this article about how to remove duplicates from an array in JavaScript. It's a common use case in many projects to need to remove duplicates from array in JavaScript. For interviews, it's a common coding challenge to practice for everyone.
Tags nodejs javascript web-development programming
-
A serverless journey begins with several first steps, actually
Posted on February 15, 2020, Level beginner Resource Length short
AWS serverless expert explains what you need to know before launching a serverless pilot. By Joe McKendrick.
Tags serverless event-driven cio programming software-architecture
-
Best practices for event-driven microservice architecture
Posted on February 14, 2020, Level intermediate Resource Length medium
While you might have used REST as your service communications layer in the past, more and more projects are moving to an event-driven architecture. Let's dive into the pros and cons of this popular architecture, some of the key design choices it entails, and common anti-patterns. By Jason Skowronski.
Tags microservices event-driven messaging programming software-architecture
-
Mathematicians are studying planet-sized Quantum Computers with God-like powers
Posted on February 13, 2020, Level intermediate Resource Length medium
New research has exploded the space of problems that quantum computers can efficiently verify, simultaneously knocking down milestone problems in quantum physics and math. By Mordechai Rorvig.
Tags programming software-architecture machine-learning cloud
-
A Pythonista's review of Haskell
Posted on February 7, 2020, Level beginner Resource Length long
An article by Ying Wang about his experience with trying Haskell after using Python in production for few years. Even as it's a wonderful Swiss Army knife, Python also feels limiting in some ways. The same classes of bugs (e.g. type casting / translation errors, state management errors) kept cropping up, and Sisyphean bugs frustrate me. Python is also quite slow when you compare the operations you want to execute vs. the theoretical maximum performance of those operations on the underlying hardware. He kept wondering about what was possible if he had used a different tool.
Tags python functional-programming programming
-
Why Discord is switching from Go to Rust
Posted on February 5, 2020, Level intermediate Resource Length medium
Jesse Howarth wrote this piece about how they seen success with Rust on the client side and server side. For example, they use it on the client side for our video encoding pipeline for Go Live and on the server side for Elixir NIFs. Most recently, they drastically improved the performance of a service by switching its implementation from Go to Rust.
Tags programming golang web-development how-to
-
SRE is the most innovative approach to ITSM since ITIL
Posted on February 1, 2020, Level beginner Resource Length short
For over a decade, IT Infrastructure Library (ITIL) has been the leading IT service management (ITSM) framework adopted by enterprises across the globe. So, what is driving a rapidly increasing interest in Site Reliability Engineering (SRE) as a service management alternative? By Jayne Groll.
Tags devops programming how-to cloud cio
-
How to prepare for a technical phone/video interview
Posted on January 31, 2020, Level beginner Resource Length medium
Kiara Contreras put together this guide in which she shares things that she has done to set herlsef up for success. Having set actions that you complete prior to the interview can ease anxiousness by creating routine.
Tags miscellaneous programming how-to learning
-
Parse, don't validate
Posted on January 21, 2020, Level beginner Resource Length long
Alexis King wrote this piece about his concise, simple way to explain what it means to practice type-driven design. He has now a single, snappy slogan that encapsulates what type-driven design means to him, and better yet, it's only three words long: Parse, don't validate.
Tags programming functional-programming software-architecture