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
GO | |
PRINT N'Dropping [HangFire].[FK_HangFire_State_Job]...'; | |
GO | |
ALTER TABLE [HangFire].[State] DROP CONSTRAINT [FK_HangFire_State_Job]; | |
GO | |
PRINT N'Dropping [HangFire].[FK_HangFire_JobParameter_Job]...'; | |
GO | |
ALTER TABLE [HangFire].[JobParameter] DROP CONSTRAINT [FK_HangFire_JobParameter_Job]; | |
GO | |
PRINT N'Dropping [HangFire].[Schema]...'; |
We can't make this file beautiful and searchable because it's too large.
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
Number,Year,Month,Day,Tag,Link,Title | |
1401,2013,7,18,"Software","http://blogs.msdn.com/b/dotnet/archive/2013/07/17/httpclient-2-2-is-now-stable.aspx","HttpClient 2.2 is now stable" | |
1401,2013,7,18,"Information","http://haacked.com/archive/2013/07/17/license-your-code.aspx","License your code" | |
1401,2013,7,18,"Information","http://lostechies.com/jimmybogard/2013/07/17/how-we-do-mvc-4-years-later/","How we do MVC - 4 years later" | |
1401,2013,7,18,"Information","http://www.troyhunt.com/2013/07/your-website-has-never-been-hacked.html","Your website has never been hacked! (except for all the times that it has)" | |
1401,2013,7,18,"Information","http://blogs.msdn.com/b/csharpfaq/archive/2013/07/17/no-new-c-and-vb-language-features-in-vs-2013.aspx","No new C# and VB Language Features in VS 2013 " | |
1401,2013,7,18,"Information","http://gunnarpeipman.com/2013/07/implementing-simple-change-tracking-using-nhibernate/","Implementing simple change tracking using NHibernate" | |
1401,2013,7,18,"Information","http://blog.getglimpse.com/2 |
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
admin account info" filetype:log | |
!Host=*.* intext:enc_UserPassword=* ext:pcf | |
"# -FrontPage-" ext:pwd inurl:(service | authors | administrators | users) "# -FrontPage-" inurl:service.pwd | |
"AutoCreate=TRUE password=*" | |
"http://*:*@www” domainname | |
"index of/" "ws_ftp.ini" "parent directory" | |
"liveice configuration file" ext:cfg -site:sourceforge.net | |
"parent directory" +proftpdpasswd | |
Duclassified" -site:duware.com "DUware All Rights reserved" | |
duclassmate" -site:duware.com |
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
// =============================================================================== | |
// Microsoft Data Access Application Block for .NET | |
// http://msdn.microsoft.com/library/en-us/dnbda/html/daab-rm.asp | |
// | |
// cs | |
// | |
// This file contains the implementations of the SqlHelper and SqlHelperParameterCache | |
// classes. | |
// | |
// For more information see the Data Access Application Block Implementation Overview. |
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
/// --- BIT Library --- /// | |
template<int SIZE, typename T = ll> | |
struct BIT{ | |
T data[SIZE+1]; | |
int n = SIZE; | |
BIT(){ | |
REP(i, n+1) data[i] = 0; | |
} |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
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
{ | |
"cmd": ["g++.exe", "-std=c++14", "-o", "$file_base_name", "$file", "&&", "start", "cmd", "/c", "$file_base_name & echo. & echo. & pause"], | |
"shell": true, | |
"selector": "source.c++" | |
} |
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
> {-# LANGUAGE ScopedTypeVariables, NPlusKPatterns #-} | |
------------------------------------------------------------------------------- | |
Software Tools for Discrete Mathematics | |
Cordelia Hall and John O'Donnell | |
------------------------------------------------------------------------------- | |
Last modified: June 2006 | |
This software is intended to be used with the book "Discrete |
NewerOlder