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
# (c) 2011 Bart Coppens | |
# Licensed under GPLv3+ | |
import gtk | |
import cairo | |
import hildon | |
import hildondesktop | |
import pycurl | |
import StringIO | |
import math |
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
#!/usr/bin/python2 | |
# | |
# Configuration | |
# | |
# System modules | |
import sys | |
import argparse # python-argparse | |
import logging |
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
//////////////////////////////////////////////////////////////////////// | |
// Configuration | |
// | |
// Headers | |
#include <OneWire.h> | |
#include <EEPROM.h> | |
// OneWire interface (change this to the port your sensor is on) | |
OneWire ow(2); |
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
#!/usr/bin/perl | |
# | |
# Configuration | |
# | |
# Write nicely | |
use warnings; | |
use strict; |
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
#!/usr/bin/perl | |
# | |
# Initialization | |
# | |
use strict; | |
use warnings; | |
use Switch; |
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: monson <[email protected]> | |
# Contributor: giniu <[email protected]> | |
# Contributor: Tim Besard <[email protected]> | |
pkgname=intel-mkl | |
pkgver=10.3.10 | |
pkgrel=1 | |
pkgdesc="Intel Math Kernel Library, for non-commercial use." | |
arch=('i686' 'x86_64') | |
url="http://software.intel.com/en-us/intel-mkl/" |
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
pkgname=('turbovnc-client' 'turbovnc-server') | |
srcname='turbovnc' | |
pkgver=1.2 | |
pkgrel=1 | |
arch=('i686' 'x86_64') | |
url="http://virtualgl.org" | |
license=('GPL') | |
builddepends=('libjpeg-turbo') | |
md5sums=('b8900785792f8b0d025c1f8b52fff14b') |
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
void DRESC_test09(short int *data1, int *time_offset) { | |
int j; | |
int A0, A1, A2, B0; | |
for (j = 0; j < (57); j++) { | |
A2 = data1[j]; | |
A0 = A1; | |
A1 = A2; |
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
#ping = 172.31.14.1 | |
#ping = 172.26.1.255 | |
#interface = eth0 | |
#file = /var/log/messages | |
#change = 1407 | |
# Uncomment to enable test. Setting one of these values to '0' disables it. | |
# These values will hopefully never reboot your machine during normal use | |
# (if your machine is really hung, the loadavg will go much higher than 25) | |
#max-load-1 = 24 |
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
using Images | |
data = rand(10, 10) | |
image = Image(data) | |
immutable Point{T} | |
i::T | |
j::T | |
end |
OlderNewer