This file has been truncated, but you can view the full file.
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 berryEmotes=[{"background-image":"http://a.thumbs.redditmedia.com/-UJ20dLxrm_8r4kr.png","tags":["lyra"],"sr":"marmemotes","height":140,"width":126,"names":["welliwashungryandwhenyoucravehands"],"apng_url":"http://backstage.berrytube.tv/marminator/images/a/-UJ20dLxrm_8r4kr.png"},{"background-image":"http://a.thumbs.redditmedia.com/1ERLWojxsUO7nFQT.png","tags":["luna",""],"sr":"marmemotes","height":140,"width":121,"names":["doodoodooluna"],"apng_url":"http://backstage.berrytube.tv/marminator/images/a/1ERLWojxsUO7nFQT.png"},{"background-image":"http://a.thumbs.redditmedia.com/84ozl2WMmiYp6Euf.png","tags":["oc",""],"sr":"marmemotes","height":140,"width":200,"names":["ivyrage","ierage"],"apng_url":"http://backstage.berrytube.tv/marminator/images/a/84ozl2WMmiYp6Euf.png"},{"background-image":"http://a.thumbs.redditmedia.com/E1FnMA0PMGL9qnwx.png","tags":["oc","berrytube"],"sr":"marmemotes","height":140,"width":118,"names":["keystrokeguitar"],"apng_url":"http://backstage.berrytube.tv/marminator/images/a/E1FnMA0PMG |
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 System.IO; | |
using System.Threading; | |
namespace ConsoleApplication10 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
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
WebPiCmd Information: 0 : | |
DateTime=2013-02-12T19:08:58.1431473Z | |
WebPiCmd Warning: 0 : The software that you obtain using the Web Plaform Installer Command Line Tool is licensed to you by its owner. Microsoft grants you no rights for third party software. | |
DateTime=2013-02-12T19:08:58.1451474Z | |
WebPiCmd Verbose: 0 : Executing command: "C:\Program Files\Microsoft\Web Platform Installer\WebpiCmd.exe" /Install /AcceptEula "/Products:Workflow Manager Tools 1.0 for Visual Studio 2012" /log:c:\temp\wf-log.txt | |
DateTime=2013-02-12T19:08:58.1551480Z | |
WebPiCmd Information: 0 : Successfully loaded primary feed: https://go.microsoft.com/?linkid=9819333 | |
DateTime=2013-02-12T19:08:59.2692117Z | |
WebPiCmd Start: 0 : The following software is going to be installed: | |
DateTime=2013-02-12T19:08:59.6282323Z |
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
DownloadManager Information: 0 : Loading product xml from: https://go.microsoft.com/?linkid=9819333 | |
DownloadManager Information: 0 : https://go.microsoft.com/?linkid=9819333 responded with 302 | |
DownloadManager Information: 0 : Response headers: | |
HTTP/1.1 302 Found | |
Cache-Control: private | |
Content-Length: 174 | |
Content-Type: text/html; charset=utf-8 | |
Expires: Tue, 05 Feb 2013 19:07:06 GMT | |
Location: http://www.microsoft.com/web/webpi/4.2/webproductlist.xml | |
Server: Microsoft-IIS/7.5 |
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 System.Linq; | |
using Ninject; | |
using Ninject.Extensions.Factory; | |
namespace SomeRootNamespace | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
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 System.Linq; | |
using Ninject; | |
using Ninject.Extensions.Factory; | |
namespace SomeRootNamespace | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
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
void Main() | |
{ | |
var databaseInfo = GetDatabaseInfo(this); | |
// databaseInfo.Dump(); | |
foreach (var table in databaseInfo.Tables) | |
{ | |
var nullableColumns = | |
from c in table.Columns | |
where c.DatabaseType.EndsWith(" NOT NULL") == false |
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
void Main() | |
{ | |
var databaseInfo = GetDatabaseInfo(this); | |
databaseInfo.Dump(); | |
} | |
// Define other methods and classes here | |
public class DatabaseInfo | |
{ | |
public Type DataContextType { get; set; } |
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
SET NOCOUNT ON | |
GO | |
PRINT 'Using Master database' | |
USE master | |
GO | |
PRINT 'Checking for the existence of this procedure' | |
IF (SELECT OBJECT_ID('sp_generate_inserts','P')) IS NOT NULL --means, the procedure already exists | |
BEGIN |
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
# get reference to the running iTunes | |
$itunes = New-Object -ComObject iTunes.application | |
# get all tracks in the entire library | |
$allTracks = $itunes.LibraryPlaylist.Tracks | |
# find the entries that are no longer on disk | |
# NOTE: the API returns the location as null for those, so we check for | |
# that instead of doing our own filtering based on test-path or similar | |
$deadEntries = $allTracks | ?{ $_.Location -eq $null } |