Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
| 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 |
| 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 |
| <?php | |
| use Faker\Factory as Faker; | |
| abstract class ApiTester extends TestCase { | |
| /** | |
| * @var Faker | |
| */ | |
| protected $fake; |
| 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({ |
| var gulp = require('gulp'); | |
| var phpspec = require('gulp-phpspec'); | |
| var run = require('gulp-run'); | |
| var notify = require('gulp-notify'); | |
| gulp.task('test', function() { | |
| gulp.src('spec/**/*.php') | |
| .pipe(run('clear')) | |
| .pipe(phpspec('', { notify: true })) | |
| .on('error', notify.onError({ |
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
| <?php | |
| /** | |
| * UUID class | |
| * | |
| * The following class generates VALID RFC 4122 COMPLIANT | |
| * Universally Unique IDentifiers (UUID) version 3, 4 and 5. | |
| * | |
| * UUIDs generated validates using OSSP UUID Tool, and output | |
| * for named-based UUIDs are exactly the same. This is a pure | |
| * PHP implementation. |
| #!upstart | |
| description "MyApp" | |
| author "MyApp by charlie" | |
| env PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | |
| respawn | |
| start on runlevel [23] | |
| stop on shutdown |
| form i.icon.error { | |
| color: $assertive; | |
| } | |
| form input + i.icon.error { | |
| display: none; | |
| margin-left: 8px; | |
| } | |
| form.ng-submitted input.ng-invalid + i.icon.error { |
| <?php | |
| use Illuminate\Support\Collection; | |
| use Illuminate\View\View; | |
| class Navigation { | |
| public function compose(View $view) { | |
| $menu = new Collection; |