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
| namespace DOMRGBAColor { | |
| /** | |
| * Float64Array of length 4: [R, G, B, A]. Each is normalized to range [0 .. 1] | |
| * [Bikeshed] or Float32Array? | |
| */ | |
| export type FVec4 = Float64Array & { length: 4 }; | |
| /** | |
| * Uint8ClampedArray of length 4: [R, G, B, A] | |
| */ | |
| export type IVec4 = Uint8ClampedArray & { length: 4 }; |
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>Adding numbers with WebGL2 Transform Feedback</title> | |
| </head> | |
| <body> | |
| <h1>Adding numbers with WebGL2 Transform Feedback.</h1> | |
| <output></output> | |
| <script src="webgl.js"></script> | |
| <p>View <a href="webgl.js">the commented source</a>!</p> |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>СПГС 2023</title> | |
| <style> | |
| html { | |
| height: 100%; | |
| background: radial-gradient(#fff, #f0f0f0 50%, #aaa) #eee; | |
| } | |
| body { |
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
| .ghx-swimlane.ghx-first .ghx-column[data-column-id="554"]:empty { | |
| background: none; | |
| } | |
| .ghx-swimlane.ghx-first .ghx-column[data-column-id="554"]:empty:before { | |
| content: ''; | |
| display: block; | |
| position: sticky; | |
| z-index: 2; | |
| top: 100%; |
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
| @-moz-document url-prefix("https://jira.xtools.tv") { | |
| .ghx-swimlane.ghx-first .ghx-column[data-column-id="554"]:empty { | |
| background-image: url(https://s.tcdn.co/c5f/0a5/c5f0a53d-cec7-36d8-be42-c2e1bf5baf97/13.png); | |
| background-size: contain; | |
| background-position: 50% 20%; | |
| background-repeat: no-repeat; | |
| } | |
| } |
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <title></title> | |
| <style> | |
| body { | |
| font: 16pt sans-serif; | |
| text-align: center; | |
| } | |
| </style> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Screen size debug</title> | |
| </head> | |
| <body> | |
| <script> | |
| function log(s){ | |
| var logEntry = document.createElement('pre'); | |
| logEntry.textContent = (new Date().toISOString() + ' ' + s); |
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 t from 'some-fancy-templater'; | |
| t` | |
| <div class="container"> | |
| <h1>Ponies</h1> | |
| <${PonyList}> | |
| ${ ponies.map( | |
| ({ name, type }) => t` | |
| <${PonyItem} name="${name}" type="{type}"/> | |
| ` |
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 BaseHTTPServer | |
| import io | |
| import random | |
| import time | |
| import zlib | |
| HOST_NAME = 'localhost' | |
| PORT_NUMBER = 8080 | |
| gzip = zlib.compressobj( |