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
| I will give you a block of text. | |
| 1. Extract the key concepts, main ideas, and important details. | |
| 2. Organize them into a clear hierarchy suitable for a mind map. | |
| 3. Output ONLY a markdown (no explanation, no preface, no conclusion). | |
| 4. Do NOT include any sources (e.g. `[1]`) in the output | |
| Formatting rules: | |
| - Use a single level-1 heading (`#`) for the overall topic (usually the article title or core theme). | |
| - Use level-2 headings (`##`) for the main branches (big ideas, like the major colored spokes of a mind map). | |
| - Use level-3 headings (`###`) for first-level sub-branches under each main branch (supporting ideas, key arguments, or steps). |
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
| [Unit] | |
| Description=Monero Wallet RPC | |
| After=monerod.service | |
| [Service] | |
| User=satoshi | |
| Group=satoshi | |
| Type=simple | |
| ExecStart=/usr/local/bin/monero-wallet-rpc --rpc-bind-ip=127.0.0.1 --disable-rpc-login \ |
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 | |
| TITLE=$1 | |
| MESSAGE=$2 | |
| PRIORITY=${3:-0} | |
| RETRY=${4:-60} | |
| EXPIRE=${5:-300} | |
| if [ -z "$TITLE" ]; then | |
| echo "No title provided" |
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
| [Unit] | |
| Description=Samourai Dojo | |
| After=bitcoind.service | |
| [Service] | |
| ExecStart=/home/satoshi/bin/dojo start | |
| ExecStop=/home/satoshi/bin/dojo stop | |
| User=satoshi | |
| Group=satoshi | |
| Type=forking |
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
| [Unit] | |
| Description=Umbrel Middleware | |
| Requires=lnd.service | |
| Wants=umbrel-manager.service | |
| After=umbrel-manager.service | |
| [Service] | |
| WorkingDirectory=/home/satoshi/source/umbrel/umbrel-middleware | |
| ExecStart=/usr/bin/yarn start | |
| PIDFile=/home/satoshi/.umbrel/umbrel-middleware.pid |
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
| [Unit] | |
| Description=Umbrel Manager | |
| Requires=lnd.service | |
| After=lnd.service | |
| [Service] | |
| WorkingDirectory=/home/satoshi/source/umbrel/umbrel-manager | |
| ExecStart=/usr/bin/yarn start | |
| PIDFile=/home/satoshi/.umbrel/umbrel-manager.pid |
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 | |
| URL=http://192.168.0.1 | |
| REFERER="$URL/index.html" | |
| URL_SET="$URL/goform/goform_set_cmd_process" | |
| URL_GET="$URL/goform/goform_get_cmd_process" | |
| CONTENT_PREVIEW_LENGTH=40 | |
| command -v jq >/dev/null 2>&1 || { echo >&2 "'jq' is required but not installed. Aborting."; exit 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
| #!/bin/bash | |
| ARGS=$* | |
| sudo apt-get update && sudo apt-get upgrade -y | |
| needs_update() { | |
| if [[ "$ARGS" == *force* ]]; then | |
| git pull > /dev/null | |
| else |
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
| [Unit] | |
| Description=ZTE SMS Forwarder | |
| [Service] | |
| User=pi | |
| Group=pi | |
| ExecStart=/home/pi/bin/zte-sms-forwarder.sh |
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
| [Unit] | |
| Description=ZTE SMS Forwarder timer | |
| [Timer] | |
| OnBootSec=10 | |
| OnUnitActiveSec=10 | |
| Unit=zte-sms-forwarder.service | |
| [Install] | |
| WantedBy=timers.target |
NewerOlder