- http://478h5m1yrfsa3bbe262u7muv-wpengine.netdna-ssl.com/wp-content/uploads/2017/01/Sysdig_cheat_sheet_2017_download_version-2.pdf
- http://sysdig.org
Capture & write every system event to standard output
| all: build playbook | |
| build: | |
| cd library && go build -o helloworld helloworld_src.go && cd .. | |
| playbook: | |
| DEFAULT_MODULE_PATH=~/.ansible/plugins/modules:/usr/share/ansible/plugins/modules:./modules/ ansible-playbook play.yaml | |
| # vim:ft=make |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script id="MathJax-script" async | |
| src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"> | |
| </script> | |
| </head> | |
| <body> | |
| \begin{gather*} J(\Theta) = - \frac{1}{m} \sum_{i=1}^m \sum_{k=1}^K \left[y^{(i)}_k \log ((h_\Theta (x^{(i)}))_k) + (1 - y^{(i)}_k)\log (1 - (h_\Theta(x^{(i)}))_k)\right] + \frac{\lambda}{2m}\sum_{l=1}^{L-1} \sum_{i=1}^{s_l} \sum_{j=1}^{s_{l+1}} ( \Theta_{j,i}^{(l)})^2\end{gather*} |
Capture & write every system event to standard output
Modifications to pulsesvc.
Original pulsesvc binary md5sum: 7c17b24314af67bc7b86d4681884c844
Modified version md5sum: 274c9071501b6e66c75eec6e0f7d2559
Changes:
| Download code from sourceforge (.tar.gz) | |
| Deps needed: | |
| https://bitbucket.org/tecnoteca/cmdbuild-dependencies/downloads/ | |
| Uncompress and install: | |
| bash install-artifacts.sh | |
| Copy those deps to our m2 local cache: | |
| rsync -a . $HOME/.m2/repository/ |
| /dts-v1/; | |
| /plugin/; | |
| #include <dt-bindings/gpio/gpio.h> | |
| / { | |
| compatible = "brcm,bcm2835"; | |
| fragment@0 { | |
| target-path = "/"; |
| { | |
| "Version": "2012-10-17", | |
| "Statement": [ | |
| { | |
| "Effect": "Allow", | |
| "Principal": { | |
| "AWS": [ | |
| "*" | |
| ] | |
| }, |
| #!/bin/ruby | |
| require 'json' | |
| require 'stringio' | |
| # Complete the maxSubsetSum function below. | |
| def maxSubsetSum(arr) | |
| end |