Skip to content

Instantly share code, notes, and snippets.

<html>
<head>
<style type="text/css">
@media screen and (-webkit-min-device-pixel-ratio:0) {
.myClass { background-color: #FF0000; }
#myId{color:#444}
body:nth-of-type(1) .chrome{border:1px solid red}
}
</style>
</head>
require 'spec_helper'
describe "posts/new.html.erb" do
before(:each) do
@post = assign(:post, stub_model(Post)).as_new_record.as_null_object
end
it "renders the form partial" do
render
rendered.should have_selector('form',:method => "post",:action => posts_path) do |form|
form.should have_selector('label',:for=>'post_title',:content=>'Title')
@judearasu
judearasu / show.html.erb_spec.rb
Created September 10, 2011 16:46
Show action
require 'spec_helper'
describe "posts/show.html.erb" do
before(:each) do
@post = assign(:post, stub_model(Post,:id=>1,:title => "Test",:description=>'Want to contribute Engines'))
end
it "displays the post title with description" do
render
rendered.should contain("Test")
rendered.should contain("Want to contribute Engines")
@judearasu
judearasu / gist:1800201
Created February 11, 2012 14:46 — forked from fxn/gist:1798985
require 'active_support/inflector'
require 'benchmark'
# QUICK HACK
class RuleSet
def initialize
@rules = []
@regexp = nil
end
@judearasu
judearasu / mixi_graph.rb
Created May 22, 2012 17:27 — forked from nov/mixi_graph.rb
mixi OAuth & Graph API sample
require 'rubygems'
require 'active_support/all'
require 'oauth2'
config = {
:mode => :token,
:client_id => SET_YOUR_OWN,
:client_secret => SET_YOUR_OWN,
:redirect_uri => SET_YOUR_OWN,
:authorization_code => SET_YOUR_OWN,
# unicorn_rails -c /data/github/current/config/unicorn.rb -E production -D
rails_env = ENV['RAILS_ENV'] || 'production'
# 16 workers and 1 master
worker_processes (rails_env == 'production' ? 16 : 4)
# Load rails+github.git into the master before forking workers
# for super-fast worker spawn times
preload_app true
@judearasu
judearasu / Gemfile
Created October 14, 2012 03:29
Serving static sites with rack
source :rubygems
gem 'sinatra'
gem 'multi_json'
gem 'rack'
@judearasu
judearasu / server.js
Created December 1, 2013 18:06
Basic static web server with logger using node.js
#!/usr/bin/env node
/**
*
* Basic static web server with logger using node.js.
* Listen on port 8880, IP defaults to 127.0.0.1
*
**/
'use strict';
var http = require("http"),
@judearasu
judearasu / clone-object.js
Last active August 29, 2015 14:07
Javascript test
describe('clone object', function () {
it('should clone an object', function () {
var expected = {name: 'Ahmed', age: 27, skills: ['cycling', 'walking', 'eating']},
obj = {};
if (expected instanceof Object){
obj = expected.constructor();
for (var attr in expected) {
if (expected.hasOwnProperty(attr))
obj[attr] = expected[attr];
}

##JavaScript specific Questions

  • Which JavaScript libraries have you used?
  • How is JavaScript different from Java?
  • What are undefined and undeclared variables?
  • What is an expression?
  • What is a statement?
  • Give an example of a function declaration
  • Give an example of a function expression
  • Explain what the DOM is and some best practices for interacting with it.