- Grunt - The JavaScript Task Runner
- Bower - A package manager for the web
- Component - Component package manager for building a better web.
- AngularJS - MVC Javascript framework
- Sencha, Dojo...
- Kinohled.cz - Application in just 2 weeks
- Reverse proxy based on cookie value and given uri (nginx)
- JSON as a storage format
My comment: I don't understand why authors haven't used MongoDB as they could only save it into collection and then work with it in much better way... It's like saving all of my data to txt file, because that is the simpliest way how to do it.
- Nice presentation about some useful things while doing code reviews
- Code review is not a review of a person, but of his code!
- Same as github flow (http://scottchacon.com/2011/08/31/github-flow.html) - There was no mention of github flow in the presnetation
- Github as a tool for code reviewing
My comment: I've found github as the best tool for code reviews as you can write your comment at specific line of code.
- Interesting subject, but the presentation did not show any real example
- Neural network, Decision tree learning, SVM
- Whole presentation was a bit slow and could use faster pace.
- Try to remove all not needed things from your website.
- When you create a form make sure it make sense.
- Ajax loading - Change cursor icon and indicate page loading (with iframe...)
- Use more time consuming opretaions to crypt/hash your password
- PHP 5.5 password api
- Blowfish
- Don't use md5 or sha1 without complicated salt
- Do not send password over email (password should be always entered by user)
- Leave problem with security to someone else and use third party login (Facebook, Google+, Twitter...)
- michalspacek.cz
- Big data - actual problem (not enough people to check all data)
- Problem in energy industry and a way how it could be solved with Big data
- Quick introduction to iOS application development
- Introduction to Coffescript syntax
- Slides: http://www.slideshare.net/parallaxis/develconf-coffeescript
- Api definition on apiary.io
- Test your api implementation with apiary.io
- Proxy from apiary to your application - monitor requests with apiary.io in development
- jsonschema.net
- Contact support of apiary.io to access some of not yet released features
- Grunt
- Live reload
- Slides: http://www.slideshare.net/ladislavprskavec/devel-2013
- PHP Reference google chrome extension
- Bookmark http://developer.chrome.com/extensions/manifest.html as it leads to everything you need
- Devel examples: https://github.com/fczbkk/develcz2013
- You can parse invalid html code with following code:
var dummy = document.createElement('div');
dummy.innerHTML = invalidXMLString;
dummy.innerHTML; // valid DOM ;-)