Skip to content

Instantly share code, notes, and snippets.

View juliankrispel's full-sized avatar

Julian Krispel juliankrispel

View GitHub Profile
@juliankrispel
juliankrispel / gist:4714777
Last active December 12, 2015 04:28
Instantiating and extending Collection at the same time. Just wrap extend in braces
define( [], function(){
var v_Filters = Backbone.View.extend({
filters: new (Backbone.Collection.extend({
url: 'http://www.google.com'
}))
});
@juliankrispel
juliankrispel / git_cheatsheet.markdown
Last active December 12, 2015 06:38
Git Cheatsheet

Pull from branch from remote repository 'origin'

git pull origin master

push to branch 'master' from remote repository 'origin'

git push origin master
@juliankrispel
juliankrispel / gist:5012097
Last active December 14, 2015 02:18
Thoughts on Javascript Architecture

##1 Plugins vs Modules in an MVC context

I have the impression that the general online developer-community seems to say that if you build a backbone-based application almost every UI problem can be tackled with an MV* like structure. My opinion is that for UI-development it's often more appropriate to delegate a lot of that job to a flat plugin, like a jquery plugin for example. That way you can delegate all the UI-specific code to a sepperate Module.

###Notes

  • But aren't plugins just modules, or shouldn't they structured like MVC modules? A: Depends on the complexity of the job. A lot of UI plugins/libraries would benefit from a more MVC-structured approach I believe.
  • I think there is a need for more style-standards, it would definately be a better world for frontend developers if there weren't as many different ways of doing things in Javascript. On the other hand, it's my firm believe the 'mistakes' and the vagueness inherent in the language allow for the diversity of approaches and usecases that al
@juliankrispel
juliankrispel / bash_cheatsheet.md
Last active December 14, 2015 02:58
Bash Cheatsheet

Dealing with $path

To edit $path on Mac OS lion create a file with a simple list of directories, line per line like this:

path/to/something path/to/something/else

and add the file to /etc/paths.d/

You could also directly edit the paths file under /etc/paths

@juliankrispel
juliankrispel / gist:5030779
Last active December 14, 2015 04:49
Backbone Notes

#Backbone Notes

##Backbone Modelbinder

  • NEVER EVER attach an instance of ModelBinder to a Class. I've done this mistake multiple times now always forgetting that it's a class and not an object.

##Model Attributes

You can assign a function to an attribute, this is very handy if you wanted to for example assign the current date to a new item

@juliankrispel
juliankrispel / jsquirks.md
Last active December 14, 2015 09:18
Javascript Quirks

#JS Quirks!

##Underscore Extending an Object with _.extend doesn't extend the actual function body

Everybody expects Javascript to fail when you do this: (A typo basically)

var a = 0,
    b = 1,

c = 2;

Contract Killer 3

Revised date: 07/11/2012

Between us [company name] and you [customer name]

Summary:

We’ll always do our best to fulfil your needs and meet your expectations, but it’s important to have things written down so that we both know what’s what, who should do what and when, and what will happen if something goes wrong. In this contract you won’t find any complicated legal terms or long passages of unreadable text. We’ve no desire to trick you into signing something that you might later regret. What we do want is what’s best for both parties, now and in the future.

@juliankrispel
juliankrispel / typical_milestones.md
Last active December 14, 2015 12:19
Typical Milestones for a Web-Project

#Typical Milestones for a Web-Project

##Pre-Design Phase

###Initial Communication

Before we do any design it's clearly important to define the basis for our decisions. In pre-design meetings it's good to get an idea of what position the product has in the clients company, what its purpose is, what the expectations are etc.

Note: You're not a business-consultancy but a designer/developer, be mindful of the difference

@juliankrispel
juliankrispel / js_recipes.js
Created March 14, 2013 15:26
Javascript recipes
//Rounding a decimal
Math.round(num * 100) / 100