Libvirt is a powerful virtualization management tool that supports various operating systems and hypervisors such as KVM and Qemu. In this guide, we’ll show you how to harness the potential of Libvirt and Vagrant on Windows using the MinGW toolchain, enabling you to set up a local box quickly for efficient testing of Network architectures, […]
Exa a new way to ls your directories
How many times you list files in a directory? Personally, I use it a lot with flags, sorting by name, size and creation date. But, I feel like the official `ls` command has limits. I want sometimes check the git status of the files list, have icons like IDE, get more informations in the long […]
Build your RESTful API with AWS right NOW
Hello everyone, I am so happy to introduce you today the coolest way to create an endpoint! Whatever you want to save files or data in a Database, this post will show you how to easily make a Restful API quickly and why not a full project. But first, let’s introduce you some important points […]
Git Submodule basics
Sometimes, when you work with team, you need to clone a separated code to integrate a plugin/module to your repository. It happens when I work on a CakePHP project and I need a plugin from CakeDC’s repositories. Perhaps, I don’t maintain CakeDC’s plugin. And I don’t care about pull requests and commits of the submodule. […]
How to publish Docker image in GitHub
GitHub actions are really cool, but, with GitHub repositories is better. Pushing a Docker image is very easy to setup. We need only a developer token from the GitHub’s profile and few lines in actions.
CORS understand Cross-Origin Resource Sharing mechanism
Hello developer. I know that it becomes a nightmare when front developer have issues with it. The async requests fails to fetch data from Back-end and a red message in console “…cors… cross-origin..”. It’s harder to fix this issue when we don’t understand how navigator works when we try to fetch data from a REST […]
What’s new with Deno 1.14
I’m personally interesting of the evolution of Deno. Specially, after the announcement in JSConf 2018 by Ryan Dahl “10 thinks I regret About Node.js”, I figure it out that node js will die in five next years. As a fullstack web developer, I tried to create APIs using Deno. But, I was stuck because the […]
How to format strings with Python 3
You want to format strings with Python 3? Do you know that’s the most task that we need? like printing text with variables, formatting string uri for database connection and to return messages and errors. With Python 3, f-strings become the great tool to make more readable and faster codes. But first, lets talk about […]
Files in S3 AWS Python Lambda, how to handle them?
Do you know that Lambdas are made to process files? So, reading and writing, compressing and extracting data from s3 Bucket are the main uses. So, handling files with python lambda is really easy and helpful to handle files in s3
Linux Bash cheat sheets
Writing a Bash script is very hard, I usually write some to automate things, to verify files, directories and run scripts like Ansible or kubectl. As a devops, you need sometimes to compare env variables, find and replace text in different files.. So, I found this cheat in github, it’s helpful. I you are looking […]