Skip to content

Instantly share code, notes, and snippets.

View mihaihuluta's full-sized avatar

Mihai H mihaihuluta

View GitHub Profile
@mihaihuluta
mihaihuluta / 0_reuse_code.js
Created June 22, 2016 03:50
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@mihaihuluta
mihaihuluta / karma.conf.js
Last active December 16, 2015 20:18
Karma-Runner
// Karma configuration
// Generated on Tue Apr 30 2013 07:58:45 GMT+0300 (GTB Summer Time)
// base path, that will be used to resolve files and exclude
basePath = '../';
// list of files / patterns to load in the browser
files = [
@mihaihuluta
mihaihuluta / app.js
Created April 26, 2013 11:54
main.js File
define(['angular',
'angularResource',
'controllers/controllers',
'services/services',
'filters/filters',
'directives/directives'],
function (angular) {
return angular.module('myapp', ['ngResource',
'myapp.controllers',
'myapp.services',