openpgp4fpr:84BF523F3F3EFA760C3E2C0C0C1A484B87269CD7
UTC: 2021-02-05 22:03 piraces/chocolatey-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
Update report | USING AU NEXT VERSION
UTC: 2024-11-12 19:04 piraces/chocolatey-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
Reference:
sudo fdisk -l
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ $# -eq 0 ] | |
then | |
echo "Please provide a video extension as argument" | |
fi | |
for f in *.$1; | |
do ffmpeg -i "$f" "${f%.*}_out.gif"; | |
rm "$f"; done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$oldName = "feature/fix" | |
$newName = "feature/fixes" | |
$directory = "C:\Projects\Folder" | |
Set-Location -Path $directory | |
git fetch | |
git checkout $oldName | |
git pull | |
git branch -m $newName | |
git branch -m $oldName $newName |
I hereby claim:
- I am piraces on github.
- I am piraces (https://keybase.io/piraces) on keybase.
- I have a public key ASAY9lt2JBfTVRlHsteRs1kOTGxCbARDLtAyzv3NL21jtwo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Autor: Raul Piraces. | |
# This script requires "sudo" to be installed. | |
# Fix dropbox problem with max_user_watches. | |
# Working on several linux distros (based on ArchLinux, Debian, Ubuntu, Fedora, CentOS, etc.). | |
FILE="/usr/lib/sysctl.d/50-default.conf" | |
FILE2="/etc/sysctl.conf" | |
if [ -f $FILE ]; |