Skip to content

Instantly share code, notes, and snippets.

@cdownie
cdownie / gist:c012be06d005a5946e41
Created December 10, 2014 15:35
Backup all Databases on SQL Server with Timestamps
SET NOCOUNT ON;
DECLARE
@FileName NVARCHAR(1024)
, @DBName NVARCHAR(256)
, @PathName NVARCHAR(256)
, @Message NVARCHAR(2048)
, @IsCompressed BIT
SELECT
@cdownie
cdownie / gist:1067581
Created July 6, 2011 15:50
Visual Studio .hgignore
# use glob syntax.
syntax: glob
#OS junk files
[Tt]humbs.db
*.DS_Store
#Visual Studio files
*.[Oo]bj
*.exe
@cdownie
cdownie / gist:1039380
Created June 22, 2011 02:09
html redirect
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="1;url=http://site.com">
<script language="javascript">
window.location.href = "http://site.com"
</script>
<title></title>
</head>
@cdownie
cdownie / gist:979027
Created May 18, 2011 17:10
Visual Studio .gitignore
#OS junk files
[Tt]humbs.db
*.DS_Store
#Visual Studio files
*.[Oo]bj
*.exe
*.pdb
*.user
*.aps