Skip to content

Instantly share code, notes, and snippets.

View rizafr's full-sized avatar
🏠
Working from home

Riza rizafr

🏠
Working from home
  • Bobobox
  • Cimahi
  • 08:43 (UTC +07:00)
View GitHub Profile
/* 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;
@rizafr
rizafr / Chapter 6
Last active September 18, 2016 12:50
# 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)
@rizafr
rizafr / _.md
Created January 4, 2017 09:21
Arc Pie
@rizafr
rizafr / _.md
Created January 4, 2017 09:21
Arc Pie
@rizafr
rizafr / _.md
Created January 4, 2017 09:21
Arc Pie
@rizafr
rizafr / gammu-install-osx.md
Created May 17, 2017 13:56 — forked from tomysmile/gammu-install-osx.md
Gammu: Install on OSX 10.11 with Wavecom Modem M1306B

Configuring Gammu for Mac OSX 10.11

Requirements

Step by step:

  • Type below command :
@rizafr
rizafr / gammu-configure-mysql.md
Created May 27, 2017 07:19 — forked from tomysmile/gammu-configure-mysql.md
Gammu: Configuring SMSD in OSX using MySQL Database

Configuring Gammu in OSX with MySQL

Requirements:

Step by step:

  • Check the sql files in here
@rizafr
rizafr / nginx-tuning.md
Created October 11, 2018 06:27 — forked from denji/nginx-tuning.md
NGINX tuning for best performance

NGINX Tuning For Best Performance

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.

@rizafr
rizafr / slugify.js
Created January 28, 2019 04:21 — forked from mathewbyrne/slugify.js
Javascript Slugify
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
}
@rizafr
rizafr / nginx.conf
Created March 24, 2020 05:12 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048