Tag: Programming
-
Benchmarking Functional Error Handling in Scala
Posted on August 19, 2019, Level advanced Resource Length long
Conventional wisdom has it that using too many functional abstractions in Scala is detrimental to overall program performance. Yet, these abstractions are an immense help if you want to write clean and abstract code. in depth article by Marcin Rzeźnicki.
Tags scala programming java oop functional-programming
-
Bias Variance decompositions using XGBoost
Posted on August 17, 2019, Level beginner Resource Length long
This blog dives into a theoretical machine learning concept called the bias-variance decomposition. This decomposition is a method which examines the expected generalization error for a given learning algorithm and a given data source. This helps us understand various questions about model. Written by RAPIDS.
Tags machine-learning big-data programming
-
How to encrypt files with gocryptfs on Linux
Posted on August 16, 2019, Level intermediate Resource Length short
Gocryptfs encrypts at the file level, so synchronization operations can work efficiently on each file. An article by Brian "bex" Exelbierd (Red Hat).
Tags linux devops miscellaneous programming software app-development
-
Build a mobile phone authentication component with React and Firebase
Posted on August 15, 2019, Level advanced Resource Length long
Krissanawat Kaewsanmuang wrote this article in which he let you learn how to build a reusable phone authentication component with React and Firebase. This is 3rd part of series of article. In order to understand this tutorial properly, it is recommended to go through previous chapters of this tutorial series.
Tags apis programming web-development infosec
-
Versioning Web API
Posted on August 14, 2019, Level intermediate Resource Length long
More and more organizations today face a dynamic and changing environment. This article reads about versioning in general and versioning Web API using multiple versioning strategies in detail. By Blog of Pi.
Tags apis programming web-development open-source
-
Kotlin Multiplatform for Clean Architecture
Posted on August 11, 2019, Level intermediate Resource Length long
Jan Freymann wrote this piece about Kotlin and Kotlin Multiplatform, which enables us to write the same code for the JVM as well as LLVM!
Tags ios kotlin programming android app-development
-
Exercises in programming style: FP & I/O
Posted on August 10, 2019, Level intermediate Resource Length long
The article in which author explores one of the foundation of Functional Programming, I/O and how to cope with it. Written by Nicolas Fränkel a developer advocate with 15+ years experience consulting for many different customers.
Tags nodejs programming software functional-programming
-
Authorization: Securing HTTP APIs with RBAC rules
Posted on August 7, 2019, Level intermediate Resource Length long
Learn how to use Auth0's Role-Based Access Control (RBAC) feature to secure HTTP APIs with ease. An article by Bruno Krebs. This is the second, technical post in a 3-part series on focusing on Authorization. Stay tuned for the last part in this series, focusing on dynamic authorization.
Tags programming software nodejs web-development infosec
-
What is rapid application development?
Posted on August 6, 2019, Level intermediate Resource Length medium
Stanley Idesis wrote this article about rapid software application. Rapid application development is an adaptive software development approach that focuses more on ongoing software projects and user feedback and less on following a strict plan.
Tags agile programming software app-development
-
Memory management in Python
Posted on August 5, 2019, Level intermediate Resource Length medium
This article describes memory management in Python 3.6. If you are interested in GC details, you can read my article about Garbage collection in Python. By Artem Golubin.
Tags python programming software app-development apis
-
A Git-Flow explainer & how to tutorial
Posted on August 2, 2019, Level intermediate Resource Length medium
The guide for anybody developing with help of Git written by Marc Backes. When someone talks about Git-Flow, it could mean two things: a successful branching model (theory) or a set of terminal commands that extend the regular git command set (practice).
Tags programming frontend software web-development
-
State management in React
Posted on July 29, 2019, Level intermediate Resource Length long
The State is an important concept in React that stores data and displays the behavior of a component. People choose different approaches for managing State in React. The article delve into the basics of React State and different ways to manage it. By Vrushali Bhosale.
Tags javascript web-development programming nodejs