I hereby claim:
- I am cserb on github.
- I am cserb (https://keybase.io/cserb) on keybase.
- I have a public key ASBnSNeutFF_rhmogd2VHaMOuRzCDkprwfBLkeBc6cWgcwo
To claim this, I am signing this object:
namespace :qc do | |
desc "start queue classic" | |
task :start do | |
run "nohup sh #{current_path}/qc_worker start > /dev/null 2>&1 &" | |
end | |
desc "stop queue classic" | |
task :stop do | |
run "sh #{current_path}/qc_worker stop" | |
end |
I hereby claim:
To claim this, I am signing this object:
pg_dump --no-owner --no-acl blah > blah.psql |
A collection of color palettes supporting various terminals & editors
module DAG | |
record Tip, | |
vertex : DAG::Vertex, | |
distance : Int32, | |
branch_root : (DAG::Vertex | Nil) | |
class Vertex | |
alias Name = String | |
getter name : Name |
enum Either | |
Ok | |
Err | |
end | |
struct Result(T) | |
getter value : T | |
getter type : Either | |
def initialize(@value, @type); end |
require('lspconfig.configs').solidity = { | |
default_config = { | |
cmd = {'nomicfoundation-solidity-language-server', '--stdio'}, | |
filetypes = { 'solidity' }, | |
name = 'solidity', | |
root_dir = require('lspconfig.util').find_git_ancestor, | |
single_file_support = true, | |
} | |
} | |
require('lspconfig').solidity.setup({}) |