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
# Awesome test on 'rubysdl' gem | |
# Complete reference: | |
# | |
# http://www.kmc.gr.jp/~ohai/rubysdl_ref_2.en.html | |
require 'sdl' | |
begin | |
SDL.init(SDL::INIT_EVERYTHING) | |
screen = SDL::Screen.open(200, 200, 0, SDL::HWSURFACE) |
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
require 'curses' | |
# Hell yeah | |
DANI_NUMERO_CIRCULOS = 4 | |
DANI_LIMPAR_TELA = false | |
# All possible colors. | |
Colors = { |
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/env ruby | |
# | |
# pipes.rb: Displays a nice animation on the terminal, | |
# based on an old screensaver. | |
# | |
# If you want to see some action, scroll to the bottom. | |
# The main code is between "begin" and "end". | |
# | |
# This code uses Ruby and it's Curses module to display | |
# characters on the terminal. |
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 | |
# Gets the archived zipball of a GitHub repository | |
# $1 user | |
# $2 repo | |
LINK="https://github.com/$1/$2/archive/master.zip" | |
ZIPFILE="$2.zip" | |
echo "Downloading project '$2' from GitHub user '$1'..." |
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 | |
# This file signs several GPG keys, outputting | |
# each result on a different file. | |
MY_KEY=12345678 | |
KEYS="90123456 78901234 56789012 34567890" | |
for key in $KEYS | |
do | |
gpg --sign-key $key |
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
# Keep repeating words that contains 'fuck' until interrupted | |
yes `grep fuck /usr/share/dict/words` | tr '\n' ' ' |
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
int gcd (int a, int b) | |
{ | |
if (b == 0) | |
return a; | |
if (a > b) | |
{ | |
int x = a; | |
a = b; | |
b = x; | |
} |
NewerOlder