July 15, 2008
Posted by roadburn
Ruby Quick Ref
http://www.zenspider.com/Languages/Ruby/QuickRef.html
July 15, 2008
Posted by roadburn
http://www.zenspider.com/Languages/Ruby/QuickRef.html
Posted Under Uncategorized
July 11, 2008
Posted by roadburn
configure single signon in sharepoint designer
Developing ASP.Net 2.0 Code Behind pages for SharePoint: Using VSeWSS1.1
http://claytonj.wordpress.com/2008/04/13/sharepoint-code-behind-demo-using-vsewss11/
Using ASP.NET 2.0 Code Behind Files in SharePoint v3 Sites
http://www.andrewconnell.com/blog/articles/UsingCodeBehindFilesInSharePointSites.aspx
Application Development on MOSS 2007 and WSS V3
http://blogs.msdn.com/cjohnson/archive/2006/09/05/740498.aspx
VS 2005 Web Application Project V1.0 Released
http://weblogs.asp.net/scottgu/archive/2006/05/08/445742.aspx
Creating Application Pages (_layouts) in MOSS 2007 – How to do rapid development using Form Field Controls
Posted Under Uncategorized
Posted by roadburn
http://mir.aculo.us/stuff/COR_20060413_RailsAjax.pdf
Posted Under Uncategorized
July 10, 2008
Posted by roadburn
http://wiki.rubyonrails.org/rails/pages/HowToInstallOnSite5
for rails 2.1
rake rails:freeze:gems
Posted Under Rails
July 9, 2008
Posted by roadburn
Activescaffold website:
http://activescaffold.com/
Get Activescaffold:
http://github.com/activescaffold
Using File Column plugin:
http://www.42.mach7x.com/2007/10/17/file-column-plugin-with-activescaffold-upload-branch/
Active Scaffolding Tutorial
http://www-128.ibm.com/developerworks/linux/library/l-activescaffold/
Active scaffold for Rails 2.1
http://github.com/robd/active_scaffold/commits/rails-2.1
Recordselect to search and select records
http://code.google.com/p/recordselect/wiki/Install
Posted Under Rails
July 8, 2008
Posted by roadburn
http://railsonedge.blogspot.com/2008/02/rails-forum-tutorial-for-beginners-part.html
Posted Under Uncategorized
Posted by roadburn
First install Git with these instructions if you are using Ubuntu
http://chrisolsen.org/2008/03/10/installing-git-on-ubuntu/
To create the external repository from your Rails app directory,
1 2 3 | $ git status $ git clone --bare .git app.git $ scp -r app.git git@gitserver:/opt/repos |
or SSH to your server, and set up the repository there
1 2 3 4 | $ ssh myserver.com $ mkdir /var/git/myapp.git $ cd /var/git/myapp.git $ git --bare init |
Setting up Rails with Git
1 2 3 | $ cd ~/Sites/myapp $ git init $ git remote add origin ssh://username@myserver.com/var/git/app.git |
Create a top, project-level .gitignore file containing:
1 2 3 4 5 6 | log/*.log tmp/**/* .DS_Store doc/api doc/app public/system/** |
Create some .gitignore files so the empty directories get tracked:
1 2 | $ touch log/.gitignore $ touch tmp/.gitignore |
and commit:
1 2 3 | $ git add . $ git commit -m "Added initial Rails app" $ git push origin master |
Posted Under Rails
July 4, 2008
Posted by roadburn
Walkthrough by Ted Pattison
http://msdn.microsoft.com/en-us/library/bb418732.aspx
Determining where to build custom application
http://msdn.microsoft.com/en-us/library/ms413865.aspx
http://msdn.microsoft.com/en-us/library/ms479423.aspx
Posted Under Uncategorized
July 2, 2008
Posted by roadburn
MOSS Faceted Search
http://www.codeplex.com/FacetedSearch
Custom XSLT for the Search Core Results Web Part
http://www.u2u.info/Blogs/Patrick/Lists/Posts/Post.aspx?ID=1669
Posted Under Uncategorized