I hereby claim:
- I am voigt on github.
- I am voigt (https://keybase.io/voigt) on keybase.
- I have a public key ASA6Iu19J3rC3X4XRew6B6eCCX7ztyK_1zq3cvSv1z8Mmwo
To claim this, I am signing this object:
$ wordcounter ./zig-out/bin/wordcounter | |
Start processing | |
> No man is an island, | |
No ('No' added to HashMap) | |
man ('man' added to HashMap) | |
is ('is' added to HashMap) | |
an ('an' added to HashMap) | |
island, ('island,' added to HashMap) | |
> Entire of itself, | |
Entire ('Entire' added to HashMap) |
./zig-out/bin/wordcounter text.txt | |
Found 62 Keys | |
A - 1 | |
sea, - 1 | |
whom - 1 | |
clod - 1 | |
main. - 1 | |
part - 1 | |
of - 5 | |
Europe - 1 |
{ | |
"head": { | |
"shop": "storefront-catalog-en", | |
"locale": "en-US", | |
"internal_disable_image_processing": true | |
}, | |
"items": [ | |
{ | |
"product_id": "1000101", | |
"variant_group_id": "variant_group_10001", |
{ | |
"head": { | |
"shop": "storefront-catalog-en", | |
"locale": "en-US", | |
"internal_disable_image_processing": true | |
}, | |
"items": [ | |
{ | |
"product_id": "1000101", | |
"variant_group_id": "variant_group_10001", |
I hereby claim:
To claim this, I am signing this object:
# Returns all Churches from Lower Saxony, Germany | |
# including label, article URL, long, lat | |
# JSON: https://query.wikidata.org/bigdata/namespace/wdq/sparql?query=SELECT%20DISTINCT%20%3Fitem%20%3FitemLabel%20%3Flat%20%3Flong%0AWHERE%20%7B%0A%20%20%20%20%3Fitem%20wdt%3AP31%20wd%3AQ16970%20.%0A%20%20%20%20%3Fitem%20wdt%3AP17%20wd%3AQ183%20.%0A%20%20%20%20%3Fitem%20wdt%3AP131*%20wd%3AQ1197%20.%0A%20%20%0A%20%20%20%20SERVICE%20wikibase%3Alabel%20%7B%20bd%3AserviceParam%20wikibase%3Alanguage%20%22de%22%20%7D%0A%7D&format=json | |
SELECT DISTINCT ?item ?itemLabel ?article ?lat ?long | |
WHERE { | |
?item wdt:P31 wd:Q16970 . | |
?item wdt:P17 wd:Q183 . | |
?item wdt:P131* wd:Q1197 . | |
OPTIONAL { |
SELECT DISTINCT ?item ?itemLabel ?article ?lat ?long | |
WHERE { | |
?item wdt:P31 wd:Q16970 . | |
?item wdt:P17 wd:Q183 . | |
?item wdt:P131* wd:Q1197 . | |
OPTIONAL { | |
?item p:P625 ?statement . # coordinate-location statement | |
?statement psv:P625 ?coordinate_node . | |
?coordinate_node wikibase:geoLatitude ?lat . |
pygmentize -f rtf FILE | pbcopy
(Pasting RTF directly into PowerPoint doesn't work correctly, at least with PowerPoint 2008 — it extends colour spans longer than it should, and sometimes removes line breaks. Going via TextEdit seems to solve the problem.)
env: | |
global: | |
- secure: "..." # replace this with the travis encryption output! | |
- GIT_DEPLOY_DIR=public # default output dir of Hugo (change it, when you use configured it!) | |
- GIT_DEPLOY_BRANCH=master # target branch, replace by "gh-pages" for Github Project Pages | |
- GIT_DEPLOY_USERNAME="Travis CI" # dummy name | |
- [email protected] # replace by your email | |
branches: | |
only: |
SELECT TABLE_NAME AS "Table", | |
TABLE_ROWS AS "Rows", | |
CONCAT((FORMAT((DATA_LENGTH) / POWER(1024,2),2)), ' Mb') AS "Data Size", | |
CONCAT((FORMAT((INDEX_LENGTH) / POWER(1024,2),2)), ' Mb') AS "Index Size", | |
CONCAT((FORMAT((DATA_LENGTH+ INDEX_LENGTH) / POWER(1024,2),2)), ' Mb') AS "Total Size", | |
TRIM(TRAILING ', ' FROM CONCAT_WS(', ', ENGINE, TABLE_COLLATION, CREATE_OPTIONS)) AS "Type" | |
FROM information_schema.TABLES | |
WHERE information_schema.TABLES.table_schema = "schema_name" |