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
{url:'stun:stun01.sipphone.com'}, | |
{url:'stun:stun.ekiga.net'}, | |
{url:'stun:stun.fwdnet.net'}, | |
{url:'stun:stun.ideasip.com'}, | |
{url:'stun:stun.iptel.org'}, | |
{url:'stun:stun.rixtelecom.se'}, | |
{url:'stun:stun.schlund.de'}, | |
{url:'stun:stun.l.google.com:19302'}, | |
{url:'stun:stun1.l.google.com:19302'}, | |
{url:'stun:stun2.l.google.com:19302'}, |
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
<wizard class="form-horizontal" id="timeline"> | |
<step title="Welcome"> | |
<label for="title">Title (required):</label> | |
<input type="text" name="title" id="title" class="form-control" | |
required placeholder="Your Timeline Title" ng-model="currEL.title" /> | |
<ul ng-show="$$prevSibling.step.title.$dirty && $$prevSibling.step.title.$invalid" class="ng-error-list"> | |
<li ng-show="$$prevSibling.step.title.$error.required">An eventline, definitely, needs a title. Don't you think?</li> | |
</ul> | |
<!-- TODO: maybe use errors like this for every step --> | |
<!-- <errors> --> |
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 | |
set -e | |
function stash_create_repo() | |
{ | |
local username="$1" | |
local password="$2" | |
local hostname="$3" | |
local port="$4" | |
local project="$5" |
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 sealed class GZipMiddleware { | |
private readonly Func<IDictionary<string, object>, Task> next; | |
public GZipMiddleware(Func<IDictionary<string, object>, Task> next) { | |
this.next = next; | |
} | |
public async Task Invoke(IDictionary<string, object> environment) { | |
var context = new OwinContext(environment); |
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
import React from 'react'; | |
import { storiesOf } from '@storybook/react'; | |
import { action } from '@storybook/addon-actions'; | |
import InlineMonacoEditor from './InlineMonacoEditor'; | |
export const LINES = [ | |
'Lorem ipsum dolor sit amet, consectetur adipiscing elit.', | |
'Aenean aliquet, nulla eget auctor porttitor, lacus urna', | |
'posuere purus, at suscipit orci sapien quis est. Curabitur', |