a guideline to the possible stumbling blocks found with group ensemble improvisation
- coordination of intention
- non-verbal communication only
- relying on connections
- patience
simple version ... | |
go to folder that will house your root folder | |
git clone [email protected]:joncode/becker_sqlite.git | |
bundle install | |
rake db:migrate | |
rake db:seed | |
... this runs git init for you | |
... you could also clone from mac, but I am getting an error in my local mac OSX |
type into url of firefox ... | |
about:config | |
look in document for ... | |
mousewheel.horizscroll.withnokey.sysnumlines | |
true is OFF , false if ON | |
doesn't appear to be a very stable setting, i.e. when scrolling it swipes |
git checkout -- app/assets/javascripts/themes.js.coffee | |
if you have a file thats been deleted from the repo and sitting in the staging area and you'd like to delete it | |
if its called "app/assets/javascripts/themes.js.coffee" | |
use the above command | |
not quite sure what is the directory , index, staging area etc, need exact definitions |
the problem was solved by nesting the | |
<input name="option.<%= feature.name %>" type="radio" checked="checked" value="<%= option_value %>"> | |
in a form. | |
<form> | |
<input name="option.<%= feature.name %>" type="radio" checked="checked" value="<%= option_value %>"> | |
</form> | |
Altho in one controller it works NOT in a form and also the checkboxes were checked=checked without the form. |
create new repository on Github first .... either use 'Push to Github' on github local app , or create new repo online | |
easy way ... | |
go to GitHub GIU and click 'publish' on branch | |
you can also delete branch from cloud by unclicking publish | |
command line way ... | |
git remote add origin [email protected]:joncode/becker_sqlite.git new_cart |
How do I get robbie's 'store' branch and merge it into my 'cart' branch ? | |
from terminal in becker_sqlite ... | |
git clone https://github.com/robertSahm/becker_sqlite.git store | |
# puts his branch into my local repo - DID NOT WORK | |
from terminal in becker_sqlite ... | |
git pull https://github.com/robertSahm/becker_sqlite.git store | |
# WORKED ! | |
git pull - will fetch the repo becker_sqlite.git and grab the 'store' branch | |
- will merge that into whatever branch you are in in ur local repo |
using the old argument style of controller: "#", action: "#" , must put them in a hash to avoid id confusion | |
<%= link_to 'STORE',{ controller: 'store', action: 'new'}, :id => "storeClick" %> | |
using a <a href> tag ... | |
<a href="#" id="chooseLink">-tagName</a> | |
using link_to_function (when calling a javascript function instead of link) ... | |
<%= link_to_function "tagName", "javascript function", id: "chooseLink %> | |
using link_to ( changing a link_to to a dead link and then using jQuery to add functionality to id ... |
Thumb H/Lap Steel 1_thumbh.jpg | |
add to Image_url in body type "custom" | |
webphotos/darkhorse.png | |
add to dark horse product image_url |