[ Launch: Arc Pie ] 5f695874e44f625e9cb49672ec837ce2 by rizafr
/* Non-responsive overrides for Bootstrap 3 | |
* | |
* Utilize the following CSS to disable the responsive-ness of the container, | |
* grid system, and navbar. | |
*/ | |
/* Reset the container */ | |
.container { | |
max-width: none !important; | |
width: 970px; |
# Chapter 6 | |
# Jenis-jenis Refactoring | |
## Composing Method | |
### *Extract Method* | |
Semakin banyak baris kode di dalam sebuah method, semakin sulit mengetahui apa yang dilakukan oleh method tersebut, Hal ini yang menjadi alasan digunakannya *Extract Method* | |
Contoh : [*kode*](https://github.com/urbanindo/urbanindo-v2/blob/master/apps/desktop/modules/account/controllers/ListingsController.php#L30) | |
public function actionIndex($filter = null, $premium = null) |
[ Launch: Arc Pie ] 48f51dcc6f9ccf536ff3f71add9a6877 by rizafr
[ Launch: Arc Pie ] 04ca0aae958ff6e0e02d25e6ef466d74 by rizafr[ Launch: Arc Pie ] 48f51dcc6f9ccf536ff3f71add9a6877 by rizafr
- Disconnect modem first
- Download and Install Driver USB Prolific for PL2303 Mac OS X
- Reboot Mac
- Install Homebrew
- Type below command :
- Install Gammu
- Install MySQL v5.5 (not working with 5.6 >)
- Install wget
- Check the sql files in here
Moved to git repository: https://github.com/denji/nginx-tuning
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.
function slugify(text) | |
{ | |
return text.toString().toLowerCase() | |
.replace(/\s+/g, '-') // Replace spaces with - | |
.replace(/[^\w\-]+/g, '') // Remove all non-word chars | |
.replace(/\-\-+/g, '-') // Replace multiple - with single - | |
.replace(/^-+/, '') // Trim - from start of text | |
.replace(/-+$/, ''); // Trim - from end of text | |
} |
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |