- 1Password
- Languagetool
- Clockwise
- Download table as CSV
- DuckDuckGo
- GoFullPage
- Google Docs Offline
- I still don't care about cookies
| { | |
| "blacklist": "@*://openai.com/*\n@*://theresanaiforthat.com/*\n*://www.tiktok.com/*", | |
| "blockColor": "default", | |
| "blockWholeSite": false, | |
| "dialogTheme": "default", | |
| "enableMatchingRules": false, | |
| "enablePathDepth": false, | |
| "hideBlockLinks": false, | |
| "hideControl": false, | |
| "highlightColors": [ |
Outubro de 2015
Aqui vai um truque simples para fazer mais gente ler o que você escreve: escreva como se estivesse falando.
Acontece alguma coisa com a maioria das pessoas quando começam a escrever. Elas passam a usar uma linguagem diferente da que usariam se estivessem conversando com um amigo. A estrutura das frases muda, até as palavras mudam. Ninguém usa “redigir” numa conversa informal. Você se sentiria um idiota dizendo “vou redigir um bilhete” em vez de “vou escrever um bilhete” falando com um amigo.
A gota d’água pra mim foi uma frase que li uns dias atrás:
| defaults write com.google.Chrome.plist ExtensionManifestV2Availability -int 2 | |
| defaults write com.brave.Browser.plist ExtensionManifestV2Availability -int 2 | |
| defaults write company.thebrowser.Browser.plist ExtensionManifestV2Availability -int 2 |
| #!/bin/bash | |
| if type "pkgx" &> /dev/null; then | |
| echo "pkgx is already installed" | |
| eval "$(pkgx --shellcode)" | |
| else | |
| echo "installing pkgx" | |
| eval "$(curl -Ssf https://pkgx.sh)" | |
| fi |
The name of the completion function for the command foo is $_comps[foo].
To see the code of a function myfunc, run echo -E $functions[myfunc], or just echo $functions[myfunc] if you have the bsd_echo option on, or print -rl $functions[myfunc]. So to see the code of the completion function for the command foo, run echo -E $functions[$_comps[foo]]. Alternatively, run which $_comps[foo] if the function name has no alias.
This shows the code without comments (and with normalized whitespace: it's a human-readable dump of the bytecode that zsh stores internally). If you want to see the original file defined in the code, run **[whence -v $_comps[foo]](http://zsh.sourceforge.net/Doc/Release/Shell-Buil
| Empty file to change the gist title |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Ansi 0 Color</key> | |
| <dict> | |
| <key>Alpha Component</key> | |
| <real>1</real> | |
| <key>Blue Component</key> | |
| <real>0.11575811356306076</real> |
| # Boilerplate for Python apps using OpenAI API. | |
| # From DeepLearning.ai's "ChatGPT Prompt Engineering for Developers" mini-course | |
| # First, these dependencies need to be installed: | |
| # | |
| # pip install openai python-dotenv | |
| import openai | |
| import os |