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
| use std::sync::mpsc::{sync_channel, SyncSender, Receiver}; | |
| use std::thread::{ThreadId, current, sleep}; | |
| use std::time::{Duration, Instant}; | |
| use std::collections::{HashSet, HashMap}; | |
| use jack::{Client, ClientStatus, Control, ProcessScope, Frames}; | |
| #[derive(Debug, PartialEq, Eq, Hash, Clone)] | |
| enum NotifType { | |
| AudioProcessing, |
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
| package main | |
| import ( | |
| "flag" | |
| "io" | |
| "log" | |
| "net" | |
| "net/http" | |
| "strings" | |
| "net/url" |
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
| version: '2' | |
| services: | |
| db: | |
| image: mysql:5.7 | |
| volumes: | |
| - db_data:/var/lib/mysql | |
| restart: always | |
| environment: | |
| MYSQL_ROOT_PASSWORD: wordpress |
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
| // ==UserScript== | |
| // @name DGS-1224T Fix | |
| // @namespace http://wensley.eu/ | |
| // @version 0.1 | |
| // @description Fixes DGS-1224T UI | |
| // @author Danny Wensley | |
| // @match */* | |
| // @require http://code.jquery.com/jquery-latest.js | |
| // ==/UserScript== |