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
// ==UserScript== | |
// @name Regions - Account Titles | |
// @namespace Regions | |
// @description Gives my Regions account numbers appropriate titles... | |
// @include https://securebank.regions.com/balances/AccountSummary.aspx | |
// ==/UserScript== | |
// Replace any text in #dgCheckingAccounts td that matches | |
// an account number with the appropriate account title. |
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
make[4]: *** No rule to make target `compositor/mutter/mutter-module.c', needed by `mutter-module.o'. Stop. | |
make[4]: Leaving directory `/home/jadams/gnome-shell/source/mutter/src' | |
make[3]: *** [all-recursive] Error 1 | |
make[3]: Leaving directory `/home/jadams/gnome-shell/source/mutter/src' | |
make[2]: *** [all] Error 2 | |
make[2]: Leaving directory `/home/jadams/gnome-shell/source/mutter/src' | |
make[1]: *** [all-recursive] Error 1 | |
make[1]: Leaving directory `/home/jadams/gnome-shell/source/mutter' | |
make: *** [all] Error 2 | |
*** error during stage build of mutter: ########## Error running make *** [5/7] |
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
checking for dcgettext... yes | |
checking if msgfmt accepts -c... yes | |
checking for gmsgfmt... (cached) /usr/bin/msgfmt | |
checking for xgettext... (cached) /usr/bin/xgettext | |
checking for gconftool-2... /home/jadams/gnome-shell/install/bin/gconftool-2 | |
Using config source xml:merged:/home/jadams/gnome-shell/install/etc/gconf/gconf.xml.defaults for schema installation | |
Using $(sysconfdir)/gconf/schemas as install directory for schema files | |
checking for GStreamer (needed for recording functionality)... yes | |
checking for TEST_SHELL_RECORDER... yes | |
checking for MUTTER_PLUGIN... configure: error: Package requirements (gio-unix-2.0 gtk+-2.0 dbus-glib-1 mutter-plugins |
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
require 'test_helper' | |
class PostTest < ActiveSupport::TestCase | |
should_validate_presence_of :contents | |
should_validate_presence_of :created_at | |
should_validate_presence_of :user_id | |
context "A Post" do | |
setup do | |
@post = Factory.build(:post) | |
end |
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
require 'octopi' | |
require 'pp' | |
module Github; end | |
class Github::Backup | |
include Octopi | |
attr_reader :backup_root, :debug |
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
--(jadams@goro)-(15/pts/1)-(1358/06-Sep-09)-- | |
--($:~/Desktop)-- sh maemo-sdk-install_5.0beta2.sh | |
This script will install maemo SDK 5.0beta2 fremantle release to your computer. | |
Install options | |
Force remove of existing targets (no) | |
Alternative sources.list ('') | |
Target configuration for armel (FREMANTLE_ARMEL) | |
compiler=cs2007q3-glibc2.5-arm7 |
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
Here's my sample data set | |
mysql> SELECT tf.id, tf.authorization_id_response, tf.tran_type FROM transaction_feeds tf; | |
+-----+---------------------------+-----------+ | |
| id | authorization_id_response | tran_type | | |
+-----+---------------------------+-----------+ | |
| 239 | 223672 | 9120 | | |
| 240 | 223672 | 9220 | | |
| 241 | 223673 | 9120 | | |
+-----+---------------------------+-----------+ |
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
--(jadams@goro)-(42/pts/8)-(1252/13-Sep-09)-- | |
--($:~/software/qwitter)-- quickly package | |
Traceback (most recent call last): | |
File "setup.py", line 27, in <module> | |
assert DistUtilsExtra.auto.__version__ >= '2.8', 'needs DistUtilsExtra.auto >= 2.8' | |
AssertionError: needs DistUtilsExtra.auto >= 2.8 | |
setup.py install_egg_info failed | |
An error has occurred | |
ERROR: can't create or update ubuntu package | |
ERROR: package command failed |
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
*** Checking out gjs *** [6/7] | |
git pull --rebase | |
remote: Counting objects: 34, done. | |
remote: Compressing objects: 100% (23/23), done. | |
remote: Total 23 (delta 17), reused 0 (delta 0) | |
Unpacking objects: 100% (23/23), done. | |
From git://git.gnome.org/gjs | |
8ca60f3..af8fc9e master -> origin/master | |
First, rewinding head to replay your work on top of it... | |
Fast-forwarded master to af8fc9eb931ccd7ada08a29412d1612046a783e7. |
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
var some_object = { | |
x: "whee", | |
foo: function(arg1){ | |
alert(arg1); | |
} | |
}; | |
alert(some_object.x); | |
some_object.foo("bar"); |