This file contains hidden or 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
// My qt5-qtsystems QStorageInfoPrivate::uriForDrive for Windows OSes realization to get uri-for-drive value similar with unix OSes | |
// yetanotherandreyev at gmail | |
QString QStorageInfoPrivate::uriForDrive(const QString &drive) | |
{ | |
WCHAR VolumeNameBuffer[100], FileSystemNameBuffer[100]; // not sure about buffer size yet | |
long unsigned int sn; | |
if (GetVolumeInformation((WCHAR *)drive.utf16(), VolumeNameBuffer, 100, &sn, NULL, NULL, FileSystemNameBuffer, 100)) { | |
QString uri = QString::number(sn,16).toUpper(); | |
int x = uri.size(); |
This file contains hidden or 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/sh | |
wget --no-check-certificate https://github.com/echonest/echoprint-codegen/archive/$1.tar.gz | |
mv $1.tar.gz echoprint-codegen-$1.tar.gz |
This file contains hidden or 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
# Contributor : Devaev Maxim <[email protected]> | |
# Contributor : Alexey Andreyev <[email protected]> | |
pkgname=arduino-cli | |
pkgver=0.2 | |
pkgrel=2 | |
pkgdesc="CLI development tools for Arduino without Java and Arduino IDE" | |
arch=('any') | |
url="http://code.google.com/p/arduino-cli" | |
license="GPL" |
This file contains hidden or 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
# Contributor : Alexey Andreyev <[email protected]> | |
pkgname=esp-open-sdk-git | |
pkgver=0.1 | |
pkgrel=1 | |
pkgdesc="Free and open (as much as possible) integrated SDK for ESP8266 chips" | |
arch=('any') | |
url="https://github.com/pfalcon/esp-open-sdk" | |
license="MIT" | |
depends=('python-serial') |
This file contains hidden or 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: Niels Martignène <[email protected]> | |
# Contributor: PyroPeter <googlemail.com@abi1789> | |
# Contributor: darkapex <[email protected]> | |
# Contributor: tty0 <vt.tty0[d0t]gmail.com> | |
# Contributor: aa13q <[email protected]> | |
pkgname=arduino-lite | |
epoch=1 | |
pkgver=1.6.5 | |
pkgrel=1 |
This file contains hidden or 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 | |
# pip install python-amazon-simple-product-api | |
# or | |
# pip2 install python-amazon-simple-product-api | |
# for https://www.freelancer.com/projects/php/Film-Name-Year-Amazon-Link | |
from amazon.api import AmazonAPI | |
AMAZON_ACCESS_KEY = | |
AMAZON_SECRET_KEY = | |
AMAZON_ASSOC_TAG = |
This file contains hidden or 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 : Ionut Biru <[email protected]> | |
# Contributor: Hugo Doria <[email protected]> | |
# Contributor: Andrea Scarpino <[email protected]> | |
# Contributor: Alexey Andreyev: aa13q.ru | |
pkgname=libtorrent-rasterbar | |
pkgver=1.0.6 | |
pkgpath=libtorrent-1_0_6 | |
pkgrel=1 | |
pkgdesc="A C++ library that aims to be a good alternative to all the other bittorrent implementations around" |
This file contains hidden or 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
lat | lon | time | value | |
---|---|---|---|---|
59.954133 | 30.30375 | 1447768800 | +2 | |
59.954133 | 30.30375 | 1447772400 | +2 | |
59.954133 | 30.30375 | 1447776000 | +2 | |
59.954133 | 30.30375 | 1447779600 | +2.33 | |
59.954133 | 30.30375 | 1447783200 | +3 | |
59.954133 | 30.30375 | 1447786800 | +3 | |
59.954133 | 30.30375 | 1447790400 | +3 | |
59.954133 | 30.30375 | 1447794000 | +2.5 | |
59.954133 | 30.30375 | 1447797600 | +2 |
This file contains hidden or 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
from socket import * | |
UDP_IP="192.168.0.255" | |
UDP_PORT=8888 | |
MESSAGE="UPD IS AWESOME" | |
print("UDP target IP:", UDP_IP) | |
print("UDP target port:", UDP_PORT) | |
print("message:", MESSAGE) |
This file contains hidden or 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
import QtQuick 2.2 | |
import ru.semiot.gateway 0.1 | |
SemIoTDeviceConfig { | |
// NOTE: is that ok that system driver is only one per device driver? | |
driverName: "udp"; | |
onDriverConnected: { | |
addDriverDataSource({"port":55555}) | |
} | |
onNewDataPacketReceived: { |
OlderNewer