Put flip somewhere in your $PATH and chmod a+x it.
Copy fuck into ~/.bashrc.
| { | |
| "env": { | |
| "browser": true, | |
| "node": true, | |
| "es6": true | |
| }, | |
| "plugins": ["react"], | |
| "ecmaFeatures": { |
| $(function(){ | |
| var socket = io.connect('http://localhost:8080'); | |
| socket.on('tweet', function(tweet) { | |
| $('body').append('<div class="tweet">' + tweet.text + '</div>'); | |
| }); | |
| }); |
| #!/bin/bash | |
| # Download all VMWare Fusion machines from Modern.IE Website to test your Website/Web Application in Microsoft Internet Explorer on Mac OSX. All VM's and other VM's for Windows and Linux and other Virtual Manager's such as VirtualBox can be found at http://modern.ie/ | |
| # Don't have cURL or want to learn more, visit http://curl.haxx.se/.. are you really a Developer? First part of that sentence comes from the MS site. | |
| read -p "--> Downloading Internet Explorer 6-10 on Windows XP/7/8 Appliances for VMWare Fusion. Large downloads ahead. (Press Enter to continue)." | |
| echo "--> Download Internet Explorer 6 on Microsoft Windows XP Appliance for VMWare Fusion." | |
| curl --progress-bar -O "http://virtualization.modern.ie/vhd/IEKitV1_Final/VMWare_Fusion/IE6_XP/IE6.XP.For.MacVMware.sfx" | |
| echo "--> Download Internet Explorer 8 on Microsoft Windows XP Appliance for VMWare Fusion." |
| var app = angular.module('app', ['ngResource']); | |
| app.config(function($locationProvider, $routeProvider) { | |
| // $locationProvider.html5Mode(true); | |
| $routeProvider | |
| .when('/', { templateUrl: 'partials/index', controller: 'ctrl' }) | |
| .when('/about', { templateUrl: 'partials/about', controller: 'ctrl' }) | |
| .otherwise({redirectTo:'/'}); | |
| }); |
| var express = require('express'), | |
| passport = require('passport'), | |
| LocalStrategy = require('passport-local').Strategy, | |
| connect = require('connect'), | |
| http = require('http'), | |
| path = require('path'), | |
| util = require('util'), | |
| fs = require('fs'), | |
| redis = require('redis'), | |
| cookie = require('cookie'), |
| // deparam | |
| // | |
| // Inverse of $.param() | |
| // | |
| // Taken from jquery-bbq by Ben Alman | |
| // https://github.com/cowboy/jquery-bbq/blob/master/jquery.ba-bbq.js | |
| var isArray = Array.isArray || function(obj) { | |
| return Object.prototype.toString.call(obj) == '[object Array]'; | |
| }; |
| var spawn = require('child_process').spawn, | |
| aws2js = require('aws2js'), | |
| http = require('http'), | |
| urlutil = require('url') | |
| mime = require('mime'), | |
| Buffers = require('buffers'); | |
| var settings = { | |
| s3: { | |
| key: 'key', |
| .DS_Store | |
| ._* | |
| node_modules/ |