Backend Architectures
ror, scala, jetty, erlang, thrift, mongrel, comet server, my-sql, memchached, varnish, kestrel(mq), starling, gizzard, cassandra, hadoop, vertica, munin, nagios, awstats
worker_processes 1; | |
events { | |
worker_connections 1024; | |
} | |
http { | |
map $http_user_agent $outdated { | |
default 0; | |
"~MSIE [1-10]\." 1; |
ror, scala, jetty, erlang, thrift, mongrel, comet server, my-sql, memchached, varnish, kestrel(mq), starling, gizzard, cassandra, hadoop, vertica, munin, nagios, awstats
{ | |
"verbose": true, | |
"ignore": [ | |
"node_modules", | |
".next", | |
"package.json" | |
], | |
"watch": [ | |
"examples/**/*", | |
"packages/model/src", |
# IgnoreList is a UTF-8 encoded .txt file that helps you specify single files, paths and rules | |
# for ignoring during the synchronization job. It supports "?" and "*" wildcard symbols. | |
# | |
# | |
# OS generated files # | |
$RECYCLE.BIN | |
$Recycle.Bin | |
System Volume Information | |
ehthumbs.db | |
desktop.ini |
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// choose either `'stable'` for receiving highly polished, | |
// or `'canary'` for less polished but more frequent updates | |
updateChannel: 'stable', |
{ | |
"jsc": { | |
"parser": { | |
"syntax": "ecmascript", | |
"jsx": false, | |
"dynamicImport": false, | |
"privateMethod": false, | |
"functionBind": false, | |
"classPrivateProperty": false, | |
"exportDefaultFrom": false, |
This pen explain how to use a svg
A Pen by Jimmy Moon on CodePen.
tell application "System Events" | |
key down {command} | |
keystroke {tab} | |
delay 0.2 | |
key up {command} | |
end tell |
mkdir -p ~/Library/KeyBindings && | |
echo '{ "₩" = ("insertText:", "`"); }' >> ~/Library/KeyBindings/DefaultkeyBinding.dict |
#include <iostream> | |
#include <string> | |
#include <map> | |
#include <cxxabi.h> | |
class RGB { | |
public: | |
using value_type = std::tuple<unsigned, unsigned, unsigned>; | |
RGB(unsigned r, unsigned g, unsigned b) : m_r(r), m_g(g), m_b(b) {} |