Skip to content

Instantly share code, notes, and snippets.

View andre3k1's full-sized avatar
🏠
Working from home

Andre Garrigo andre3k1

🏠
Working from home
  • Miami, Florida, USA
  • 21:24 (UTC -04:00)
View GitHub Profile
@andre3k1
andre3k1 / LICENSE
Created March 14, 2025 18:19 — forked from yanofsky/LICENSE
A script to download all of a user's tweets into a csv
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
@andre3k1
andre3k1 / Omnivore_Export_Tool.md
Created November 6, 2024 14:48
How to export your Omnivore app data, including all of your saved links, their page content, and your highlights into a single zip file.
@andre3k1
andre3k1 / Convert_Subtitles_to_UTF-8.sh
Last active June 4, 2024 21:47
Converts SRT (.srt) subtitle files in a folder to UTF-8 encoding using iconv
#!/bin/bash
set -euo pipefail
# Function to print usage
function usage() {
echo "Usage: $0 <folder_path>"
echo "e.g. $0 /Movies/MyMovie/Subtitles"
echo "Please provide a folder path as the single argument to this script."
echo "All files in the selected folder will be converted to UTF-8 encoding."
exit 1
@andre3k1
andre3k1 / Correct_GnuPG_Permission.sh
Created February 17, 2023 18:13 — forked from oseme-techguy/Correct_GnuPG_Permission.sh
This fixes the " gpg: WARNING: unsafe permissions on homedir '/home/path/to/user/.gnupg' " error while using Gnupg .
#!/usr/bin/env bash
# To fix the " gpg: WARNING: unsafe permissions on homedir '/home/path/to/user/.gnupg' " error
# Make sure that the .gnupg directory and its contents is accessibile by your user.
chown -R $(whoami) ~/.gnupg/
# Also correct the permissions and access rights on the directory
chmod 600 ~/.gnupg/*
chmod 700 ~/.gnupg
@andre3k1
andre3k1 / edit-and-execute-command.sh
Created November 27, 2018 20:27
Editing long shell commands in Sublime Text with edit-and-execute-command
## Editing long shell commands in Sublime Text with edit-and-execute-command
##
##
## Typing "subl" on command line will open Sublime Text by adding this symlink
ln -s /Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl ~/bin/subl
##
##
## Make Sublime Text the default editor...
##
## ...if using BASH
@andre3k1
andre3k1 / install-gnu-sed-on-mac-osx.sh
Created July 26, 2018 18:39
How to install gnu sed on Mac OS X and set it as the default
# Check which version of sed is used when you run the `sed` command
# The version that ships with Mac OS X is
# /usr/bin/sed
which sed
# Install gnu-sed using Homebrew
# The `--with-default-names` option configures `sed` to use gnu-sed
# Without that option, you'll need to type `gsed` to use gnu-sed
brew install --default-names gnu-sed
@andre3k1
andre3k1 / regex_patterns.md
Created July 23, 2018 16:19
Regular Expressions - Special Character Definitions

Regular Expressions

The following should be escaped if you are trying to match that character

\ ^ . $ | ( ) [ ]
* + ? { } ,

Special Character Definitions

####################################################################
# Change the number of rows and columns to display in Launchpad #
# by typing the following two lines in Terminal. You can use any #
# two integers for the number of rows and columns. I'm using 15x10 #
####################################################################
defaults write com.apple.dock springboard-columns -int 15
defaults write com.apple.dock springboard-rows -int 10

OS X Screencast to animated GIF

This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.

Screencapture GIF

Instructions

To capture the video (filesize: 19MB), using the free "QuickTime Player" application: