A Pen by ✠ Aragua ✠ 🇧🇷 on CodePen.
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
{"lastModified":1596503012295,"tags":[]} |
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 request = require('request-promise'); | |
const PORT = process.env.PORT || 5000; | |
const app = express(); | |
app.use(express.json()); | |
const returnScraperApiUrl = (apiKey) => `http://api.scraperapi.com?api_key=${apiKey}&autoparse=true`; |
A Triforce with particles made in ThreeJS
A Pen by ✠ Aragua ✠ 🇧🇷 on CodePen.
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
<div class="wrapper"> | |
<div class="container"> | |
<h1>multi color text with css</h1> | |
</div> | |
</div> |
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 _ = require('lodash') | |
const actionTree = generateActionTree() | |
const steps = resolveDependencies(actionTree) | |
console.log(steps) | |
function resolveDependencies(cmds) { | |
const dependencies = fetchDependencies(actionTree) | |
const steps = chunkIntoSteps(dependencies) | |
return steps |
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
export class BTreeNode { | |
constructor(isLeaf) { | |
/** | |
* @type {number[]} list of values in the node | |
*/ | |
this.values = []; | |
/** | |
* @type {boolean} is a leaf | |
*/ | |
this.leaf = isLeaf; |
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 binomialCoeff(n, k) { | |
// if ((k === 0) || (k === n)) { | |
// return 1n | |
// } else { | |
// return binomialCoeff(n - 1n, k - 1n) + binomialCoeff(n - 1n, k) | |
// } | |
// } | |
// function isDivisible(value) { |
This document was created back in 2020 and might not be actual nowadays. It is not supported anymore, so use thise information at your own risk.
- Download WSL2 Kernel
- run
wsl --set-default-version 2
in windows command line, so that all future WSL machine will use WSL2.
A simple Three JS powered globe used in an activation in support of Metronomy's new album "Small World." Full dev blog here: https://medium.com/p/c870b93c6afc
A Pen by ✠ Aragua ✠ 🇧🇷 on CodePen.
OlderNewer