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
Started GET "/users/sign_up" for 127.0.0.1 at 2011-05-27 15:24:18 +0200 | |
Processing by Devise::RegistrationsController#new as HTML | |
SQL (1.1ms) SELECT name | |
FROM sqlite_master | |
WHERE type = 'table' AND NOT name = 'sqlite_sequence' | |
SQL (0.3ms) SELECT name | |
FROM sqlite_master | |
WHERE type = 'table' AND NOT name = 'sqlite_sequence' | |
Page::Translation Load (0.2ms) SELECT page_id AS id FROM "page_translations" WHERE "page_translations"."locale" = 'en' |
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
def chop(v, values) | |
ix = values.length / 2 | |
m = values[ ix ] | |
return ix if v == m | |
return nil if values.length < 2 | |
if v > m | |
ix + 1 + chop(v, values[ix+1..-1]) rescue nil |
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
reverse = (s) -> | |
if s.length < 2 then s else reverse(s[1..-1]) + s[0] | |
s = "Hello" | |
console.log "s=#{s}, s.reverse=#{reverse(s)}" |
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
# add repos and update apt | |
sudo add-apt-repository ppa:git-core/ppa | |
sudo add-apt-repository ppa:warp10/sparkleshare | |
sudo apt-get update | |
# install it | |
sudo apt-get install sparkleshare |
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
module GenericRepo | |
def self.included(base) | |
base.class_eval do | |
extend ClassMethods | |
end | |
end | |
module ClassMethods | |
attr_accessor :model | |
def create(params) |
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 'rails/generators/migration' | |
# must be placed in the gem's dir 'lib/generators/my_gem/second/second_generator.rb' | |
module MyGem | |
# TODO: this module tries to DRY up a bit, should be elsewhere in | |
# its own file | |
module MigrationGenerator | |
def self.included(base) | |
base.extend(ClassMethods) |
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
# the role | |
# TODO: should the class be named 'MatchCreator'? What the role does | |
# is independent of needs | |
module NeedToOtherNeedConnector | |
def connect_needs(from, to) | |
match = Match.new(:user => self, :from => from, :to => to) | |
end | |
end | |
# the context |
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
<!doctype html> | |
<html> | |
<head> | |
<title>Just testing...</title> | |
</head> | |
<body> | |
<script type="text/javascript"> | |
function updateFile() { | |
var files = document.getElementById("uploadInput").files; | |
var nFiles = files.length; |
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
diff --git a/grails-app/views/layouts/main.gsp b/grails-app/views/layouts/main.gsp | |
index 4e70434..8d3dcae 100644 | |
--- a/grails-app/views/layouts/main.gsp | |
+++ b/grails-app/views/layouts/main.gsp | |
@@ -12,14 +12,23 @@ | |
<link rel="shortcut icon" href="${resource(dir: 'images', file: 'favicon.ico')}" type="image/x-icon"> | |
<link rel="apple-touch-icon" href="${resource(dir: 'images', file: 'apple-touch-icon.png')}"> | |
<link rel="apple-touch-icon" sizes="114x114" href="${resource(dir: 'images', file: 'apple-touch-icon-retina.png')}"> | |
+ <link rel="stylesheet" href="/todo/css/bootstrap.css" /> | |
<!-- <link rel="stylesheet" href="${resource(dir: 'css', file: 'main.css')}" type="text/css"> --> |
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
<!-- | |
see also: https://github.com/blueimp/jQuery-File-Upload/issues/473 | |
This didn't work with an 'old' version of the plugin, try the latest one. | |
Idea is to do file upload all programmatically, thus only sending files once user has confirmed what to do with the files. | |
--> | |
<div class="row"> | |
<div class="span10"> |
OlderNewer