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/env run-cargo-script | |
//! ```cargo | |
//! [package] | |
//! name = "dnsmanageweb" | |
//! version = "0.1.0" | |
//! authors = ["Vitaly _Vi Shukela <[email protected]>"] | |
//! edition = "2018" | |
//! | |
//! [dependencies] | |
//! rouille = {version="3.0.0", default-features=false} |
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
// Trying to imiate `rust-websocket`-like interface with hyper 0.12 | |
#![allow(unused)] | |
#![deny(unused_must_use)] | |
use tokio::prelude::*; | |
use tokio::net::tcp::{TcpListener,TcpStream}; | |
use std::net::SocketAddr; | |
use hyper::server::conn; | |
use hyper::service::Service; |
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
#!/bin/bash | |
IN=$1 | |
OUT=$2 | |
true ${SD_PARAMS:="-55dB:d=0.3"}; | |
true ${MIN_FRAGMENT_DURATION:="20"}; | |
export MIN_FRAGMENT_DURATION | |
if [ -z "$OUT" ]; then |
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/env run-cargo-script | |
//! ```cargo | |
//! [dependencies] | |
//! hyper = { version = "0.12.20", default-features = false } | |
//! tokio-stdin-stdout = "0.1.5" | |
//! readwrite = {version="0.1.1", features=["tokio"]} | |
//! futures = "0.1.25" | |
//! tokio = "0.1.14" | |
//! ``` |
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/env run-cargo-script | |
//! ```cargo | |
//! [dependencies] | |
//! tokio = "=0.1.7" | |
//! tokio-codec = "*" | |
//! tokio-io = "=0.1.7" | |
//! futures-cpupool = "*" | |
//! mio = "*" | |
//! | |
//! [replace] |
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/env run-cargo-script | |
// cargo-deps: tokio, tokio-codec, tokio-io, futures-cpupool | |
extern crate tokio; | |
extern crate tokio_codec; | |
extern crate tokio_io; | |
extern crate futures_cpupool; | |
use tokio_codec::{Decoder, LinesCodec}; |
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
* Options given/available: | |
-platform 0 [=default] | |
-device 0 [=default] | |
--- OpenCL device naming: | |
* Device type GPU | |
* Device name Intel(R) HD Graphics IvyBridge M GT2 | |
* Platform vendor Intel |
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
clblast_test_diagnostics | |
* Options given/available: | |
-platform 0 [=default] | |
-device 0 [=default] | |
--- OpenCL device naming: | |
* Device type GPU | |
* Device name Intel(R) HD Graphics IvyBridge M GT2 |
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
extern crate futures; | |
extern crate tokio_core; | |
extern crate tokio_io; | |
extern crate tokio_file_unix; | |
use futures::{Future}; | |
use tokio_io::io::copy; | |
use tokio_core::reactor::Core; | |
use std::io::{Result}; |
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
extern crate mio; | |
use mio::unix::EventedFd; | |
use std::fs::File; | |
use mio::{Token, PollOpt, Ready, Poll, Events}; | |
//use mio_uds::UnixStream; | |
use std::os::unix::io::{FromRawFd}; | |
use std::io::{Read, Write}; |