Helps
Tag successful builds in Travis CI
Is there a way to tag commits in git that are successful builds in Travis CI?
Is there a way to tag commits in git that are successful builds in Travis CI?
When we run our request specs we see this every time:
2013-01-16 10:20:51.014 webkit_server[82263:707] Failed to communicate with qtkitserver: Connection invalid
2013-01-16 10:20:51.014 webkit_server[82263:707] Failed to initializeServer(), returned 5
We upgraded to the latest everything, and are still seeing it. Google is failing us. Anyone seen this before?
eXtreme Tuesday Club is a place to talk about software after work in a retro-style setting. We discuss current topics in software, as well as design patterns and whatever the cool kids are reading right now.
Pizza is ordered. It’s open to the great unwashed, so invite your non-Pivotal friends.
Netflix is holding a meetup to talk about their open source projects in Feb 6th. The meetup is happening in Los Gatos and you need to RSVP in meetup.com:
blank? is the opposite of present?. blank? is nil or empty.
false.present? is false.
[].present? is also false.
{}.present? is also false.
“”.present? is also false.
eXtreme Tuesday Club is a place to talk about software after work in a retro-style setting. We discuss current topics in software, as well as design patterns and whatever the cool kids are reading right now.
Pizza is ordered. It’s open to the great unwashed, so invite your non-Pivotal friends.
Assuming you’re using the headless gem in CI and have browser specs (Jasmine, Selenium) and want to watch them locally, ssh -X is your best friend. It will have Firefox draw its pixels on your Mac screen. Slow, but powerful.
To make that work you need a few steps:
1) Be sure to launch X11, go to Preferences (⌘+,) > Security > Check the “Allow connections from network clients” checkbox
2) Restart X11
3) Be sure that X11Forwarding is set to “yes” in the server (after changing it, restart SSHD, killing sshd works)
To see if it is working, check the $DISPLAY env variable after connected, it should be set.
Seems like the dialog that shows recent files is very broken. If you are experiencing the same problem: go here to +1 the issue http://youtrack.jetbrains.com/issue/RUBY-11460 .
Confirmed by Heroku:
The fix (also from Heroku):
heroku pg:reset on the target db before importing to force clean the db.Considering database provisioning is nearly instantaneous for most users, restoring into a fresh database is best practice, and we will work towards making that the default option in the future.
Cloud9 IDE
http://c9.io/site/features/
IDE in the cloud where you get your local workspace over SSH/FTP. Explicitly mentions pair programming throughout the site.
we’d like to use a gem (rescue-pool) that uses ‘fork’ in jruby. Right now the gem raises when fork is unavailable in jruby. Is there a pattern for replacing a ruby fork with a java Thread?
For implementing responsive layout, browsers support the use of event handlers that are tied to state changes of media queries. It means that you can have JavaScript events triggered in a manner similar to how CSS rule changes are implemented.