This file contains 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
// ==UserScript== | |
// @name Astu Btech Syllabus | |
// @namespace http://maxyspark.com/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author MaxySpark | |
// @match http://www.astu.org.in/* | |
// @grant none | |
// ==/UserScript== |
This file contains 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
add_filter( 'wp_mail_from', 'wp4_new_mail_from' ); | |
function wp4_new_mail_from( $old ) { | |
return '[email protected]'; // Edit it with your official email address | |
} | |
add_filter('wp_mail_from_name', 'wp4_new_mail_from_name'); | |
function wp4_new_mail_from_name( $old ) { | |
return 'Webmaster'; // Edit it with your official name | |
} |
This file contains 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
// ==UserScript== | |
// @name Access Torrent Directly From Old Domain | |
// @namespace http://maxyspark.com/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author MaxySpark | |
// @match http://kat.cr/* | |
// @match http://extratorrent.cc/torrent/* | |
// @match http://torrentunblock.com/* | |
// @grant none |
This file contains 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
int fibo(int n){ | |
if(n==0 || n==1){ | |
return 1; | |
} else { | |
return fibo(n-1)+fibo(n-2); | |
} | |
} |
This file contains 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
int palindrome(int n) { | |
int a,rev=0; | |
a = n; | |
while(n!=0) { | |
rev = (rev*10) + (n%10); | |
n = n/10; | |
} | |
if(rev==a) { | |
return 1; | |
} else { |
This file contains 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 http = require('http'); | |
var fs = require('fs'); | |
var file = fs.createWriteStream("file.jpg"); | |
var request = http.get("http://i3.ytimg.com/vi/J---aiyznGQ/mqdefault.jpg", function(response) { | |
response.pipe(file); | |
}); |
This file contains 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 colors = require('colors'); | |
console.log(" ******************************************".rainbow.bold); | |
console.log(" ** **".rainbow.bold); | |
console.log("****".rainbow.bold + ("THIS SCRIPT IS CREATED BY: ").red.bold + "MAXYSPARK****".rainbow.bold); | |
console.log(" ** **".rainbow.bold); | |
console.log(" ******************************************".rainbow.bold); |
This file contains 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
//LETTERS | |
var keyA = 65; | |
var keyB = 66; | |
var keyC = 67; | |
var keyD = 68; | |
var keyE = 69; | |
var keyF = 70; | |
var keyG = 71; | |
var keyH = 72; | |
var keyI = 73; |
This file contains 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
// ==UserScript== | |
// @name Direct Download From fmovies | |
// @namespace http://maxyspark.com/ | |
// @version 0.1 | |
// @description Direct Download From fmovies | |
// @author MaxySpark | |
// @match http://fmovies.to/* | |
// @match https://fmovies.to/* | |
// @match http://9anime.to/* | |
// @grant none |
This file contains 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 childProcess = require('child_process'); | |
function runScript(scriptPath, callback) { | |
// keep track of whether callback has been invoked to prevent multiple invocations | |
var invoked = false; | |
var process = childProcess.fork(scriptPath); | |
// listen for errors as they may prevent the exit event from firing |
OlderNewer