Skip to content

Instantly share code, notes, and snippets.

@koitsu
koitsu / thorswap-notes.md
Last active April 6, 2024 10:55
koitsu's THORSwap notes

koitsu's THORSwap notes


This Gist has been replaced by the THORChain Ecosystem Community Guide accessible at https://tcecosystem.guide/.

All the same information is available there, albeit even more updated/recent. Additionally, there are multiple collaborators maintaining the new site, which should help improve the quality of the information.


@scooterpsu
scooterpsu / config.ps1
Last active December 30, 2022 04:36
Gotify client for Windows Notifications
$domain = "p.domain.com"
$token = "AAAAAAAA"
$useHeaders = $false
@bbsusheelkumar
bbsusheelkumar / AdbCommands
Last active January 8, 2023 09:24 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@Pulimet
Pulimet / AdbCommands
Last active May 26, 2024 12:56
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@mikhailov
mikhailov / nginx.conf
Last active October 7, 2018 10:15
Jira connection optimised (Nio enabled, gzip disabled on Tomcat, but enabled on Reverse proxy side, Proxy with HTTP 1.1 keep-alive, SSL offload, SPDY). Nginx 1.5.10+ recommended.
echo 'events {
worker_connections 1024;
}
error_log /usr/local/Cellar/nginx/1.5.8/error.log;
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
@chriszarate
chriszarate / imgcat.sh
Created June 8, 2012 13:12
Concatenate images with ImageMagick
# If you want to append images horizontally, use this command
convert image1.jpg image2.jpg image3.jpg +append result.jpg
# If you want to append them vertically, change the + to a -
convert image1.jpg image2.jpg image3.jpg -append result.jpg
# Source: http://snipplr.com/view/10360/