I hereby claim:
- I am crenshinibon on github.
- I am crenshinibon (https://keybase.io/crenshinibon) on keybase.
- I have a public key ASAia1MPHCokK-YNhwFneWjx2jbc-UajF1JVT-9uAmFBfQo
To claim this, I am signing this object:
| /* | |
| Nice little function to emulate, typing and deleting of text ... stolen from bun website | |
| */ | |
| const options = ["runtime", "package manager", "bundler", "test runner", "all-in-one toolkit"]; | |
| async function replaceTyper() { | |
| const typer = document.getElementById("typer"); | |
| const current = typer.innerText; | |
| const next = options[(options.indexOf(current) + 1) % options.length]; |
| <script> | |
| import { onMount, onDestroy } from 'svelte' | |
| import { Editor } from '@tiptap/core' | |
| import StarterKit from '@tiptap/starter-kit' | |
| let element | |
| let editor | |
| let content = "" | |
| onMount(() => { |
| <script> | |
| import Quill from 'quill'; | |
| import 'quill/dist/quill.core.css' | |
| import 'quill/dist/quill.snow.css' | |
| import { onMount } from 'svelte'; | |
| let editor; | |
| export let toolbarOptions = [ | |
| [{ header: 1 }, { header: 2 }, "blockquote", "link"], |
| export const prerender = false | |
| export const ssr = false | |
| export const actions = { | |
| default: async ( {request}) => { | |
| const data = await request.formData(); | |
| const content = data.get("content") | |
| return { | |
| content |
| This post links my 3Box profile to my Github account! Web3 social profiles by 3Box. | |
| ✅ did:3:bafyreieudfeyontcah4slpzqshpnufwez4ll2xexpo5svu4sxfpvwqld54 ✅ | |
| Create your profile today to start building social connection and trust online at https://3Box.io/ |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| /* CSS declarations go here */ | |
| html { | |
| margin: 0; | |
| padding: 0; | |
| } | |
| body { | |
| margin: 0; | |
| padding: 0; | |
| font-family: verdana; | |
| width: 100vw; |
| @prepareData = (colName) -> | |
| cur = _colCur colName | |
| _prepareData cur | |
| _colCur = (colName) -> | |
| col = _col colName | |
| cur = col.find({},{sort: {execDate: 1}}) | |
| _prepareData = (colCur) -> | |
| res = {} |
| <template name="perfMeasure"> | |
| <div class='measure-container'> | |
| <div class='graph-title'> | |
| <p>{{measureId}}</p> | |
| </div> | |
| <div class='graph-container' > | |
| <svg id={{measureId}} style="width:100%; height:100%"> | |
| </svg> | |
| </div> | |
| </div> |