I hereby claim:
- I am jbuedel on github.
- I am joshbuedel (https://keybase.io/joshbuedel) on keybase.
- I have a public key whose fingerprint is 5256 DCCF F1E3 0F86 D1D3 5BE7 5D5F 07E0 C325 02F9
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
cinst nodejs.install | |
npm install bless -g |
public class PaymentHistory : List<PaymentHistory.PaymentItem> | |
{ | |
public class PaymentItem | |
{ | |
public DateTime TransDate { get; set; } | |
} | |
public List<int> YearsAvailable { get; set; } | |
} |
$marginDirections: left, right, bottom, top; | |
$marginValues: 10, 20, 30, 40, 50, 60; | |
@for $marginDirection from 1 through length($marginDirections) { | |
@for $marginValue from 1 through length($marginValues) { | |
.add-#{$marginDirection}-#{$marginValue} { | |
margin-#{$marginDirection}: #{$marginValue}px; | |
} | |
} | |
} |
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'webHookProjectTabExtension' defined in URL [jar:file:/C:/Program%20Files/Apache%20Software%20Foundation/Tomcat%206.0/webapps/TeamCity/WEB-INF/lib/tcWebHooks-0.7.25.115.jar!/META-INF/build-server-plugin-WebHookListener.xml]: Unsatisfied dependency expressed through constructor argument with index 3 of type [jetbrains.buildServer.web.openapi.PluginDescriptor]: : No unique bean of type [jetbrains.buildServer.web.openapi.PluginDescriptor] is defined: Unsatisfied dependency of type [interface jetbrains.buildServer.web.openapi.PluginDescriptor]: expected at least 1 matching bean; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No unique bean of type [jetbrains.buildServer.web.openapi.PluginDescriptor] is defined: Unsatisfied dependency of type [interface jetbrains.buildServer.web.openapi.PluginDescriptor]: expected at least 1 matching bean | |
at org.springframework.beans.factory.supp |
// Type defs and helper methods - basic oo stuffs | |
type State = | |
| State of string * State seq | |
and User = | |
| User of string * int | |
let getContigs state = | |
match state with | |
| State(_,contigs) -> contigs |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
public class Class1 | |
{ | |
// This first attempt is simply a straight port to linq. I've kept the original optimization | |
// that short circuited on the first matching id. | |
static IList<ComponentInfo> ProcessWordComponentAndUploadInfos_ByJosh_Attempt1( |