start new:
tmux
start new with session name:
tmux new -s myname
#Description | |
I'm listing premium sites that describe the latest technologies, mainly aimed for web engineers, front end engineers, mobile developers, back end engineers, OSX/iOSX, devOps practices, CI, BDD/TDD and system administrators. | |
I'm thinking in updating this every once in a while, so I'll be creating a Gist [here]() with this article code, so please feel free to drop in some suggestions and I'll update it in Coderwall. | |
I have purchased in some of their content, but I'll refrain to write a review until I tried them all. I won't neither list prices or rating, as probably the amount of courses I have don't represent a good sample. | |
Finally, I'm in no way related to any of those, but I would like other companies to share their employees training programs (if any) or resources provided as perks and which of the following they use. |
Notes on how to use AWS SNS: | |
1. Subscribe an HTTP endpoint (i.e. http://myhost/sns_endpoint) on AWS Console | |
2. AWS will send subscription confirmation right away | |
3. SNS_controller responds to subscription confirmation by sending confirmation using Fog. | |
4. Once AWS is happy, you can start sending notifications to your end point via SNS. |
//Auto playing vimeo videos in Android webview | |
mWebView.getSettings().setJavaScriptEnabled(true); | |
mWebView.getSettings().setAppCacheEnabled(true); | |
mWebView.getSettings().setDomStorageEnabled(true); | |
// how plugin is enabled change in API 8 | |
if (Build.VERSION.SDK_INT < 8) { | |
mWebView.getSettings().setPluginsEnabled(true); | |
} else { | |
mWebView.getSettings().setPluginState(PluginState.ON); |
I've done the same process every couple years since 2013 (Mountain Lion, Mavericks, High Sierra, Catalina) and I updated the Gist each time I've done it.
I kinda regret for not using something like Boxen (or anything similar) to automate the process, but TBH I only actually needed to these steps once every couple years...
// 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: { | |
// default font size in pixels for all tabs | |
fontSize: 14, | |
// font family with optional fallbacks |
For this configuration you can use web server you like, i decided, because i work mostly with it to use nginx.
Generally, properly configured nginx can handle up to 400K to 500K requests per second (clustered), most what i saw is 50K to 80K (non-clustered) requests per second and 30% CPU load, course, this was 2 x Intel Xeon
with HyperThreading enabled, but it can work without problem on slower machines.
You must understand that this config is used in testing environment and not in production so you will need to find a way to implement most of those features best possible for your servers.
echo "Creating an SSH key for you..." | |
ssh-keygen -t rsa | |
echo "Please add this public key to Github \n" | |
echo "https://github.com/account/ssh \n" | |
read -p "Press [Enter] key after this..." | |
echo "Installing xcode-stuff" | |
xcode-select --install |