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/sh | |
# This repo exists to help me get a few common configs in place -- things I use | |
# absolutely everywhere. Currently, this means my Emacs and fish shell configs. | |
EMACS_REPO='[email protected]:Gastove/orary.git' | |
FISH_REPO='[email protected]:gastove/fish-sauce.git' | |
echo "Bootstrapping directories..." |
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
build: Checking SubstrateVM requirements for building ... | |
Compiling com.oracle.truffle.api.dsl.test with javac-daemon... [/home/rdonaldson/Code/open-source/graal/truffle/mxbuild/src/com.oracle.truffle.api.dsl.test/bin/com/oracle/truffle/api/dsl/test/RewriteUnexpectedResultTest.class does not exist] | |
Compiling com.oracle.truffle.api.interop.java.test with javac-daemon... [/home/rdonaldson/Code/open-source/graal/truffle/mxbuild/src/com.oracle.truffle.api.interop.java.test/bin/com/oracle/truffle/api/interop/java/test/FunctionalInterfaceTest.class does not exist] | |
Compiling org.graalvm.compiler.replacements.amd64 with javac-daemon... [/home/rdonaldson/Code/open-source/graal/compiler/mxbuild/src/org.graalvm.compiler.replacements.amd64/bin/org/graalvm/compiler/replacements/amd64/AMD64MathSubstitutions.class does not exist] | |
Compiling org.graalvm.compiler.replacements.aarch64 with javac-daemon... [/home/rdonaldson/Code/open-source/graal/compiler/mxbuild/src/org.graalvm.compiler.replacements.aarch64/bin/org/graalvm/comp |
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
class CustOps: | |
def __init__(self, name, age, hire_date): | |
self.name = name | |
self.age = age | |
self.hire_date = convert_to_dt(hire_date) | |
def tenure(self): | |
# today - hire date | |
pass |
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
Running 7 tests (2018-11-25 14:42:02-0800) | |
Test epg-decrypt-1 backtrace: | |
signal(epg-error ("Decryption failed" "")) | |
apply(signal (epg-error ("Decryption failed" ""))) | |
(setq value-7 (apply fn-5 args-6)) | |
(unwind-protect (setq value-7 (apply fn-5 args-6)) (setq form-descri | |
(if (unwind-protect (setq value-7 (apply fn-5 args-6)) (setq form-de | |
(let (form-description-9) (if (unwind-protect (setq value-7 (apply f | |
(let ((value-7 'ert-form-evaluation-aborted-8)) (let (form-descripti | |
(let* ((fn-5 (function equal)) (args-6 (condition-case err (let ((si |
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
// This is what the Giraffe template produces | |
module giraffe.App | |
open System | |
open System.IO | |
open Microsoft.AspNetCore.Builder | |
open Microsoft.AspNetCore.Cors.Infrastructure | |
open Microsoft.AspNetCore.Hosting | |
open Microsoft.Extensions.Hosting | |
open Microsoft.Extensions.Logging |
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
# ============================================================================= | |
# | |
# Utility functions for zoxide. | |
# | |
# Remove definitions. | |
# pwd based on the value of _ZO_RESOLVE_SYMLINKS. | |
function __zoxide_pwd | |
pwd -L |
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
Compiling voltron-grpc v0.1.0 (/home/rdonaldson/Code/DB/voltron/code/rust) | |
error[E0277]: the trait bound `impl Future: VoltronCache` is not satisfied | |
--> src/bin/server.rs:17:46 | |
| | |
17 | .add_service(VoltronCacheServer::new(server)) | |
| ^^^^^^ the trait `VoltronCache` is not implemented for `impl Future` | |
| | |
note: required by `VoltronCacheServer::<T>::new` | |
--> /home/rdonaldson/Code/DB/voltron/code/rust/target/debug/build/voltron-grpc-ae3836ff64840844/out/voltron.rs:191:9 | |
| |
OlderNewer