Skip to content

Instantly share code, notes, and snippets.

@git2358
git2358 / hue-jumper-a-2-kilobyte-3d-racing-game-in-javascript.markdown
Created April 17, 2020 14:30
HUE JUMPER - A 2 kilobyte 3D racing game in JavaScript
@git2358
git2358 / generative-patterns-6.markdown
Created April 17, 2020 14:19
Generative Patterns 6
@git2358
git2358 / index.html
Created April 17, 2020 14:18
Landing Page with TailwindCSS
<div class="flex flex-wrap">
<div class="w-full sm:w-8/12 mb-10">
<div class="container mx-auto h-full sm:p-10">
<nav class="flex px-4 justify-between items-center">
<div class="text-4xl font-bold">
Plant<span class="text-green-700">.</span>
</div>
<div>
<img src="https://image.flaticon.com/icons/svg/497/497348.svg" alt="" class="w-8">
</div>
@git2358
git2358 / gui-0403.markdown
Created April 17, 2020 14:17
金曜GUI 0403
@git2358
git2358 / sweep-swoop.js
Created April 17, 2020 14:08 — forked from tomhicks/sweep-swoop.js
Listen to your web pages
const audioCtx = new window.AudioContext();
const oscillator = audioCtx.createOscillator();
oscillator.connect(audioCtx.destination);
oscillator.type = "sine";
let numItems = 0
oscillator.frequency.setValueAtTime(
1,
audioCtx.currentTime
@git2358
git2358 / index.html
Created February 24, 2020 20:56
Palms
<script src="https://threejs.org/build/three.min.js"></script>
<script src="https://threejs.org/examples/js/utils/BufferGeometryUtils.js"></script>
<script src="https://threejs.org/examples/js/controls/OrbitControls.js"></script>
<script>
var noise = `
//
// Description : Array and textureless GLSL 2D/3D/4D simplex
// noise functions.
// Author : Ian McEwan, Ashima Arts.
// Maintainer : stegu
@git2358
git2358 / index.html
Created February 18, 2020 04:34
Neumorphism Toggle
<div class="neumorphism-toggle">
<input type="checkbox" id="neumorphism" checked>
<label for="neumorphism">
<div class="switch">
<div class="dot"></div>
</div>
<span>Neumorphism</span>
</label>
<span>... not allowed to toggle again :(</span>
</div>
@git2358
git2358 / farewell-kobe-mambaout-css-toggle-effect.markdown
Created February 18, 2020 04:34
Farewell KOBE #mambaout #CSS Toggle Effect
@git2358
git2358 / plink-plonk.js
Created February 17, 2020 22:22 — forked from tomhicks/plink-plonk.js
Listen to your web pages