I hereby claim:
- I am kisom on github.
- I am kisom (https://keybase.io/kisom) on keybase.
- I have a public key ASB4v1uzRtIwO-v83dUbp0YXedoSrzLRB7yGb-oYZy5ZGAo
To claim this, I am signing this object:
bool | |
Tag(SQLite::Database &db, kortex::store::Tag tag) | |
{ | |
if (!Metadata(db, tag.Meta)) { | |
return false; | |
} | |
SQLite::Statement q(db, "INSERT INTO tags (id, name, metadata) VALUES (?, ?, ?)"); | |
q.bind(1, tag.ID()); | |
q.bind(2, tag.Name()); |
I hereby claim:
To claim this, I am signing this object:
add 0 515969 | |
remove 0 | |
add 0 736404 | |
add 0 180738 | |
get 0 | |
remove 0 | |
add 0 640651 | |
add 1 912519 | |
remove 2 | |
get 0 |
add 0 202064 | |
add 0 309727 | |
get 0 | |
get 1 | |
set 0 from 309727 to 457321 | |
set 1 from 202064 to 229627 | |
set 0 from 457321 to 350553 | |
get 1 | |
add 1 430738 | |
set 0 from 350553 to 958454 |
add 0 202064 | |
add 0 309727 | |
get 0 | |
get 1 | |
set 0 from 309727 to 457321 | |
set 1 from 202064 to 229627 | |
set 0 from 457321 to 350553 | |
get 1 | |
add 1 430738 | |
set 0 from 350553 to 958454 |
.PHONY: envdir | |
serve: envdir | |
$(eval ENVDIR := $(shell ./preflight.sh)) | |
$(ENVDIR) /usr/local/myservice/env python -m SimpleHTTPServer 8000 |
#!/bin/sh | |
# _ _ _ _ _ _ | |
# __ _ _ _| |_ ___ | |__ _ _(_) | __| | ___| |__ | |
# / _` | | | | __/ _ \| '_ \| | | | | |/ _` | / __| '_ \ | |
# | (_| | |_| | || (_) | |_) | |_| | | | (_| |_\__ \ | | | | |
# \__,_|\__,_|\__\___/|_.__/ \__,_|_|_|\__,_(_)___/_| |_| | |
# | |
# | |
# https://git.io/autobuild | |
# |
~/code/perl | |
(0) <tessier:kyle> $ perl scan-elvi.pl | |
w3link doesn't match. | |
l1sp doesn't match. | |
w3rdf doesn't match. | |
w3html doesn't match. | |
worldwidescience doesn't match. | |
searx doesn't match. | |
w3css doesn't match. | |
f5 doesn't match. |
Written as a demo of how a shell would implement this, and why it needs | |
to be a shell builtin. | |
This won't actually work as a standalone program; chdir(3) only changes | |
the directory of the current process. As soon as the program exits, it | |
returns control to the parent process (the shell). If this is executed | |
as a shell builtin, the shell process's working directory is changed. |
This is my workflow for automatically building and testing Go code. It uses
steeloverseer to watch
for changes to the tree and run the standard Go tools (vet
, build
, test
)
on the package as well as golint on any
changed files.
Install steeloverseer with
cabal install steeloverseer && cp ~/.cabal/bin/sos ~/bin