Skip to content

Instantly share code, notes, and snippets.

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

Abdul Latif Syafii bhill77

🏠
Working from home
  • Indonesia
View GitHub Profile
@bhill77
bhill77 / MunculSekali.php
Created September 27, 2017 07:37
jawaban
<?php
function munculSeklali($string)
{
$arr = str_split($string);
foreach ($arr as $key => $val) {
$tmp[$val] = isset($tmp[$val]) ? false : true;
}
$out = array_filter($tmp);
@bhill77
bhill77 / index.js
Created October 22, 2015 05:50
bower laravel elixir
var gulp = require('gulp'),
file = require('gulp-file'),
filenames = require('gulp-filenames'),
gulpif = require('gulp-if'),
imagemin = require('gulp-imagemin'),
beautify = require('gulp-jsbeautify'),
rename = require('gulp-rename'),
uglify = require('gulp-uglify'),
Elixir = require('laravel-elixir'),
merge = require('merge-stream'),
@bhill77
bhill77 / tutplus.pl
Last active September 26, 2015 06:30 — forked from rezzafr33/tutplus.pl
Tutplus Video Downloader
#!/usr/bin/perl
use strict;
use warnings;
use WWW::Mechanize;
use Getopt::Std;
use JSON;
require File::Temp;
use File::Temp ();
#
@bhill77
bhill77 / laracast.pl
Last active October 12, 2016 19:13 — forked from rezzafr33/laracasts.pl
#!/usr/bin/perl -T
use strict;
use warnings;
#
## Calomel.org ,:, Download Youtube videos and music using wget
## Script Name : youtube_wget_video.pl
## Version : 0.45
## Valid from : September 2014
@bhill77
bhill77 / IP Vimeo
Created February 14, 2015 09:23
IP Vimeo untuk bypass internet sensitif :p
74.113.233.128 vimeo.com
74.113.233.128 developer.vimeo.com
74.113.233.128 www.vimeo.com
74.113.233.133 player.vimeo.com
23.14.92.33 av.vimeo.com
23.7.48.29 secure-c.vimeocdn.com
23.235.40.143 f.vimeocdn.com
103.245.222.143 i.vimeocdn.com
114.4.39.224 pdl.vimeocdn.com
Route::get('pass/{password}', function($password){
return Hash::make($password);
});
@bhill77
bhill77 / macros.php
Last active August 29, 2015 14:09 — forked from antoniputra/macros.php
<?php
/**
* Usage..
* Just save this code to your helpers file (eg: routes, filters, etc...)
*
* Then..
* {{ Form::link('Delete Item', 'DELETE', route('anything.page'), array('class' => 'btn btn-primary'), 'Are you sure ?') }}
**/