Code & Coffee

A technology space of the latest trends, tips, and tools for developers.

May 2023
156 views
mobile

Mobile apps deployments automation

Hello there, In this article, we will take a brief tour of Fastlane, a mobile app automation tool. ### Abstract At my company, we do some mobile development and have multiple mobile apps (mostly Capacito...
Read
Jun 2022
1.54k views
emacs
git

Configure Magit Forges for self-hosted Gitlab

## abstract This article's reason is to describe the steps and gather resources to configure magit forges for self hosted gitlab. For people who don't know what is Magit Forges : - Magit is the Emacs pac...
Read
Dec 2021
4.07k views
software architecture
system
backend

Actix Restful Api pattern (Rust)

I'm writing this article to share my take on a Rust Api backend. Let me explain the pattern I setup for the API of this blog. At first I need to say that I will focus on the REST Api part of the projec...
Read
Aug 2021
959 views
frontend
webdesign
ui

Make use of iconfont.cn icons in your projects

I recently discovered the website [iconfont.cn](https://www.iconfont.cn). This website is a project from our chinese "fellows" from alibaba network who aims to provide icons and illustrations to web de...
Read
May 2021
1.03k views
shell
linux
system
iOS

iSH: alpine linux on iOS

At the time of writing, I'm on a field near a salt marsh, on a command line text editor on my server. This is possible thanks to the developers of the application ISH on iOS and iPad OS : ![ish console]...
Read
Apr 2021
652 views
shell
linux

Per directory environment variables with direnv

With Direnv you can configure environment variables for a given directory. The environment variables are available into the shell when you enter the directory and unavailable when you leave it. To crea...
Read
Apr 2020
767 views
typescript
frontend

Curryfication in Typescript for safe argument binding

### Introduction In this post we will focus on how to safely bind arguments to functions such as contextual filter/sort functions in Typescript. ### Using bind, the unsafe way The first way is to use bin...
Read