[ZenFone] Add new apps to Twin Apps
- adbコマンドを使用できるようにする
version: '2' | |
services: | |
monacoind: | |
image: fkfk/monacoin-nowallet:0.15.1 | |
environment: | |
RPCUSER: user | |
RPCPASSWORD: <your_password> | |
RPCALLOWIP: "172.0.0.0/8" | |
volumes: | |
- monacoind_data:/data |
version: '2' | |
services: | |
kotod: | |
image: fkfk/koto | |
environment: | |
RPCUSER: user | |
RPCPASSWORD: <your_password> | |
RPCALLOWIP: "172.0.0.0/8" | |
volumes: | |
- kotod_data:/var/lib/koto/data |
pkgname=cpuminer-opt | |
pkgver=3.8.3.3 | |
pkgrel=1 | |
pkgdesc="Optimized multi algo CPU miner" | |
arch=('i686' 'x86_64') | |
url="https://github.com/JayDDee/cpuminer-opt" | |
depends=('curl' 'jansson') | |
license=('GPL') | |
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/JayDDee/cpuminer-opt/archive/v${pkgver}.tar.gz") | |
md5sums=('d4b5852e5698ed73f827c2c3c83c27f6') |
[ZenFone] Add new apps to Twin Apps
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use Compress::Zlib; | |
sub get_unpackdata{ | |
my $infile = $_[0]; | |
my $code; | |
open IN, " < $infile "; | |
binmode(IN); |
#!/bin/sh | |
curl -s -L "http://www.codesourcery.com/sgpp/lite/arm/portal/package5353/public/arm-none-eabi/arm-2009q3-68-arm-none-eabi-i686-pc-linux-gnu.tar.bz2" | bunzip2 -d --stdout | sudo tar -C /opt -xf - |
#coding: utf-8 | |
Earthquake.init do | |
config[:notify] = [/ruby/i, /#earthquake.gem/i] | |
output do |item| | |
next unless item["stream"] | |
if config[:notify].any?{|pattern| pattern =~ item["text"]} | |
notify item["text"], :title => item["user"]["screen_name"] | |
end |