I hereby claim:
- I am layoric on github.
- I am layoric (https://keybase.io/layoric) on keybase.
- I have a public key whose fingerprint is 135F AF1F 5D3D 50D3 DBA3 FB53 E636 C4A7 22FE 459D
To claim this, I am signing this object:
/// <summary> | |
/// Generic function to pull out string values between two identifiers | |
/// </summary> | |
/// <param name="document"></param> | |
/// <param name="startVal"></param> | |
/// <param name="endVal"></param> | |
/// <returns></returns> | |
private static List<string> GetAllValuesBetweenKeys(string document, string startVal, string endVal) | |
{ | |
string temp = document; |
string assemblyDirectory = Path.GetDirectoryName(System.Reflection.Assembly.GetCallingAssembly().Location); |
Assembly assembly = Assembly.LoadFile("...Assembly1.dll"); | |
Type type = assembly.GetType("TestAssembly.Main"); | |
if (type != null) | |
{ | |
MethodInfo methodInfo = type.GetMethod(methodName); | |
if (methodInfo != null) | |
{ | |
object result = null; | |
ParameterInfo[] parameters = methodInfo.GetParameters(); | |
object classInstance = Activator.CreateInstance(type, null); |
/// <summary> | |
/// Based on http://jakepoz.com/jake_poznanski__background_load_xna.html | |
/// </summary> | |
public class TextureLoader | |
{ | |
static TextureLoader() | |
{ | |
BlendColorBlendState = new BlendState | |
{ | |
ColorDestinationBlend = Blend.Zero, |
<system.webServer> | |
<staticContent> | |
<remove fileExtension=".dart" /> | |
<mimeMap fileExtension=".dart" mimeType="application/dart" /> | |
</staticContent> | |
</system.webServer> |
public override void Configure(Funq.Container container) | |
{ | |
//ServiceStack v3 | |
//SetConfig(new EndpointHostConfig {AllowFileExtensions = {"dart"}}); | |
//ServiceStack v4 | |
SetConfig(new HostConfig { AllowFileExtensions = {"dart"}}); | |
} |
var arrayToTable = function (array, numOfCols) { | |
var arrayLength = array.length; | |
var rows = [{ | |
columns: [] | |
}]; | |
var rowNum = 0; | |
for(var i = 0; i < arrayLength; i++) { | |
var rowMod = (i) % numOfCols; | |
if(rowMod === 0) { | |
rows.push({ |
app.directive('scrollTo', [function () { | |
"use strict"; | |
return { | |
restrict: 'EA', | |
controller: function ($scope) { | |
}, | |
link: function ($scope,$element,$attrs) { | |
if($attrs.scrollTo != null) { | |
var elementNameToScroll = $attrs.scrollTo; |
I hereby claim:
To claim this, I am signing this object: