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
find . -type f -perm +111 |
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
int main() | |
{ | |
int end_kids=1; | |
for (int kids=24; kids > end_kids; kids--) | |
{ | |
if (kids == 6) { end_kids = 2; } | |
else if (kids == 2) { end_kids = 1; } | |
} | |
} |
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 | |
$terrorists = 12; | |
while ($terrorists > 0) echo strval(--$terrorists / 0); | |
?> |
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
unzip jungle.zip -d house/ |
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
for(Actor actor : hollywood.getActorsList()){ | |
if((actor.getAge() > 60 && actor.getSuccessRate() < 0.25) || actor.getSalary() <= 500 || actor.isStuntman()){ | |
movie.getActorsList().add(actor); | |
} | |
} | |
movie.setHistory(null); | |
movie.setPlot(null); | |
movie.setDialogs(null); | |
movie.setSoundtrack(new File("C:UsersSlyMusicboom.wav")); | |
movie.setFrameTransitionEffect(new File("C:UsersSlyPicturesexplosion.gif")); |
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
SELECT TOP 50 * INTO boat FROM street where value > 100000 |
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
bool dead = false; | |
void goDeeper() | |
{ | |
if(dead == true) | |
return; | |
goDeeper(); | |
} |
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
Base.prototype = xy; |
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
require './app' | |
run Sinatra::Application |
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
source 'https://rubygems.org' | |
gem 'json', '~> 1.7.7' | |
gem 'twilio-ruby' | |
gem 'sinatra' | |
gem 'google-api-client' |