DaVinci Resolve is a fantastic tool for easy video editing activities and I want to share a couple of suggestions. Insert new image or video in a specific point of the timeline If you simply drag and drop, the new clip will be added at the end of the timeline or will replace the one…
Category: Tips and tricks
Mini cheat sheet for Linux users setup
Here is a short list of commands on how to create a user in Linux and get started easily. First of all login as root Create a new user: Create a password for user Add user to sudo group: Create default user home folder: Edit default command line: and replace /bin/sh with /bin/bash
How to install a venv in Python without network connection
In some cases you have to replicate a Python project on a computer without internet connection. In these cases you must not simply copy the venv folder. Requirements for this process: the project, a memory mass storage, another computer with internet connection. First of all, you have to to install Python on the offline machine….
[SOLVED] Overlap images in HTML
If you spent hours trying to find a good solution to overlap images in HTML, this is your final solution. This doesn’t require CSS or Javascript. Only HTML. This is a tricky way to overlap images without using that annoying absolute CSS property misused. In fact if you use the position:absolute property, you will not…
How to install LaTeX package
Personally I use TeXstudio to create LaTeX documents and sometimes I need to install new packages. Usually, when you try to use a package that is not installed locally, this is the following error: The easiest way to install a new package (in this case the float package) is to use MiKTeX. First of all…
How to reinstall ssh key in Linux
Ssh key is very useful if you want to login quickly into applications such as when you want to clone or push from/to Github. Imagine if you set up this ssh key in plenty of services and you have to reinstall the operating system…what a nightmare! Actually there’s a very easy way to setup your…
How to enable emoji on Nextcloud
I found this interesting post on the community forum that explains step by step the commands to display correctly emoji on Nexcloud and in particular on Talk. Please note that the following guide DOES NOT enable the emoji library on Nextcloud but only allows to display emoji correctly. https://help.nextcloud.com/t/emojis-not-working/65004
Burp and Firefox not proxying localhost
Burp is absolutely one of the best suite of tools for hacking and maybe the most used by the community. In this post I want to show up the solution if you are trying to intercept localhost calls but Burp seems to ignore them. First of all you have to check if your extension is…
DELETE all tables in a database using MySQL
Remove link from HTML with CSS
This is a simple work-around to remove actions and links from a link tag without replacing the inner HTML code. For example it can be useful if you are trying to edit a CMS template like a WordPress or Joomla template. These lines of code will do the work easily: .the-outer-container a{ โpointer-events: none; โcolor:…