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
#0 0x00007ffff4707e2c in _IO_vfprintf_internal (s=s@entry=0x7fffffffad30, | |
format=<optimized out>, format@entry=0x406d24 "%s%s", | |
ap=ap@entry=0x7fffffffaea0) at vfprintf.c:1642 | |
#1 0x00007ffff47b2ed5 in __GI___vasprintf_chk ( | |
result_ptr=result_ptr@entry=0x7fffffffae80, flags=flags@entry=1, | |
format=0x406d24 "%s%s", format@entry=0x7fffffffae80 "", | |
args=0x7fffffffaea0) at vasprintf_chk.c:66 | |
#2 0x00007ffff50114ec in vasprintf (__ap=<optimized out>, | |
__fmt=0x7fffffffae80 "", __ptr=0x7fffffffae80) | |
at /usr/include/x86_64-linux-gnu/bits/stdio2.h:210 |
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
{-# LANGUAGE FlexibleInstances, GeneralizedNewtypeDeriving, MultiParamTypeClasses, TypeFamilies, UndecidableInstances #-} | |
module Control.Monad.Random | |
( module System.Random.MWC | |
, runRandT | |
, RandT | |
, MonadRandom | |
, getUniform | |
, getUniformR | |
, getUniformVector |
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 +slomo is my blockchain ID. https://onename.com/slomo |
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
#![feature(core_intrinsics)] | |
use std::intrinsics; | |
pub fn main() { | |
unsafe { intrinsics::abort(); } | |
} |
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
{-# LANGUAGE OverloadedStrings #-} | |
import Data.Default | |
import Network.HTTP.Client | |
import Network.HTTP.Client.TLS | |
import Network.HTTP.Types.Status (statusCode) | |
main :: IO () | |
main = do |
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
{-# LANGUAGE OverloadedStrings #-} | |
import Data.Default | |
import Network.Connection | |
import qualified Data.ByteString as B | |
import Control.Monad | |
main :: IO () | |
main = do | |
ctx <- initConnectionContext |
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
#[macro_use] | |
extern crate nom; | |
use nom::{IResult, is_digit}; | |
use std::str; | |
#[derive(Debug, PartialEq, Eq)] | |
pub enum Sign { | |
Plus, | |
Minus, |
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
extern crate glib; | |
extern crate gtk; | |
extern crate glib_sys; | |
extern crate gobject_sys; | |
extern crate gtk_sys; | |
use glib::translate::ToGlibPtr; | |
fn meh() -> *const gobject_sys::GObject { |
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
extern crate libc; | |
extern crate glib; | |
extern crate glib_sys as ffi; | |
extern crate gobject_sys as gobject_ffi; | |
extern crate gtk; | |
extern crate gtk_sys as gtk_ffi; | |
use gtk::prelude::*; | |
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
extern crate gstreamer as gst; | |
use gst::*; | |
extern crate glib; | |
use glib::*; | |
use glib::ObjectExt; | |
use std::env; | |
use std::u64; |
OlderNewer