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
#!/usr/bin/env python | |
""" | |
Example on using Kqueue/Kevent on BSD/Mac | |
using Python. | |
The TCP server essentially echoes back the | |
message it receives on the client socket. | |
""" | |
__author__ = "Ishwor Gurung <[email protected]>" |
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
package main | |
import "fmt" | |
import "sort" | |
func main() { | |
m := map[string]int{ | |
"One": 1, | |
"Two": 2, | |
"Three": 3, |
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
/** | |
This code snippet shows how an Android activity can trigger a web based auth using webview and then use | |
the cookies from there to make subsequent calls to an API (since the api is checking the cookies to detect | |
sign in) | |
MyApplication: The root "controller" and the first activity in my app | |
OAuthLogin: A class that handles the web based login. | |
It montors the url change and if the user had been redirected to | |
a "success" page it sends out the cookie string to the root controller | |
Once the controller has the cookie, it sets those on the service that |