Please see https://github.com/Mikayex/transmission
See my blog post.
[Unit] | |
Description=Web front-end for Borg | |
After=network.target | |
[Service] | |
Type=simple | |
User=root | |
Group=root | |
ExecStart=/usr/bin/borgweb |
# | |
# Copyright (C) 2009-2014 OpenWrt.org | |
# | |
# This is free software, licensed under the GNU General Public License v2. | |
# See /LICENSE for more information. | |
# | |
include $(TOPDIR)/rules.mk | |
PKG_NAME:=transmission |
#include <cstdlib> | |
#include <iostream> | |
#include <opencv2/opencv.hpp> | |
using namespace std; | |
using namespace cv; | |
int main(int argc, char** argv) { | |
Size2i imageSize(200, 200); | |
Scalar red(0, 0, 255), blue(255, 0, 0); |
# Contributor: Thomas Laroche <[email protected]> | |
# Maintainer: Thomas Fanninger <[email protected]> | |
pkgname=gogs-git-dev | |
_pkgname=gogs | |
_branch=dev | |
pkgver=1915.81a44e4 | |
pkgrel=1 | |
epoch=1 | |
pkgdesc="Gogs(Go Git Service) is a Self Hosted Git Service in the Go Programming Language. This is the current git version from branch ${_branch}." |
# Contributor: Thomas Laroche <[email protected]> | |
# Maintainer: Andreas B. Wagner <[email protected]> | |
pkgname=go-sqlite3 | |
pkgver=240.4c5aec8 | |
pkgrel=1 | |
pkgdesc="sqlite3 driver for go that using database/sql" | |
arch=('i686' 'x86_64') | |
url="https://github.com/mattn/go-sqlite3" | |
license=('MIT') | |
depends=('sqlite3' 'go') |
function listOfImages() { | |
images=newArray(nImages+1); | |
for (i=1; i<=nImages; i++) { | |
selectImage(i); | |
images[i-1]=getTitle; | |
} | |
images[nImages]="Aucune"; | |
return images; | |
} |
#Encode image to sound | |
#Requirement : Python 2.5, Numpy, audiolab, PIL | |
import numpy as np | |
from scikits.audiolab import Format, Sndfile | |
import math | |
from PIL import Image | |
import sys | |
if len(sys.argv)!=2: |
See my blog post.