Skip to content

Instantly share code, notes, and snippets.

View strictlymomo's full-sized avatar

Momo Araki strictlymomo

View GitHub Profile
@strictlymomo
strictlymomo / quasicrystals.html
Created June 11, 2021 20:29
Quasicrystals Graphic Synthesizer
<!DOCTYPE html>
<meta charset="utf-8" />
<title>Quasicrystals</title>
<body>
<div class="ui">
<!-- RED -->
<div class="group">
<div class="vec">
<header>RED</header>
<div>
@strictlymomo
strictlymomo / v5avalanchemin.js
Created June 10, 2021 18:37
Fix for burned avax
var formatter = new Intl.NumberFormat('en-US', {style: 'currency',currency: 'USD'});
function video() {let v = $('.section-hero .home-sectionhero-video iframe');v.attr('src','https://player.vimeo.com/video/543209885?api=1&background=1&autoplay=1&loop=1&muted=1');v.attr('webkitallowfullscreen mozallowfullscreen allowfullscreen');iframe = $('.section-hero .home-sectionhero-video iframe')[0];iframe = $(iframe);}
if ($('.section-hero .home-sectionhero-video iframe').length) {video();}
function header() {let h = 'header';let w = $('header + div').hasClass('style-white-header');if (w) $(h).addClass('style-white');$(window).scroll(function () {if ($(this).scrollTop() >= 1) {$(h).addClass('style-scroll');if (w) $(h).removeClass('style-white');} else {if (!$(h).hasClass('style-open')) {$(h).removeClass('style-scroll');if (w) $(h).addClass('style-white');}}});$('header .header-action').click(function () {if ($(h).hasClass('style-open')) {$(h).removeClass('style-open')} else {$(h).addClass('style-open');$(h).addClass('s
@strictlymomo
strictlymomo / EthereumFunctions.csv
Created November 14, 2019 19:55
Decode Ethereum Function Signatures
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
name
0x3ba15036
0xb595b8b5
0x45466f3a
0x8d216186
0x03750d94
0x00
0x432ced04
0xb214faa5
0x41c0e1b5
@strictlymomo
strictlymomo / index.html
Last active May 26, 2022 00:25
Generative Art NFT Visualizer (fork of Ethereum NFT, Autoglyphs)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Momoglyphs Test Visualizer</title>
<link rel='icon' href='favicon/favicon.ico' type='image/x-icon'/ >
<script charset="utf-8" src="https://cdn.ethers.io/scripts/ethers-v4.min.js" type="text/javascript"></script>
<script charset="utf-8" src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.12.0/d3.min.js" type="text/javascript"></script>
@strictlymomo
strictlymomo / quora.js
Last active June 20, 2019 08:22
Quora Paywall
let elem = document.getElementsByClassName('_DialogSignupForm')[0];
elem.parentNode.removeChild(elem);
document.getElementsByClassName('signup_wall_prevent_scroll')[0].style.overflow = "scroll";
document.getElementsByClassName('ContentWrapper')[0].style.filter = "none";
@strictlymomo
strictlymomo / README.md
Created January 12, 2018 17:29
2D Force + WebGL

This block implements a 2D graph structure in three dimensional space using 3d-force-graph.

@strictlymomo
strictlymomo / .block
Last active November 10, 2016 15:13
Gooey effect - Data visualization showcase
license: mit
<!DOCTYPE html>
<html>
<head>
<script data-require="d3@3.5.3" data-semver="3.5.3" src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.3/d3.js"></script>
<style>
body {
font: 10px sans-serif;
}
<!doctype html>
<html>
<head>
<meta charset="UTF-8"/>
<title>MDN Example</title>
<script src="https://code.jquery.com/jquery-3.0.0.js" integrity="sha256-jrPLZ+8vDxt2FnE1zvZXCkCcebI/C8Dt5xyaQBjxQIo=" crossorigin="anonymous"></script>
<style>
#navigation {
position: fixed;