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(custom_attribute)] | |
| #[macro_use] | |
| extern crate diesel; | |
| extern crate byteorder; | |
| use diesel::prelude::*; | |
| use diesel::pg::PgConnection; | |
| //mod points; |
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
| module LazyMarkdownBugReproduction exposing (main) | |
| import Array exposing (Array) | |
| import Dict exposing (Dict) | |
| import Html exposing (..) | |
| import Html.Attributes exposing (..) | |
| import Html.Lazy | |
| import Html.Events exposing (onInput) | |
| import Markdown |
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 python3 | |
| from typing import Dict | |
| from hypothesis import given, assume, reproduce_failure | |
| import hypothesis.strategies as st | |
| import unittest | |
| import logging | |
| class KeyValueStore: | |
| def __init__(self): | |
| self._storage = {} |
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 std::collections::VecDeque; | |
| #[derive(Clone, Debug)] | |
| pub enum Doc { | |
| Nil, | |
| Concat(Box<Doc>, Box<Doc>), | |
| Nest(i32, Box<Doc>), | |
| Text(String), | |
| Line, | |
| Union(Box<Doc>, Box<Doc>), |
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
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Hacker News</title> | |
| <style> | |
| #header { | |
| background-color: #ff6600; | |
| height: 25px; | |
| width: 100%; | |
| } |
OlderNewer