01 Sep, 2010
A quickly designed Entity Relation Diagram for an RPG game using Gliffy
Posted by: admin In: Uncategorized
01 Sep, 2010
Posted by: admin In: Uncategorized
I think i will build a lazer glass frame.
http://touchtable.veuti.com/doku.php
http://touchtable.veuti.com/doku.php
any useful links and tips?
11 Aug, 2010
Posted by: admin In: Heroku|Rails|Ruby|Uncategorized
What can be done in 15 minutes?
redmine.org is a ticketing system built in rails
heroku.com rails deployment the easy way
tryruby.org the language itself, try the interactive tutorial, for you to make an informed decision.
Everthing you’ve ever tried doing in another language is covered on railscasts.com
checkout a sample of the available screencasts
Saving thumbnails
generating pdf documents
build ecommerce apps with payment gateway support
Allowing login from external usernames such as from twitter, facebook
as you can see the railscasts and a great reason to use ruby.
RefineryCMS: a great prebuilt cms written with rails
Check this video on vimeo for a run down on it.
RadiantCMS: another cms to chose from.
Typo this is one of the projects that has been around the longest.
09 Aug, 2010
Posted by: admin In: Heroku|Linux|Ruby|Uncategorized
In heroku, Login to the admin page and in the application add the email of the developer that you want to give access to.
Once the developer has registered and activation his heroku account he can do the following.
not as root:
type in a passphrase that you can remember, as you have to type it in twice when you generate.
If you (the developer) had heroku setup correctly then do this.
This will ask the developer for his credentials, which are the email account he registered with and password, this is where it will upload the public key to the server (hence that computer can talk to heroku)
The then successful “heroku list” command will display the applications that developer has access to.
To “download” the file do the following:
Now you should have your own local repository of that application available.
go into the app folder and make an new file with your favourite editor and save the file with some test text inside of it.
do the following
git should then ask you again for your ssh key passphrase which you should have remembered.
now in the main folder of you heroku application you should be able to test the application.
You can then tweak the project to no end, and even saving changes to your local repository using git add . and git commit.
when all your changes run without a glitch you can do the following.
If this didn’t work, check to see if heroku is in the list of remote servers for the repo
instead of heroku try origin.
you can then test the live site at yourapplication.heroku.com
Hope you have enjoyed this, if you need help in creating a new app as opposed to joining one I can create a guide, but editing a project from another computer was the main issue I was having myself as there are many guide on just getting heroku up and running.