Skip to content

Instantly share code, notes, and snippets.

View mrinalwadhwa's full-sized avatar
🦀

Mrinal Wadhwa mrinalwadhwa

🦀
View GitHub Profile
package
{
import flash.display.Bitmap;
import flash.display.Sprite;
[Frame(factoryClass="com.mrinalwadhwa.ApplicationLoader")]
public class Example extends Sprite
{
package com.mrinalwadhwa
{
import flash.display.DisplayObject;
import flash.display.MovieClip;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.events.Event;
import flash.events.TimerEvent;
import flash.utils.Dictionary;
package
{
import crayons.signals.ChangeSignal;
public class SomeModel
{
private var _data:String;
public var dataChanged:ChangeSignal;
public function SomeModel()
package
{
import flash.text.TextField;
import flash.display.Sprite;
import crayons.data.binding.Binder;
public class Example extends Sprite
{
private var source:SomeModel;
private var target:TextField;
protected function while_loop1():void {
var l:int = 500000000,
i:int = 0;
while (i < l){
i++;
}
}
@mrinalwadhwa
mrinalwadhwa / file_utils.erl
Created July 2, 2011 03:31
Erlang: list all the files in a directory and recursively in all its sub directories
-module(file_utils).
-export([recursively_list_dir/1,
recursively_list_dir/2]).
% @type name() = string() | atom() | binary().
-type name() :: string() | atom() | binary().
@mrinalwadhwa
mrinalwadhwa / justify.js
Created June 15, 2012 05:34
Justify text if hyphens:auto is supported
var addStyleSheet = document.createStyleSheet || function(styles){
var css = document.createElement('style');
css.setAttribute("type","text/css");
css.appendChild(document.createTextNode(styles));
document.getElementsByTagName('head')[0]).appendChild(css);
}
function isHyphensAutoSupported(result){
try {
var
@mrinalwadhwa
mrinalwadhwa / clearfix.css
Created June 15, 2012 05:37
CSS clearfix
/* based on http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified/ */
.cf:before,
.cf:after {
content: ".";
display: block;
height: 0;
overflow: hidden;
}
.cf:after {clear: both;}
@mrinalwadhwa
mrinalwadhwa / ampersand.html
Created June 15, 2012 06:30
Ampersand — Goudy Bookletter 1911
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Ampersand</title>
<style>
@font-face {
font-family:"Goudy Bookletter 1911";
src:url('http://themes.googleusercontent.com/static/fonts/goudybookletter1911/v3/l5lwlGTN3pEY5Bf-rQEuIHkY3soKkPv_thL__S829Cw.eot#iefix') format('embedded-opentype'),
@mrinalwadhwa
mrinalwadhwa / index.html
Created June 15, 2012 20:32
CSS to make a div take the entire page, width & height 100%
<!DOCTYPE html>
<!--[if lt IE 7]><html class="lt-ie9 lt-ie8 lt-ie7" lang="en"><![endif]-->
<!--[if IE 7]><html class="lt-ie9 lt-ie8" lang="en"><![endif]-->
<!--[if IE 8]><html class="lt-ie9" lang="en"><![endif]-->
<!--[if gt IE 8]><!--><html lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Box</title>
<style>