Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
As in the unofficial meteor faq, I think it pretty much explains how do structure a large app: | |
Where should I put my files? | |
The example apps in meteor are very simple, and don’t provide much insight. Here’s my current thinking on the best way to do it: (any suggestions/improvements are very welcome!) | |
lib/ # <- any common code for client/server. | |
lib/environment.js # <- general configuration | |
lib/methods.js # <- Meteor.method definitions | |
lib/external # <- common code from someone else | |
## Note that js files in lib folders are loaded before other js files. |
package com.nicequestion.donatas.adf; | |
import oracle.adf.view.rich.context.AdfFacesContext; | |
/** Base generic implementation of ADF flow scoped bean data control. | |
* | |
* Note: specific design and naming convention is applied: | |
* the type T must be defined as managed bean (name flowController, scope pageFlow) | |
* in a bounded task flow definition. | |
* |
git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
create an alias git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
git lg
git lg -p
- koa.js | |
- socket.io 1.0 | |
- Famo.us | |
- Famo.us-Angular | |
- http-api-design | |
- New testing practices | |
- CO-routines and Thunkify | |
- Generators | |
- ES6 --harmony | |
- LiveScript |
#!/bin/sh | |
VERSION=0.8.6 | |
PLATFORM=darwin | |
ARCH=x64 | |
PREFIX="$HOME/node-v$VERSION-$PLATFORM-$ARCH" | |
mkdir -p "$PREFIX" && \ | |
curl http://nodejs.org/dist/v$VERSION/node-v$VERSION-$PLATFORM-$ARCH.tar.gz \ | |
| tar xzvf - --strip-components=1 -C "$PREFIX" |
/** | |
* @author Aitor Osés Martín | |
* @description Directive for controlling a | |
* set of checkboxes inside a single property | |
* @url http://jsfiddle.net/murray900/Lz6qbkf0/13/ | |
*/ | |
var app = angular.module('main', []); | |
app.controller('outerCtrl', function ($scope) { |