Skip to main content

Home/ Groups/ WikiTechie
al-Amjad Tawfiq Isstaif

Cappuccino Web Framework - Learn About Cappuccino and Objective-J - 2 views

  •  
    i was planning to implement that idea :)
  •  
    but it depends on a new language Objective-J :(
Muhammad Al-Syrwan

WikiCreole: Creole 1.0 - 2 views

  •  
    wiki markup
  •  
    a wiki markup we could use some day :)
al-Amjad Tawfiq Isstaif

Real world Rails, Part 3: Optimizing ActiveRecord - 2 views

  • The third alternative is to provide a common capability, but using associations instead of inheritance. ActiveRecord has a feature called polymorphic associations that is ideal for attaching common behavior to a class without inheritance. You saw an example of a polymorphic association earlier in Address. I can use the same technique to attach my common attributes for content management instead of inheritance. Consider a class called ContentBase. Normally, to associate that class to another class, you would use a has_one relationship and a simple foreign key. But you would probably want your ContentBase to work with more than one class. You need a foreign key, and also a column that defines the type of the target class. That's exactly how ActiveRecord polymorphic associations work. Look at the classes in Listing 11.
    • al-Amjad Tawfiq Isstaif
       
      This is exactly what we want.
al-Amjad Tawfiq Isstaif

Parakey: And Emerging WebOS Ideas - 1 views

  •  
    Spectrum Online reports that Blake Ross and Joe Hewitt are working on a system called "Parakey", which essentially will be a downloaded application that turns your PC into a local server, and allows you to seamlessly drag web content (photos, text, movies, calendars, bookmarks, RSS feeds, etc) into you Parakey "site", and easily control who can and cannot view it with a color coded "key" system.
al-Amjad Tawfiq Isstaif

Open Cobalt Website - 1 views

al-Amjad Tawfiq Isstaif

About | Social Stream - 1 views

  •  
    "Social Stream is an open source platform on which to build websites with social networking features. It provides the basic features of a social network such as Facebook, Google + or LinkedIn"
  •  
    يعتبر هذا المشروع من الأنشط بعد دياسبورا، وهو عبارة عن محرك ريلز
al-Amjad Tawfiq Isstaif

The Ruby Toolbox - Search results for: 'social' - 1 views

  •  
    هذه مجموعة من الأدوات ذات العلاقة بالشبكات الاجتماعية مبنية من خلال rails، وبعضها تم تنفيذها كمحرك rails engine
Muhammad Al-Syrwan

Help.GitHub - Working with submodules - 1 views

  •  
    great feature in git : adding sub projects 
Tamer Shlash

mbc3.net - 1 views

  • وح الشيطان "ويكي ت
  • لشيطان "
    • Tamer Shlash
       
      ويكي تيكي يعتبر هنا روحاً لشيطان!
al-Amjad Tawfiq Isstaif

Web Intents - 1 views

  •  
    "Web Intents is a framework for client-side service discovery and inter-application communication. Services register their intention to be able to handle an action on the user's behalf. Applications request to start an Action of a certain verb (share, edit, view, pick etc.) and the system will find the appropriate Services for the user to use based on the user's preference. "
Muhammad Al-Syrwan

BitBucket vs GitHub - 1 views

  •  
    Can Bitbucket Challenge GitHub with Free Repositories?
al-Amjad Tawfiq Isstaif

Miro community - Home - 1 views

  •  
    Easily create a video-based community
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

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

maccman/juggernaut - 0 views

  •  
    "Juggernaut gives you a realtime connection between your servers and client browsers. You can literally push data to clients using your web application, which lets you do awesome things like multiplayer gaming, chat, group collaboration and more. "
al-Amjad Tawfiq Isstaif

GFX - 0 views

  •  
    GFX - a 3D CSS3 animation library for jQuery. GFX integrates CSS3 transforms and transitions into jQuery, making it stupidly simple to create sophisticated and gorgeous animations.
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

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

Community Engine - Rails Plugin That Adds Social Networking To Your App - 0 views

  •  
    " Rails Plugin That Adds Social Networking To Your App"
1 - 20 Next › Last »
Showing 20 items per page