Skip to content

Instantly share code, notes, and snippets.

View ansarizafar's full-sized avatar

Zafar Ansari ansarizafar

View GitHub Profile
@ngxson
ngxson / FAQ.md
Last active March 24, 2025 07:02
convert ARM NEON to WASM SIMD prompt

Why did you do this?

Relax, I only have one Sunday to work on idea, literally my weekend project. So I tried Deepseek to see if it can help. Surprisingly, it works and it saves me another weekend...

What is your setup?

Just chat.deepseek.com (cost = free) with prompts adapted from this gist.

Does it work in one-shot or I have to prompt it multiple times?

@canadaduane
canadaduane / dlight-plugin.ts
Last active January 23, 2025 05:58
Bun loader for DLight
import type { BunPlugin } from "bun";
import { transform } from "@babel/core";
import dlight, { type DLightOption } from "babel-preset-dlight";
export const dlightPlugin = (): BunPlugin => ({
name: "bun-plugin-dlight",
setup(build) {
build.onLoad({ filter: /\.(view|model)\.[tj]s$/ }, async (args) => {
const options: DLightOption = {};
@vedantroy
vedantroy / demo.ts
Last active December 31, 2024 09:15
SQLite-backed key-value store with JS-like object manipulation and automatic JSON serialization.
import Database from 'better-sqlite3';
import { createDatabaseClient } from './proxy.ts';
// 1) Create an in-memory DB and your table(s).
const db = new Database(':memory:');
db.exec(`
CREATE TABLE users (
id TEXT PRIMARY KEY,
data JSON
);
@Makisuo
Makisuo / usage.tsx
Last active February 27, 2025 19:29
Pglite x Drizzle Live Query
const { data: accounts } = useDrizzleLive((db) =>
db.query.accounts.findMany({
limit: 100,
with: {
institution: true,
},
}),
)
@virattt
virattt / hedge-fund-agent-team-v1-4.ipynb
Created November 19, 2024 23:51
hedge-fund-agent-team-v1-4.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@theandrewbailey
theandrewbailey / avifify.sh
Last active October 1, 2024 11:38
avifify.sh - Encode PNGs into web optimized AVIF images
#! /bin/bash
set -e
readonly b="\033[1m" # bold text
readonly i="\033[3m" # italic text
readonly n="\033[0m" # normal text
readonly r="\033[0;31m" # red text
readonly u="\033[4m" # underlined text
readonly regexWidthSteps="×[1234567890¼½¾]+\.png$"
@ansarizafar
ansarizafar / readme.md
Created January 12, 2024 13:21 — forked from garth/readme.md
A Yjs provider for socketsupply

You can use it the same as you do with other yjs providers, but you have to pass it a socket which can be created with someting like this:

// set the peer id
const peerId = window.localStorage.getItem('peerId') ?? (await Encryption.createId())
window.localStorage.setItem('peerId', peerId)

// set the signing keys
const keySeed = window.localStorage.getItem('keySeed') ?? createId()
@kamilogorek
kamilogorek / _screenshot.md
Last active March 14, 2025 11:42
Clutter-free VS Code Setup
image
@jiamingkong
jiamingkong / langchain.ipynb
Created May 1, 2023 04:07
Using RWKV in langchain
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.