Skip to content

Instantly share code, notes, and snippets.

View komposer-aml's full-sized avatar
🪖
Open to work

Albert Medrano-Lopez komposer-aml

🪖
Open to work
View GitHub Profile
@travyyx
travyyx / Typography.tsx
Created June 19, 2024 22:09
A shadcn ui typography file for heading and paragraphs
import React from 'react';
interface Props {
className?: string;
children: string;
}
const H1: React.FC<Props> = ({className, children}) => {
return (
<h1 className={`scroll-m-20 text-4xl font-extrabold tracking-tight lg:text-5xl ${className}`}>
@epicfilemcnulty
epicfilemcnulty / 2safetensors.py
Created September 13, 2023 20:21
convert pytorch weights to safetensors
import json
import os
import sys
from collections import defaultdict
from tqdm import tqdm
import argparse
import torch
from safetensors.torch import load_file, save_file
@ikrishagarwal
ikrishagarwal / setup-zsh-in-codespaces.md
Last active November 22, 2025 12:16
Setup starship, zsh suggestions and syntax highlight for your codespaces.