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
({ | |
baseUrl: "../js", | |
mainConfigFile: "../js/main.js", | |
optimize: "none", | |
name: "main", | |
//excludeShallow: ["jquery", "handlebars", "leaflet", "wax"], | |
out: "../js/main-built.js", | |
paths: { | |
jquery: 'empty:', |
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
({ | |
appDir: '../', | |
baseUrl: '../js/', | |
dir: '../../Website-build', | |
//optimize: 'none', | |
paths: { |
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 CrossUI.Touch.Dialog.Elements; | |
using System.Drawing; | |
using MonoTouch.UIKit; | |
using MonoTouch.Foundation; | |
using CrossUI.Touch.Dialog; | |
/// <summary> | |
/// Multiline entry element. | |
/// </summary> |
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
var data = { | |
"type": "FeatureCollection", | |
"features": [ | |
{ | |
"type": "Feature", | |
"properties": { | |
"name": "two" | |
}, | |
"geometry": { | |
"type": "Point", |
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
var data = { | |
"type": "FeatureCollection", | |
"features": [ | |
{ | |
"type": "Feature", | |
"properties": { | |
"name": "two" | |
}, | |
"geometry": { | |
"type": "Point", |
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
// Assumes LEGEND exists like in legend.js and that map is an already initialized Leaflet map | |
for(var i = 0; i < LEGEND.sections.length; i++) { | |
for(var j = 0; j < LEGEND.sections[i].keys.length; j++) { | |
L.marker([LEGEND.sections[i].keys[j].coordinates[0], LEGEND.sections[i].keys[j].coordinates[1]]) | |
.bindLabel(LEGEND.sections[i].keys[j].text, { noHide: true }) | |
.addTo(map) | |
.showLabel(); | |
} | |
} |
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
#--------------------------------------------------------------------------------------------------------------- | |
# NeverSink's Indepth Loot Filter | |
# VERSION 2.0 - Full | |
#--------------------------------------------------------------------------------------------------------------- | |
# | |
# You can always find the latest version here: | |
# http://pastebin.com/Af00CbhA | |
# Forum discussion thread: | |
# http://www.pathofexile.com/forum/view-thread/1246208/page/1 | |
# Please use this thread for feedback, questions and suggestions |
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
Type,ID,Value,ParentID | |
DEPARTMENT,1911,Plant - Surplus,19 | |
DEPARTMENT,1912,Plant - Disposal,19 | |
DEPARTMENT,1920,Plant - Admin,19 | |
DEPARTMENT,1921,Plant - TS ITS,19 | |
DEPARTMENT,1922,Plant - Workshops,19 | |
DEPARTMENT,1924,Plant - TS UFB,19 | |
DEPARTMENT,3001,Products,30 | |
DEPARTMENT,3040,Products,30 | |
DEPARTMENT,3501,Products,35 |
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
body { | |
background: #383c45; | |
color: #e6e6e6; } | |
a { | |
color: #949494; } | |
a:link, a:visited { | |
color: #949494; } | |
a:hover, a:active, a:focus { | |
color: #c7c7c7; } |
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 static class OverspeedPeriodExtensions | |
{ | |
public static IQueryable<OverspeedPeriod> WithRemoteId(this IQueryable<OverspeedPeriod> overspeedPeriods, params int[] remoteIds) | |
{ | |
return overspeedPeriods.Where(l => remoteIds.Contains(l.RemoteId)); | |
} | |
/// <summary> | |
/// Filters by all periods that start within date range. | |
/// |
OlderNewer