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
| DO $$ | |
| <<outer_block>> | |
| declare | |
| left_rating int; | |
| left_player varchar(100); | |
| left_scoring int; | |
| right_rating int; | |
| right_player varchar(100); | |
| right_scoring int; | |
| begin |
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
| 047ee02e348d35995b5a85cb1eea393117ba447cc8755bd61e5e680c0bd1a07ad7cde18e2adee5cb9bd7e4da640d83f833b766aac5a6e3d08c8dd450ad372328ae;Roconda |
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
| ewrwerwreewr |
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 echo "hoi"; ?> |
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
| # to install the latest stable version: | |
| brew install scala --with-docs | |
| # to install scala-2.10.0-RC5: | |
| brew install https://raw.github.com/gist/4403133/scala.rb --with-docs | |
| # to switch versions (from https://github.com/mxcl/homebrew/wiki/External-Commands): | |
| brew switch scala 2.9.2 | |
| brew switch scala 2.10.0-RC5 |
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>mySQL user generator</title> | |
| <style> | |
| body, html { | |
| background-color: #E3E3E3; | |
| font: normal normal normal 1em Arial, sans-serif; | |
| } | |
| label { |
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 | |
| $file = dirname( __FILE__ ).'/lock.txt'; | |
| $lock = file_exists($file); | |
| if($lock) $lock = file_get_contents($file); | |
| if($lock && $lock != 'unlocked' && ((time() - $lock) < 120)) | |
| die('Het scriptje is al bezig! Wacht '.(120 - (time() - $lock)).'s.'); | |
| else file_put_contents($file, time()); | |
| echo 'ZWARE OPERATIE'; |
NewerOlder