This file contains 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
package main | |
import ( | |
"fmt" | |
"io" | |
"log" | |
"time" | |
opentracing "github.com/opentracing/opentracing-go" | |
jaegercfg "github.com/uber/jaeger-client-go/config" |
This file contains 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
C1250: Unable to load plug-in. | |
C1251: Unable to load models. | |
C1252: 'Circular or missing dependency between plugins: requires GUID' | |
C1253: Unable to load model file. | |
C1254: 'Plugin version mismatch : version doesn''t match the version of the PREfast driver' | |
C1255: PCH data for plugin has incorrect length. | |
C1256: PCH must be both written and read. | |
C1257: Plugin Initialization Failure. | |
C26100: Race condition. Variable <var> should be protected by lock <lock>. | |
C26101: Failing to use interlocked operation properly for variable <var>. |
This file contains 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
# http://indilib.org/forum/general/210-howto-building-latest-libindi-ekos.html | |
brew install qt5 --with-dbus | |
brew tap homebrew/science | |
brew install cfitsio \ | |
cmake \ | |
eigen \ | |
gettext \ | |
astrometry-net |
This file contains 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
FROM ubuntu:latest | |
MAINTAINER Sean Houghton <[email protected]> | |
RUN apt-get update && apt-get install -y software-properties-common | |
RUN apt-add-repository ppa:mutlaqja/ppa && apt-get update && apt-get install -y libindi1 indi-full | |
EXPOSE 7624 | |
CMD indiserver -v $INDY_DRIVERS |
This file contains 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
# | |
# ~/.kde/kde.env | |
# activate with 'source ~/.kde/kde.env' | |
# | |
export KF5=~/.kde | |
export KDEDIR=~/.kde | |
export KDE_SESSION_VERSION=5 | |
export XDG_DATA_DIRS=$KF5/share |
This file contains 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
env = Environment() | |
single_builder = Builder(action='echo Hello from $SOURCE > $TARGET', batch_key=True) | |
def build_batch(target, source, env): | |
print "There are %d targets" % len(target) | |
for s in zip(source, target): | |
env.Execute(env.subst('echo Hello from $SOURCE > $TARGET', source=s[0], target=s[1])) | |
batched_builder = Builder(action=Action(build_batch, batch_key=True, targets='$CHANGED_TARGETS')) | |
env.Append(BUILDERS={'Batched': batched_builder}) |