Este documento contém os links de referência citados na live do canal Full Cycle Ambiente perfeito de Docker com VSCode e WSL2
Para utilizar o Docker no Windows, use este guia de instalação: https://github.com/codeedu/wsl2-docker-quickstart.
| import * as React from "react"; | |
| import * as Vue from "vue/dist/vue"; | |
| import VueElement from "./VueElement"; | |
| import { PropertyControls, ControlType } from "framer"; | |
| // Define type of property | |
| interface Props { | |
| text: string; | |
| } |
| { | |
| "scope": "source.pde", | |
| "completions": | |
| [ | |
| // behaviors | |
| { "trigger": "HAttractor", "contents": "import hype.extended.behavior.HAttractor;" }, | |
| { "trigger": "HAttracted", "contents": "import hype.extended.behavior.HAttractor.HAttracted;" }, | |
| { "trigger": "HAttractionForce", "contents": "import hype.extended.behavior.HAttractor.HAttractionForce;" }, | |
| { "trigger": "HFollow", "contents": "import hype.extended.behavior.HFollow;" }, | |
| { "trigger": "HMagneticField", "contents": "import hype.extended.behavior.HMagneticField;" }, |
| "use strict"; | |
| [foo,bar] = TNG(foo,bar); | |
| // NOTE: intentionally not TNG(..) wrapping useBaz(), so that it's | |
| // basically like a "custom hook" that can be called only from other | |
| // TNG-wrapped functions | |
| function foo(origX,origY) { | |
| var [x,setX] = useState(origX); | |
| var [y,setY] = useState(origY); |
| ⊹ + * · . ⊹ . ˚ ✫ ⊹ | |
| ˚ ✦ * · · + ✦ ˚ º. * + · | |
| ✫ º . ✫ ✵ ˚ ʰᵉˡˡᵒ ✫ ⋆ . º | |
| ✧ * ˚ * ♡ ˚ ✫ ⋆˚ ✫ | |
| ˚ ✹ . + ⊹ .* ✦ · ✧˚ * ˚ |
| git branch | fzf | sed 's/\* //g' | xargs -I '{}' git checkout {} |
| #![no_std] | |
| #![feature(maybe_uninit_ref)] | |
| extern crate alloc; | |
| use core::f64::consts::PI; | |
| //use no_panic::no_panic; | |
| use wasm_bindgen::prelude::*; |
| //reference code for solution of perfect Spiral: | |
| //https://gist.github.com/chandeeland/b69156115e2b5842d83ca9eb3b2bbf2e | |
| //failed trial:: https://gist.github.com/volfegan/e55decad6814e63fb450379c9bf13a61 | |
| //attempt to recreate: https://twitter.com/Borrachas/status/1204855395006763009 | |
| float a, b, x, y, d, h=600/2, r, s, shrink=0.94; | |
| void setup() { | |
| size(600, 600); | |
| } | |
| void draw() { | |
| background(#EFF2D0); |
| # This may be runnable as a script, but keep in mind -y is not always acknowledged. | |
| # These are the drop dead basics | |
| pkg -y install vim | |
| pkg -y install git | |
| pkg -y install chromium | |
| pkg -y install gimp | |
| pkg -y install sudo | |
| # Install Rust |
| //inspired by https://www.dwitter.net/d/10534 | |
| //https://twitter.com/VolfeganGeist/status/1273451476556353536 | |
| float i, m, n, p, s, t, x, y; | |
| void setup() { | |
| size(1080, 720); | |
| noStroke(); | |
| } | |
| void draw() { | |
| background(0); | |
| t+=.05; |
Este documento contém os links de referência citados na live do canal Full Cycle Ambiente perfeito de Docker com VSCode e WSL2
Para utilizar o Docker no Windows, use este guia de instalação: https://github.com/codeedu/wsl2-docker-quickstart.