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 | |
# | |
# By: Samuel Maciel Sampaio <[email protected]> [20140328] | |
# Defining Ruby's version by alternatives tool | |
# Set the ruby version you want to configure | |
RUBY_VERSION="1.8" | |
ALTERNATIVES_TOOL=$(which update-alternatives 2>/dev/null) |
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 | |
# | |
# nagios_cronjob_downtime_scheduler.sh | |
# by: Samuel Sampaio [20140419] <[email protected]> | |
# goal: Provide the nagios command interface to schedule services by cronjobs | |
# Usage: ./nagios_cronjob_downtime_scheduler.sh 'My Service' 'machine_1 machine_2' 7200 | |
service_name="$1" #'My Service' | |
hosts="$2" #'my_host' | |
duration_secs="$3" # '200' |
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 | |
# | |
# script: deploy_kivy_app_with_kivy_launcher.sh | |
# | |
# by: Samuel Maciel Sampaio [20140717] | |
# | |
# contact: [email protected] | |
# | |
# goal: | |
# Develop kivy apps for android and quickly test directly in your |
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
-- by: Samuel Maciel Sampaio [2014-17-07] | |
-- contact: [email protected] | |
-- goal: call your specific command to the current session of the current terminal | |
-- Special Thanks to Stefan van den Oord, 2010-12-29 | |
-- and https://code.google.com/p/iterm2/wiki/AppleScript | |
tell application "iTerm" | |
activate | |
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
[user] | |
name = SamukaSMk | |
email = [email protected] | |
[core] | |
excludesfile = /home/samuel/.gitignore_global | |
editor = /usr/bin/vim | |
[color] | |
ui = true |
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 | |
echo "Opening Modified file: ($5) -> ($2)" | |
os_name=`uname -s` | |
case $os_name in | |
Darwin) opendiff "$2" "$5" > /dev/null 2>&1 | |
;; | |
*) meld "$2" "$5" > /dev/null 2>&1 | |
esac |
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 | |
# | |
# vagrant_aliases.sh | |
# By: Samuel Maciel Sampaio <[email protected]> | |
# | |
# Installation instructions: | |
# | |
# 1.) put this file in folder /usr/bin with name 'v', eg: '/usr/bin/v' | |
# | |
# 2.) to exec vagrant snap or vagrant sandbox please install this plugins: |
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 | |
# | |
# By: Samuel Maciel Sampaio <[email protected]> [20150122] | |
# Defining Java's version by alternatives tool | |
# Set HERE the REAL PATH to JDK FILES UNCOMPRESSED AND JAVA version you want to configure! | |
REAL_JDK_PATH="/usr/lib/jvm/java-1.8.0-oraclejdk-1.8.0_66" | |
JAVA_VERSION="1.8.0_66" |
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
# ENCRYPTING WITH PRE-DEFINED (SALT PASSWORD) | |
$ echo 'this is my password' | openssl enc -aes-128-cbc -a -salt -pass pass:HereIsMySalt | |
U2FsdGVkX19+mJ+opjDjbw8Y6fmCtIznZI8lG1/+xs87youRvvZUzIlSiCMysoOl | |
# DECRYPTING WITH PRE-DEFINED (SALT PASSWORD) | |
$ echo 'U2FsdGVkX19+mJ+opjDjbw8Y6fmCtIznZI8lG1/+xs87youRvvZUzIlSiCMysoOl' | openssl enc -aes-128-cbc -a -d -salt -pass pass:HereIsMySalt | |
this is my password | |
# EXAMPLE OF DECRYPTING WITH WRONG SALT PASSWORD, GENERATING ERROR | |
$ echo 'U2FsdGVkX19+mJ+opjDjbw8Y6fmCtIznZI8lG1/+xs87youRvvZUzIlSiCMysoOl' | openssl enc -aes-128-cbc -a -d -salt -pass pass:PassingWrongSalt |
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
#!/usr/bin/python | |
# | |
# script: pymetter | |
# by: Samuel Maciel Sampaio [20150403] <[email protected]> | |
# goal: Test webpage with json content and calculate average elapsed time | |
# example of use: | |
# ./pymetter.py --url https://api.github.com/user \ | |
# --http-user 'your_github_username' \ | |
# --http-pass 'your_github_password' |