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
#!/bin/bash | |
# Give the usual warning. | |
clear; | |
echo "[INFO] Automated Android root script started.\n\n[WARN] Exploit requires sdk module \"NDK\".\nFor more information, visit the installation guide @ https://goo.gl/E2nmLF\n[INFO] Press Ctrl+C to stop the script if you need to install the NDK module. Waiting 10 seconds..."; | |
sleep 10; | |
clear; | |
# Download and extract exploit files. | |
echo "[INFO] Downloading exploit files from GitHub..."; |
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
(1..100).each do |n| | |
magic = n % 3 * 7 + n % 5 * 11 | |
print 'Fizz' if [0, 11, 22, 33, 44].include? magic | |
print 'Buzz' if [0, 7, 14].include? magic | |
print n unless [0, 7, 11, 14, 22, 33, 44].include? magic | |
print "\n" | |
end |
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
puts(const*);main(){const*_=__COUNTER__+__COUNTER__+__COUNTER__+ | |
__COUNTER__+__COUNTER__-__COUNTER__+__COUNTER__+__COUNTER__ | |
+__COUNTER__-sizeof(void);auto/**/$=_,_$=$<<2,$$=(_$<<3)-_$ | |
,*$_=&$,(*main)()=puts;$=($=444)*0+$$*((($<<3)+($<<1))+1); | |
main(&0[$_]);{ | |
{{{{{{}}}}}}} | |
} |
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
function equal(obj1, obj2) { return (obj1 >= obj2 && obj1 <= obj2); } |
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
h1 { | |
/* e.g. */ | |
font-size: 5em; | |
/* problem */ | |
letter-spacing: 0.4em; /* have fun when they went */ | |
text-align: center; // both of them together!! | |
/* solution To fight end-of-line letter-spacing : */ |
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
template <typename T> | |
class CRTP | |
{ | |
}; | |
class Commonplace : public CRTP<Commonplace> | |
{ | |
}; |
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
template <typename T> | |
struct Commonplace | |
{ | |
typedef T Type; | |
}; |
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
#include <list> | |
class Wolf | |
{ | |
public: | |
typedef std::list<Wolf> Pack; | |
}; |
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
class Wolf | |
{ | |
public: | |
class Head | |
{ | |
}; | |
}; |
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
typedef int Integer; |
NewerOlder