I hereby claim:
- I am robdaemon on github.
- I am robdaemon (https://keybase.io/robdaemon) on keybase.
- I have a public key whose fingerprint is CCA2 8FEA 219F 24CD 23C2 8249 5E92 B664 427E 1A4B
To claim this, I am signing this object:
# Copyright 2015 Google Inc. All Rights Reserved. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, |
;; fix the PATH variable | |
(defun set-exec-path-from-shell-PATH () | |
(let ((path-from-shell (shell-command-to-string "$SHELL -i -c 'echo -n $PATH'"))) | |
(setenv "PATH" path-from-shell) | |
(setq exec-path (split-string path-from-shell path-separator)))) | |
(defun set-env-from-shell (envvar) | |
(let ((path-from-shell (shell-command-to-string (format "$SHELL -i -c 'echo -n $%s'" envvar)))) | |
(setenv envvar path-from-shell))) |
db.StartTransaction | |
err := db.Execute | |
if err != nil { | |
db.Rollback | |
return | |
} | |
err := db.Execute | |
if err != nil { |
Our shared joy of programming: https://www.youtube.com/watch?v=3_zW63dcZB0 | |
The mess we're in: https://www.youtube.com/watch?v=lKXe3HUG2l4 | |
Programming should eat itself: https://www.youtube.com/watch?v=SrKj4hYic5A | |
Inside the Wolfram Language: https://www.youtube.com/watch?v=EjCWdsrVcBM | |
Transducers: https://www.youtube.com/watch?v=6mTbuzafcII |
asciidoctor-diagram allows you to mix a diagram into your doc, but GitHub doesn't render it inline. Instead, you can do this: | |
---- | |
ifdef::env-github[] | |
image::diagram.png[] | |
endif::[] | |
ifndef::env-github[] | |
["plantuml", "diagram", "png"] | |
----------------------------------------------- | |
title My Diagram |
Section "InputClass" | |
Identifier "nathan touchpad catchall" | |
MatchIsTouchpad "on" | |
MatchDevicePath "/dev/input/event*" | |
Driver "synaptics" | |
# three fingers for the middle button | |
Option "TapButton3" "2" | |
# drag lock | |
Option "LockedDrags" "1" |
I hereby claim:
To claim this, I am signing this object:
-XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:CMSInitiatingOccupancyFraction=70 -XX:+UseCMSInitiatingOccupancyOnly -XX:+CMSParallelRemarkEnabled |
google/protobuf/message.cc:130:60: error: implicit instantiation of undefined template 'std::__1::basic_istream<char, std::__1::char_traits<char> >' | |
return ParseFromZeroCopyStream(&zero_copy_input) && input->eof(); | |
^ | |
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/c++/v1/iosfwd:108:28: note: template is declared here | |
class _LIBCPP_TYPE_VIS basic_istream; | |
^ | |
google/protobuf/message.cc:135:67: error: implicit instantiation of undefined template 'std::__1::basic_istream<char, std::__1::char_traits<char> >' | |
return ParsePartialFromZeroCopyStream(&zero_copy_input) && input->eof(); | |
^ | |
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/c++/v1/iosfwd:108:28: note: template is declared here |
name := "prefect" | |
version := "1.0" | |
scalaVersion := "2.10.2" | |
libraryDependencies ++= Seq( | |
"org.glassfish.jersey.core" % "jersey-client" % "2.2" excludeAll( | |
ExclusionRule(organization = "org.glassfish.hk2") | |
), |