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
launching windbg | |
&'C:\Program Files (x86)\Windows Kits\8.0\Debuggers\x64\windbg.exe' -g -G -Q -sflags 0x80030377 -y 'C:\Program Files\Puppet Labs\PuppetCustom\sys\ruby\bin' | |
&'C:\Program Files (x86)\Windows Kits\8.0\Debuggers\x64\windbg.exe' -g -G -Q -sflags 0x80030377 -y 'bundle exec rspec .\spec\integration\provider\package_spec.rb' | |
&'C:\Program Files (x86)\Windows Kits\8.0\Debuggers\x64\windbg.exe' -sflags 0x80030377 -g -y 'C:\Program Files\Puppet Labs\PuppetCustom\sys\ruby\bin' -z 'C:\source\20140806_131938_Hang_Mode-ruby_service\FULLDUMP_HangMode_ruby.exe__0b14_2014-08-06_13-19-38-710_08d4.dmp' |
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
# Ensure ADB is installed locally | |
brew install android-sdk | |
android update sdk --no-ui --filter 'platform-tools' | |
# In Fire Stick Settings -> | |
# System -> Developer Options | |
# ADB debugging ON | |
# Apps from Uknown Sources ON |
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
cd C:\source\puppetwinbuilder | |
.\setup_env.ps1 | |
$Env:ARCH = 'x64' | |
cd c:\source\puppet_for_the_win | |
bundle exec rake clobber | |
bundle exec rake windows:build config=foss-3.7-x64.yaml | |
# execute installer | |
C:\source\puppet_for_the_win>msiexec /i src\puppet_for_the_win\pkg\puppet.msi PUPPET_AGENT_ACCOUNT_DOMAIN=vagrant-2008R2 PUPPET_AGENT_ACOUNT_USER=vagrant PUPPET_AGENT_ACCOUNT_PASSWORD=vagrant /l*v install.log |
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
Date/Time: 2014-07-10 23:03:53 -0700 | |
OS Version: 10.9.4 (Build 13E28) | |
Architecture: x86_64 | |
Report Version: 18 | |
Event: Sleep Wake Failure | |
Steps: 78 | |
Hardware model: MacBookPro10,1 | |
Active cpus: 8 |
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 _ORIGINAL_GEM_PATH= | |
set BUNDLE_BIN_PATH=c:/Ruby193/lib/ruby/gems/1.9.1/gems/bundler-1.2.4/bin/bundle | |
set BUNDLE_GEMFILE=c:/work/puppet/Gemfile | |
set GEM_HOME=c:/work/puppet/vendor/cache/ruby/1.9.1 | |
set GEM_PATH= | |
set RUBYOPT=-Ic:/Ruby193/lib/ruby/gems/1.9.1/gems/bundler-1.2.4/lib -rbundler/setup | |
"ruby.exe" "C:\work\puppet\vendor\cache\ruby\1.9.1\bin\rspec" -r yarjuf -f JUnit -o result.xml -fp spec |
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
git log 3.6.0-rc...HEAD --pretty=format:"%h %s [%an (%ae)]" --no-merges > git.commits.txt | |
#| grep -v -e "(maint)" -e "(Maint)" | |
cat git.commits.txt | pbcopy | |
curl --output "jira.issues.txt" --silent -H "Content-Type: application/json" https://tickets.puppetlabs.com/rest/api/2/search?jql=project=PUP+AND+fixVersion=%223.6.0%22+Order+by+key+ASC&maxResults=300&fields=key,summary | |
# brew install jq | |
cat jira.issues.txt | jq '.issues[].key' >jiraissues.txt | |
# https://gist.githubusercontent.com/hlindberg/9520023/raw/40389c4c20ef3aba939c52db8f280f2ae1c0759a/ticketmatch.rb | |
ruby ticketmatch.rb |
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
function ConvertFrom-JsonString | |
{ | |
[CmdletBinding()] | |
param( | |
[Parameter(Mandatory=$true, ValueFromPipeline=$true)] | |
[string] | |
$Json | |
) | |
Add-Type -AssemblyName System.Web.Extensions |
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
Looks like I originally wrote this hunk of junk 10+ years ago. Brings back some, ahem, fond .. memories. | |
Expects psexec.exe and reg.exe in the local directory |
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
Show hidden characters
{ | |
"auto_complete_commit_on_tab": true, | |
"caret_style": "phase", | |
"close_windows_when_empty": true, | |
"color_scheme": "Packages/Solarized Color Scheme/Solarized (dark).tmTheme", | |
"draw_white_space": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"font_face": "Source Code Pro Semibold", | |
"font_size": 15.0, | |
"highlight_line": true, |
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
D:\Users\Parity\Documents\source\00 - Puppet\puppet [21133]> bundle install --path .bundle/gems | |
Fetching gem metadata from https://rubygems.org/...... | |
Fetching gem metadata from https://rubygems.org/.. | |
Resolving dependencies... | |
Installing rake (10.1.0) | |
Installing activesupport (3.0.20) | |
Installing builder (2.1.2) | |
Installing i18n (0.5.0) | |
Installing activemodel (3.0.20) | |
Installing arel (2.0.10) |