π»
This file contains 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
/* Safari and Edge polyfill for createImageBitmap | |
* https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/createImageBitmap | |
*/ | |
if (!('createImageBitmap' in window)) { | |
window.createImageBitmap = async function(blob) { | |
return new Promise((resolve,reject) => { | |
let img = document.createElement('img'); | |
img.addEventListener('load', function() { | |
resolve(this); | |
}); |
This file contains 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
.square:after { | |
content: ""; | |
display: block; | |
padding-bottom: 100%; | |
} |
This file contains 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
function getLuckNumbersTo(n, d=false) { | |
const start = Date.now(); | |
let lucky = new Array(n).fill(0).map((v,i) => i+1); | |
if (d) console.log(lucky); | |
for (let i = 2; i < lucky.length;) { | |
for (let j = i; j <= lucky.length; j+=i) { | |
lucky.splice(j-1, 1, 0); | |
} | |
lucky = lucky.filter(v => v !== 0); | |
if (d) console.log(i, lucky); |
This file contains 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>edge iframe memory test</title> | |
<style> | |
body { | |
margin: 0; | |
overflow-x: hidden; | |
} | |
iframe { |
This file contains 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 strict'; | |
import { create_element } from "https://rawgit.com/Nektro/modules.js/439458f/src/create_element.js"; | |
export function createUIWindow(model) { | |
const view = model.map(x => createComponent(x)); | |
for (const ele of view) { |
This file contains 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
get-childitem * | foreach { rename-item -LiteralPath $_ $_.Name.Replace("", "") } |
This file contains 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
// @author Meghan#2032 <https://me.nektro.net/> | |
// | |
// | |
import fetch from "node-fetch"; | |
// | |
import path from "path"; | |
import fs from "fs"; | |
import https from "https"; | |
// | |
const __dirname = path.resolve(''); |
This file contains 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
// citi bike data for each day of July 2018 | |
// divided into age ranges (10-19 through 130-139) | |
export const bikeData = [[448, 12345, 13173, 13347, 4086, 1588, 247, 15, 2, 1, 5, 4, 5], | |
[475, 14679, 18530, 14885, 7118, 2476, 407, 26, 4, 2, 27, 0, 6], | |
[461, 13913, 17434, 13768, 6581, 2352, 326, 29, 4, 2, 8, 1, 5], | |
[544, 12206, 13798, 15283, 4443, 1725, 301, 23, 1, 5, 34, 3, 6], | |
[509, 14551, 18526, 15951, 6918, 2547, 385, 29, 4, 6, 33, 4, 13], | |
[479, 12760, 15925, 12393, 5594, 1959, 321, 17, 7, 5, 40, 4, 3], | |
[610, 15550, 17702, 19254, 5381, 1967, 380, 21, 18, 2, 20, 2, 11], |
This file contains 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
Arguments: | |
C:\Program Files\nodejs\node.exe C:\Program Files (x86)\Yarn\bin\yarn.js add integer | |
Yarn version: | |
1.5.1 | |
Node version: | |
10.8.0 | |
Platform: |
This file contains 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
ββββββββββββββββββββββββββββββββββββ | |
ββββββββββββββββββββββββββββββββββββ | |
ββββββββββββββββββββββββββββββββββββ | |
ββββββββββββββββββββββββββββββββββββ | |
ββββββββββββββββββββββββββββββββββββ | |
ββββββββββββββββββββββββββββββββββββ | |
ββββββββββββββββββββββββββββββββββββ | |
ββββββββββββββββββββββββββββββββββββ | |
ββββββββββββββββββββββββββββββββββββ | |
ββββββββββββββββββββββββββββββββββββ |