Skip to main content

Home/ Groups/ WikiTechie
al-Amjad Tawfiq Isstaif

nricciar/wikicloth - 0 views

  •  
    Ruby implementation of the MediaWiki markup language
al-Amjad Tawfiq Isstaif

wagn/wagn - 0 views

  •  
    Ruby on rails wiki platform for collaborating to build custom web systems
al-Amjad Tawfiq Isstaif

Good base app for Rails 3? - Stack Overflow - 0 views

  •  
    "Could anybody tell me a good base app for Rails 3?"
al-Amjad Tawfiq Isstaif

The Twelve-Factor App - 0 views

  •  
    "In the modern era, software is commonly delivered as a service: called web apps, or software-as-a-service. The twelve-factor app is a methodology for building software-as-a-service apps that:"
al-Amjad Tawfiq Isstaif

PhantomJS: Headless WebKit with JavaScript API - 0 views

  •  
    PhantomJS is a headless WebKit with JavaScript API. It has fast and native support for various web standards: DOM handling, CSS selector, JSON, Canvas, and SVG.
al-Amjad Tawfiq Isstaif

Federated Content Management - 0 views

  •  
    Accessing Content from Disparate Repositories with IBM Content Federation Services and IBM Content Integrator
al-Amjad Tawfiq Isstaif

The Ruby Toolbox - Wiki Apps - 0 views

al-Amjad Tawfiq Isstaif

Getting Comfortable Working With Rails Core - 0 views

  •  
    "For those of you who want to dive in, I've assembled this list of things I've done to get going and I think it could help you out, too."
al-Amjad Tawfiq Isstaif

Open Data Kit - 0 views

  •  
    Open Data Kit (ODK) is a free and open-source set of tools which help organizations author, field, and manage mobile data collection solutions
Muhammad Al-Syrwan

Issue #68: undefined method `namespace' · ctran/annotate_models - 0 views

  •  
    annotate gem solution
Muhammad Al-Syrwan

How to set up your own private Git server on Linux | Bradley Wright - 0 views

  •  
    ssh myserver.com sudo apt-get update sudo apt-get install git-core …and that's it. Adding a user If you intend to share these repositories with any collaborators, at this point you'll either: Want to install something like Gitosis (outside the scope of this article, but this is a good, if old, tutorial); or Add a "shared" Git user. We'll be following the latter option. So, add a Git user: sudo adduser git Now you'll need to add your public key to the Git user's authorized_keys: sudo mkdir /home/git/.ssh sudo cp ~/.ssh/authorized_keys /home/git/.ssh/ sudo chown -R git:git /home/git/.ssh sudo chmod 700 !$ sudo chmod 600 /home/git/.ssh/* Now you'll be able to authenticate as the Git user via SSH. Test it out: ssh git@myserver.com Add your repositories If you were to not share the repositories, and just wanted to access them for yourself (like I did, since I have no collaborators), you'd do the following as yourself. Otherwise, do it as the Git user we added above. If using the Git user, log in as them: login git Now we can create our repositories: mkdir myrepo.git cd !$ git --bare init The last steps creates an empty repository. We're assuming you already have a local repository that you just want to push to a remote server. Repeat that last step for each remote Git repository you want. Log out of the server as the remaining operations will be completed on your local machine. Configure your development machine First, we add the remotes to your local machine. If you've already defined a remote named origin (for example, if you followed GitHub's instructions), you'll want to delete the remote first: git remote rm origin Now we can add our new remote: git remote add origin git@server.com:myrepo.git git push origin master And that's it. You'll probably also want to make sure you add a default merge and remote: git config branch.master.remote origin && git config branch.master.merge refs/heads/master And that's all. Now you
al-Amjad Tawfiq Isstaif

Why I think Mongo is to Databases what Rails was to Frameworks // RailsTips by John Nun... - 0 views

  •  
    " I say that I now approach Mongo with the same kind of excitement I first felt using Rails."
al-Amjad Tawfiq Isstaif

5 star Open Data - 0 views

  •  
    Tim Berners-Lee, the inventor of the Web and Linked Data initiator, suggested a 5 star deployment scheme for Open Data. Here, we give examples for each step of the stars and explain costs and benefits that come along with it.
Muhammad Al-Syrwan

Ruby on Rails Guides: Action Controller Overview - 0 views

  •  
    action controller
al-Amjad Tawfiq Isstaif

Tower.js - Full Stack Web Framework for Node.js and the Browser - 0 views

  •  
    Built on top of Node's Connect and Express, modeled after Ruby on Rails. Built for the client and server from the ground up.
al-Amjad Tawfiq Isstaif

activerecord - Why does rails not respect the type of a belongs_to associated object wi... - 0 views

  •  
    "Setting self.abstract_class = true actually tells ActiveRecord that there is not a database table associated with that class so your inherited classes will each have their own database table. "
al-Amjad Tawfiq Isstaif

ruby on rails - How to get the current_user in a model observer? - Stack Overflow - 0 views

  •  
    " before_filter :set_current_user private def set_current_user User.current_user = #however you get the current user in your controllers end"
al-Amjad Tawfiq Isstaif

DHH Offended By RSpec, Says Test::Unit Is Just Great - 0 views

  •  
    "RSpec and Cucumber versus.. Test::Unit"
al-Amjad Tawfiq Isstaif

RailsWizard - Simple Rails Templates courtesy of Intridea - 0 views

  •  
    "Just click recipes from the list to add them to your template."
al-Amjad Tawfiq Isstaif

Starting a "professional" Rails app with Haml, Rspec, Devise, and Web App The... - 0 views

  •  
    "how to create an app from scratch that looks good enough to sell to clients i.e. with slick design, authentication, authorization"
‹ Previous 21 - 40 Next › Last »
Showing 20 items per page