Skip to content

Instantly share code, notes, and snippets.

View fara82's full-sized avatar

Farhana Basrawala fara82

View GitHub Profile
title tags author lead layout
Weekly Widget 5 - Chat
open-source can.Model Socket.IO
fara82
Sending and receiving messages using Socket.IO and can.Model.
post

This week's widget is a real-time chat application that demonstrates sending and receiving messages using Socket.IO and can.Model. This article shows how to integrate Socket.IO to can.Model's events system.

@fara82
fara82 / weekly_widget_chat_old.md
Last active December 14, 2015 01:08
Weekly Widget: Real-time Chat application Using Socket.io and can.Model
title tags author lead layout
Weekly Widget 4 - Chat
open-source can.Model Socket.io
fara82
Sending and receiving messages using Socket.io and can.Model.
post

This week's widget is a real-time chat application that demonstrates sending and receiving messages using Socket.io and can.Model. This article will show how to integrate Socket.io to can.Model's events system.

@fara82
fara82 / javascript.md
Created November 27, 2012 23:12 — forked from justinbmeyer/javascript.md
What you must know about JavaScript

Before learning JavaScript, it's important to learn how it fits into the larger picture of the Browser and DOM (and your web app).

To start, lets walk through a very basic "Hello World" web page. Assume that the server at helloworld.com has this HTML file:

<html>
  <head>
    <script type='text/javascript'>
      alert('Hello JS');