You want to configure your computer to be able to pull, push and fetch repositories without asking you to enter your username/password? You have to configure some little things that we did not set them in the beginning.
Securely Connect to Remote Servers with SSH
SSH (Secure Shell) is your key to secure remote access in 2024. It’s like having a private tunnel to log in and manage servers, transfer files, or run commands – all with top-notch encryption to keep your data safe from prying eyes. Why Use SSH? Ironclad Security: SSH encrypts everything – login credentials, commands, and […]
Raspberry PI: SPI Performance On Linux 5.4+
A new pull request has been made for Linux 5.4+ about the SPI performance (Serial Peripheral Interface). A big performance enhancement for the bc2835 (Raspberry Pi) driver for unidirectional transfers from Lukas Wunner.
[ImageMagick] Useful commands to process images
What is ImageMagick Many people think that they need closed source software to process photos, to create GIF animations, color management and transform images by sizing, cropping and rotation. ImageMagick can do more than what we expect. It can also read and write images in a variety of formats (over 200) including PNG, JPEG, GIF, […]
Node v12.7.0 is out 🎉
The Node JS team has a new release v12.7. This new version has new features and improvements.
[Git] Get the most known git commands to an advanced level use
Mastering GIT is a real challenge to every developer, specially when we talk about high level git commands when we rebase/merge, revert commits or clean merged branches after merging.
PHP 7.4: most important RFCs
The release date will be probably in December, 2019. But here is some new features that’ll be available in this version and here is the most important RFC (Request for comments)
PHP 8: Introducing JIT
Basically, the PHP scripts are compiled into instructions, which are called opcodes that are understandable to the machine. Opcodes are low-level, and hence faster to translate to machine code as compared to the original PHP code.
日本語を学ぶ:私のコツ
Learning Japanese: My Tricks Don’t worry, I translated the title! Since many years, I started learning Japanese at school, It was a fail for me because I didn’t practice it and I forgot everything. Then every time I retry, It becomes hard to me until I found the best practice to learn it. First, I […]
What ‘use strict’ means for in JavaScript
“strict mode”; It’s a ECMAScript 5 feature that prevents certain actions from being taken and throws more exceptions in a JavaScript code.