Skip to content

Instantly share code, notes, and snippets.

View jxpx777's full-sized avatar
🤠

Jamie Phelps jxpx777

🤠
View GitHub Profile
@jxpx777
jxpx777 / vimrc
Created August 28, 2019 14:36 — forked from junegunn/vimrc
set nocompatible hidden laststatus=2
@jxpx777
jxpx777 / keybase.md
Last active March 1, 2018 19:39
keybase.md

Keybase proof

I hereby claim:

  • I am jxpx777 on github.
  • I am jxpx777 (https://keybase.io/jxpx777) on keybase.
  • I have a public key ASAZdbtpOCcWzDNcoKNVftcNmPhZ9vAIIup_FbVfwDAjmQo

To claim this, I am signing this object:

@jxpx777
jxpx777 / Readme.md
Created May 17, 2012 19:00
JSE: Chrome HTTP auth callback

Original source:

@jxpx777
jxpx777 / text.markdown
Created July 15, 2017 14:22
Escaping link text

[escaped text with brackets](and_a_url.md) a link with escaped anchor text.

@jxpx777
jxpx777 / iBank 5_2015-12-30-173156_Jamies-MacBook-Pro.crash
Created December 31, 2015 15:23
Crash for iBank calling -retain
Process: iBank 5 [41476]
Path: /Applications/iBank 5.app/Contents/MacOS/iBank 5
Identifier: com.iggsoftware.iBank5
Version: 5.6.4 (50113)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: iBank 5 [41476]
User ID: 501
Date/Time: 2015-12-30 17:31:55.281 -0600
$("#sections .panel.section").hide().first().show();
$("li.highlight a").click(function(event) {
event.preventDefault();
var target = $(event.currentTarget.getAttribute("href"));
if (target.is(":visible")) return;
$("#sections .panel.section:visible").children().fadeOut("fast", function(){
$("#sections .panel.section").hide();
target.show().children().fadeIn("fast");
});
});
@jxpx777
jxpx777 / development.log
Last active December 25, 2015 13:39
Error output
Started POST "/account" for 127.0.0.1 at 2013-10-14 19:45:05 -0500
Processing by AccountsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"ALG1cWqa6VZn+LIjfi/aeCOLl9rDFI+JSKDn6yyn+V4=", "plan"=>"Free", "account"=>{"name"=>"Test2 Here", "domain"=>"test2", "admin_attributes"=>{"email"=>"jamie@epiphanymedia.net", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}}}
Account Load (0.3ms) SELECT `accounts`.* FROM `accounts` WHERE `accounts`.`full_domain` = 'myhood.dev' AND (`accounts`.`deleted_at` IS NULL) LIMIT 1
Account Load (40.4ms) SELECT `accounts`.* FROM `accounts` WHERE (`accounts`.`deleted_at` IS NULL) LIMIT 1
SubscriptionPlan Load (0.3ms) SELECT `subscription_plans`.* FROM `subscription_plans` WHERE `subscription_plans`.`name` = 'Free' LIMIT 1
(0.1ms) BEGIN
User Exists (0.3ms) SELECT 1 AS one FROM `users` WHERE (`users`.`email` = 'jamie@epiphanymedia.net' AND `users`.`account_id` IS NULL) LIMIT 1
CACHE (0.0ms) SELECT 1 AS one FROM `users` WHERE (`
@jxpx777
jxpx777 / errorlog.txt
Created October 3, 2013 22:30
This is the error we're seeing in production only. Production uses Apache+Passenger. Dev using Pow
ActionView::MissingTemplate (Missing template /invoice with {:locale=>[:en], :formats=>[:text], :handlers=>[:erb, :builder]}. Searched in:
* "/var/www/appname/releases/20131003214241/app/views"
):
app/mailers/mailer.rb:42:in `block in invoice'
app/mailers/mailer.rb:41:in `invoice'
app/controllers/admin_controller.rb:410:in `resend_invoice'
var pageModParams = {
'include': ["*"],
'attachTo': ["top", "existing", "frame"],
'contentScriptFile': [
data.url("src/common.js"),
data.url("src/end.js")
//other scripts to include
]
};
function attachWorkerToTab(tab){
function workersForTab(tab, callback) {
var result = [], emitted;
for (var i = 0; i < workers.length; ++i) {
if (workers[i].tab == tab) result.push(workers[i]);
}
return result;
}