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 | |
if name == 'Foo': | |
foo() | |
elif name == "Bar': | |
bar() | |
else: | |
wtf() | |
numbers = ['one', 'two', 'three'] |
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
using (MyEntities context = new MyEntities()) | |
{ | |
// Query a collection | |
IQueryable<MyThing> thingsQuery = from thing in context.Things | |
where thing.Name == "Foo" | |
select product; | |
foreach (var t in thingsQuery) | |
{ | |
DoSomethingWith(t); | |
} |
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 blah.blah.blah; | |
import android.os.AsyncTask; | |
import org.apache.http.client.HttpClient; | |
import org.apache.http.client.ResponseHandler; | |
import org.apache.http.client.methods.HttpRequestBase; | |
import org.apache.http.impl.client.BasicResponseHandler; | |
import org.apache.http.impl.client.DefaultHttpClient; |
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
/** | |
* Create HttpPost request with a JSON string body, expecting a JSON response | |
*/ | |
private HttpPost createJSONPostRequest(String emailAddress, String data) throws JSONException, UnsupportedEncodingException | |
{ | |
JSONObject json = new JSONObject(); | |
json.put("protocolVersion", "1.0"); | |
json.put("emailAddress", emailAddress); | |
json.put("data", data); | |
String jsonString = json.toString(); |
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
static String FtpDownloadFileText(String fileURL, String userName, String password) | |
{ | |
var request = WebRequest.Create(fileURL); | |
request.Method = WebRequestMethods.Ftp.DownloadFile; | |
request.Credentials = new NetworkCredential(userName, password); | |
var response = (FtpWebResponse) request.GetResponse(); | |
var responseStream = response.GetResponseStream(); | |
var reader = new StreamReader(responseStream); |
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
using System.Collections.Generic; | |
using System.Xml.Serialization; | |
using System.IO; | |
public sealed class ServerConfig | |
{ | |
public sealed class Server | |
{ | |
[XmlAttribute("host")] | |
public string Host { get; set; } |
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
/// <summary> | |
/// Read contents of an embedded resource file | |
/// </summary> | |
private string ReadResourceFile(string filename) | |
{ | |
var thisAssembly = Assembly.GetExecutingAssembly(); | |
using (var stream = thisAssembly.GetManifestResourceStream(filename)) | |
{ | |
using (var reader = new StreamReader(stream)) | |
{ |
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
curl "http://gravatar.com/avatar/$(md5 -q -s [email protected])" > avatar.png |
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
/// <summary> | |
/// Extract an element value from an XML document | |
/// </summary> | |
/// <param name="xmlDocumentString">XML document string</param> | |
/// <param name="xmlns">XML namespace</param> | |
/// <param name="elementName">name of element whose value is to be returned</param> | |
/// <returns>System.String</returns> | |
/// <exception cref="System.Exception">thrown on failure</exception> | |
public static string GetXmlElementValue(string xmlDocumentString, string xmlns, string elementName) | |
{ |
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
public static DataSet CreateDataSetFromXMLString(string xml) | |
{ | |
var dataset = new DataSet(); | |
using (var sr = new StringReader(xml)) | |
{ | |
dataset.ReadXml(sr); | |
} | |
return dataset; | |
} |