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
import mummy, mummy/routers | |
type | |
Context* = object | |
WillyRouter* = object | |
internal: Router | |
WillyHandler* = proc(request: Request, context: Context) {.gcsafe.} |
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
Chrome Web Store | |
Dear Developer, | |
Your Google Chrome item "Pushbullet" with ID: | |
chlffgpmiacpedhhbkiomidkjlcfhogd did not comply with our policies. | |
Your item is still published, but is at risk of being removed from the | |
Chrome Web Store. |
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
// Put this in app-wide initialization somewhere | |
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; | |
public class Connection | |
{ | |
private Thread thread; | |
private volatile bool listening; | |
private volatile int backoff; |