sudo mdutil -a -i off
sudo mdutil -a -i on
sudo mdutil -E
I hereby claim:
- I am hiddebraun on github.
- I am hitje (https://keybase.io/hitje) on keybase.
- I have a public key ASBCvfd-K0DkALGzy1cCAHij4dD4rLyB2jMnaljeMkowxAo
To claim this, I am signing this object:
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/bash | |
CWD=`pwd` | |
ES_BIN="$CWD/es/bin/elasticsearch" | |
KIBANA_BIN="$CWD/kibana/bin/kibana" | |
echo "Starting Elastic Search" | |
$ES_BIN -d | |
echo "Starting Kibana" | |
$KIBANA_BIN -Q & |
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
<?php | |
$outfile = ""; | |
$p = new PDFLib(); | |
if ($p->begin_document($outfile, "") == 0) | |
throw new Exception("Error: " . $p->get_errmsg()); | |
$indoc = $p->open_pdi_document('label.pdf',''); | |
if ($indoc == 0) |