Skip to content

Instantly share code, notes, and snippets.

View iGallina's full-sized avatar

iGallina iGallina

  • Brasília -DF
View GitHub Profile
@iGallina
iGallina / export-toby.js
Created August 5, 2019 19:20 — forked from krishpop/export-toby.js
Export Toby
// code courtesy of Toby team
chrome.storage.local.get("state", o => (
((f, t) => {
let e = document.createElement("a");
e.setAttribute("href", `data:text/plain;charset=utf-8,${encodeURIComponent(t)}`);
e.setAttribute("download", f);
e.click();
})(`TobyBackup${Date.now()}.json`, o.state)
));
@iGallina
iGallina / sei_extract.user.js
Last active April 19, 2016 19:37 — forked from djyde/rm2magnet1024.user.js
sei_extract.user.js
// ==UserScript==
// @name rm2mag1024
// @namespace http://djyde.github.io/
// @version 0.1.1
// @description Automatically convert rmdown to magnet and show on the top of 1024 page
// @author Randy
// @match http://t66y.com/htm_data/*
// @grant none
// ==/UserScript==
@iGallina
iGallina / rvm2rbenv.txt
Last active March 6, 2016 18:05 — forked from brentertz/rvm2rbenv.txt
Switch from RVM to RBENV
## Prepare ###################################################################
# Remove RVM
rvm implode
# Ensure your homebrew is working properly and up to date
brew doctor
brew update
## Install ###################################################################