This file contains hidden or 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 * as React from 'react'; | |
| import './styles.css'; | |
| export interface AnimationProps { | |
| isAnimated?: boolean; | |
| } | |
| export const withAnimation = <T extends {}>(WrappedComponent: React.ComponentClass<T>) => { | |
| return class extends React.Component<T & AnimationProps> { |
This file contains hidden or 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. | |
| /// |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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> |
NewerOlder