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
| { | |
| "data": [ | |
| { "name" : "Murat" , "hp" : 5 }, | |
| { "name" : "Serkan" , "hp" : 1001 }, | |
| { "name" : "Eray" , "hp" : 99999 }, | |
| { "name" : "Sefa" , "hp" : 1300000 }, | |
| { "name" : "Çağrı" , "hp" : 40000 }, | |
| { "name" : "Berk" , "hp" : 30000 }, | |
| { "name" : "Bınarcı" , "hp" : 1000 }, | |
| { "name" : "Osman" , "hp" : 400000 }, |
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 life = function (o) { | |
| var totalSec = 0; | |
| var timer; | |
| var time = function () { | |
| }; | |
| var random = function (from, to) { | |
| return Math.floor((Math.random() * to) + from); | |
| }; |
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 ( | |
| "fmt" | |
| "unsafe" | |
| ) | |
| func main() { | |
| fmt.Println("Hello, playground") | |
| hi := "HI" |
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
| /** | |
| * @module tost | |
| * @author eray arslan | |
| * @date may 2015 | |
| * | |
| * var sucuklu = new tost([]); | |
| * | |
| */ | |
| (function () { |
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
| /** | |
| * @module $art | |
| * author : eray arslan | |
| * | |
| * 8bit design thing with fuckin' javascript array | |
| * | |
| * Example | |
| * | |
| * var example = new $art({ | |
| * target : document.getElementById("example"), |
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
| /* | |
| prid.js 0.0.2 | |
| Eray Arslan | |
| For all details and documentation: (README.md) | |
| */ | |
| (function(root, factory) { | |
| if(typeof define === 'function' && define.amd) { |
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
| // | |
| // deep object cloning with pure javascript (jquery "extend" function based) | |
| // | |
| // full documantation : http://api.jquery.com/jquery.extend/ | |
| // | |
| var dolly = function() { | |
| var options, name, src, copy, copyIsArray, clone, target = arguments[0] || {}, i = 1, length = arguments.length, deep = false; | |
| if (typeof target === "boolean") { | |
| deep = target; target = arguments[ i ] || {}; i++; | |
| } |
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
| https://www.verot.net/socks.htm | |
| https://room362.com/post/2016/snagging-creds-from-locked-machines/ | |
| https://shoelace.style/ |
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 bot = require('node-telegram-bot-api'); | |
| var job = require('cron').CronJob; | |
| var env = process.env; | |
| var token = env['YESIM_TOKEN']; | |
| var target = env['YESIM_USER']; | |
| $bot = new bot(token, { | |
| polling: true |
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
| (+new Date() + "").split('').map(function (num) { | |
| return String.fromCharCode(97 + parseInt(num)); | |
| }).join(''); |