I hereby claim:
- I am niclashoyer on github.
- I am niclashoyer (https://keybase.io/niclashoyer) on keybase.
- I have a public key whose fingerprint is 7693 6404 9CAC 6CED BC02 C3E4 EDCE 346C 637C 3F49
To claim this, I am signing this object:
| " Vim color file colour light | |
| " generated by VimTax http://www.vimtax.com | |
| set background=light | |
| hi clear | |
| if exists("syntax_on") | |
| syntax reset | |
| endif | |
| set t_Co=256 | |
| let colors_name = "colour-light" |
| # get volumes for a container | |
| docker inspect $container | jq '.[].Volumes|to_entries[].key' |
| #!/bin/bash | |
| set -e | |
| set -u | |
| CONTAINER=$(docker ps -a --no-trunc | awk 'NR>1' | awk 'BEGIN {FS=" +"}; $5 ~ "^Up" {print $1}') | |
| for C in $CONTAINER; do | |
| echo "Backup for $C" | |
| DATA=$(docker inspect $C) |
| #!/bin/bash | |
| curl -s http://www.ndr.de/sport/live/index.html | sed -n -e 's/.*\(http:\/\/.*akamaihd.*\.m3u8\).*/\1/p' |
I hereby claim:
To claim this, I am signing this object:
| from cmsis_svd.parser import SVDParser | |
| def getaccess(field): | |
| if field.access == 'read-only': | |
| return ': ro' | |
| if field.access == 'write-only': | |
| return ': wo' | |
| return '' | |
| def getoffset(field): |
| #!/bin/bash | |
| dir=/path/to/dumps | |
| ending=sql.bz2 | |
| cd $dir | |
| for file in *.$ending; do | |
| time=$(date -d @`stat $file -c %Y` +%T) | |
| size=$(du -sh $file | awk '{print $1}') | |
| name=${file%%.$ending} |
| PREFIX dc:<http://purl.org/dc/elements/1.1/> | |
| PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#> | |
| PREFIX time:<http://www.w3.org/2006/time#> | |
| PREFIX geo:<http://www.w3.org/2003/01/geo/wgs84_pos#> | |
| PREFIX foaf:<http://xmlns.com/foaf/0.1/> | |
| PREFIX event:<http://purl.org/NET/c4dm/event.owl#> | |
| PREFIX owl:<http://www.w3.org/2002/07/owl#> | |
| PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
| PREFIX vs:<http://www.w3.org/2003/06/sw-vocab-status/ns#> | |
| select distinct ?class ?property ?label |
| PREFIX dc: <http://purl.org/dc/elements/1.1/> | |
| PREFIX s4ac: <http://ns.inria.fr/s4ac/v2#> | |
| SELECT DISTINCT | |
| ?m ?p ?title ?protected ?privilege ?acs ?type ?query | |
| WHERE {{ | |
| BIND('1' AS ?m) | |
| ?p a s4ac:AccessPolicy ; | |
| s4ac:appliesTo ?protected . | |
| OPTIONAL { |