Contains coverage information for project dstream
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 streamlit as st | |
import pandas as pd | |
import numpy as np | |
import plotly.express as px | |
st.set_page_config(layout="wide") | |
DATE_COLUMN = 'date/time' | |
DATA_URL = ('https://s3-us-west-2.amazonaws.com/' | |
'streamlit-demo-data/uber-raw-data-sep14.csv.gz') |
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
use std::{borrow::Cow, collections::HashMap, hash::Hash}; | |
pub struct CowMap<'a, T, K, V> | |
where | |
K: ToOwned<Owned = T> + ?Sized, | |
{ | |
map: HashMap<Cow<'a, K>, V>, | |
} | |
impl<'a, T, K, V> CowMap<'a, T, K, V> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#[macro_use] | |
extern crate log; | |
use futures::prelude::*; | |
use futures::stream::StreamExt; | |
use headers::{self, HeaderMapExt}; | |
use hyper::header::{self, AsHeaderName, HeaderMap, HeaderValue}; | |
use hyper::server::Server; | |
use hyper::service::{make_service_fn, service_fn}; | |
use hyper::{self, Body, Method, Request, Response, StatusCode}; | |
use std::convert::Infallible; |
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
use std::io::{self, Write, Seek}; | |
pub struct Writer<W> { | |
inner: W | |
} | |
impl <W:Write> Writer<WrapperUnseekable<W>> { | |
pub fn new_unseekable(inner: W) -> Self { | |
Writer{ |
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
#[macro_use] | |
extern crate log; | |
use hyper::rt; | |
use hyper::server::Server; | |
use hyper::service::service_fn_ok; | |
use hyper::{Body, Request, Response}; | |
use tokio::prelude::*; | |
mod ws; |
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 python3 | |
import argparse | |
import os | |
import subprocess | |
import logging | |
log = logging.getLogger() | |
def main(): |
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 | |
# Author : <Ivan Zderadicka> [email protected] | |
# License: MIT | |
VERSION=0.1.1 | |
BITRATE=48 | |
CUTOFF=20000 | |
APPLICATION=audio | |
FORMAT=opus | |
QUALITY=10 |
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 | |
# Author : <Ivan Zderadicka> [email protected] | |
# License: MIT | |
VERSION="0.2.3" | |
BITRATE=48 | |
CUTOFF=12000 | |
SEGMENT_TIME=1800 | |
COMMON_PARAMS="-nostdin -v error" |
NewerOlder