# | ID | Language | Bytes | File |
---|---|---|---|---|
1 | @dO_ob_MMD | Matlab | 41 | mohammad.matlab |
2 | @mahdyfo | PHP | 42 | mahdyfo.php |
3 | @dO_ob_MMD | ES6 | 66 | mohammad.js |
4 | @SepehrDev | B4X | 141 | sepehr.b4x |
5 | @dO_ob_MMD | Batch | 148 | mohammad.bat |
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 | |
echo str_shuffle('ABCDEFGH'); | |
// may returns HGACBDEF | |
// unicode shuffle (qeremy [atta] gmail [dotta] com) | |
function str_shuffle_unicode($str) { | |
$tmp = preg_split("//u", $str, -1, PREG_SPLIT_NO_EMPTY); | |
shuffle($tmp); | |
return join("", $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
<?php | |
$a = array( 'a', 'e', 'i', 'o', 'u' ); | |
$b = array( 'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'q', 'r', 's', 't', 'v', 'w', 'x', 'y', 'z' ); | |
for( $i = 0; $i <= 20; $i++ ) { | |
shuffle($a); | |
shuffle($b); | |
echo $b[0]; | |
echo $a[0]; |
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
// Example for handling git through gulp. Useful receipt for sometimes ;) | |
// hive.ir - made by Ehsaan <[email protected]> | |
// gulpfile.js | |
var gulp = require( 'gulp' ); | |
var git = require( 'gulp-git' ); | |
var minifyCss = require( 'gulp-minify-css' ); | |
var uglify = require( 'gulp-uglify' ); | |
var concat = require( 'gulp-concat' ); | |
var fs = require( 'fs' ); |
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
function netstat( cb ) { | |
const spawn = require( 'child_process' ).spawn; | |
const netstat = spawn( 'netstat', [ '-e' ] ); | |
var resp = ''; | |
netstat.stdout.on( 'data', ( data ) => { | |
resp += data.toString(); | |
} ); | |
netstat.stdout.on( 'end', ( data ) => { |
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 TelegramBot = require( 'node-telegram-bot-api' ); | |
var token = 'XXXX'; | |
var bot = new TelegramBot( token, { polling: true } ); | |
var formats = {}; | |
var waitingFor = {}; | |
var messageText = {}; | |
bot.on( 'inline_query', function( query ) { | |
if ( query.query == '' ) return; |
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
const Telegraf = require( 'telegraf' ), | |
request = require( 'request' ), | |
Token = 'TOKEN HERE', | |
currentUsers = {}, | |
messages = {}, | |
Bot = new Telegraf( Token ); | |
Bot.command( 'start', ( ctx ) => { | |
ctx.replyWithHTML( `<b>Send/Forward me your files to get the direct link for it.</b> | |
Powered by @pwrtelegram` ); |
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
#!/bin/bash | |
mkdir -p Output | |
for f in *.mkv | |
do | |
filename="${f%.*}" | |
echo "Proccessing ${filename}.mkv" | |
if [ ! -f "${filename}.srt" ]; then |
I hereby claim:
- I am blacksuited on github.
- I am ehsaan_me (https://keybase.io/ehsaan_me) on keybase.
- I have a public key ASAvkWorqhcbwzf6gYedoAxccOazv5xy_Yc9-_MMo0YXlgo
To claim this, I am signing this object:
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
package main | |
import ( | |
"golang.org/x/tour/wc" | |
"strings" | |
) | |
func WordCount(s string) map[string]int { | |
fields := strings.Fields( s ) | |
output := map[string]int{} |
OlderNewer