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.Linq; | |
using System.Linq.Expressions; | |
using Remotion.Linq.Clauses; | |
using Remotion.Linq.Clauses.ExpressionTreeVisitors; | |
using Remotion.Linq.Parsing.Structure; | |
namespace Remotion.Linq.Sample | |
{ |
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
// Enumerable.cs | |
// Copyright (c) Microsoft. All rights reserved. | |
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | |
using System.Collections; | |
using System.Collections.Generic; | |
namespace System.Linq | |
{ | |
internal static class Enumerable |
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
/** | |
* Vertically center Bootstrap 3 modals so they aren't always stuck at the top | |
*/ | |
$(function() { | |
function reposition() { | |
var modal = $(this), | |
dialog = modal.find('.modal-dialog'); |
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
// https://github.com/pbhogan/TinyJSON/blob/master/TinyJSON/JSON.cs | |
public static void MakeInto<T>( Variant data, out T item ) | |
{ | |
item = DecodeType<T>( data ); | |
} | |
private static Dictionary<string,Type> typeCache = new Dictionary<string,Type>(); | |
private static Type FindType( string fullName ) |
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
// Fireworks JavaScript Command | |
// Exports current document state as SVG graphics format | |
// Install by copying to Fireworks/Configuration/Commands/ | |
// Run via the Commands menu in Fireworks | |
// Aaron Beall 2010-2011 | |
// Version | |
var VERSION = "0.6.1"; | |
// Params |
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
require 'formula' | |
class BaculaFd < Formula | |
homepage 'http://www.bacula.org/' | |
# you may exchange this download url to match the correct bacula source code, if Debian once updates it's own package | |
url 'http://downloads.sourceforge.net/project/bacula/z-older-releases/5.2.6/bacula-5.2.6.tar.gz' | |
def install | |
system "./configure", "--prefix=#{prefix}", | |
"--sbindir=#{bin}", | |
"--with-working-dir=#{var}/lib/bacula", |
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
#!/bin/bash | |
# First install XQuartz, then... | |
locate libgdiplus.dylib | |
brew install freetype fontconfig libpng pgk-config | |
pkg-config --cflags freetype2 | |
pkg-config --cflags freetype2 | |
ln -s /opt/X11/include/X11 /usr/local/include/X11 |
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
# linux (assuming you symlinked already) | |
code () { /usr/local/bin/code -n $* } | |
# osx | |
code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* } |
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 OpenQA.Selenium; | |
using OpenQA.Selenium.Edge; | |
using OpenQA.Selenium.Remote; | |
namespace EdgeDriverTests | |
{ | |
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
https://github.com/dotnet/corefx/blob/master/pkg/NETStandard.Library/NETStandard.Library.packages.targets | |
<?xml version="1.0" encoding="utf-8"?> | |
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<ItemGroup> | |
<Package Include="Microsoft.Win32.Primitives" /> | |
<Package Include="System.AppContext" /> | |
<Package Include="System.Collections" /> |
OlderNewer