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
use winit::{ | |
event::{StartCause, Event, WindowEvent}, | |
event_loop::{ControlFlow, EventLoop}, | |
window::{ | |
WindowBuilder, | |
Window | |
}, | |
platform::ios::{ | |
WindowExtIOS, | |
EventLoopExtIOS, |
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
2020/04/03 19:20:09 [DEBUG] cratesfyi::docbuilder::rustwide_builder: building package winit 0.22.0 for i686-unknown-linux-gnu | |
2020/04/03 19:20:09 [INFO] rustwide::cmd: running `"/opt/docsrs/rustwide/cargo-home/bin/cargo" "+nightly" "metadata" "--format-version" "1"` | |
2020/04/03 19:20:09 [INFO] rustwide::cmd: running `"docker" "create" "-v" "/home/simlay/projects/docs.rs/.rustwide-docker/builds/winit-0.22.0/target:/opt/rustwide/target:rw,Z" "-v" "/home/simlay/projects/docs.rs/.rustwide-docker/builds/winit-0.22.0/source:/opt/rustwide/workdir:ro,Z" "-v" "/home/simlay/projects/docs.rs/.rustwide-docker/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/home/simlay/projects/docs.rs/.rustwide-docker/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=0" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "RUSTFLAGS=" "-e" "RUSTDOCFLAGS=-Z unstable-options --resource-suffix -20200402-1.44.0-nightly-537ccdf3a --static-root-path / --cap-lints warn --extern-html-root-url perc |
I hereby claim:
- I am simlay on github.
- I am simlay (https://keybase.io/simlay) on keybase.
- I have a public key whose fingerprint is CFF0 7292 6EED 6879 770E 2E7F 2267 F9CE 8C14 619C
To claim this, I am signing this object:
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 python | |
import sys | |
import math | |
import numpy as np | |
def main(size): | |
numbers = [] | |
for i in xrange(size): | |
numbers.append(int(np.random.uniform(0, 100))) |