View pipe.rs
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
use std::{ | |
collections::VecDeque, | |
sync::{Arc, Mutex}, | |
task::{Poll, Waker}, | |
}; | |
use tokio::io::AsyncRead; | |
use wasi_common::WasiFile; | |
/// A bi-directional meory pipe for bytes with a capacity. |
View nixos-image-qcow2.nix
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
{ config, lib, pkgs, ... }: | |
{ | |
imports = | |
[ | |
<nixpkgs/nixos/modules/installer/cd-dvd/channel.nix> | |
]; | |
system.build.qcow2 = import <nixpkgs/nixos/lib/make-disk-image.nix> { | |
pkgs = import <nixpkgs> { inherit (pkgs) system; }; # ensure we use the regular qemu-kvm package |
View gist:186359a930abb2f172cb9b59c7a037fc
This file has been truncated, but you can view the full file.
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
warning: /home/theduke/dev/github.com/graphql-rust/juniper/integration_tests/juniper_tests/Cargo.toml: file found to be present in multiple build targets: /home/theduke/dev/github.com/graphql-rust/juniper/integration_tests/juniper_tests/src/lib.rs | |
Compiling juniper v0.11.1 (/home/theduke/dev/github.com/graphql-rust/juniper/juniper) | |
Finished dev [unoptimized + debuginfo] target(s) in 5.13s | |
Running /home/theduke/dev/github.com/graphql-rust/juniper/target/debug/deps/juniper-fa6953f755a46403 | |
running 34 tests | |
test executor_tests::introspection::enums::named_introspection ... ok | |
test executor_tests::introspection::enums::enum_deprecation_no_values_introspection ... ok | |
test executor_tests::introspection::enums::enum_value_description_introspection ... ok | |
test executor_tests::introspection::enums::enum_description_introspection ... ok |
View .gistup
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
gistup |
View .gistup
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
gistup |
View gist:5baad45aa3338ebf271ba4ca8df306f9
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
### Keybase proof | |
I hereby claim: | |
* I am theduke on github. | |
* I am the_duke (https://keybase.io/the_duke) on keybase. | |
* I have a public key whose fingerprint is 5E17 1594 414B 2E13 0B99 16C8 DAFF 71D4 8B49 3238 | |
To claim this, I am signing this object: |
View keybase.md
Keybase proof
I hereby claim:
- I am theduke on github.
- I am the_duke (https://keybase.io/the_duke) on keybase.
- I have a public key ASBYK_k0ympCFwmOqH83xIZ0nQBbRIrhNAN9fjfBjRnEugo
To claim this, I am signing this object:
View gist:08b9ac787a626dc3ac84bb595c20072b
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
defmodule Ihub.Mixfile do | |
use Mix.Project | |
def project do | |
[app: :ihub, | |
version: "0.0.1", | |
elixir: "~> 1.2", | |
elixirc_paths: elixirc_paths(Mix.env), | |
compilers: [:phoenix, :gettext] ++ Mix.compilers, | |
build_embedded: Mix.env == :prod, |
View structure.md
-
web/apps/user/model.ex
-
web/apps/user/controller.ex
-
web/apps/user/view.ex
-
web/apps/somemodel/model.ex
-
...
-
...
-
...
NewerOlder