Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
Consumer key: CjulERsDeqhhjSme66ECg
Consumer key: IQKbtAYlXLripLGPWd0HUA
Consumer secret: GgDYlkSvaPxGxC4X8liwpUoqKwwr3lCADbz8A7ADU
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
Consumer key: CjulERsDeqhhjSme66ECg
| var sked_data = ''; | |
| var sked_header = "Subject,Start Date,Start Time,End Date,End Time,All Day Event,Description,Location,Private"; | |
| $('#div_content').append('<textarea id="skeddata" />'); | |
| $('#skeddata').append(sked_header + '\n'); | |
| $('table#ctl00_ctl00_ContentPlaceHolder1_MainContentPlaceHolder_GridView1_RadGrid1_ctl00 tr').each(function(){ | |
| sked_data = | |
| $(this).find("td:eq(8)").html() + ", " + | |
| $(this).find("td:eq(3)").html() + ", " + |
| var sked_data = ''; | |
| $('#div_content').append('<textarea id="skeddata" />'); | |
| $('table#ctl00_ctl00_ContentPlaceHolder1_MainContentPlaceHolder_GridView1_RadGrid1_ctl00 tr').each(function(){ | |
| sked_data = | |
| $(this).find("td:eq(8)").html() + ", " + | |
| $(this).find("td:eq(3)").html() + ", " + | |
| $(this).find("td:eq(4)").html() + ", " + | |
| $(this).find("td:eq(3)").html() + ", " + |
| function runthis() { | |
| var close_link = "" | |
| $("table table tr").each(function(){ | |
| $(this).find('a.link').each( function(){ | |
| close_link = $(this).attr('href').replace(/view/,"close" ); | |
| $(this).attr('href', close_link) |
| function runthis() { | |
| // Won't fix request bookmarklet | |
| $('#status').val('9'); | |
| $('select[name="resolution"]').val('10'); | |
| $('#notification_all').click(); | |
| $('textarea[name="reason"]').val('Sorry - won't fix this'); | |
| $("form[name=close_form]").submit(); |
| function runthis() { | |
| // Completed as per request bookmarklet | |
| $('#status').val('9'); | |
| $('select[name="resolution"]').val('10'); | |
| $('#notification_all').click(); | |
| $('textarea[name="reason"]').val('Complete as per request'); | |
| $("form[name=close_form]").submit(); |
| /** | |
| * lb_debug_info.js | |
| * | |
| * This little bookmarklet populates the LabelBuilder screen with a handy debug pane that shows the details of certain hidden fields | |
| * | |
| * MIT Licensed. | |
| * | |
| * Copyright 2011-2012 Seth Wilson @SethWilson | |
| * | |
| * ------------------------------------------------ |
| /** | |
| * complete_checkout.js | |
| * | |
| * This little bookmarklet populates the checkout screen with default values | |
| * | |
| * MIT Licensed. | |
| * | |
| * Copyright 2011-2012 Seth Wilson @SethWilson | |
| * | |
| * ------------------------------------------------ |
| brew install --HEAD rbenv | |
| brew install --HEAD ruby-build | |
| brew install --HEAD https://raw.github.com/jasoncodes/homebrew/rbenv-vars/Library/Formula/rbenv-vars.rb # https://github.com/mxcl/homebrew/pull/7891 | |
| brew install readline | |
| echo 'eval "$(rbenv init -)"' >> ~/.bash_profile | |
| echo 'gem() { rbenv exec gem "$@" && rbenv rehash && hash -r; }' >> ~/.bash_profile | |
| exec | |
| CONFIGURE_OPTS="--with-readline-dir=$(brew --prefix readline)" rbenv install 1.9.2-p290 | |
| rbenv global 1.9.2-p290 | |
| gem install bundler -v '~> 1.0.pre' |
| #!/bin/sh | |
| /usr/bin/osascript > /dev/null <<ASCPT | |
| set stdinText to "$(cat | sed -e 's/\\/\\\\/g' -e 's/\"/\\\"/g')" | |
| set recName to "Nik Cubrilovic" | |
| set recAddr to "nikcub@gmail.com" | |
| set theSubject to "Email from standard input" | |
| tell application "Mail" | |