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
import asyncio | |
concurrency_sem = asyncio.Semaphore(3) | |
@asyncio.coroutine | |
def run(process): | |
yield from concurrency_sem.acquire() | |
print("Running {}...".format(process)) | |
proc = yield from asyncio.create_subprocess_shell(process) | |
yield from proc.communicate() |
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
# $Id: PKGBUILD 109507 2014-04-15 09:32:10Z mtorromeo $ | |
# Maintainer: Massimiliano Torromeo <[email protected]> | |
pkgname=libuv | |
pkgver=0.11.25 | |
pkgrel=1 | |
pkgdesc="A new platform layer for Node.JS" | |
arch=('i686' 'x86_64') | |
url="https://github.com/joyent/libuv" | |
license=('custom') |
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
<?php | |
//open connection | |
$ch = curl_init("https://www.artera.it/invio_sms_post.php"); | |
//POST data | |
curl_setopt($ch, CURLOPT_POSTFIELDS, array( | |
"mittente" => "Foo Srl", | |
"username" => "NOMEUTENTE", | |
"password" => "PASSWORD", | |
"operation" => "invioSMS", |
NewerOlder