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
describe('ng-upgrade test', () => { | |
beforeEach(async(() => { | |
angular.mock.module(appContextModule.name); | |
const ng1InjectorProvider = { | |
provide: '$injector', | |
useFactory: () => { | |
return { | |
'get': (token: string) => { | |
let dependency: {}|null = null; |
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
\version "2.16.1" | |
stemOff = { \override Staff.Stem #'transparent = ##t } | |
tick = \markup { | |
\raise #2 \fontsize #-5 \musicglyph #"scripts.rvarcomma" | |
} | |
% definition of the long bar | |
longbar = { | |
\override Rest #'font-size = #4 |
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
\version "2.16.1" | |
stemOff = { \override Staff.Stem #'transparent = ##t } | |
\score { | |
\new Staff \with { \remove "Time_signature_engraver" } | |
{ | |
\relative c' { | |
\cadenzaOn | |
\stemOff | |
f4 g (a) r1 bes4 a a g a a2 \bar "|" |
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
from flask import Flask | |
import happybase | |
app = Flask(__name__) | |
app.debug = True | |
@app.route("/") | |
def hello(): |
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
""" | |
A command-line client. Run `twistd -ny jsonrpc_dev.py` first before running this. | |
""" | |
# TODO: | |
# 1) pretty-print json | |
# 2) take hostname and port as optional parameters | |
import sys | |
from twisted.internet import reactor, protocol |
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.Text; | |
using System.Xml.Linq; | |
using System.Diagnostics; | |
namespace ConsoleApplication1 | |
{ | |
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
class FairnessWorkerSelectionStrategy: IWorkerSelectionStrategy<ProcessOrderMessage> | |
{ | |
const int availabilityThreshold = 3; | |
const int ordersPerCompanyAtOnce = 5; | |
/// <summary> | |
/// Map company id to number of recent orders placed for it | |
/// </summary> | |
Dictionary<long, int> companyRecentOrdersCount = new Dictionary<long,int>(); |
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
au BufRead,BufNewFile jquery.*.js set ft=javascript syntax=jquery | |
set nocompatible | |
set autoindent | |
set tabstop=2 | |
set showmatch | |
set vb t_vb= | |
set ruler | |
set nohls | |
set incsearch | |
syntax on |
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
sealed class Dumper | |
{ | |
static public string Dump(Node root) { | |
return Dump(root, new List<bool>{}); | |
} | |
// isLastPath - for every node in the current path, is it the last child? | |
static internal string Dump(Node n, List<bool> isLastPath) { | |
string bar = "¦"; | |
string junction = "+"; |
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 FluentNHibernate.Cfg; | |
using FluentNHibernate.Cfg.Db; | |
using FluentNHibernate.Mapping; | |
using NHibernate; | |
using NHibernate.Tool.hbm2ddl; | |
namespace nhib_test | |
{ |
NewerOlder