The following is the procedure I use on UNIX systems:
First, export all public certificates into a public keyring:
$ gpg --armor --export > pub.asc
Second, export all secret certificates into a secret keyring:
The following is the procedure I use on UNIX systems:
First, export all public certificates into a public keyring:
$ gpg --armor --export > pub.asc
Second, export all secret certificates into a secret keyring:
| [Interface] | |
| PrivateKey = x | |
| Address = 192.168.2.5/24 | |
| ListenPort = 21841 | |
| [Peer] | |
| PublicKey = x | |
| Endpoint = $public_ip:51820 | |
| AllowedIPs = 192.168.2.0/24 |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
| profile = cProfile.Profile() | |
| profile.enable() | |
| ''' | |
| code to profile | |
| ''' | |
| profile.disable() | |
| s = io.StringIO() | |
| ps = pstats.Stats(profile, stream=s).sort_stats('tottime').reverse_order() |
| <html> | |
| <body> | |
| Just open the chrome debugger and see wierd things | |
| <script> | |
| let x = { | |
| x: { | |
| x: 1 | |
| } | |
| } | |
| console.log(x.x.x) |
| let g:go_version_warning = 0 | |
| let g:syntastic_check_on_wq = 0 | |
| # let g:syntastic_c_include_dirs = ["/usr/local/cuda/include"] | |
| let g:NERDTreeWinPos = "left" | |
| let g:NERDTreeWinSize = 20 | |
| let g:syntastic_loc_list_height = 5 | |
| set nu | |
| set tabstop=2 | |
| set shiftwidth=2 | |
| set expandtab |
| export EDITOR=vim | |
| export LC_ALL=en_US.UTF-8 | |
| export TERM=xterm-256color | |
| # add timestamp to the right | |
| export RPROMPT="%{$fg_bold[green]%}%D{%m-%f} %*%{$reset_color%}" |
| # put this in your ~/.gitconfig, then issue `git lg` will get you a pretty git branch topology view | |
| # | |
| # this is just a start point, customizations can be done by further fine tuning referencing | |
| # https://git-scm.com/docs/git-log & https://git-scm.com/docs/pretty-formats | |
| # | |
| # --graph draws the git commits tree | |
| # --date=local is used in the following --format | |
| # | |
| # format explanation: | |
| # %C(colorname)xxx%C(reset) encloses text `xxx` with color `colorname` |