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
# Helper method to clone objects | |
def deep_clone(object) | |
Marshal.load(Marshal.dump(object)) | |
end | |
# The concept y pretty simple: imagine that you have the following matrix: | |
# 1 2 3 4 | |
# 10 11 12 5 | |
# 9 8 7 6 | |
# |
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 | |
# --------------------------------------- | |
# Local variables | |
# --------------------------------------- | |
name="<Your name>" | |
email="<Your email>" | |
dev_directory=~/Dev | |
work_directory=$dev_directory/Repos | |
bash_profile=~/.bashrc |
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
# This script will allow you to create an installation script, which will download a release from a GitHub repository, | |
# and install it on /usr/local/bin, accessible by user's PATH. The release file should include an executable, without any | |
# subfolders. After tweaking this file, you may now add it to your | |
# repository at your root as `install.sh` in the master branch. Users may run this script with: | |
# | |
# curl -s https://raw.githubusercontent.com/<user>/<repo>/master/install.sh | sh | |
# | |
# Custom configuration |
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
var toHumanSize = function(bytes) { | |
var list = ['B', 'kB', 'MB', 'GB', 'TB']; // Add more units, if you need to. | |
var factor = 1.0 / 1000.0; // You can use 1024 for bits instead! | |
var unit = list.shift(); | |
while(list.length > 0 && bytes * factor >= 1) { | |
bytes = bytes * factor; | |
unit = list.shift(); | |
} |
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
# List databases | |
sudo su postgres | |
psql | |
\list | |
# Create a compressed backup | |
sudo su postgres | |
pg_dump -Fc <database_name> > <file> | |
# Example |
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
# Run in a shell the following command: | |
mongodump | |
# A `dump` folder will be created on the current working directory. | |
# To compress that folder, use dump. | |
tar -czvf backup.tar.gz dump/ |
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
class Pubsub | |
class EventBus | |
attr_reader :topics | |
def initialize | |
@topics = {} | |
end | |
def publish(topic, message) | |
topics[topic.to_s].to_a.each do |subscriber| |
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
# A basic ruby implementation for the trie structure. | |
class Trie | |
# Node class to store node information (character or tag, and action) | |
class Node | |
attr_reader :children, :tag | |
attr_accessor :value | |
def initialize(tag, parent, action = nil) | |
@tag = tag | |
parent.children << self if parent |
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
# Run this command on a terminal: | |
pulseaudio -k && sudo alsa force-reload |
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
# Use this command | |
fuser path/to/file.ext | |
# For example: | |
fuser log/development.log |
OlderNewer