Skip to content

Instantly share code, notes, and snippets.

View morisono's full-sized avatar

morisono

View GitHub Profile
@tuliopc23
tuliopc23 / index.html
Created July 8, 2025 20:59
Liquid Glass Apple
<div class="container container--mobile">
<div class="glass-container glass-container--rounded glass-container--large">
<div class="glass-filter"></div>
<div class="glass-overlay"></div>
<div class="glass-specular"></div>
<div class="glass-content">
<div class="player">
<div class="player__thumb">
<img class="player__img" src="https://images.unsplash.com/photo-1619983081593-e2ba5b543168?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wzMjM4NDZ8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NDk1NzAwNDV8&ixlib=rb-4.1.0&q=80&w=400" alt="">
<div class="player__legend">
@mizchi
mizchi / rag.ts
Last active July 4, 2025 16:25
My Portable RAG
/**
* My Portable RAG
* $ pnpm add sqlite-vec @ai-sdk/google ai
* SQLite Vector Search + Google AI Embeddings
*
* Required environment variables:
* GOOGLE_GENERATIVE_AI_API_KEY=your-api-key
*
* Usage:
* # Index text content
@induratized
induratized / git-worktree.md
Created June 19, 2025 10:19
git worktree reference and best practices

🧾 Git Worktree Workflow — Best Practices and Automation


✅ Why Use git worktree in a Monorepo?

  • Work on multiple branches without switching or stashing.
  • Avoids dirty working directory issues.
  • Ideal for parallel development, review, testing, and fixes.
  • Keeps main worktree clean and focused.
@zr-tex8r
zr-tex8r / bxjaurl-README.md
Created June 18, 2025 12:56
LaTeX: urlパッケージでのフォント設定を和文に対応させる

bxjaurl

LaTeX: urlパッケージでのフォント設定を和文に対応させる

前提環境

  • フォーマット: LaTeX
  • エンジン: 不問
  • ただしメインの機能である「urlパッケージのフォント設定の和文対応」
@torvalds
torvalds / gist:6faadce34c56d53b2d5352da0c3cd093
Last active July 9, 2025 06:32
Not involved with any fishy crypto fishy business
I'm told that there are people claiming to "tokenize" my git repositories with my approval.
I just want to clarify that that is not the case. I do not believe in monetizing my repositories.
If you believe crypto-currencies are anything but a scam, I have a bridge to sell you.
But I'm not selling source code.
As there isn’t much movement here anymore, and I also feel that I’m repeating myself in many comments, I decided to do one last comment here to wrap this conversation up. It was very interesting and also valuable for me, but of course, at least partly, not very fun as well—mainly not because of the criticism toward my views and persona but because I think it’s a pity that there are such strong opinions and projections on something that should be mainly fun and connecting rather than dividing. And of course, the most emotional aspects of the conversation have been related to things that are much bigger than my plugin or anything I do business-wise. As you can imagine, spending a vast majority of my time developing and researching Artificial Intelligence—and based on the assumption that I’m not a horrible person who wants to trick people into giving me money, and that I’m actually focused on creating value for others (which, of course, also leads to money and is not charity work)—I have strong concerns regardin
@rikiTada
rikiTada / mise-isntall.sh
Created May 17, 2025 12:43
miseのインストールスクリプト
#!/bin/bash
curl https://mise.run | sh
~/.local/bin/mise --version
# output 👉 mise 2024.x.x
# bash install
echo 'eval "$(~/.local/bin/mise activate bash)"' >> ~/.bashrc
# local install (for the current .mise.toml)
@damek
damek / concatenated_DSPY_docs_5_12_2025.md
Last active May 25, 2025 18:43
Concatenated DSPy documentation (May 12, 2025)

dspy.Adapter

::: dspy.Adapter handler: python options: members: - call - acall

  • format
@NiravBhuva
NiravBhuva / .eslintrc.json
Created May 6, 2025 11:16
Basic .eslintrc for Node and React
{
"env": {
"browser" : true,
"node" : true,
"commonjs": true,
"es6" : true
},
"extends": "eslint:recommended",
"parser" : "babel-eslint",
"parserOptions": {