/**
* HANDSON Promises: provide more levels to the game
*
* We have some cool levels waiting for you at the following urls:
* - 'http://localhost:8080/levels/basic.json'
* - 'http://localhost:8080/levels/easy-start.json'
* - 'http://localhost:8080/levels/hard-to-get-drunk.json'
If you want to join the first workshop and get your hands dirty in the handson part, ensure the following is ready on your computer:
ulimit -n
ulimit -n 512
- Email: [email protected]
- Telefoon: 0472/49 48 99
- Twitter: https://twitter.com/hoetmaaiers
- Github: https://github.com/hoetmaaiers
- Linkedin: https://be.linkedin.com/in/robinhoudmeyers
When nesting routes multiple levels deep and then linking between these routes, Ember throws an error shouldSuperCede
.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Converts a value to a string appropriate for entry into a CSV table. E.g., a string value will be surrounded by quotes. | |
* @param {string|number|object} theValue | |
* @param {string} sDelimiter The string delimiter. Defaults to a double quote (") if omitted. | |
*/ | |
function toCsvValue(theValue, sDelimiter) { | |
var t = typeof (theValue), output; | |
if (typeof (sDelimiter) === "undefined" || sDelimiter === null) { | |
sDelimiter = '"'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ -f "${rvm_path}/scripts/rvm" ]; then | |
source "${rvm_path}/scripts/rvm" | |
if [ -f ".rvmrc" ]; then | |
source ".rvmrc" | |
elif [ -f ".ruby-version" ] && [ -f ".ruby-gemset" ]; then | |
rvm use `cat .ruby-version`@`cat .ruby-gemset` | |
elif [ -f ".ruby-version" ]; then | |
rvm use `cat .ruby-version` |
Pluralize or singular string based on a number
Handlebars.registerHelper('pluralize', function(number, singular, plural) {
if (number === 1) {
return singular;
} else {
return (typeof plural === 'string' ? plural : singular + 's');
}
});
How-to whitelist nested attributes with no limit. In my use case, it was for tags (which are obviously not predefinable ). http://guides.rubyonrails.org/action_controller_overview.html#outside-the-scope-of-strong-parameters
def product_params
params.require(:product).permit(:name).tap do |whitelisted|
whitelisted[:tags] = params[:product][:tags]
end
end
- 960 Grid System - An effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. There are two variants: 12 and 16 columns, which can be used separately or in tandem.
- Compass - Open source CSS Authoring Framework.
- Bootstrap - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
- Font Awesome - The iconic font designed for Bootstrap.
- Zurb Foundation - Framework for writing responsive web sites.
- SASS - CSS extension language which allows variables, mixins and rules nesting.
- Skeleton - Boilerplate for responsive, mobile-friendly development.