http://example.com
http://example.com
var soundex = function (s) { | |
var a = s.toLowerCase().split(''), | |
f = a.shift(), | |
r = '', | |
codes = { | |
a: '', e: '', i: '', o: '', u: '', | |
b: 1, f: 1, p: 1, v: 1, | |
c: 2, g: 2, j: 2, k: 2, q: 2, s: 2, x: 2, z: 2, | |
d: 3, t: 3, | |
l: 4, |
.lower_roman+ol, .lower_roman+ul {list-style-type: lower-roman;} | |
.upper_roman+ol, .upper_roman+ul {list-style-type: upper-roman;} | |
.lower_alpha+ol, .lower_alpha+ul {list-style-type: lower-alpha;} | |
.upper_alpha+ol, .upper_alpha+ul {list-style-type: upper-alpha;} | |
.lower_greek+ol, .lower_greek+ul {list-style-type: lower-greek;} | |
.lower_latin+ol, .lower_latin+ul {list-style-type: lower-latin;} | |
.upper_latin+ol, .upper_latin+ul {list-style-type: upper-latin;} | |
.none+ol, .none+ul {list-style-type:none;} | |
.disc+ol, .disc+ul {list-style-type:disc;} | |
.circle+ol, .circle+ul {list-style-type:circle;} |
plotOptions: { | |
line : { | |
dataLabels : { | |
enabled : true, | |
formatter: function() { | |
var first = this.series.data[0], | |
last = this.series.data[this.series.data.length - 1]; | |
if ((this.point.category === first.category && this.point.y === first.y) || | |
(this.point.category === last.category && this.point.y === last.y)) { | |
return this.point.y; |
http://example.com
http://example.com
BEFORE YOU CONTINUE:
mrt
is no longer used with Meteor 1.0These days some people were discussing at meteor-talk group about running Meteor at Windows and I’ve recommended them using Vagrant. It’s a very developer-friendly piece of software that creates a virtual machine (VM) which let you run any operating system wanted and connect to it without big efforts of configuration (just make the initial installation and you have it working).
Many packages (I've tested) for running Meteor+Vagrant fails because Meteor writes its mongodb file and also other files inside local build folder into a shared folder between the Windows host and the Linux guest, and it simply does not work. So I've put my brain to work and found a solution: do symlinks inside the VM (but do not use ln. Use mount so git can follow it). It’s covered on
#!/usr/bin/env ruby | |
# | |
# Shorten a GitHub URL to a git.io URL | |
# v1.2.0 - Copyright (c) 2016 Ryan Sobol - The MIT License | |
# | |
# Usage: gitio URL [code] | |
# | |
# Examples: | |
# $ gitio https://github.com/ryansobol ryansobol | |
# https://git.io/ryansobol |
<iframe style="width: 100%; height: 600px" src="http://embed.plnkr.co/GvOO1itX8MG7zJLywSN8" frameborder="0" allowfullscren="allowfullscren"></iframe> |
using System.Linq; | |
using System.Web; | |
using System.Web.Mvc; | |
using System.Web.Optimization; | |
public static class HtmlHelperExtensions | |
{ | |
public static IHtmlString InlineScripts(this HtmlHelper htmlHelper, string bundleVirtualPath) | |
{ | |
return htmlHelper.InlineBundle(bundleVirtualPath, htmlTagName: "script"); |
Result: 1 | |
Items { | |
TemplateId: "BADGE_BATTLE_ATTACK_WON" | |
Badge { | |
BadgeType: BADGE_BATTLE_ATTACK_WON | |
BadgeRanks: 4 | |
Targets: "\nd\350\007" | |
} | |
} | |
Items { |
# Download latest dotnet/codeformatter release from github | |
$repo = "dotnet/codeformatter" | |
$file = "CodeFormatter.zip" | |
$releases = "https://api.github.com/repos/$repo/releases" | |
Write-Host Determining latest release | |
$tag = (Invoke-WebRequest $releases | ConvertFrom-Json)[0].tag_name |