[](https://mermaid-js.github.io/mermaid-live-editor/edit#pako:eNqNU01vwjAM_StVTmxqD7sihjQNtNN24RopMo3bZUsdlKRMiPHf534wQLRsOVhR_J6f85zsRe40iqnILYSwMFB6qCQlvLr4goTe5AuI8AoEJfpk9p1lyQr91uS4pNzvNhH1KjrP2X-RnohchGgchQvas6PClLWHtcWVodJidNQxx_T68h3_NiaR4kGKJMvueUe8u3mFPslwRtcBwzjhoocutm4O2LDv0s1SypCJSk0C2iJNNINU4axGnybYKbBB6hN3j2-O8O7EJKhQuUJ9BM4XxuIphcfW-BytDqeMdaAnZ0VUgG1PPJz3PHLHocYvWmaLOGoTmuEpjS39TE_SuNj1exj2qQUro9PkCyw_jr_KD7-ns9qzWTgez-f_N-N6mAOFmhU6vFrvVOPPuML-t3-Rigp9BUbzp2wVpIjvWKEUU95qLKC2UQ
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
| PROMPT="$USER@%M" | |
| PROMPT+="%(?:%{$fg_bold[green]%}➜ : %{$fg_bold[red]%}➜ )" | |
| PROMPT+=' %{$fg[cyan]%}%c%{$reset_color%} $(git_prompt_info)' | |
| ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}git:(%{$fg[red]%}" | |
| ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} " | |
| ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗" | |
| ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})" |
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
| Anmelden | |
| Mein Profil | |
| Themen | |
| Von der Berliner Zeitung |
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
| ============================= test session starts ============================== | |
| platform linux -- Python 3.8.10, pytest-6.1.2, py-1.10.0, pluggy-0.13.1 | |
| rootdir: /home/kim/src/specter-desktop, configfile: pytest.ini | |
| plugins: cov-2.10.1 | |
| collected 104 items | |
| tests/test_checker.py . [ 0%] | |
| tests/test_cli_bitcoind.py .. [ 2%] | |
| tests/test_cli_server.py .... [ 6%] | |
| tests/test_config.py . [ 7%] |
We'll have some slides and will also have a look on the specter-shields (the hardware-side of Specter) but will soon do hands-on.
Content:
- Specter in general, who is it
- specter-solutions Webpage
- Twitter handle @SpecterWallet
- Contact Moritz Wietersheim e.g. via LinkedIn
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
| { | |
| "$id": "https://schemas.ory.sh/presets/kratos/quickstart/email-password/identity.schema.json", | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "title": "Person", | |
| "type": "object", | |
| "properties": { | |
| "email": { | |
| "type": "string", | |
| "format": "email", | |
| "title": "E-Mail", |
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
| // ==UserScript== | |
| // @name specter-desktop | |
| // @version 1 | |
| // @grant none | |
| // @include http://localhost:25441/* | |
| function addGlobalStyle(css) { | |
| var head, style; | |
| head = document.getElementsByTagName('head')[0]; | |
| if (!head) { return; } | |
| style = document.createElement('style'); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| # openssl x509 -in alice-tls.cert -text -noout | |
| Certificate: | |
| Data: | |
| Version: 3 (0x2) | |
| Serial Number: | |
| d6:a0:86:69:7e:b8:e1:ac | |
| Signature Algorithm: ecdsa-with-SHA256 | |
| Issuer: CN=localhost, O=lnd | |
| Validity | |
| Not Before: Jun 24 11:03:12 2018 GMT |
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
| #!/usr/bin/env python3 | |
| import sys | |
| if sys.version_info.major < 3: | |
| sys.stderr.write('Sorry, Python 3.x required by this example.\n') | |
| sys.exit(1) | |
| import requests | |
| import bitcoin |