View ConstantResponseTime.js
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
const express = require("express"); | |
const application = express(); | |
const TIME_OUT = 4096; | |
const circuitBreaker = () => | |
new Promise((_, reject) => setTimeout(reject, TIME_OUT)); | |
const ensureTimeout = (startTime) => |
View intercept.js
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
console.log("Intercept"); |
View bucklescript.json
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
[ | |
{ | |
"fn": "abs_float", | |
"mod": "Js_math", | |
"sig": "float -> float" | |
}, | |
{ | |
"fn": "abs_int", | |
"mod": "Js_math", | |
"sig": "int -> int" |
View todo.rs
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
// TODO: Error out on duplicate attributes |
View aa.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View gist:674d2d3f93a4ee053ced256e6d777b84
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
<path fill="currentColor" fill-rule="evenodd" d="M32.782 38.193v9.682c0 3.058 2.25 5.603 5.187 6.076v-9.529c0-3.079-2.29-5.73-5.187-6.23zm-1.976-.085h.988v-1.97H26.25c-6.447 0-11.693-5.229-11.693-11.656 0-6.427 5.246-11.656 11.693-11.656 6.448 0 11.694 5.23 11.694 11.656v5.57h1.976v-5.57c0-7.513-6.132-13.626-13.67-13.626-7.537 0-13.669 6.113-13.669 13.626 0 7.513 6.132 13.626 13.67 13.626h4.555v-1.97h.003l.04-11.66c0-2.524-2.063-4.58-4.598-4.58-2.536 0-4.6 2.056-4.6 4.584 0 2.528 2.064 4.584 4.6 4.584v1.97c-3.626 0-6.576-2.94-6.576-6.554 0-3.614 2.95-6.554 6.576-6.554 3.625 0 6.575 2.94 6.575 6.554l-.041 11.717c4.029.498 7.16 3.996 7.16 8.223V56h-.988c-4.495 0-8.151-3.645-8.151-8.125v-9.767zM4.59 1.97a2.572 2.572 0 00-2.573 2.565A2.572 2.572 0 004.59 7.099a2.572 2.572 0 002.573-2.564A2.572 2.572 0 004.59 1.97zm0 7.1C2.082 9.07.04 7.034.04 4.534S2.083 0 4.59 0s4.55 2.034 4.55 4.535c0 2.5-2.042 4.534-4.55 4.534zm3.56 28.879c-4.493 0-8.15-3.645-8.15-8.125v-18.93h9.14v19.17H7.162v-17.2H1.976v16.96c0 3.394 2.77 6. |
View schedule.txt
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
Today | |
- Revisar o ReAMV (Edu review) | |
- Arrumar isso no Windows (https://github.com/facebookexperimental/reason-native) | |
- Pipe Last | |
- Material UI | |
- gh-pages (Pipe Last) |
View t.html
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
<li id="media_group_257631" itemscope itemtype="https://schema.org/TVSeries" class="hover-bubble group-item" group_id="257631"> | |
<div class="wrapper hover-toggle-queue container-shadow hover-classes" data-classes="container-shadow-dark"> | |
<a title="One Piece" token="shows-portraits" itemprop="url" href="/one-piece" class="portrait-element block-link titlefix"> | |
<span class="img-holder"><img itemprop="photo" alt="One Piece" src="https://img1.ak.crunchyroll.com/i/spire4/8056a82e973dde98ebb82abd39dc69731564519729_thumb.jpg" class="portrait" /></span> | |
<span itemprop="name" class="series-title block ellipsis" dir="auto">One Piece</span> | |
<span class="series-data block ellipsis"> | |
1142 Videos </span> |
View events.js
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
// https://www.w3schools.com/jsref/dom_obj_event.asp | |
copy(Array.from(document.querySelectorAll('td a')).filter(node => node.href.indexOf('event_') !== -1).map(node => node.href).map(href => href.split('event_')[1].split('.asp').join(''))) |
View settings.json
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
{ | |
"editor.codeActionsOnSave": { | |
"source.fixAll": true | |
}, | |
"editor.detectIndentation": false, | |
"editor.formatOnSave": true, | |
"editor.minimap.enabled": false, | |
"editor.rulers": [80, 120], | |
"editor.tabSize": 2, | |
"eslint.validate": ["typescript"], |
NewerOlder