This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<manifest> | |
<remote name="AOSP" | |
fetch="https://android.googlesource.com/" /> | |
<remote name="AOKP" | |
fetch="https://github.com/AOKP/" | |
review="gerrit.aokp.co" /> |
This file contains hidden or 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
# Creamos carpeta para archivos requeridos | |
mkdir -p ~/Hackberryan/uboot_files | |
cd ~/Hackberryan/uboot_files | |
# Descargamos archivos requeridos | |
wget -c http://dl.miniand.com/jas-hacks/uboot/1gb/sunxi-spl.bin | |
wget -c http://dl.miniand.com/jas-hacks/uboot/1gb/u-boot.bin | |
wget -c http://dl.miniand.com/jas-hacks/new_tv_t100/script.bin | |
# Renombramos archivo | |
mv script.bin evb.bin |
This file contains hidden or 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 | |
# Descarga el código de FS_2015 y los plugins disponibles | |
# Última actualización 16/02/2015 | |
set -e | |
USER_HOME=`echo $HOME` | |
PATH_BASE="${USER_HOME}/Code" |
This file contains hidden or 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 | |
VERSION=`uname -m` | |
if [ "$VERSION" == "x86_64" ] || [ "$VERSION" == "amd64" ]; then | |
wget -c https://popcorntime.sh/download/build/Popcorn-Time-0.3.9-Linux-64.tar.xz -O PopcornTime.tar.xz | |
else | |
wget -c https://popcorntime.sh/download/build/Popcorn-Time-0.3.9-Linux-32.tar.xz -O PopcornTime.tar.xz | |
fi |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
// Invoice markup | |
// Author: Max Kostinevich | |
// BETA (no styles) | |
// http://pdfmake.org/playground.html | |
// playground requires you to assign document definition to a variable called dd | |
var dd = { | |
footer: function(pagenumber, pagecount){ | |
if (pagenumber == 1) { |
This file contains hidden or 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
[gcode_macro PA_CAL] | |
# Klipper pressure advance line calibration macro. | |
# Usage: PA_CAL BED=100 NOZZLE=240 PA_START=0.0 PA_STOP=0.1 NZL=0.4 | |
# Or you can execute with no parameters, which will use values from printer.cfg and saved_variables.cfg. | |
# First prints a line with current set PA, then prints 21 additional line segments starting with PA_START, and increasing to PA_STOP. | |
# Based on http://realdeuce.github.io/Voron/PA/pressure_advance.html | |
# Cleaned up and moved to using saved_variables.cfg by u/jibbsisme | |
# Assisted by u/imoftendisgruntled, u/scul86, and thanks to u/beansisfat, u/stray_r | |
description: Tune Pressure Advance |