Skip to content

Instantly share code, notes, and snippets.

View markchadwick's full-sized avatar

Mark Chadwick markchadwick

  • Vistar Media
  • Philadelphia
View GitHub Profile
~$ curl -v -XOPTIONS -H "Access-Control-Request-Method: GET" http://localhost:12311/
* About to connect() to localhost port 12311 (#0)
* Trying 127.0.0.1... connected
* Connected to localhost (127.0.0.1) port 12311 (#0)
> OPTIONS / HTTP/1.1
> User-Agent: curl/7.21.6 (x86_64-pc-linux-gnu) libcurl/7.21.6 OpenSSL/1.0.0e zlib/1.2.3.4 libidn/1.22 librtmp/2.3
> Host: localhost:12311
> Accept: */*
> Access-Control-Request-Method: GET
>
import os
import errno
import json
from base64 import urlsafe_b64encode
from flask import Flask
from flask import Response
from flask import abort
from flask import request
from flask import session
// Unmarshal decodes the first document found within the in byte slice
// and assigns decoded values into the object pointed by out.
//
// Maps, pointers to structs and ints, etc, may all be used as out values.
// If an internal pointer within a struct is not initialized, goyaml
// will initialize it if necessary for unmarshalling the provided data,
// but the struct provided as out must not be a nil pointer.
//
// The type of the decoded values and the type of out will be considered,
// and Unmarshal() will do the best possible job to unmarshal values
package main
import (
"fmt"
)
func main() {
c := make(chan int)
close(c)
package main
import (
"fmt"
)
func whatsMyName() (string, error) {
return "", nil
}
>>> from datetime import datetime
>>> import time
>>> d = datetime.utcfromtimestamp(1343793600)
>>> time.mktime(d.timetuple())
1343808000.0
>>> time.mktime(d.utctimetuple())
1343811600.0
>>>
import pycurl
import sys
import time
from cStringIO import StringIO
def fetch(requets, concurrent=5):
multi = pycurl.CurlMulti()
Object.defineProperty process.env, 'TZ',
get: 'EST'
set: throw Error('Nice work, asshole')
probably_the_most_descriptive_name_in_the_word = 'data'
for segment in response.get(probably_the_most_descriptive_name_in_the_word, []):
#!/bin/bash
ex=0
while [ $ex -eq 0 ]; do
gom test ./net/ --v
ex=$?
sleep 0.1
done