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 | |
| error_reporting(E_ALL); | |
| ini_set('display_errors', TRUE); | |
| ini_set('display_startup_errors', TRUE); |
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
| =IF(OR(NETWORKDAYS(A3,NOW())=1, NETWORKDAYS(A3,NOW())=0),"YES","NO") |
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
| Chew your food, at least 25 times per bite. |
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
| javascript:(function(){$('*').css({ "font-family": "Comic Sans MS", "color": "yellow", "text-transform": "uppercase" });})(); |
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
| # we're using appcache to cache our stuff. | |
| <filesMatch "\.(html|htm|js|css|jpg|png|appcache)$"> | |
| Header set Cache-Control "no-cache" | |
| </filesMatch> |
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
| <FilesMatch "\.(pdf)$"> | |
| Header set Content-Type application/octet-stream | |
| Header set Content-Disposition "attachment" | |
| </filesMatch> |
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
| =if(roundup(HOUR(GoogleClock())+1+G1)>24; "Another Day";if(roundup(HOUR(GoogleClock())+1+G1)>12; concatenate(roundup(HOUR(GoogleClock())+1+G1)-12;"pm"); concatenate(roundup(HOUR(GoogleClock())+1+G1);"am"))) | |
| G1 | |
| =sum(D:D) | |
| D column contains the Estimated Time Remaining for each bug |
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
| package explodepizza | |
| import( | |
| "fmt" | |
| "net/http" | |
| "time" | |
| ) | |
| func init() { | |
| http.HandleFunc("/", handler) |
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
| function setup() | |
| displayMode(STANDARD) | |
| availableScenes = { Scene1() } | |
| currentScene = availableScenes[1] | |
| iparameter("SceneSelect",1,#availableScenes,1) | |
| parameter("Size",50,500,150) |
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
| function preload(source) { | |
| var i = new Image(); | |
| i.src = source; | |
| } |