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
pkgbase=('aeon-git') | |
pkgname=('aeon-git') | |
_aeon='aeon' | |
pkgver=0.9.14.0.r204.2c54434 | |
pkgrel=1 | |
arch=('x86_64' 'i686' 'armv7h') | |
url="http://aeon.cash/" | |
license=('custom:Cryptonote') | |
depends=('boost-libs>=1.45' 'miniupnpc>=1.6' 'libunwind' |
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
def self.crc16(buf) | |
crc = 0xffff | |
buf.each_byte do |b| | |
crc = (crc >> 8) ^ CRC_LOOKUP[(crc ^ b) & 0xff] | |
end | |
~crc | |
end | |
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
# Maintainer: Benjamin Chrétien <chretien dot b plus aur at gmail dot com> | |
pkgname=ignition-transport | |
pkgver=3.0.1 | |
pkgrel=1 | |
pkgdesc="The transport library combines ZeroMQ with Protobufs to create a fast and efficient message passing system" | |
arch=('i686' 'x86_64') | |
url="http://ignitionrobotics.org" | |
license=('Apache') | |
groups=('development') | |
depends=('protobuf' 'protobuf-c' 'zeromq' 'uuid' 'ignition-msgs') |
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
xset s off # don't activate screensaver | |
xset -dpms # disable DPMS (Energy Star) features. | |
xset s noblank # don't blank the video device | |
feh --bg-scale ~/torrefare.png & unclutter & | |
exec /usr/bin/chromium --kiosk --incognito --disable-translate http://localhost:9292 |
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
# Pkgs on servers: | |
# ---------------- | |
# 1 - Setup disks | |
# 2 - Change vars: | |
app="niceapp" | |
name="aakira" | |
sshkey="ssh-rsa..." |
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
[Unit] | |
Description=High-performance, schema-free document-oriented database | |
After=network.target | |
[Service] | |
LimitFSIZE=infinity | |
LimitCPU=infinity | |
LimitAS=infinity | |
LimitNOFILE=64000 | |
LimitNPROC=64000 |
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
# Tesseract with training tools | |
# | |
# You must install one of tesseract-data-* packages or whole tesseract-data | |
# | |
# Based on ABS tree: | |
# Maintainer: Sergej Pupykin <[email protected]> | |
# Contributor: Andreas Hauser <[email protected]> | |
_langs=(afr ara aze bel ben bul cat ces chi_sim chi_tra chr dan deu ell | |
eng enm epo epo_alt equ est eus fin fra frk frm glg grc heb hin hrv hun |
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
[Unit] | |
Description=Errbit Unicorn Server | |
Requires=mongodb.service | |
After=mongodb.service network.target | |
[Service] | |
# Change here: user, group and directory to errbit root | |
User=errbit | |
Group=errbit | |
WorkingDirectory=/var/www/apps/errbit |
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
class String | |
MORSE_CODE = { | |
a: '.-', b: '-...', c: '-.-.', d: '-..', e: '.', f: '..-.', | |
g: '--.', h: '....', i: '..', j: '.---', k: '-.-', l: '.-..', | |
m: '--', n: '-.', o: '---', p: '.--.', q: '--.-', r: '.-.', s: '...', | |
t: '-', u: '..-', v: '...-', w: '.--', x: '-..-', y: '-.--', z: '--..' | |
} | |
def to_morse_code | |
self.downcase.each_char.map { |c| MORSE_CODE[c.to_sym] }.join |
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
# Clickable Files by nofxx | |
"""files.py - Clickable Files URIs open in Emacs""" | |
import re | |
import terminatorlib.plugin as plugin | |
import subprocess | |
# Every plugin you want Terminator to load *must* be listed in 'AVAILABLE' | |
AVAILABLE = ['FileURLHandler'] | |
class FileURLHandler(plugin.URLHandler): |
NewerOlder