Skip to content

Instantly share code, notes, and snippets.

View gsilano's full-sized avatar
🎯
Focusing

Giuseppe Silano gsilano

🎯
Focusing
View GitHub Profile
@gsilano
gsilano / Instructions_FFMPEG.md
Last active November 20, 2023 21:13
This script uses ffmpeg to convert MKV and MP4 file format in MOV for DaVinci Resolve video editing program
View Instructions_FFMPEG.md

Overview

This script uses ffmpeg to convert MKV and MP4 file format in MOV for DaVinci Resolve video editing program

To install ffmpeg

sudo apt-get update
sudo apt-get install ffmpeg
@gsilano
gsilano / gist:98903b72b51da585bba3a14cfcd7c5fc
Created May 16, 2020 07:20 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup
View gist:98903b72b51da585bba3a14cfcd7c5fc

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@gsilano
gsilano / mouse_sensitivy.sh
Created May 10, 2020 08:05
Adjust the speed of the mouse and touchpad on Ubuntu 16.04
View mouse_sensitivy.sh
#!/bin/bash
xset m 1/2 5
@gsilano
gsilano / roundcube-all.js
Created May 10, 2020 08:02
X-notifier script to get the number of unread messages in mailboxes of a Roundcube account. For more details, see https://github.com/shemminga/small-hacks
View roundcube-all.js
/**********************************************************
Roundcube
**********************************************************/
var name="Roundcube (all mailboxes)";
var ver="2018-06-06";
var needServer=true;
function init(){
this.initStage=ST_PRE;
if(this.server){
@gsilano
gsilano / README.md
Last active January 3, 2020 10:20
Recover protobuf 2.6.1 on Ubuntu 16.04
View README.md
# Remove the newest version of the software
cd /usr/local/include/google

sudo rm -rf protobuf

# Go to https://github.com/protocolbuffers/protobuf/releases?after=v3.0.0-alpha-1 
# and download protobuf-2.6.1. Then, extract the contents. I downloaded 
# protobuf-2.6.1.tar.gz
cd ~/Download/protobuf-2.6.1