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
# Git .gitignore file template by pocheptsov.com idea via Abdullin.com | |
# Syntax http://www.kernel.org/pub/software/scm/git/docs/gitignore.html | |
# Snippet http://gist.github.com/446133 | |
# Visual Studio | |
*.suo | |
*.user | |
*.cache | |
# Direcories |
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
#region | |
using System; | |
using System.Collections.Generic; | |
using System.Linq.Expressions; | |
using System.Web.Mvc; | |
using System.Web.Routing; | |
using JazzMeeting.Reporting; | |
using JazzMeeting.Utils.Extensions; | |
using Lokad.Reflection; |
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 Norm; | |
using Norm.Responses; | |
using Norm.Collections; | |
using Norm.Linq; | |
public class MongoSession { | |
private string _connectionString; | |
public MongoSession() { |
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
//where el - jQuery object | |
//var el = $(document); | |
$._data(el[0]).events |
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
//#r "System.Data" | |
//uncomment previous lines to debug in VS | |
using System; | |
using System.IO; | |
using System.Text; | |
using System.Text.RegularExpressions; | |
using System.Data; | |
using System.Data.SqlClient; | |
using System.Linq; |
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.Collections.Generic; | |
using System.IO; | |
using System.Net; | |
using System.Net.Http; | |
using System.Net.Http.Headers; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace HelloWorldRekognition |
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 void RegisterSoapExtension(Type type, int priority, PriorityGroup group) | |
{ | |
if (!type.IsSubclassOf(typeof(SoapExtension))) | |
{ | |
throw new ArgumentException("Type must be derived from SoapException.", nameof(type)); | |
} | |
if (priority < 1) | |
{ | |
throw new ArgumentOutOfRangeException(nameof(priority), priority, "Priority must be greater or equal to 1."); |
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
# optionally create plugins directory | |
mkdir $HOME/.bazaar/plugins | |
# clone plugin repository | |
cd $HOME/.bazaar/plugins | |
bzr branch lp:bzr-fastimport fastimport | |
# clone dependency repo | |
bzr branch lp:python-fastimport python_fastimport | |
python setup.py install |
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 System.Reflection; | |
using System.Text.RegularExpressions; | |
using System.Threading.Tasks; | |
using Xunit; | |
namespace TestsRunner | |
{ | |
public class Program |
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
[user] | |
email = [email]@gmail.com | |
name = slava pocheptsov | |
[push] | |
default = simple | |
[core] | |
symlinks = false | |
[color] | |
diff = auto | |
status = auto |
OlderNewer