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
Redmine::Utils::relative_url_root = "/redmine" |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<manifest> | |
<project name="CyanogenMod/android_device_samsung_msm8660-common" path="device/samsung/msm8660-common" /> | |
<project name="h0tw1r3/android_device_samsung_quincyatt" path="device/samsung/quincyatt" /> | |
<project name="h0tw1r3/android_device_samsung_quincy-common" path="device/samsung/quincy-common" /> | |
<project name="h0tw1r3/android_kernel_samsung_msm8660-common" path="kernel/samsung/msm8660-common" revision="jb-test" /> | |
<project name="h0tw1r3/android_vendor_samsung_quincyatt" path="vendor/samsung/quincyatt" /> | |
</manifest> |
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
[xcache-common] | |
; change 'lib64' to 'lib' for 32bit | |
zend_extension = /usr/lib64/php/modules/xcache.so | |
[xcache] | |
xcache.shm_scheme = "mmap" | |
xcache.size = 64M | |
xcache.count = 1 | |
xcache.slots = 8K | |
xcache.ttl = 3600 |
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
[core] | |
excludesfile = ~/.gitexcludes | |
[alias] | |
co = checkout | |
pv = pull -v | |
unstage = reset HEAD -- | |
amend = commit -a --amend | |
last = log -1 HEAD | |
st = status -s | |
dh = diff 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
# /etc/conf.d/rtc-i2c | |
# | |
# My chip is actually a ds3231n, but ds1307 driver works fine (ds3232 does not!) | |
# | |
CHIP="ds1307" | |
ADDRESS="0x68" | |
BUS="1" |
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
## Device specific stuff | |
# Wandboard | |
pacman -Sy uboot-wandboard | |
pacman -Sy firmware-imx | |
pacman -Sy firmware-brcm43xx | |
curl https://raw.githubusercontent.com/Freescale/meta-fsl-arm-extra/master/recipes-bsp/broadcom-nvram-config/files/wandboard/nvram.txt \ | |
> /lib/firmware/brcmfmac-sdio.txt | |
ln -s /lib/firmware/brcmfmac4329-sdio.bin /lib/firmware/brcmfmac-sdio.bin |
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 | |
# | |
# You must set a domain access password in the eNom control panel. | |
# | |
ENOMURL="http://dynamic.name-services.com" | |
if [ "$METHOD" = loopback ]; then | |
exit 0 | |
fi |
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/ash | |
# | |
# DNS Ad/Malware blocker for Tomato/DD-Wrt based routers | |
# | |
# Requires: DNSmasq and Pixelserv | |
# | |
# Merges block lists: | |
# * Winhelp2002 | |
# * Pgl Yoyo | |
# * Malware Domains |
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
continue | |
dir=/var/www/downloads | |
file-allocation=falloc | |
max-connection-per-server=4 | |
max-concurrent-downloads=2 | |
max-overall-download-limit=0 | |
min-split-size=25M | |
rpc-allow-origin-all=true | |
rpc-secret=YouShouldChangeThis | |
input-file=/var/tmp/aria2c.session |
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
<?php | |
use \Phalcon\Db\Column as Column; | |
use \Phalcon\Db\Index as Index; | |
use \Phalcon\Db\Reference as Reference; | |
$config = new Phalcon\Config\Adapter\Ini(__DIR__ . '/../app/config/config.ini'); | |
$connection = new \Phalcon\Db\Adapter\Pdo\Sqlite(array('name' => $config->database->name)); |
OlderNewer