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
| You will be analyzing a git diff and generating a well-structured commit message following conventional commit guidelines. | |
| Here is the git diff to analyze: | |
| <git_diff> | |
| </git_diff> | |
| Here is additional context about the change: | |
| <context> |
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
| TLDR; | |
| git clone https://github.com/libimobiledevice/idevicerestore | |
| mkdir -p limd-build | |
| cd limd-build | |
| curl -o ./limd-build-macos.sh -L https://is.gd/limdmacos | |
| bash ./limd-build-macos.sh | |
| Manual build |
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
| [Interface] | |
| Address = # e.g. 10.20.10.2/24 | |
| ListenPort = 33333 | |
| DNS = 8.8.8.8 | |
| PrivateKey = # ... | |
| [Peer] | |
| PublicKey = # server.conf public key | |
| Endpoint = # server IP:PORT | |
| AllowedIPs = # e.g. 10.20.10.0/24 or 0.0.0.0/0 |
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
| $env:USERPROFILE\.ssh\SSH_PRIVATE_KEY | |
| # instead of C:\Users\USERNAME.ssh\SSH_PRIVATE_KEY |
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
| import marimo | |
| __generated_with = "0.19.7" | |
| app = marimo.App(width="medium") | |
| @app.cell | |
| def _(): | |
| import pandas as pd | |
| import pyarrow |
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
| package main | |
| import ( | |
| "context" | |
| "fmt" | |
| "log" | |
| "://github.com" | |
| "://github.com/pgconn" | |
| ) |
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
| container kill mattermost-tbot | |
| container rm mattermost-tbot | |
| container volume delete mattermost-tbot-data | |
| container volume delete mattermost-tbot-logs | |
| container volume delete mattermost-tbot-plugins | |
| container volume delete mattermost-tbot-db | |
| container volume delete mattermost-tbot-config | |
| container volume create mattermost-tbot-data |
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/sh -e | |
| rm -vrf ~/Library/Preferences/Ableton/ | |
| rm -vrf ~/Library/Preferences/Ableton/ | |
| rm -vrf ~/Library/Application Support/Ableton/ | |
| rm -vrf ~/Library/Caches/Ableton/ | |
| rm -vrf ~/Library/Preferences/com.ableton.live.* | |
| rm -vrf ~/Library/Application Support/Propellerhead Software/ReWire/'Ableton Live Engine'* |
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
| const url = "https://sourcehut.org/blog/2020-04-20-prioritizing-simplitity/"; | |
| const readingTime = require('reading-time'); | |
| const innertext = require('innertext'); | |
| const https = require('https'); | |
| https.get(url, function(res) { | |
| console.log(res.statusCode); | |
| res.setEncoding('utf8'); | |
| res.on('data', function(data) { |
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
| alias gi="git add -i" | |
| alias gv="git commit -v" | |
| g() { | |
| case $1 in | |
| ai) | |
| git add -i | |
| ;; | |
| a) | |
| git commit -v --amend | |
| ;; |
NewerOlder