Skip to content

Instantly share code, notes, and snippets.

View bretonics's full-sized avatar
:octocat:
Decoding the world, one line at a time

Andrés Bretón bretonics

:octocat:
Decoding the world, one line at a time
View GitHub Profile
@bretonics
bretonics / progress-bar.sh
Created November 28, 2017 20:06 — forked from F1LT3R/progress-bar.sh
Bash Progress Bar
#!/bin/bash
# Bash Progress Bar: https://gist.github.com/F1LT3R/fa7f102b08a514f2c535
progressBarWidth=20
# Function to draw progress bar
progressBar () {
# Calculate number of fill/empty slots in the bar
@bretonics
bretonics / shiny_references.md
Last active March 20, 2018 13:38
Shiny Framework Function Reference Sheet

Shiny Reference Sheet

A web application framework for R quick function reference sheet.

Input

Function Creates
actionButton() Action button element
submitButton() Submit button element
@bretonics
bretonics / bashTricks.md
Last active November 4, 2020 00:48
Tricks to remember on the CL
Script source path - ${BASH_SOURCE} contains full bath to script
# /path/to/repo/bin/script
BIN_PATH="$(dirname ${BASH_SOURCE})"  # gets 'bin' directory path script is in
DIR_PATH="$(dirname $BIN_PATH)"       # gets the main 'repo' directory path
Rename file by replacing old text pattern with new (overwrite existing)
for f in *.txt ; do echo "${f/old/new}"; done
@bretonics
bretonics / snippets.cson
Last active August 2, 2018 13:52
Atom Snippets
# -------------------------------------------------------------------------------
# GENERAL
'.source':
# Main Description Header
'Main Header':
'prefix': 'header'
'body': """
# ================================================================================
#
@bretonics
bretonics / .bashrc
Last active April 3, 2021 15:16
Personalized .bashrc
# .bashrc - interactive, non-login shells
# Template from https://gist.github.com/bretonics/f3b61fcd1fa946df6dac
#-----------------------------------------------------------------------------------------------
# GLOBAL SOURCE
# Global Definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
@bretonics
bretonics / Launcher
Created May 22, 2015 03:57
Mac Apps launcher- Launch all user essential apps at once
-- Launch all your desired apps at once, with a single call.
-- Works wonderful right after startup/reboot without compromising boot time
set appsFolder to "/Applications"
set Apps to {"Mail", "Google Drive", "MenuMate", "Due", "PopClip", "Window Tidy", "Yoink",
"Trickster", "DropZone", "Mint QuickView", "unDock", "Visits", "CalendarFree", "Degrees"} --Change/add desired apps here
repeat with theItem in Apps
launch application theItem
end repeat
@bretonics
bretonics / .bash_profile
Last active April 3, 2021 15:18
Modified .bash_profile
# .bash_profile - login shells
# Template from https://gist.github.com/bretonics/5176d35739a0f4e7acfd
#-----------------------------------------------------------------------------------------------
# SOURCE
# Get Aliases and Functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc