Skip to content

Instantly share code, notes, and snippets.

View m-r-r's full-sized avatar

Mickaël RAYBAUD-ROIG m-r-r

View GitHub Profile
@m-r-r
m-r-r / playground.rs
Created February 27, 2017 12:20 — forked from anonymous/playground.rs
Shared via Rust Playground
type Freq = f32;
#[derive(Clone, Debug)]
pub struct Note(u8, u8, Freq);
impl Note {
pub fn number(&self) -> u8 {
self.0
}
@m-r-r
m-r-r / index.html
Created November 25, 2015 11:25 — forked from anonymous/index.html
JS Bin // source http://jsbin.com/pehagezesu
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
<style id="jsbin-css">
.separator {
display: block;
width: 100%;
font-weight: 400;
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
(function () {
"use strict";