This file contains 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
[ 6508.559] | |
X.Org X Server 1.9.0 | |
Release Date: 2010-08-20 | |
[ 6508.559] X Protocol Version 11, Revision 0 | |
[ 6508.559] Build Operating System: Linux 2.6.24-27-server i686 Ubuntu | |
[ 6508.559] Current Operating System: Linux kazimir 2.6.35-24-generic-pae #42-Ubuntu SMP Thu Dec 2 03:21:31 UTC 2010 i686 | |
[ 6508.559] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-24-generic-pae root=UUID=e594406a-fea8-4fe5-9b4f-b61021389683 ro splash quiet vga=773 quiet splash | |
[ 6508.559] Build Date: 23 November 2010 09:54:06PM | |
[ 6508.559] xorg-server 2:1.9.0-0ubuntu7.1 (For technical support please see http://www.ubuntu.com/support) | |
[ 6508.559] Current version of pixman: 0.18.4 |
This file contains 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
Section "Device" | |
Identifier "Default Device" | |
Driver "nvidia" | |
Option "NoLogo" "True" | |
Screen 0 | |
EndSection | |
Section "Device" | |
Identifier "External screen device" | |
Driver "nvidia" |
This file contains 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
inputs = document.getElementsByTagName('input');for(i = 0; i < inputs.length; i++){ if(inputs[i].type == 'checkbox'){inputs[i].checked = true;}} |
This file contains 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 commit --dry-run; | |
git status; |
This file contains 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
# This is file ~/.gitconfig | |
[merge] | |
tool = extMerge | |
[mergetool "extMerge"] | |
cmd = ~/bin/extMerge \"$BASE\" \"$LOCAL\" \"$REMOTE\" -o \"$MERGED\" |
This file contains 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
<?php | |
$queryBuilder->addSelect( | |
sprintf( | |
'COALESCE(%s.weight+%s.weight, %s.weight) AS weightBefore', | |
$object1->getEntityAlias(), | |
$object2->getEntityAlias(), | |
$object1->getEntityAlias() | |
) | |
); |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<datetimes type="array"> | |
<datetime> | |
<activities-id type="integer" nil="true"/> | |
<activity-id type="integer">55</activity-id> | |
<created-at type="datetime">2011-10-20T00:06:13+02:00</created-at> | |
<description nil="true"/> | |
<id type="integer">183</id> | |
<in-ctt type="boolean" nil="true"/> | |
<start type="datetime">2011-10-20T00:06:13+02:00</start> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
#import <Cocoa/Cocoa.h> | |
@class Track; | |
@interface AppDelegate : NSObject <NSApplicationDelegate> | |
@property (assign) IBOutlet NSWindow *window; | |
@property (weak) IBOutlet NSTextField *textField; | |
@property (weak) IBOutlet NSSlider *slider; |
This file contains 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 'spec_helper' | |
describe "Books" do | |
describe "PUT /books/:id" do | |
it "updates a book" do | |
book = {name: 'Alchandira', description: 'Something'} | |
updated_book = {name: 'Cave', description: 'Something'} | |
# Create book | |
post books_path, book: book |
OlderNewer