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
// ==UserScript== | |
// @name Show R300 Win% on Players | |
// @description Shows players Rolling 300 Win% on their ball (and/or in a table) | |
// Works for registered (green) names only (and only if they appear on tagpro-stats.com) | |
// @version 0.1.5 | |
// @include http://tagpro-*.koalabeast.com:* | |
// @connect tagpro-stats.com | |
// @connect koalabeast.com | |
// @grant GM_setValue | |
// @grant GM_getValue |
This file has been truncated, but you can view the full file.
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
Microsoft (R) COFF/PE Dumper Version 14.00.23026.0 | |
Copyright (C) Microsoft Corporation. All rights reserved. | |
Dump of file C:\Users\LukeHertert\AppData\Local\OpenZWave\bin\openzwave.lib | |
File Type: LIBRARY | |
Archive member name at 8: / | |
5650B104 time/date Sat Nov 21 12:59:32 2015 |
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
#This script will download a modified version of open-zwave (added support for visual studio 2013 and x64), build them and copy required files to ./libs/open-zwave | |
#Requirements | |
### cwd is root of your project | |
### You have visual studio 2013 installed with C++ build tools | |
### msbuild is in your path | |
$ErrorActionPreference = "Stop" | |
Push-Location |
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 IEnumerable<RouteDescriptor> GetRoutes() | |
{ | |
var routeCollection = new RouteCollection(); | |
routeCollection.MapConnection<MyConnection>("echo", "echo/{*operation}"); | |
return GetConferenceRoutes() | |
.Concat(GetSchoolRoutes()) | |
.Concat(GetTeamRoutes()) | |
.Concat(GetTeamSeasonRoutes() | |
.Concat(GetGameRoutes()) |
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
Add-PSSnapin WebAdministration | |
$sites = ls IIS:\Sites | |
foreach ($site in $sites) { | |
$debug = Get-WebConfigurationProperty -filter system.web/compilation -name debug -PSPath $site.PSPath | |
if ($debug.Value) { | |
Set-WebConfigurationProperty -filter system.web/compilation -name debug -PSPath $site.PSPath -value false | |
echo $site.Name | |
} |
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 System.Collections.Generic; | |
using System.Linq; | |
using System.Linq.Expressions; | |
using NHibernate; | |
using NHibernate.Criterion; | |
using NHibernate.Impl; | |
using NHibernate.Linq; | |
using Orchard.ContentManagement; | |
using Orchard.ContentManagement.Records; |
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 System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Linq.Expressions; | |
using Core.Extensibility.Extensions; | |
using System.ComponentModel; | |
using System.Reflection; | |
using System.ComponentModel.DataAnnotations; |
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
$server = "127.0.0.1" | |
$username = "username" | |
$password = "password" | |
$securePassword = ConvertTo-SecureString $password -AsPlainText -Force | |
$session_opts = New-PSSessionOption -SkipCNCheck -SkipCACheck | |
$creds = New-Object System.Management.Automation.PsCredential $username,$password | |
Enter-PSSession -ComputerName $server -SessionOption $session_opts -Credential $creds -UseSSL |
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
SELECT * | |
FROM wp_posts | |
LEFT JOIN wp_term_relationships ON(wp_posts.ID = wp_term_relationships.object_id) | |
LEFT JOIN wp_term_taxonomy tax_type ON(wp_term_relationships.term_taxonomy_id = tax_type.term_taxonomy_id) | |
LEFT JOIN wp_term_taxonomy tax_client ON(wp_term_relationships.term_taxonomy_id = tax_client.term_taxonomy_id) | |
LEFT JOIN wp_terms terms_type ON(tax_type.term_id = terms_type.term_id) | |
LEFT JOIN wp_terms terms_client ON(tax_client.term_id = terms_client.term_id) | |
WHERE wp_posts.post_type = 'portfolio' | |
AND wp_posts.post_status = 'publish' | |
AND tax_type.taxonomy = 'type' |
NewerOlder