- Database Internas
- Microservice Patterns (manning)
- Clean Architecture (uncle bob)
| # virsh qemu-monitor-command DOMAIN '{"execute": "query-commands"}' --pretty | |
| # virsh qemu-monitor-command DOMAIN --hmp 'help' | |
| # virsh qemu-monitor-command instance-00000002 '{"execute": "query-status"}' | |
| {"return":{"status":"running","singlestep":false,"running":true},"id":"libvirt-5137"} | |
| # virsh qemu-monitor-command instance-00000002 '{"execute": "query-status"}' --pretty | |
| { | |
| "return": { | |
| "status": "running", |
| [Desktop Entry] | |
| Categories=Development; | |
| Comment=Supercharge your API workflow | |
| Exec="/home/hauthorn/Programs/Postman/Postman" | |
| Icon=/home/hauthorn/Programs/Postman/app/resources/app/assets/icon.png | |
| Name=Postman | |
| Terminal=false | |
| Type=Application | |
| Version=1.0 |
| curl --include \ | |
| --no-buffer \ | |
| --header "Connection: Upgrade" \ | |
| --header "Upgrade: websocket" \ | |
| --header "Host: example.com:80" \ | |
| --header "Origin: http://example.com:80" \ | |
| --header "Sec-WebSocket-Key: SGVsbG8sIHdvcmxkIQ==" \ | |
| --header "Sec-WebSocket-Version: 13" \ | |
| http://example.com:80/ |
1) Filter Table
Filter is default table for iptables. So, if you don’t define you own table, you’ll be using filter table. Iptables’s filter table has the following built-in chains.
| " Don't try to be vi compatible | |
| set nocompatible | |
| " Helps force plugins to load correctly when it is turned back on below | |
| filetype off | |
| " TODO: Load plugins here (pathogen or vundle) | |
| " Turn on syntax highlighting | |
| syntax on |