This file contains 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 -S npx zx@dev --install --experimental --shell=/bin/zsh --quiet | |
import 'zx/globals'; | |
import fs from 'fs-extra'; | |
import { json2ts } from 'json-ts'; | |
import plist from 'plist'; | |
import _ from 'lodash'; | |
import { runAppleScript } from 'run-applescript'; | |
import {execa} from 'execa' | |
const macrosFile = `/Users/nico/dotfiles/.config/karabiner/ts/src/utils/.kmacros`; |
This file contains 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 zsh | |
# https://chat.openai.com/share/274e189a-9252-43e2-9ffa-a20f0fa096f0 | |
tempfile=$(mktemp) | |
current_date=$(date +%Y-%m-%d) | |
# Run the AppleScript with the temporary file path, and in the background | |
osascript -e ' | |
on fetchTabsFromChrome(tempFilePath) | |
tell application "Google Chrome" |
This file contains 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
var e,t,o,s,n=Object.defineProperty,i=e=>{throw TypeError(e)},a=(e,t,o)=>((e,t,o)=>t in e?n(e,t,{enumerable:!0,configurable:!0,writable:!0,value:o}):e[t]=o)(e,"symbol"!=typeof t?t+"":t,o),c=(e,t,o)=>t.has(e)||i("Cannot "+o),l=(e,t,o)=>(c(e,t,"read from private field"),o?o.call(e):t.get(e)),p=(e,t,o)=>t.has(e)?i("Cannot add the same private member more than once"):t instanceof WeakSet?t.add(e):t.set(e,o),d=(e,t,o,r)=>(c(e,t,"write to private field"),r?r.call(e,o):t.set(e,o),o);const u=(()=>{if("undefined"!=typeof window&&"undefined"!=typeof api)return console.debug("api",api),api;throw new Error("api not found")})(),m={rosewater:"#f5e0dc",flamingo:"#f2cdcd",pink:"#f5c2e7",mauve:"#cba6f7",red:"#f38ba8",maroon:"#eba0ac",peach:"#fab387",yellow:"#f9e2af",green:"#a6e3a1",teal:"#94e2d5",sky:"#89dceb",sapphire:"#74c7ec",blue:"#87b0f9",lavender:"#b4befe",text:"#c6d0f5",subtext1:"#b3bcdf",subtext0:"#a1a8c9",overlay3:"#9ca3c0",overlay2:"#8e95b3",overlay1:"#7b819d",overlay0:"#696d86",surface2:"#565970",surface1:"#43465a" |
This file contains 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 csv | |
import json | |
import os | |
import time | |
from typing import Dict, List, Tuple | |
import click | |
import httpx | |
import pandas as pd | |
from icecream import ic |
This file contains 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
validation_images = [batch["image"] for batch in validation_dataset] # type: ignore | |
validation_labels = [batch["label"] for batch in validation_dataset] # type: ignore | |
def calculate_edit_distance(labels, predictions): | |
# Get a single batch and convert its labels to sparse tensors. | |
saprse_labels = tf.cast(tf.sparse.from_dense(labels), dtype=tf.int64) | |
# Make predictions and convert them to sparse tensors. | |
input_len = np.ones(predictions.shape[0]) * predictions.shape[1] | |
predictions_decoded = tf.keras.backend.ctc_decode( |
This file contains 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
// Mozilla User Preferences | |
// To change a preference value, you can either: | |
// - modify it via the UI (e.g. via about:config in the browser); or | |
// - set it within a user.js file in your profile (create it if it doesn't exist). | |
// | |
// Profile folder location on different systems: | |
// Windows: C:\Users\<username>\AppData\Roaming\Mozilla\Firefox\Profiles\xxxxxxxx.default | |
// Mac OS X: Users/<username>/Library/Application Support/Firefox/Profiles/xxxxxxxx.default | |
// Linux: /home/<username>/.mozilla/firefox/xxxxxxxx.default |
This file contains 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
// playwright-extra is a drop-in replacement for playwright, | |
// it augments the installed playwright with plugin functionality | |
import { chromium } from 'playwright-extra' | |
// Load the stealth plugin and use defaults (all tricks to hide playwright usage) | |
// Note: playwright-extra is compatible with most puppeteer-extra plugins | |
import StealthPlugin from 'puppeteer-extra-plugin-stealth' | |
// Add the plugin to playwright (any number of plugins can be added) | |
chromium.use(StealthPlugin()) |
I hereby claim:
- I am nicoandmee on github.
- I am nicomee (https://keybase.io/nicomee) on keybase.
- I have a public key ASCV0KNXgPBt-qJo11QwSbpH7Y_rxuEbPbYktvDU2MbOHwo
To claim this, I am signing this object:
This file contains 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
{ | |
"arrowParens": "always", | |
"bracketSameLine": true, | |
"bracketSpacing": true, | |
"embeddedLanguageFormatting": "auto", | |
"endOfLine": "lf", | |
"htmlWhitespaceSensitivity": "css", | |
"insertPragma": false, | |
"jsxSingleQuote": false, | |
"printWidth": 80, |
NewerOlder