View gist:c26ff8d4487357bb5bb201006e0c461b
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# in node repl, type... | |
require('crypto').randomBytes(64).toString('hex') |
View console.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fontMerah = 'font-size:50px; font-weight:bold; color:red; -webkit-text-stroke:1px black;'; | |
const fontBiasa = 'font-family:helvetica; font-size:20px;' | |
console.log('%cStop!', fontMerah); | |
console.log('%cThis is a browser feature intended for developers. If someone told you to copy and paste something here to enable a Facebook feature or "hack" someone\'s account, it is a scam and will give them access to your Facebook account.', fontBiasa); | |
console.log('%cSee https://www.facebook.com/selfxss for more information.', fontBiasa); |
View my service on linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mysql mongod teamviewerd mssql-server nginx redis-server postgresql | |
# how to enable, disable, start, stop, and status | |
sudo systemctl enable <name_of_service> | |
sudo systemctl start <name_of_service> | |
sudo systemctl status <name_of_service> | |
sudo systemctl stop <name_of_service> | |
sudo systemctl disable <name_of_service> |
View gist:b46673e817848d7fae83e14b6a6b631f
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
After automatically updating Postgres to 10.3 via Homebrew, the pg_ctl start command didn't work. | |
The error was "The data directory was initialized by PostgreSQL version 9.6, which is not compatible with this version 10.3." | |
Database files have to be updated before starting the server, here are the steps that had to be followed: | |
# if default not linked to version 10.3 run this script,otherwise skip | |
# need to have both 9.6.x and latest 10.3 installed, and keep 10.3 as default | |
# brew unlink postgresql | |
# brew install postgresql@9.6 | |
# brew unlink postgresql@9.6 |
View php-gettersetter.sublime-snippet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[/** | |
* Getter for ${1:$SELECTION} | |
* | |
* @return ${2:mixed} | |
*/ | |
public function get${1/^(\w)|(?:_(\w))|(?:_)/(?1\u$1:)(?2\u$2:)/g}() | |
{ | |
return \$this->$1; | |
} |
View embuh.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$sepatuVarian = [ | |
'KTK001', | |
'KTK002', | |
'KTK003', | |
'KTK004', | |
'KTK005', | |
'KTK006' | |
]; | |
$varians = [ |
View .vimrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nocompatible " Disable vi-compatibility | |
set t_Co=256 | |
colorscheme xoria256 | |
set guifont=menlo\ for\ powerline:h16 | |
set guioptions-=T " Removes top toolbar | |
set guioptions-=r " Removes right hand scroll bar | |
set go-=L " Removes left hand scroll bar | |
set linespace=15 |
View BankIndonesia.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Kode | Nama Lengkap | |
---|---|---|
002 | PT. BANK RAKYAT INDONESIA (PERSERO), Tbk | |
008 | PT. BANK MANDIRI (PERSERO), Tbk | |
009 | PT. BANK NEGARA INDONESIA (PERSERO),Tbk | |
011 | PT. BANK DANAMON INDONESIA, Tbk | |
013 | PT. BANK PERMATA, Tbk (d/h PT BANK BALI Tbk) | |
014 | PT. BANK CENTRAL ASIA, Tbk. | |
016 | PT. BANK INTERNASIONAL INDONESIA, Tbk | |
019 | PT. PAN INDONESIA BANK, Tbk | |
022 | PT. BANK CIMB NIAGA, Tbk d/h NIAGA |
View ApiTester.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Faker\Factory as Faker; | |
abstract class ApiTester extends TestCase { | |
/** | |
* @var Faker | |
*/ | |
protected $fake; |
View Gulpfile.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var phpspec = require('gulp-phpspec'); | |
var run = require('gulp-run'); | |
var notify = require('gulp-notify'); | |
gulp.task('test', function(){ | |
run('clear', {'usePowerShell': true}).exec('Vinyl', function(){ | |
gulp.src('spec/**/*.php') | |
.pipe(phpspec('', { notify: true})) | |
.on('error', notify.onError({ |
NewerOlder