- Open Run (Winkey-R or right-click Start menu), insert
"%PROGRAMFILES%\Mozilla Firefox\firefox.exe" -p
, press OK, to start Firefox profile manager. - You may be able to run simply
firefox -p
. Guide is written to be robust for system differences. - Press "Create Profile...".
- Press "Next".
- Insert a profile name. It can contain spaces. Example: "Web App 1"
- Now don't rush. It is easy to inadvertently change the default profile.
- Press "Finish".
- Press "Exit". If you instead pressed "Start Firefox" without unchecking "Use the selected profile without asking at startup": open Firefox profile manager again (read step 1), select your desired profile (probably "default"), enable the option "Use the selected profile [...]", press "Start Firefox", continue with the step after this.
- Open Run, insert:
"%PROGRAMFILES%\Mozilla Firefox\firefox.exe" --no-remote -P "Web App 1"
- Select the location field (Ctrl-L).
Replace every entry like InputTransaction1ID
with the actual value it describes.
Example:
- MultisigAddress →
9CXZXhnhp8HBx12Zr6JJmJmTm8qQWrsR6r
- InputTransaction1ID →
bde678d3497d794992840d37b30637b03ba0c72b4355cc48bc42bf261fddd9d9
- InputTransaction1N →
1
- TargetAddress1 →
8dueh4ZZnifxdeVezqm8kEPEiiq2XZkdCa
- Replace “[email protected]” with desired email address for Let's Encrypt notifications.
- Replace “esko.bar” with your domain.
_matrix._tcp.esko.bar SRV 10 0 8448 matrix.esko.bar.
This file contains 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
01000000e949fa58fd4e1dbaf4ac304e440e9705f7afcc6020efb5d021883912da662e0a9350228fb9fb9800000000ad53210234139729dd413c84a71a0bfd6f236790be861b37311cef3240277c940e4b0c0721023c41edc461814e825a0847f9031fddf9b2610bb91992724920107f5fd07b492221029684f165042b44197bce605d81e3e9b22acb8ae677ea4ea3412307b3ff26ea6e210304571109f4e9dd3ce67133df452375597d20f583894cdd8ed09c65a3a3e3be5a21034b0bd0f653d4ac0a2e9e81eb1863bb8e5743f6cb1ea40d845b939c225a1a80ff55aeffffffffbaf4ac304e440e9705f7afcc6020efb5d021883912da662e0a9350228fb9fb9801000000ad53210234139729dd413c84a71a0bfd6f236790be861b37311cef3240277c940e4b0c0721023c41edc461814e825a0847f9031fddf9b2610bb91992724920107f5fd07b492221029684f165042b44197bce605d81e3e9b22acb8ae677ea4ea3412307b3ff26ea6e210304571109f4e9dd3ce67133df452375597d20f583894cdd8ed09c65a3a3e3be5a21034b0bd0f653d4ac0a2e9e81eb1863bb8e5743f6cb1ea40d845b939c225a1a80ff55aeffffffffbaf4ac304e440e9705f7afcc6020efb5d021883912da662e0a9350228fb9fb9802000000ad53210234139729dd413c84a71a0bfd6f236790be861b37311cef3240277c940e4b0c0721 |
I hereby claim:
- I am jooize on github.
- I am esko (https://keybase.io/esko) on keybase.
- I have a public key whose fingerprint is 65BE F63E 7BC7 36FF 6A4D 2CE1 CDE7 CC5C 13C4 CFDB
To claim this, I am signing this object:
This file contains 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
# _plugins/indentation.rb | |
module Jekyll | |
module IndentFilter | |
def indent(content, indent = 0) | |
output = [] | |
pre_regexp = /<\/?pre[^>]*>/i | |
pre_list = content.scan(pre_regexp) | |
blocks = content.split(pre_regexp) |
This file contains 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
on run | |
set homeFolder to path to home folder as string | |
tell application "Finder" | |
open homeFolder | |
end tell | |
tell application "Finder" to activate | |
end run |