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
param($PfxFilePath, $Password) | |
$absolutePfxFilePath = Resolve-Path -Path $PfxFilePath | |
Write-Output "Importing store certificate '$absolutePfxFilePath'..." | |
Add-Type -AssemblyName System.Security | |
$cert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 | |
$cert.Import($absolutePfxFilePath, $Password, [System.Security.Cryptography.X509Certificates.X509KeyStorageFlags]"PersistKeySet") | |
$store = new-object system.security.cryptography.X509Certificates.X509Store -argumentlist "MY", CurrentUser | |
$store.Open([System.Security.Cryptography.X509Certificates.OpenFlags]::"ReadWrite") |
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] | |
Declare @BackupFileLocation varchar(max) | |
Declare @BackupMDFFileName varchar(max) | |
Declare @BackupLogFileName varchar(max) | |
Declare @ImportTesterMDFFileName varchar(max) | |
Declare @ImportTesterLogFileName varchar(max) | |
set @BackupFileLocation = | |
N'\\file-path\bk.bak' |
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
#!/bin/bash | |
mkdir -p ~/local | |
command -v identify > /dev/null | |
if [ $? -eq 1 ]; then | |
echo "${bldgrn}Installing imagemagick into ${txtwht}$HOME/local/imagemagick${txtrst}" | |
wget -N --retr-symlinks ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz | |
tar -xzvf ImageMagick.tar.gz | |
cd ImageMagick-* | |
./configure --prefix=$HOME/local/imagemagick | |
make |
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
# Replace text across files | |
:args dir_path/*/* #(for 2 levels) | |
:argdo %s/, :expire.*)/)/gc | update |
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
http://lostechies.com/ryansvihla/2011/09/25/rail-3-1-ci-setup-with-jenkins-test-unit-simplecov-on-os-x-lion/ | |
http://danseaver.com/blog/2011/11/22/using-jenkins-with-rails/ | |
http://rails-jenkins.danseaver.com/#1 | |
Setup Redis server | |
http://www.denofubiquity.com/nosql/412/ |
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
http://www.slideshare.net/martin_j_andrews/code-quality-analysis?type=presentation |
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
# http://blog.tstmedia.com/news_article/show/85364?referrer_id=308069 | |
class << self | |
RemovedColumns = {'column_to_remove' => true} | |
def columns | |
cols = super | |
cols.reject { |col| RemovedColumns.has_key? col.name } | |
end | |
end | |
# http://pedro.herokuapp.com/past/2011/7/13/rails_migrations_with_no_downtime/ |
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
History: Ctrl + r | |
Find: find /home/user -name abc.txt | |
Pipeline: vi `find /home/user -name abc.txt` | |
Ctrl-x, Ctrl-e will bring up an $EDITOR containing whatever is currently entered into the prompt. (opposed to editing last command actually entered) | |
Managing remote systems and trying to figure out what hardware you're on and whether it's healthy or not: dmidecode | |
Repeat last command with "sudo" prepended: sudo !! | |
Execute <command> with the argument to your previous command: <command> !$ / !* for get all args. |
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
"----------------------------------------------------------------------------- | |
" General | |
"----------------------------------------------------------------------------- | |
set nocompatible | |
set history=1024 | |
set cf " enable error files and error jumping | |
set ffs=unix,dos,mac " support these files | |
filetype on | |
filetype plugin on | |
filetype indent on |
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
<td> | |
<%= link_to("Send", send_task_admin_path(task, params.slice(:page))) %> | |
</td> |
NewerOlder