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
// ==UserScript== | |
// @name Yahoo Pick'em Drag n' Drop | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description No more awful confidence points UI! | |
// @author ajhodges | |
// @match https://football.fantasysports.yahoo.com/* | |
// @grant none | |
// @require http://code.jquery.com/jquery-3.4.1.min.js | |
// @require https://code.jquery.com/ui/1.12.1/jquery-ui.min.js |
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
/* | |
The MIT License (MIT) | |
Copyright (c) 2014 Ismael Celis | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is |
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
{ | |
"Description": "Template used to create the base network infrastructure for the Ethereum nodes", | |
"Outputs": { | |
"ALBSecurityGroup": { | |
"Description": "Security group for ETH ALB", | |
"Export": { | |
"Name": { | |
"Fn::Sub": "${AWS::StackName}-AlbSecurityGroup" | |
} | |
}, |
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
<?php | |
if(isset($_GET["blah"])){ | |
//check if correct | |
if($taxonguess == "taxon"){ | |
$correct = true; | |
} else { | |
$correct = false; | |
} | |
} | |
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
private byte readByte() { | |
ByteBuffer byteBuffer = ByteBuffer.allocate(1); | |
timeout.start("Timed out during protocol buffers message parsing"); | |
try { | |
int bytesRead = 0; | |
while(bytesRead==0) | |
bytesRead+=client.read(byteBuffer); | |
} catch (IOException e) { | |
//if (running) testMenu.createErrorDialog("Error", "Error parsing protobuf message", null); | |
return 0; |