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
| OK, entering \batchmode~/Projects/Mashbot/mashbot/doc/requirements $ latex Requirements.tex | |
| This is pdfTeXk, Version 3.141592-1.40.3 (Web2C 7.5.6) | |
| %&-line parsing enabled. | |
| entering extended mode | |
| (./Requirements.tex | |
| LaTeX2e <2005/12/01> | |
| Babel <v3.8h> and hyphenation patterns for english, usenglishmax, dumylang, noh | |
| yphenation, loaded. | |
| (/usr/share/texmf-texlive/tex/latex/base/article.cls | |
| Document Class: article 2005/09/16 v1.4f Standard LaTeX document class |
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
| Given /^there is a "([^\"]*)" with the following:$/ do |model, table| | |
| model.classify.constantize.create!(table.rows_hash) | |
| 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
| </head> | |
| <body onload="initialize()" onunload="GUnload()"> | |
| <%= fb_connect_javascript_tag %> | |
| <%= init_fb_connect "XFBML" %> | |
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
| <ImageView android:id="@+id/mainImage" | |
| android:src="@drawable/mage" | |
| android:layout_width="200px" | |
| android:layout_height="200px" | |
| android:background="#fff" /> |
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
| /* AUTO-GENERATED FILE. DO NOT MODIFY. | |
| * | |
| * This class was automatically generated by the | |
| * aapt tool from the resource data it found. It | |
| * should not be modified by hand. | |
| */ | |
| package com.bluepojo.android.squire; | |
| public final class R { |
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
| echo "gnome-terminal" > ~/.gnome2/nautilus-scripts/gnome-terminal; chmod +x ~/.gnome2/nautilus-scripts/gnome-terminal |
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
| ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}' |
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
| Test! | |
| This is an addition | |
| omng | |
| og | |
| BALEETED | |
| kgnb |
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
| module InstanceMethods | |
| def can_moderate_community? | |
| self.community_admin? or self.community_moderator? | |
| end | |
| 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
| class Response | |
| attr_reader :errors | |
| attr_accessor :data | |
| def initialize data=[] | |
| @data = [] | |
| @data << data | |
| @data.flatten! | |
| @errors = ActiveModel::Errors.new(self) |
OlderNewer