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
id | |
13347650686016688 | |
12779789081008300 | |
1827725084 |
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
ID | |
14875902337460800 | |
14895277205484624 | |
14857987928431996 | |
14882234746475776 | |
14901079410432056 | |
14884218541451352 | |
14875385252456100 | |
14787917372468032 | |
14886104487515448 |
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
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Maintainer: | |
" Calder Hayes | |
" Original Maintainer: | |
" Amir Salihefendic — @amix3k | |
" | |
" Awesome_version: | |
" Get this config, nice color schemes and lots of plugins! | |
" | |
" Install the awesome version from: |
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
USE master; | |
-- MS SQL SERVER | |
-- To safely drop a development database, incase you are working with a PROD database with a user that has DROP permissions | |
DECLARE @MyDevServerName NVARCHAR(255) = 'T1DTC075\LOCALDB' | |
DECLARE @MyDatabase NVARCHAR(255) = 'TestDB' | |
DECLARE @DropStatement NVARCHAR(500) = 'DROP DATABASE ' + @MyDatabase | |
IF @@SERVERNAME LIKE (@MyDevServerName + '%') | |
EXEC sp_executesql @DropStatement |
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
# Place this script in Documents\deploy\ | |
# Put source code into the deploy source folder | |
# Run the script with "powershell .\deploy.ps1" | |
Import-Module WebAdministration | |
Get-Content ".\config.ini" | foreach-object -begin {$h=@{}} -process { $k = [regex]::split($_,'='); if(($k[0].CompareTo("") -ne 0) -and ($k[0].StartsWith("[") -ne $True)) { $h.Add($k[0], $k[1]) } } | |
$environment = $h.Get_Item("Environment") | |
$siteName = $h.Get_Item("SiteName") |
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
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Calder Hayes | |
" Use this to get pathogen up quickly: | |
" mkdir -p ~/.vim/autoload ~/.vim/bundle && \ | |
" curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Original Maintainer (I have modified from his 5.0 version): | |
" Amir Salihefendic | |
" http://amix.dk - [email protected] |