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
./repo sync -l buildz | |
./repo sync -l dalvik | |
./repo sync -l gaia | |
./repo sync -l gecko | |
./repo sync -l gonk-misc | |
./repo sync -l rilproxy | |
./repo sync -l librecovery | |
./repo sync -l external/moztt | |
./repo sync -l external/apitrace | |
./repo sync -l abi/cpp |
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
{ | |
"accessibility.invert": false, | |
"accessibility.screenreader": false, | |
"alarm.enabled": false, | |
"app-transition.enabled": true, | |
"app.cards_view.screenshots.enabled": true, | |
"app-suspending.enabled": false, | |
"app-themecolor.enabled": true, | |
"app.launch_path.blacklist": [], | |
"app.reportCrashes": "ask", |
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 | |
# | |
# View your remote webcam via ssh... | |
# | |
VFILE=dump_$(date +%Y%m%d_%H%M) | |
ssh [email protected] \ | |
ffmpeg -b 100K \ | |
-an \ | |
-f video4linux2 \ |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | |
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></head><body> | |
<div> | |
<h2 align="center"> Pago directo a monederos </h2> | |
<table align="center" border="1"> | |
<tbody><tr> | |
<th>Faucet</th> | |
<th>Depósitos</th> |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<title>Mis monederos:</title> | |
<meta http-equiv="content-type" content="text/html;charset=utf-8" /> | |
<meta name="generator" content="Geany 1.24.1" /> | |
</head> |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<title>OK TOR: bitcoin faucets</title> | |
<meta http-equiv="content-type" content="text/html;charset=utf-8" /> | |
<meta name="generator" content="Geany 1.23.1" /> | |
</head> |
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 | |
# Carlos Sanchez <cargabsj175 (at) gmail.com> | |
# Proyecto VegnuX 2007-2011 | |
# cirilyc to latin 0.1 GPL v3 | |
# cirilyc alphabet (russian) | |
c0="А" | |
c1="а" | |
c2="Б" | |
c3="б" |
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
perl -MLWP::Simple -MJSON -e '$ref = JSON->new->utf8(0)->decode(get("https://s3.amazonaws.com/dolartoday/data.json")); print $ref->{'USD'}{'transferencia'}. "\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
const getBsfOfParalelo = (ticker, quantity, discount = 0) => { | |
ticker = ticker.toUpperCase(); | |
return fetch("https://s3.amazonaws.com/dolartoday/data.json") | |
.then(res => res.json()) | |
.catch((err) => { throw new Error('Data cannot be reached. Check the URL.') }) | |
.then(val => { | |
let price = val[ticker].dolartoday; |
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
/** | |
* Attributes shortcode callback. | |
* Original by: https://stackoverflow.com/users/383847/helgatheviking | |
*/ | |
/** | |
* Usage: This would be used in 1 of 2 ways. | |
* First, to display specific attributes use: | |
* [display_attributes attributes="color|material"] | |
* Second, to display all attributes use: |