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
// I'm undecided whether this could actually _contain_ the context -- | |
// like, could EntryCrudReference be EntryCrudReference(Action, Entry)? | |
// We wouldn't want the whole source chain in `SourceChain` | |
// (tho the last entry might be helpful) | |
// and we don't know what's at the link base so we can't deliver that. | |
pub enum ValidationContext { | |
// Store* ops don't have any context except themselves. | |
// I originally named this `Record` but then realised that | |
// the record being validated isn't really part of the context, | |
// if we define 'context' as 'other stuff I have local access to'. |
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
building Nix... | |
building the system configuration... | |
error: executing 'git': No such file or directory | |
error: executing 'git': No such file or directory | |
error: while evaluating the attribute 'config.system.build.toplevel' at /nix/store/7f4c0dzcxpsh8yha84kbgqkql10s50fz-nixpkgs/nixos/modules/system/activation/top-level.nix:274:5: | |
while evaluating 'foldr' at /nix/store/7f4c0dzcxpsh8yha84kbgqkql10s50fz-nixpkgs/lib/lists.nix:52:20, called from /nix/store/7f4c0dzcxpsh8yha84kbgqkql10s50fz-nixpkgs/nixos/modules/system/activation/top-level.nix:138:12: | |
while evaluating 'fold'' at /nix/store/7f4c0dzcxpsh8yha84kbgqkql10s50fz-nixpkgs/lib/lists.nix:55:15, called from /nix/store/7f4c0dzcxpsh8yha84kbgqkql10s50fz-nixpkgs/lib/lists.nix:59:8: | |
while evaluating 'showWarnings' at /nix/store/7f4c0dzcxpsh8yha84kbgqkql10s50fz-nixpkgs/lib/trivial.nix:265:28, called from /nix/store/7f4c0dzcxpsh8yha84kbgqkql10s50fz-nixpkgs/nixos/modules/system/activation/top-level.nix:135:10: | |
while evaluating 'foldr' at /nix/store/7f4c0dzcxpsh8yha84kbgq |
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
Packaging files for testing to file: "/home/paul/Holochain/test-holonix-0.0.75/coreconcepts/cc_tuts/dist/cc_tuts.dna.json" | |
> CARGO_TARGET_DIR=${CARGO_TARGET_DIR:-/tmp/my_first_app/target} && echo $CARGO_TARGET_DIR | |
"CARGO_TARGET_DIR=${CARGO_TARGET_DIR:-/tmp/my_first_app/target} && echo $CARGO_TARGET_DIR " | |
/home/paul/Holochain/holonix/target | |
> CARGO_TARGET_DIR=${CARGO_TARGET_DIR:-/tmp/my_first_app/target} && cargo build --release --target=wasm32-unknown-unknown --target-dir=$CARGO_TARGET_DIR | |
"CARGO_TARGET_DIR=${CARGO_TARGET_DIR:-/tmp/my_first_app/target} && cargo build --release --target=wasm32-unknown-unknown --target-dir=$CARGO_TARGET_DIR" | |
Finished release [optimized] target(s) in 0.13s | |
> CARGO_TARGET_DIR=${CARGO_TARGET_DIR:-/tmp/my_first_app/target} && wasm-gc $CARGO_TARGET_DIR/wasm32-unknown-unknown/release/hello.wasm | |
"CARGO_TARGET_DIR=${CARGO_TARGET_DIR:-/tmp/my_first_app/target} && wasm-gc $CARGO_TARGET_DIR/wasm32-unknown-unknown/release/hello.wasm" | |
> CARGO_TARGET_DIR=${CARGO_TARGET_DIR:-/tmp/my_firs |
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 file is automatically @generated by Cargo. | |
# It is not intended for manual editing. | |
[[package]] | |
name = "aho-corasick" | |
version = "0.6.10" | |
source = "registry+https://github.com/rust-lang/crates.io-index" | |
dependencies = [ | |
"memchr 2.3.3 (registry+https://github.com/rust-lang/crates.io-index)", | |
] |
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
// ---- | |
// Sass (v3.4.4) | |
// Compass (v1.0.1) | |
// ---- | |
@mixin corral($selector) { | |
$context: &; | |
$new-context: $context; | |
$root-context: ''; | |
$selector-is-root-context: false; |
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
// ---- | |
// Sass (v3.3.7) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
@mixin extend($name) { | |
@if $extend and ($extend == advanced or length($corral-stack) == 0) { | |
$placeholder-name: ""; | |
@if not map-has-key($placeholders, $name) { | |
$placeholders: map-merge($placeholders, ($name: ())) !global; |
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
# A quick primer on Markdown | |
## Paragraphs | |
Markdown aims to be a markup language that's natural to write and read, as if it were typed on a typewriter. You can write in Notepad, or whatever text editor you prefer, and copy/paste it into an e-mail, or save it as a .txt file and send it to us as an attachment if you like. **StackEdit isn't a necessary part of the process**; it just helps you see what the conversion to HTML will look like. It also gives you buttons for all the features. | |
For the most part, you just write as you normally would -- paragraphs are just blocks of text separated by two carriage returns, and the Markdown parser will turn them into HTML paragraph tags for you. | |
You can emphasize a bit of your text by wrapping it with asterisks: *one asterisk for emphasis (italic)*, and **two asterisks for heavy emphasis (bold)**. If you prefer, you can use _single_ or __double underlines__ instead of asterisks. |
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
// ---- | |
// Sass (v3.3.0.rc.1) | |
// Compass (v0.13.alpha.10) | |
// ---- | |
$replacement-selector: a child, b child; | |
.class1, .class2 { | |
@at-root #{$replacement-selector} { | |
color: green; |
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
// ---- | |
// Sass (v3.3.0.rc.1) | |
// Compass (v0.13.alpha.10) | |
// ---- | |
$have-i-been-written-to-yet: false; | |
p { | |
$have-i-been-written-to-yet: true; | |
color: red; |
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
// ---- | |
// Sass (v3.3.0.rc.1) | |
// Compass (v0.13.alpha.10) | |
// ---- | |
@mixin lighten-bg-color-by-10-percent($color) { | |
$lightened: lighten($color, 10%); | |
background-color: $lightened; | |
} |
NewerOlder