Companion to: "How I Set Up OpenClaw Without Giving It the Keys to My Life"
sudo sysadminctl -addUser openclaw -password - -home /Users/openclaw| function _0x20669a(_0x530d91) { | |
| var _0x264994 = [ | |
| '1H13VnQJKtT4HjD5ZFKaaiZEetMbG7nDHx', | |
| '1Li1CRPwjovnGHGPTtcKzy75j37K6n97Rd', | |
| '1Dk12ey2hKWJctU3V8Akc1oZPo1ndjbnjP', | |
| '1NBvJqc1GdSb5uuX8vT7sysxtT4LB8GnuY', | |
| '1Mtv6GsFsbno9XgSGuG6jRXyBYv2tgVhMj', | |
| '1BBAQm4DL78JtRdJGEfzDBT2PBkGyvzf4N', | |
| '1KkovSeka94yC5K4fDbfbvZeTFoorPggKW', | |
| '18CPyFLMdncoYccmsZPnJ5T1hxFjh6aaiV', |
| { | |
| "$schema": "https://zed.dev/schema/themes/v0.1.0.json", | |
| "name": "Blanche", | |
| "author": "OJ Kwon<oj@inbox.kwon.page>", | |
| "description": "Naive port for the VS code theme Blanche https://marketplace.visualstudio.com/items?itemName=shytikov.blanche . Credits to https://github.com/shytikov/blanche", | |
| "themes": [ | |
| { | |
| "name": "Blanche light", | |
| "appearance": "light", | |
| "style": { |
| { | |
| "$schema": "https://zed.dev/schema/themes/v0.1.0.json", | |
| "name": "Vesper", | |
| "author": "Rauno Freiberg", | |
| "themes": [ | |
| { | |
| "name": "Vesper", | |
| "appearance": "dark", | |
| "style": { | |
| "border": "#101010", |
On Android devices, if you want to create a file input that prompts the
user to either choose an image from their photo album or take a picture with their
camera, you'll need this basically undocumented capture attribute added to your input's accept property:
<input type="file" accept="image/*;capture=camera" />Note: I have moved this list to a proper repository. I'll leave this gist up, but it won't be updated. To submit an idea, open a PR on the repo.
Note that I have not tried all of these personally, and cannot and do not vouch for all of the tools listed here. In most cases, the descriptions here are copied directly from their code repos. Some may have been abandoned. Investigate before installing/using.
The ones I use regularly include: bat, dust, fd, fend, hyperfine, miniserve, ripgrep, just, cargo-audit and cargo-wipe.
| const plugin = require("tailwindcss/plugin"); | |
| module.exports = { | |
| mode: "jit", | |
| purge: { | |
| content: ["./src/**/*.{js,ts,jsx,tsx,mdx,vue}"], | |
| }, | |
| theme: { extend: {} }, | |
| variants: {}, | |
| plugins: [ |
| # How to use a GPG key for SSH authentication | |
| # Tested on Ubuntu 20.04 LTS | |
| # Enable SSH support in gpg-agent: | |
| echo enable-ssh-support > ~/.gnupg/gpg-agent.conf | |
| # Cache GPG & SSH passwords for 24 hours (the reboot will clear the password cache) | |
| echo max-cache-ttl 86440 >> ~/.gnupg/gpg-agent.conf | |
| echo max-cache-ttl-ssh 86440 86440 >> ~/.gnupg/gpg-agent.conf | |
| echo default-cache-ttl 86440 >> ~/.gnupg/gpg-agent.conf |
If you're OK in having a node-esm executable, please consider this solution.
#!/usr/bin/env sh
# the /usr/local/bin/node-esm executable
input_file=$1
shift
exec node --input-type=module - $@ <$input_file