Skip to content
View gokaybiz's full-sized avatar
🌪️
Focusing
🌪️
Focusing

Organizations

@binbirdata
Block or Report

Block or report gokaybiz

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Obfuscator-class Obfuscator-class Public

    Html sayfalarinizin belirli kisimlarini encode edebilen sinif

    PHP 1

  2. python's slice in javascript python's slice in javascript
    1
    Array.prototype.plice = function (el) {
    2
    	return ((el == -1) ? this.slice(el) : this.slice(el, el+1))[0] || undefined
    3
    }
  3. Iframe onclick Iframe onclick
    1
    /**
    2
    * Usage:
    3
    * 	try {
    4
    *		var Advert = new Advert('adscontainer1', 'https://google.com.tr/');
    5
    *		Advert.willClick().isOnHover();
  4. simple-php-bot simple-php-bot Public

    PHP

  5. twitterProfileTracker twitterProfileTracker Public

    Simple tool for logging tweets of a profile to mysql database

    JavaScript 1

  6. Add suffix between file name and ext... Add suffix between file name and extensions
    1
    func fileNameRename(fileName, suffix string) (newFName string) {
    2
    	exts := strings.Split(fileName, ".")
    3
    
                  
    4
    	newFName = exts[0] + "_" + suffix + fileName[len(fileName[0:len(exts[0])]):]
    5
    	return