This file contains hidden or 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 | |
| function munculSeklali($string) | |
| { | |
| $arr = str_split($string); | |
| foreach ($arr as $key => $val) { | |
| $tmp[$val] = isset($tmp[$val]) ? false : true; | |
| } | |
| $out = array_filter($tmp); |
This file contains hidden or 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'), | |
| 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'), |
This file contains hidden or 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
| #!/usr/bin/perl | |
| use strict; | |
| use warnings; | |
| use WWW::Mechanize; | |
| use Getopt::Std; | |
| use JSON; | |
| require File::Temp; | |
| use File::Temp (); | |
| # |
This file contains hidden or 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
| #!/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 |
This file contains hidden or 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
| 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 |
This file contains hidden or 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
| Route::get('pass/{password}', function($password){ | |
| return Hash::make($password); | |
| }); |
This file contains hidden or 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 | |
| /** | |
| * 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 ?') }} | |
| **/ |