Skip to content

Instantly share code, notes, and snippets.

View akrisiun's full-sized avatar

Andrius K akrisiun

View GitHub Profile
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
{
// 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
/**
* 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');
// 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 )
@akrisiun
akrisiun / Export each as SVG.js
Created March 4, 2016 20:11 — forked from vieron/Export each as SVG.js
Export each as SVG. Modified some lines from the original by Aaron Beall (http://fireworks.abeall.com/extensions/commands/Export/Export%20SVG.jsf) to export each selected object as a separate SVG file.
// 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
@akrisiun
akrisiun / bacula-fd.rb
Created April 26, 2016 22:30 — forked from derFunk/bacula-fd.rb
OSX brew formula for Bacula 5.2.6 to be compatible with current Debian Wheezy Bacula package.
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",
@akrisiun
akrisiun / mac-libgdiplus.sh
Last active May 29, 2016 10:32 — forked from mtolly/mac-libgdiplus.sh
How to build and install the Mono libgdiplus.dll on a Mac with Homebrew
#!/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
# linux (assuming you symlinked already)
code () { /usr/local/bin/code -n $* }
# osx
code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* }
using System;
using OpenQA.Selenium;
using OpenQA.Selenium.Edge;
using OpenQA.Selenium.Remote;
namespace EdgeDriverTests
{
public class Program
{
/*
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" />