Older blog entries for sness (starting at number 5076)

Dev Addiction - Lab» Blog Archive » Backbone.js Tutorial – VI. Synchronization and persistence

Dev Addiction - Lab» Blog Archive » Backbone.js Tutorial – VI. Synchronization and persistence: "And finally we come to the last topic of the tutorial on Backbone.js, which will work to see the mechanisms of persistence and synchronization with the server that offers the library. In models we saw how we could create, modify and delete models in our application, but never said how we could send that information to the server to store or process it.

As we discuss in this topic, Backbone defines a default behavior that will help us keep the data synchronized between the client and server."

'via Blog this'

Syndicated 2013-02-03 23:13:00 from sness

Django: Parse JSON in my template using Javascript - Stack Overflow

Django: Parse JSON in my template using Javascript - Stack Overflow: "You could use the built-in json module:

>>> import json
>>> geodata = [ ( "Here", (1003,3004) ), ("There", (1.2,1.3)) ]
>>> json.dumps(geodata)
'[["Here", [1003, 3004]], ["There", [1.2, 1.3]]]'
You can then simply embed the resulting string inside a javascript script:

"

'via Blog this'

Syndicated 2013-02-03 22:42:00 from sness

jQuery Boilerplate

jQuery Boilerplate: "So, you've tried your hand at writing jQuery plugins and you're comfortable putting together something that probably works. Awesome! Thing is, you think there might be better ways you could be writing them - you've seen them done a number of different ways in the wild, but aren't really sure what the differences between these patterns are or how to get started with them."

'via Blog this'

Syndicated 2013-02-03 10:14:00 from sness

auphonic

auphonic: "Automatic audio post production web service for
broadcasters, podcasts, radio shows, screencasts and mor"

'via Blog this'

Syndicated 2013-02-03 09:57:00 from sness

Rendering Views in Backbone.js Isn't Always Simple by Ian Storm Taylor

Rendering Views in Backbone.js Isn't Always Simple by Ian Storm Taylor: "render : function () {
this.$el.$html(this.template());

this.subview.setElement(this.$('.subview')).render();
this.anotherSubview.setElement(this.$('.another-subview')).render();
return this;
}"

'via Blog this'

Syndicated 2013-02-03 01:23:00 from sness

Egghead IO

Egghead IO: "README

I've never been satisfied with video tutorial sites, so I'm doing something about it. Egghead Videos aims to provide the best experience for teaching with video tutorials on the web.

I'm currently focusing on videos/content, so this first release will have very limited functionality. Once the AngularJS course is complete, then I'll switch the focus to site design and features."

'via Blog this'

Syndicated 2013-02-03 00:39:00 from sness

5067 older entries...

New Advogato Features

New HTML Parser: The long-awaited libxml2 based HTML parser code is live. It needs further work but already handles most markup better than the original parser.

Keep up with the latest Advogato features by reading the Advogato status blog.

If you're a C programmer with some spare time, take a look at the mod_virgule project page and help us with one of the tasks on the ToDo list!