- see
.vimrc
for vim config - see
init.vim
for nvim config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import jsonData from './developer-productivity.json' | |
const data = jsonData as Welcome; | |
export interface Welcome { | |
course: string; | |
url: string; | |
chapters: Chapter[]; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env PATH=$PATH:/opt/homebrew/opt/node@18/bin node | |
// Required parameters: | |
// @raycast.schemaVersion 1 | |
// @raycast.title Open Logseq Today's JW | |
// @raycast.mode fullOutput | |
// Optional parameters: | |
// @raycast.icon 📆 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
⢀⡀⠀⠀⠀⠀⠀⡄⠀⠀⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀ | |
⠀⠀⠀⠀⠀⠀⣏⠓⠒⠤⣰⠋⠹⡄⠀⣠⠞⣿⠀⠀ | |
⠀⠀⠀⢀⠄⠂⠙⢦⡀⠐⠨⣆⠁⣷⣮⠖⠋⠉⠁⠀ | |
⠀⠀⡰⠁⠀⠮⠇⠀⣩⠶⠒⠾⣿⡯⡋⠩⡓⢦⣀⡀ | |
⠀⡰⢰⡹⠀⠀⠲⣾⣁⣀⣤⠞⢧⡈⢊⢲⠶⠶⠛⠁ | |
⢀⠃⠀⠀⠀⣌⡅⠀⢀⡀⠀⠀⣈⠻⠦⣤⣿⡀⠀⠀ | |
⠸⣎⠇⠀⠀⡠⡄⠀⠷⠎⠀⠐⡶⠁⠀⠀⣟⡇⠀⠀ | |
⡇⠀⡠⣄⠀⠷⠃⠀⠀⡤⠄⠀⠀⣔⡰⠀⢩⠇⠀⠀ | |
⡇⠀⠻⠋⠀⢀⠤⠀⠈⠛⠁⠀⢀⠉⠁⣠⠏⠀⠀⠀ | |
⣷⢰⢢⠀⠀⠘⠚⠀⢰⣂⠆⠰⢥⡡⠞⠁⠀⠀⠀⠀ |
--- dump ---
- Activities
- Reading
- Watching
- Completed
- Paused
- Dropped
- Planning
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5oqq2216 | |
Ah-GMMJiP-MDEHWD-VXGQG-VJDRM-FFjJk-jlAXF | |
A ≠ a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { type ClassValue, clsx } from "clsx" | |
import { twMerge } from "tailwind-merge" | |
export function cn(...inputs: ClassValue[]) { | |
return twMerge(clsx(inputs)) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Loop through folders from 01 to 33 | |
for folder_number in {1..33}; do | |
folder=$(printf "%02d-" "$folder_number") # Format folder number with leading zero | |
# Find folders with the given prefix | |
folders_with_prefix=$(find . -maxdepth 1 -type d -name "$folder*") | |
# Loop through folders with the given prefix |
root layout.tsx
export const metadata: Metadata = {
// ...
icons: [{
rel: 'icon',
url: process.env.NODE_ENV === 'production' ? '/favicon.ico' : '/favicon-dev.ico',
}]
}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Target starting number for renaming (start at 64) | |
start_number=64 | |
# Iterate through folders in reverse, starting with folder number 51 | |
for i in {51..32}; do | |
old_name="${i}-" # Build the old folder name pattern | |
# Check if the folder exists |