π³
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
| #version 300 es | |
| #ifdef GL_FRAGMENT_PRECISION_HIGH | |
| precision highp float; | |
| #else | |
| precision mediump float; | |
| #endif | |
| out vec4 fragColor; | |
| uniform vec2 resolution; | |
| uniform vec3 orientation; |
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
| import { parse } from "https://deno.land/x/css@0.3.0/mod.ts"; | |
| var file = Deno.args[0]; | |
| var input = await Deno.readTextFile(file); | |
| var parsed = parse(input, { value: true }); | |
| var root = { | |
| rules: [], |
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
| TypeScript 14 hrs 30 mins βββββββββββββββββββββ 46.2% | |
| HTML 10 hrs 1 min βββββββββββββββββββββ 31.9% | |
| JavaScript 4 hrs 52 mins βββββββββββββββββββββ 15.5% | |
| SCSS 1 hr 39 mins βββββββββββββββββββββ 5.3% | |
| Bash 9 mins βββββββββββββββββββββ 0.5% |
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
| #pragma once | |
| #include <stdint.h> | |
| // pcg32_next() implementation matches pcg_engines::oneseq_xsh_rr_64_32 | |
| // NOTE: use this only for compatibility with 32-bit architectures | |
| // otherwise prefer using pcg64.h implementation with 128-bit state | |
| typedef struct { |
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
| /*! | |
| * \file pango_layout_word_wrap.c | |
| * \brief pango layout word wrap | |
| * | |
| * \author Ben Pfaff http://benpfaff.org | |
| * | |
| * In working with Pango I found an oddity that I do not understand. | |
| * It may be a bug, or it might just be my misunderstanding. | |
| * | |
| * As part of a table layout procedure for printing, my code wishes to find out |