I hereby claim:
- I am melonamin on github.
- I am melonamin (https://keybase.io/melonamin) on keybase.
- I have a public key whose fingerprint is 0A39 2EAC 485F 8A9B 7446 75D9 F99F 0A92 2E8C 58EE
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| - Haken | |
| - Flying Colors | |
| - John Petrucci | |
| - The Dear hunter | |
| - The Winery Dogs | |
| - Lunatica | |
| - Devin Townsend | |
| - Therion (Beloved Antichrist) | |
| - Toehider | |
| - Aurora |
| git init --bare $HOME/.cfg | |
| alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME' | |
| config config --local status.showUntrackedFiles no | |
| echo "alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME'" >> $HOME/.bashrc |
| #!/bin/bash | |
| # Required parameters: | |
| # @raycast.schemaVersion 1 | |
| # @raycast.title FSNotes Create New Note | |
| # @raycast.mode silent | |
| # Optional parameters: | |
| # @raycast.icon ./images/fsnotes-icon.png | |
| # @raycast.packageName FSNotes |
| import Foundation | |
| import Photos | |
| func requestPhotoLibraryAccess(completion: @escaping (Bool) -> Void) { | |
| PHPhotoLibrary.requestAuthorization { status in | |
| completion(status == .authorized) | |
| } | |
| } | |
| func fetchFavoritePhotos(startDate: Date) -> PHFetchResult<PHAsset> { |
| [package] | |
| name = "generate-datafusion-parquet" | |
| version = "0.1.0" | |
| edition = "2021" | |
| [dependencies] | |
| datafusion = "49" | |
| tokio = { version = "1", features = ["rt-multi-thread", "macros"] } |
| #!/usr/bin/env python3 | |
| import sys | |
| import os | |
| import json | |
| import tomllib | |
| from pathlib import Path | |
| def normalize_color(color): | |
| """Convert 0xRRGGBB or #RRGGBB to #RRGGBB format""" |