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
| import sys | |
| if len(sys.argv) == 1: | |
| text = raw_input("Please enter a text: ") | |
| else: | |
| text = "" | |
| for i, arg in enumerate(sys.argv[1:]): | |
| text += arg | |
| if i < len(sys.argv)-2: | |
| text += " " |
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
| import sys | |
| if len(sys.argv) == 1: | |
| text = raw_input("Please enter binary data: ") | |
| chars = text.split() | |
| else: | |
| chars = sys.argv[1:] | |
| str_ = "" |
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
| i = setInterval(function() { | |
| $oldNumber=$("#number").html(); | |
| $.ajax({ | |
| url: 'action.php', | |
| type: 'POST', | |
| data: { | |
| action: "increase", | |
| }, | |
| success: function(result) { | |
| if($oldNumber<result){ |
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
| leet = 1337; | |
| i = setInterval(function() { | |
| $oldNumber=$("#number").html(); | |
| $oldNumber=parseInt($oldNumber); | |
| if($oldNumber>leet) { | |
| $action = "decrease"; | |
| } else if($oldNumber<leet) { | |
| $action = "increase"; | |
| } else { | |
| 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
| <!-- Don't forget to add this line to the head to disable zooming and scrolling on mobile devices --> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | |
| <script> | |
| var $tl=0,$intv,$txtColor="black",$time,$touch=false; | |
| $(document).ready(function() { | |
| post('request'); | |
| setInterval(tl,1000); |
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
| import sys | |
| d = { | |
| 'a': "([]+![])[![]+!![]]", | |
| 'b': "(typeof(![]))[![]+![]]", | |
| 'c': "([]+typeof([]))[!![]+!![]+!![]+!![]]", | |
| 'd': "([]+[][[]])[!![]+!![]]", | |
| 'e': "([]+!![])[!![]+!![]+!![]]", | |
| 'f': "([]+![])[![]+![]]", | |
| 'g': "([]+typeof([]+[[]]))[!![]+!![]+!![]+!![]+!![]]", |
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 | |
| ob_start(); | |
| chdir("./content"); | |
| $file = "./".$_GET["page"].".php"; | |
| if(!file_exists($file)) | |
| { | |
| $file = "./404.php"; | |
| } | |
| include($file); |
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
| $(document).ready(function() { | |
| $("a").click(clicklink); | |
| }); | |
| $(window).on("popstate", function(popstate) { | |
| var link = popstate.originalEvent.state || "/"; | |
| openlink(link); | |
| }); | |
| var clicklink = 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
| EDIT: Permanently moved to https://github.com/freundTech/surface-tools/tree/master/palmreject |
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
| interval = setInterval(function() { | |
| list = document.getElementsByTagName("a") | |
| for(i = 0; i < list.length; i++) { | |
| if(list[i].innerHTML.indexOf("Poke Back") > -1) { | |
| list[i].click() | |
| console.log("Poked someone") | |
| } | |
| } | |
| }, 3000) |
OlderNewer