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
bind-key D run-shell 'tmux send-keys $(date +%F)' |
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::{error::Error, sync::Arc, time::Duration}; | |
use tokio::{sync::Semaphore, task::JoinSet}; | |
use tracing_subscriber::fmt::format::FmtSpan; | |
type Result<T, E = Box<dyn Error>> = std::result::Result<T, E>; | |
const CONCURRENCY: usize = 2; | |
#[tokio::main(flavor = "current_thread")] |
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
{ stdenv | |
, lib | |
, fetchurl | |
, installShellFiles | |
}: | |
stdenv.mkDerivation rec { | |
pname = "replicated"; | |
version = "0.78.0"; |
OlderNewer