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
Starting C:\Users\jocull\Documents\My Dropbox\Code\QT\QtTrayTime-build-desktop\debug\QtTrayTime.exe... | |
C:\Users\jocull\Documents\My Dropbox\Code\QT\QtTrayTime-build-desktop\debug\QtTrayTime.exe exited with code -1073741515 |
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
import random | |
import copy | |
""" | |
Fool's spool number reels reference: | |
1 1 1 1 | |
5 2 5 4 | |
4 2 2 3 | |
2 3 4 2 | |
3 3 3 3 |
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 | |
require_once('radio_functions.php'); | |
@dbconnect(); | |
ini_set('memory_limit', '512M'); | |
$limit = 0; | |
if(isset($_GET["limit"]) && is_numeric($_GET["limit"])) | |
$limit = $_GET["limit"]; | |
$until = 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
while true do | |
print("Ore regen process, begun") | |
wait(5) | |
function onTouch(part) | |
if part.Name == "UnrefinedGold" then | |
part:remove() | |
print("Ore removed") | |
wait(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
var windowingInitialized = !1, | |
inFullscreen = !1, | |
shortcutHashes = [ | |
["PokemonRed", 25, "PokemonRed.gb"], | |
["PokemonBlue", 26, "PokemonBlue.gb"], | |
["PokemonYellow", 27, "PokemonYellow.gbc"], | |
["PokemonSilver", 28, "PokemonSilver.gbc"], | |
["PokemonGold", 29, "PokemonGold.gbc"], | |
["PokemonCrystal", 30, "PokemonCrystal.gbc"], | |
["PokemonPinball", 31, "PokemonPinball.gbc"], |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- | |
IIS configuration sections. | |
For schema documentation, see | |
%windir%\system32\inetsrv\config\schema\IIS_schema.xml. | |
Please make a backup of this file before making any changes to it. |
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
#!/usr/local/bin/python | |
## {{{ http://code.activestate.com/recipes/273844/ (r3) | |
"""This demonstrates a minimal http upload cgi. | |
This allows a user to upload up to three files at once. | |
It is trivial to change the number of files uploaded. | |
This script has security risks. A user could attempt to fill | |
a disk partition with endless uploads. | |
If you have a system open to the public you would obviously want | |
to limit the size and number of files written to the disk. |
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 com.codefromjames; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import java.time.Duration; | |
import java.time.Instant; | |
import java.util.List; | |
import java.util.Random; | |
import java.util.concurrent.*; |