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
#!/bin/env zsh | |
pactl --format=json list cards |jq -c '.[] | select (.name | contains('\"$(pactl --format=json info | jq . |jq ".default_sink_name" | cut -d"." -f2)\"'))?' | jq '.properties."device.description"' | xargs -n 1 echo "Audio Device: " |
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
#lang racket | |
(require math/base) | |
(require racket/format) | |
(require pmap) | |
(require racket/random) | |
(require "gbwtgraph") | |
(require describe) | |
(require racket/system) | |
(require date) |
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
FROM debian:bookworm-slim AS binary | |
LABEL authors="Erik Garrison, Christos Chatzifountas" | |
LABEL description="Preliminary docker image containing all requirements for bgwt" | |
LABEL base_image="debian:bullseye-slim" | |
LABEL about.home="https://github.com/pangenome/privacy-pangenomics" | |
LABEL about.license="SPDX:MIT" | |
SHELL ["/bin/bash", "-c"] |
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
FROM debian:bookworm-slim AS binary | |
LABEL authors="Erik Garrison, Christos Chatzifountas" | |
LABEL description="Preliminary docker image containing all requirements for bgwt" | |
LABEL base_image="debian:bullseye-slim" | |
LABEL about.home="https://github.com/pangenome/privacy-pangenomics" | |
LABEL about.license="SPDX:MIT" | |
SHELL ["/bin/bash", "-c"] |
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
%module gbwtgraph | |
%feature("flatnested", "1"); | |
%feature("notabstract") GBWTGraph; | |
%include <std_pair.i> | |
%include <std_vector.i> | |
%include <std_string.i> | |
%include <stdint.i> | |
%inline { |
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
#lang racket | |
#lang racket/base | |
(require xml) | |
(require sxml/sxpath) | |
(require simple-http) | |
(require racket/gui/base) | |
(define (weave xs ys) | |
(match (list xs ys) |
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
Traceback (most recent call last): | |
File "manage.py", line 180, in <module> | |
cli() | |
File "/home/liveservice/.local/lib/python3.6/site-packages/click/core.py", line 764, in __call__ | |
return self.main(*args, **kwargs) | |
File "/home/liveservice/.local/lib/python3.6/site-packages/click/core.py", line 717, in main | |
rv = self.invoke(ctx) | |
File "/home/liveservice/.local/lib/python3.6/site-packages/click/core.py", line 1137, in invoke | |
return _process_result(sub_ctx.command.invoke(sub_ctx)) | |
File "/home/liveservice/.local/lib/python3.6/site-packages/click/core.py", line 956, in invoke |
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
let g:python3_host_prog = '/usr/bin/python3.6' | |
call plug#begin('~/.vim/plugged') | |
Plug 'JamshedVesuna/vim-markdown-preview' | |
Plug 'vim-scripts/SpellChecker' | |
Plug 'ntpeters/vim-better-whitespace' | |
Plug 'scrooloose/nerdtree' | |
Plug 'tpope/vim-fugitive' | |
Plug 'bling/vim-airline' | |
Plug 'vim-airline/vim-airline-themes' |
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
=begin overview | |
This is the grammar for Clojure in Perl 6 rules. | |
=end overview | |
grammar PClojure::Grammar is HLL::Grammar; | |
token TOP {^ <form>* $} |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <dlfcn.h> | |
#include "lua.h" | |
#include "lualib.h" | |
#include "lauxlib.h" | |
//We declare a function pointer for the function to import (int myfunction(int) ) |
NewerOlder