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; | |
using System.IO; | |
using System.Net; | |
using System.Text; | |
using Microsoft.VisualStudio.TestTools.UnitTesting; | |
namespace Google.ClientLogin.Example | |
{ | |
[TestClass] | |
public class CsharpAdWordsClientLogin |
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; | |
using System.IO; | |
using System.Net; | |
using System.Text; | |
using System.Web; | |
/// <summary> | |
/// Here is an example of calling the AdHoc reporting of the Google Adwords API v201109 | |
/// </summary> | |
public void GoogleAdwordsv201109_Adhoc_reports_CSharp_Example() |
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.Text.RegularExpressions; | |
using System.Web.Handlers; | |
using Cassette; | |
using Cassette.Configuration; | |
using Cassette.Scripts; | |
using Cassette.Stylesheets; | |
namespace SomeCompany.Web | |
{ | |
/// <summary> |
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; | |
using System.ComponentModel; | |
using System.Diagnostics; | |
using System.Threading; | |
using Microsoft.VisualStudio.TestTools.UnitTesting; | |
namespace BackgroundWorkerRestart.Tests | |
{ | |
[TestClass] | |
public class BackgroundWorkerRestartTest |
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
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | |
<s:Boolean x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=4CE831FF9AED4846BFBEB870FD43C301/@KeyIndexDefined">True</s:Boolean> | |
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=4CE831FF9AED4846BFBEB870FD43C301/Description/@EntryValue">RavenDB Index</s:String> | |
<s:String x:Key="/Default/PatternsAndTemplates/LiveTemplates/Template/=4CE831FF9AED4846BFBEB870FD43C301/Text/@EntryValue">using System.Linq;
 | |
using Raven.Client.Indexes;
 | |

 | |
namespace $Namespace$
 | |
{
 | |
public class $ClassName$ : AbstractIndexCreationTask<$ClassIndexFor$, $ClassName$.ReduceResult>
 | |
{
 |
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; | |
using AzureContrib.WindowsAzure.StorageClient; | |
using Microsoft.WindowsAzure; | |
using Microsoft.WindowsAzure.StorageClient; | |
using Xunit; | |
namespace Tests.Azure | |
{ | |
public class AzureIntegrationTests | |
{ |
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; | |
using System.Data.SqlClient; | |
using System.Linq; | |
using Dapper; | |
using Xunit; | |
namespace Dapper.Testing | |
{ | |
public class DapperyQueryTest | |
{ |
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
var exec = require("child_process").exec; | |
function start(response) { | |
console.log("Request handler 'start' was called."); | |
// find all Excel files recursively | |
exec("dir C:\\ *.xls /s", | |
{ timeout: 10000, maxBuffer: 20000*1024 }, | |
function (error, stdout, stderr) { | |
response.writeHead(200, {"Content-Type": "text/plain"}); |
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; | |
using System.Linq; | |
using Microsoft.WindowsAzure.Storage; | |
using Microsoft.WindowsAzure.Storage.Table; | |
using Elmah; | |
using System.Collections; | |
using Microsoft.WindowsAzure.ServiceRuntime; | |
namespace YouApplicationNameHere | |
{ |
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
<html> | |
<head> | |
<script src="http://rsvpjs-builds.s3.amazonaws.com/rsvp-latest.js"></script> // "rsvp-latest.js" | |
// Live example at http://jsfiddle.net/Elvislives/XVv3G/3/ | |
<title>File Reader With Promises RSVP and LocalStorage</title> | |
<style type="text/css"> | |
</style> | |
</head> | |
<body> |
OlderNewer