ssh <server>
daemon off; | |
worker_processes 1; | |
events { worker_connections 1024; } | |
http{ | |
sendfile on; |
sysctl -w fs.file-max=12000500 | |
sysctl -w fs.nr_open=20000500 | |
ulimit -n 4000000 | |
sysctl -w net.ipv4.tcp_mem='10000000 10000000 10000000' | |
sysctl -w net.ipv4.tcp_rmem='1024 4096 16384' | |
sysctl -w net.ipv4.tcp_wmem='1024 4096 16384' | |
sysctl -w net.core.rmem_max=16384 | |
sysctl -w net.core.wmem_max=16384 | |
wget http://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb | |
sudo dpkg -i erlang-solutions_1.0_all.deb |
The MIT License (MIT) | |
Copyright (c) 2015 Justin Perry | |
Permission is hereby granted, free of charge, to any person obtaining a copy of | |
this software and associated documentation files (the "Software"), to deal in | |
the Software without restriction, including without limitation the rights to | |
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | |
the Software, and to permit persons to whom the Software is furnished to do so, | |
subject to the following conditions: |
We are seeking a Web Software Architect to join our team of talented software developers. As an architect, you'll work in a fast-paced agile environment. Our products are high-volume and highly available multi-tenant web applications written in PHP, Ruby, and Java serving millions of unique visitors each day. The Architect will be responsible for dictating design choices to software developers, including but not limited to: platforms, coding and technical levels. The Architect’s goal is to gain a complete understanding of the project needs and effectively communicate them to the software development team. The software architect spearheads all of the software development activities of the development team: he manages the full life cycle of the process, actively involves in the development of core modules, monitors research & new technologies, reviews codes and supervises any testing.
In Loosemonkies, we face many challenges and interesting problems to
As a Sr. Software Engineer, you will be part of a talented engineering team working on our core product and report directly to the Technical Lead/Manager. You, as part of your team, will be responsible for scoping, design, implementation, integration and maintenance of features and functionality for the product your team will focus on. You will be flexible and pragmatic with a positive “can do” attitude to delivering product to expected timelines, but you will also recognise the importance of good design, thorough QA and regular refactoring and code improvement. You are a great coder who enjoys challenging technical problems. You understand that problems have multiple solutions and you can evaluate them and choose the best one. You understand algorithms and code efficiency and can optimise your code for performance. You are able and willing to learn new technologies and approaches rapidly. Finally, you will enjoy working in a company where you are expected to take ownership and contribute at all levels.
Skil
Constraints | |
----------- | |
* Store initial discovery | |
* Identify Application setup and Store. Includes Elb and Web servers | |
* Store structure after caffeinate. Includes Elb, Cafe and Web servers | |
Proposed structure | |
---------------------------- | |
``` |
Constraints | |
----------- | |
* Store initial discovery | |
* Identify Application setup and Store. Includes Elb and Web servers | |
* Store structure after caffeinate. Includes Elb, Cafe and Web servers | |
Proposed structure | |
---------------------------- | |
``` |
#!/bin/bash | |
# ------------------------------------------------------------------------- | |
# Shell script to install development utilities | |
# ------------------------------------------------------------------------- | |
apt-get update | |
apt-get install git-core | |
apt-get install mercurial |
/* Media query and conditional styles | |
*---------------------------------------------*/ | |
/*styles for 800px and up!*/ | |
@media only screen and (min-width: 800px) { | |
body{background-color: #666; } | |
#container{width: 320px; min-height: 460px; background-color: #fff; margin: 0px auto 60px;} | |
}/*/mediaquery*/ |