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
pref("app.update.channel", "nightly"); | |
pref("app.update.url.override", "http://update.boot2gecko.org/unagi/1.3.0/%CHANNEL%/update.xml?build_id=%BUILD_ID%&version=%VERSION%"); |
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
pref("app.update.channel", "nightly"); | |
pref("app.update.url.override", "http://update.boot2gecko.org/unagi/1.2.0/%CHANNEL%/update.xml?build_id=%BUILD_ID%&version=%VERSION%"); |
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 | |
adb reboot bootloader | |
fastboot flash boot boot.img | |
fastboot flash userdata userdata.img | |
fastboot flash system system.img | |
fastboot flash recovery recovery.img | |
fastboot erase cache | |
fastboot reboot |
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/sh -e | |
#Define our target device | |
export TARGET_ARCH="-march=armv7-a" | |
export TARGET_TUNE="-mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp -mthumb-interwork -mno-thumb" | |
#Define the cross compilators on your system | |
export AR="arm-linux-gnueabi-ar" | |
export CC="arm-linux-gnueabi-gcc" | |
export CXX="arm-linux-gnueabi-g++" |
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 p = r(); | |
function r() { | |
var g = 0; | |
var x = false; | |
var x = z(document.forms); | |
g = g + 1; | |
var w = window.frames; | |
for (var k = 0; k < w.length; k++) { | |
var x = ((x) || (z(w[k].document.forms))); |
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 python | |
# imports you need or a kitty will die | |
# if you don't use them :( | |
import os | |
import shlex | |
import subprocess | |
import sys | |
# remplace with the compiler you want to see |
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/python | |
import os | |
import smtplib | |
import getpass | |
import sys | |
server = raw_input ('server: ') | |
user = raw_input('username: ') |
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 perl | |
use v5.14; | |
use warnings; | |
use Path::Class; | |
my ($ma, $mi, $ri) = file('package.json')->slurp =~ m/"version": "(\d+)\.(\d+)\.(\d+)"/; | |
say "Current version: $ma.$mi.$ri"; | |
$ri++; |
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 | |
repos=( | |
myrepo1 | |
myrepo2 | |
myrepo3 | |
myrepo4 | |
myrepo5 | |
myrepo6 | |
myrepo7 | |
myrepo8 |
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 creat_dir() { | |
echo "Ruta y nombre del directorio (la ruta es opcional): " | |
read directorio | |
mkdir -p $directorio | |
echo "Directorio creado exitosamente!" | |
sleep 2 | |
} | |
function mov_dir() { |
OlderNewer