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 libucl-sys v0.1.4 | |
Running `rustc /home/hauleth/.multirust/toolchains/beta/cargo/registry/src/github.com-1ecc6299db9ec823/libucl-sys-0.1.4/build.rs --crate-name build_script_build --crate-type bin -C prefer-dynamic -g --out-dir /home/hauleth/Workspace/ucl-rs/target/debug/build/libucl-sys-99c2c324b1dfccd4 --emit=dep-info,link -L dependency=/home/hauleth/Workspace/ucl-rs/target/debug/deps -L dependency=/home/hauleth/Workspace/ucl-rs/target/debug/deps -Awarnings` | |
Compiling libc v0.1.8 | |
Running `rustc /home/hauleth/.multirust/toolchains/beta/cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.1.8/rust/src/liblibc/lib.rs --crate-name libc --crate-type lib -g --cfg feature="cargo-build" --cfg feature="default" -C metadata=2eda841eb12a3090 -C extra-filename=-2eda841eb12a3090 --out-dir /home/hauleth/Workspace/ucl-rs/target/debug/deps --emit=dep-info,link -L dependency=/home/hauleth/Workspace/ucl-rs/target/debug/deps -L dependency=/home/hauleth/Workspace/ucl-rs/target/debug/deps -Awarnings` | |
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
Output: | |
std::cout bez sync_with_stdio(0) | |
real 0m0.084s | |
user 0m0.083s | |
sys 0m0.000s | |
std::cout z sync_with_stdio(0) | |
real 0m0.078s |
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
#!/usr/bin/env ruby | |
loop do | |
print '> ' | |
exit 0 if gets.strip == 'exit' | |
puts 'USUŃ KONTO!' | |
end |
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 Listing < ActiveRecord::Base | |
if Rails.env.development? | |
has_attached_file :image, :styles => { :medium => "200x>", :thumb => "100x100>" }, :default_url => "404.png" | |
validates_attachment_content_type :image, :content_type => ["image/jpg", "image/jpeg", "image/png", "image/gif"] | |
else | |
has_attached_file :image, :styles => { :medium => "200x>", :thumb => "100x100>" }, :default_url => "404.png", | |
:storage => :dropbox, | |
:dropbox_credentials => Rails.root.join("config/dropbox.yml"), | |
:path => ":style/:id_:filename" | |
validates_attachment_content_type :image, :content_type => ["image/jpg", "image/jpeg", "image/png", "image/gif"] |
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
fn clamp<N: PartialOrd>(val: N, min: N, max: N) -> N { | |
if val > max { max } | |
else if val < min { min } | |
else { val } | |
} | |
fn filter<P: Primitive + 'static, T: Pixel<P> + 'static, I: GenericImage<T>>( | |
image: &I, | |
kernel: &Matrix<f32>) -> ImageBuffer<Vec<P>, P, T> { | |
let xcenter = kernel.rows() / 2; |
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 Wektor | |
attr_accessor :coords | |
def initialize(length) | |
@coords = Array.new(length, 0) | |
end | |
def set!(w) | |
@coords = w.dup |
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
#!ipxe | |
set base-url http://stable.release.core-os.net/amd64-usr/current | |
kernel ${base-url}/coreos_production_pxe.vmlinuz sshkey="ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDGZgyusYqIwWgs8vMK25noT6HiNh0Xsanm5oR2fFRJYKwt3P8zSxidGWH2FsgKDpGW+smrr0KChQ3ns9WC8RklM5Qbmxmjj0MwVToYE0npVri+ifEi4aAtAMj+gU6JOk5VUB/uTZzXWk17sNgCY6FXse/DP40lU21N0priRFzAx3uiSqj8/DyoLcqGA/2sV+1f3Iu+kts+kK4AGfo+SKkgu4PDYibM52jBHZnwXVOjqziZmf3I7XHdW+AhaktzPneU/sW2SdPTSwh4ZJLILWobIw7fu2cMlWz6Bn3pLsqnFJ3nSK9SCqPX33YGQDLm5c7gTnlcnkr67r9RdqFYD+Yn [email protected]" | |
initrd ${base-url}/coreos_production_pxe_image.cpio.gz | |
boot |
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
Verifying that +hauleth is my openname (Bitcoin username). https://onename.io/hauleth |
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
(ns perun.core | |
(:require-macros [cljs.core.async.macros :refer [go]]) | |
(:require [om.core :as om :include-macros true] | |
[cljs.core.async :refer [<!]] | |
[om-tools.core :refer-macros [defcomponent]] | |
[om-tools.dom :as dom :include-macros true] | |
[perun.elasticsearch :as es])) | |
(enable-console-print!) |
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
Bundler 1.7.3 | |
Ruby 2.1.2 (2014-05-08 patchlevel 95) [x86_64-linux] | |
Rubygems 2.4.2 | |
GEM_HOME | |
Bundler settings | |
path | |
Set for your local app (/home/hauleth/Workspace/orodruin/.bundle/config): "vendor/bundle" | |
Set for the current user (/home/hauleth/.bundle/config): "vendor/bundle" | |
jobs |