start new:
tmux
start new with session name:
tmux new -s myname
| #include <iostream> | |
| #include <string> | |
| #include <queue> | |
| using namespace std; | |
| class MapADT { | |
| public: | |
| MapADT(); | |
| MapADT(string filename); |
http://www.bredemeyer.com/links.htm
http://perfwork.wordpress.com/
http://blog.8thlight.com/uncle-bob/2012/08/13/the-clean-architecture.html
http://en.wikipedia.org/wiki/4%2B1_architectural_view_model
http://epf.eclipse.org/wikis/openup/core.tech.common.extend_supp/guidances/examples/four_plus_one_view_of_arch_9A93ACE5.html
To remove a submodule you need to:
| """ | |
| riesz_pyramid.py | |
| Conversion between Riesz and Laplacian image pyramids | |
| Based on the data structures and methodoligies described in: | |
| Riesz Pyramids for Fast Phase-Based Video Magnification | |
| Neal Wadhwa, Michael Rubinstein, Fredo Durand and William T. Freeman | |
| Computational Photography (ICCP), 2014 IEEE International Conference on | |
| Copyright (c) 2016 Jack Doerner |
# Key considerations for algorithm "RSA" ≥ 2048-bit
openssl genrsa -out server.key 2048
# Key considerations for algorithm "ECDSA" ≥ secp384r1
# List ECDSA the supported curves (openssl ecparam -list_curves)| { | |
| "env": { | |
| "browser": true, | |
| "node": true, | |
| "es6": true | |
| }, | |
| "plugins": ["react"], | |
| "ecmaFeatures": { |
| var net = require('net'); | |
| // creates the server | |
| var server = net.createServer(); | |
| //emitted when server closes ...not emitted until all connections closes. | |
| server.on('close',function(){ | |
| console.log('Server closed !'); | |
| }); |
Build in CMake with these params:
CMAKE_CXX_FLAGS:STRING= -fsanitize=address -fsanitize=leak -g
CMAKE_C_FLAGS:STRING=-fsanitize=address -fsanitize=leak -g
CMAKE_EXE_LINKER_FLAGS:STRING=-fsanitize=address -fsanitize=leak
CMAKE_MODULE_LINKER_FLAGS:STRING=-fsanitize=address -fsanitize=leak
Which can be done with: