Skip to content

Instantly share code, notes, and snippets.

View mendelgusmao's full-sized avatar
😅
what's up?

Mendelson Gusmão mendelgusmao

😅
what's up?
View GitHub Profile
require "nokogiri"
require "open-uri"
require "fileutils"
list = File.open("bmbslsk.txt").read.split("\n").sort
#list = [list.first]
list.each do |url|
output_file = "D:/Devs/bmbslsk/" + url[/\d+/]
@mendelgusmao
mendelgusmao / gist:2931935
Created June 14, 2012 18:21
AJAX Fluent Interface
function AJAXFluentInterface(uri) {
this.uri = uri || "";
this.retrieve = function(data, type) {
return $.ajax({
type: type || "GET",
url: this.uri,
dataType: "json",
data: data
@mendelgusmao
mendelgusmao / redis_sessions.py
Created July 6, 2012 22:30 — forked from junkafarian/redis_sessions.py
Redis session management using a dictionary-like API for session objects
import redis
from zope.interface import Interface, implements
try: #pragma NO COVERAGE
import simplejson as json
except ImportError: #pragma NO COVERAGE
import json
class RedisSession(dict):
""" Provides a lazy interface for presenting data stored in a redis DB as a
@mendelgusmao
mendelgusmao / CHANGELOG.txt
Created July 28, 2012 22:36
Symbian9 - Nono dígito para Symbian & programas que usam vCard (Outlook p.ex)
10/08/2012
- Adicionada opção para o formato 0XX11987654321, com ou sem zero no sufixo (Contribuição: Carlos Luizetto / Roberto Akama)
- Adicionada verificação da "gem vcard" para os casos em que o componente responsável pela leitura e edição de vCards não está instalado
02/08/2012
- Correção de bugs
- Lista de prefixos da Nextel (SME/trunking não faz parte da mudança) (Contribuição: Maurício Iwata)
- Adição do formato 9-XXXX-XXXX (Contribuição: Carlos Luizetto)
/^(?<collection_path>.*(?<collection_name>MP\d))\\(?<genre_name>.*)\\((?<artist_name>.*)(\s\((?<country_name>.{3})\))?)\\(?<album_year>\d{4})\s-\s(?<album_title>.*)\\/
// !OK
"D:\\MP3\\Genre\\Artist (Cty)\\2004 - Album Title\\01 - Song Title.mp3" => {
"collection_path"=>"D:\\MP3",
"collection_name"=>"MP3",
"genre_name"=>"Genre",
"artist_name"=>"Artist (Cty)",
"country_name"=>nil,
"album_year"=>"2004",
** Invoke library:build (first_time)
** Invoke environment (first_time)
** Execute environment
** Execute library:build
rake aborted!
undefined method `external_encoding' for #<String:0xa5e559c>
/usr/local/lib/ruby/1.9.1/psych.rb:203:in `parse'
/usr/local/lib/ruby/1.9.1/psych.rb:203:in `parse_stream'
/usr/local/lib/ruby/1.9.1/psych.rb:151:in `parse'
/usr/local/lib/ruby/1.9.1/psych.rb:127:in `load'
@mendelgusmao
mendelgusmao / Usage
Created December 5, 2012 02:12
Automatic key loader for Pageant
wscript C:\path\to\pageant.loader.vbs
Tip: use mlin's StartupCPL http://www.mlin.net/StartupCPL.shtml
or add a shortcut to the vbs in the startup folder under start menu
@mendelgusmao
mendelgusmao / Gemfile
Last active December 11, 2015 20:39
rails + twitter-bootstrap-rails + heroku
source 'https://rubygems.org'
gem 'rails', '3.2.11'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg'
# Gems used only for assets and not required
@mendelgusmao
mendelgusmao / 20130128194931_add_attachment_avatar_to_users.rb
Last active December 11, 2015 20:59
Caching Dropbox URLs for paperclip-dropbox (not fully tested; not handling "missing" properly)
class AddAttachmentAvatarToUsers < ActiveRecord::Migration
def self.up
change_table :users do |t|
t.attachment :avatar
end
add_column :users, :avatar_dropbox, :string, :default => {}.to_yaml
end
def self.down
// ==UserScript==
// @name MediaboomShittyProtection
// @namespace @MendelGusmao
// @include *mediaboom.org/*
// @version 1
// @require http://code.jquery.com/jquery-1.9.0.min.js
// @require https://raw.github.com/carlo/jquery-base64/master/jquery.base64.min.js
// ==/UserScript==
var matcher = /url=([^=]+)/;