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
sudo vim /etc/locale.gen | |
# uncoment en_US and pt_BR (both ISO e UTF) | |
sudo locale-gen | |
sudo vim /etc/locale.conf | |
# LANG=en_US.UTF-8 | |
# LC_COLLATE=en_US.UTF8 | |
sudo pacman --noconfirm -Syyyyu | |
sudo pacman -S zsh git vim tk terminator elementary-icon-theme chrome-gnome-shell albert fasd yaourt lynx python-pip muparser vlc docker meld gdm linux-headers |
This file has been truncated, but you can view the full file.
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
[ | |
{"Number":1,"Gender":"male","GivenName":"Leonardo","MiddleInitial":"P","Surname":"Souza","StreetAddress":"Rua Coromandel 1718","City":"Contagem","State":"MG","StateFull":"Minas Gerais","ZipCode":"32186-320","EmailAddress":"[email protected]","Username":"Otioure93","TelephoneNumber":"(31) 9326-4184","TelephoneCountryCode":55,"MothersMaiden":"Martins","Birthday":"2/19/1993","Age":23,"CCType":"Visa","CCNumber":4929974400186397,"CVV2":796,"CCExpires":"11/2021","NationalID":"173.730.067-28","Occupation":"Sales worker driver","Vehicle":"1998 Ford Ranger","Company":"Peaches","Latitude":-19.899046,"Longitude":-44.016137,"GUID":"96d9fbd0-91c9-4a18-a7eb-a21a5adc69eb"}, | |
{"Number":2,"Gender":"male","GivenName":"Cauã","MiddleInitial":"P","Surname":"Castro","StreetAddress":"Bloco Vinte e Nove 1316","City":"Belém","State":"PA","StateFull":"Pará","ZipCode":"66090-780","EmailAddress":"[email protected]","Username":"Sataked82","TelephoneNumber":"(91) 4977-7042","TelephoneCountryCode":55,"MothersMaiden" |
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
# Prepare pacman | |
sudo mkdir -p /root/.gnupg | |
sudo pacman-key --init && sudo pacman-key --populate archlinux manjaro && sudo pacman-key --refresh-keys | |
# Remove packages | |
sudo pacman -R empathy accerciser gnome-chess gnome-sudoku gnome-tetravex polari five-or-more four-in-a-row steam-native ipython hitori gnome-klotski steam quadrapassel gnome-nibbles aisleriot lightsoff gnome-mahjongg gnome-mines iagno gnome-robots tali swell-foop | |
# Upgrade all | |
sudo pacman -Syyu |
This file has been truncated, but you can view the full file.
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
__SSTOKENSTRING = "@generated SignedSource<<dbe928e1275c495c1922c1bf063ffb70>>"; | |
! function(e) { | |
function t(e) { | |
function t() { | |
var t = Array.prototype.map.call(arguments, function(e) { | |
if (null == e) return null === e ? "null" : "undefined"; | |
if ("string" == typeof e) return '"' + e + '"'; | |
try { | |
return JSON.stringify(e) | |
} catch (t) { |
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
// ==UserScript== | |
// @name InVision-AndroidSkins | |
// @description InVision-AndroidSkins | |
// @include https://projects.invisionapp.com/* | |
// @version 1.0 | |
// ==/UserScript== | |
function applySkin(options) { | |
var skinCss = "#preview .mobileSkin.htcOne-portrait { background: url('" + options.backgroundImageUrl + "') no-repeat; height: " + options.skinHeight + "; } " |
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
$.getScript("http://momentjs.com/downloads/moment.min.js", function() { | |
$.getScript("https://raw.github.com/eligrey/FileSaver.js/master/FileSaver.js", function() { | |
var SUBTITLE_DELAY = parseInt(prompt("Subtitle delay", "10800"), 10); | |
var zero = moment(); | |
zero.hour(0).minute(0).second(0).milliseconds(0); | |
var legendas = []; | |
$('[class="transcriptLink"]').each(function() { | |
var elapsedMs = parseInt(this.href.split("#")[1], 10); | |
legendas.push({ |
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
function Modal(target, options) { | |
this.target = target ; | |
this.options = options; | |
} | |
Modal.prototype.show = function() { | |
} | |
$.fn.modal = function(options) { | |
... // instanciar e armazenar o plugin --> new Modal($(this), options) |
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
DUMP_IGNORE = {os = 1, io = 1, table = 1, _VERSION = 1, math = 1, love = 1, string = 1, package = 1, _G = 1, DUMP_IGNORE = 1, ndump = 1, xpcall = 1, unpack = 1, type = 1, require = 1, setmetatable = 1, next = 1, pairs = 1, ipairs = 1, dofile = 1, collectgarbage = 1, load = 1, loadfile = 1, loadstring = 1, module = 1, pcall = 1, gcinfo = 1, getmetatable = 1, error = 1, debug = 1, coroutine = 1, assert = 1, tonumber = 1, tostring = 1, setfenv = 1, arg = 1, argv = 1, dumpAll = 1, dumpUserData = 1, getfenv = 1, newproxy = 1, select = 1} | |
function ndump(object, map, visited, prefix, ignoredMap) | |
map = map or {} | |
ignoredMap = ignoredMap or {} | |
visited = visited or {} | |
if object ~= nil and visited[object] == nil then | |
visited[object] = true | |
for k, v in pairs(object) do | |
local useMap = not prefix and DUMP_IGNORE[tostring(k)] ~= nil and ignoredMap or map |