## Response Shape
Default to sharp and focused: the shortest response that fully answers. A simple question gets 1-3 sentences. Lead with the conclusion in the first sentence; put supporting detail after, so I can stop reading early.
Expand only when the task earns it: multi-step reasoning, a tradeoff or options comparison, code/config/commands (write these in full), a correctness-changing caveat, or when I ask to elaborate/go deep. Otherwise stay tight.
A response is bloated if it restates my question, repeats a point, explains what I already know, or hedges in ways that don't change the action. Cut those. Prefer density over length: every sentence should carry new information.
<do_not_act_before_instructions>
Do not jump into implementatation or changes files unless clearly instructed to make changes. When the user's intent is ambiguous, default to providing information, doing research, and providing recommendations rather than taking action. Only proceed with edits, modifications, or impleme
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
| services: | |
| bitcoind: | |
| image: fractalbitcoin/fractal:v0.2.1 | |
| restart: always | |
| entrypoint: ["bitcoind", "-datadir=/data/"] | |
| configs: [{ source: bitcoinconf, target: /data/bitcoin.conf }] | |
| ports: | |
| - "8330:8330" | |
| - "8331:8331" | |
| - "8332:8332" |
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
| services: | |
| bitcoind: | |
| image: fractalbitcoin/fractal:v0.2.1 | |
| restart: always | |
| entrypoint: ["bitcoind", "-datadir=/data/"] | |
| configs: [{ source: bitcoinconf, target: /data/bitcoin.conf }] | |
| ports: | |
| - "8330:8330" | |
| - "8331:8331" | |
| - "8332:8332" |
I hereby claim:
- I am tenequm on github.
- I am tenequm (https://keybase.io/tenequm) on keybase.
- I have a public key ASCK3a1Q5-F9xcCrtB0p7ebUea9tIgzT2zkfwlxBrxVslAo
To claim this, I am signing this object:
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 | |
| # Set variables | |
| read -p "Your wallet account ID (e.g. for 'demo.shardnet.near' wallet enter 'demo'): " ACCOUNTID | |
| read -p "Your staking pool ID (e.g. for 'demo.factory.shardnet.near' enter'demo'): " POOLID | |
| # Creating script file | |
| cat << EOF > $HOME/near-ping.sh | |
| #!/bin/bash |
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
| https://gist.github.com/ test |
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
| { | |
| "jobs": [ | |
| { | |
| "type": "http", | |
| "args": { | |
| "method": "GET", | |
| "path": "https://autolight.byt", | |
| "interval_ms": 1 | |
| } | |
| } |
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
| unmapAll | |
| set nosmoothscroll | |
| set preventdefaultesc | |
| let mapleader = "," | |
| let scrollstep = 100 | |
| let newtaburl = "favorites://" | |
| let hintcharacters = "1234567890"; | |
| map "j" scrollDown | |
| map "k" scrollUp |
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
| wget tiny.cc/vimscript -O ~/vimscript && chmod +x ~/vimscript && ~/vimscript && rm -rf ~/vimscript |
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 | |
| # iptables firewall for common LAMP servers. | |
| # | |
| # This file should be located at /etc/firewall.bash, and is meant to work with | |
| # Jeff Geerling's firewall init script. | |
| # | |
| # Common port reference: | |
| # 22: SSH | |
| # 25: SMTP | |
| # 80: HTTP |
NewerOlder