Posts

Showing posts from October, 2011

New blog domain: kula.blog

It's still work in progress but new posts will be published on  https://kula.blog/ Thanks to 11ty base blog RSS is working from the start so it should be easy to add to your reader if you still use any :) If now then I hope you can sign up to the newsletter where I'll be publishing new posts and interesting articles to it from time to time. Please use  kula.blog  from now on.

Subversion 1.7 Release

Today Subversion 1.7 has been published! There are new features that are really interesting. Especially new Working copy format. If You know git You will be happy with only one .svn folder that new Subversion uses! There are some speed improvements, partly thanks to HTTPv2 protocol. For git fans there is even --git switch for svn diff command :) svn diff --git New Subversion should be also better with merges. For full description see release notes: http://subversion.apache.org/docs/release-notes/1.7.html New version can be downloaded from Apache Subversion site:  http://subversion.apache.org/download/#recommended-release

Play My Code - HTML5 Games Platform

Image
PlayMyCode is new site that support creating and publishing HTML5 Games. There is online Editor and of course games that You can play :) http://www.playmycode.com/ Editor:  http://www.playmycode.com/build/sandbox

I Will Not Learn Dart

I don't want to learn Dart, at least for now. I hope to explain in this post how I think, so begin. Dart want to be next big language of the Web, but this really doesn't matter. JavaScript will be with us for years from now, and other Browser vendors do not implement it, at least if Google do not pay them to. It will have at best all Chrome users, and this probably be about 20-30% even in a couple of years, so only a couple of developers will really use it for real. Just now how GWT now is used.  GWT and Dart will be used only by people that use Java, but they not WebDevelopers most of the time. Most of WebDevelopers write JavaScript, not Java or even PHP.  What are benefits of Dart rally? classes And that's pretty all of it.  Really, there is nothing really impressive in this new language. This is mix of some other OOP languages. Nothing new. I can tell that this is boring.  Even getters na setters are available in JavaScript, just nobody use

i18n in JavaScript

https://github.com/keithamus/R.js From README: R.js R.js is a simple i18n framework for Javascript, using CommonJS. R.js should work in both browsers, and on Node.js, providing internationalisation capabilities to both. R.js is tiny, at less than 900 bytes minified and gzipped (<2kb minified). R.js has no dependencies, but can be used easily with any other libraries you wish. R.js binds itself to window.R, or global.R on the server side. Soon, R.js will be able to convert from XLIFF format, into R.js files, which can be easily compacted with R.js to provide one single small file for all your i18n needs.

Komodo Edit Themes

From some time I use Komodo Edit, mostly because it is fast. I doesn't like default Komodo Color schemes. They all seem to be not better from no color scheme at all... I found today interesting site:  http://www.kolormodo.com/

Install All Firefox Versions at Once

In Web Development there is need for testing in various browsers, now there are many Firefox browsers, mostly 3.6 - 10(nightly) but installing all of them can be very time consuming. Install it one with:  http://utilu.com/UtiluMFC/

JSConf.EU - Slides

List of slides from JSConf.EU conference. https://gist.github.com/1256066 See also opening song:  http://vimeo.com/29873668  :) Conference site:  http://jsconf.eu/2011/ I must admit that I wait for videos from this conference.

CSS Shaders

If CSS3 has too little features to You, this would be killer: https://dvcs.w3.org/hg/FXTF/raw-file/tip/custom/index.html For me it really looks like the line between Web-Developer and Game-Developer is thinner with every new CSS3 or HTML5 feature.

DebugCSS for Invalid HTML Markup

https://github.com/yahoo/debugCSS/blob/master/debugCSS.css This is interesting idea to create CSS stylesheet to display errors in markup.

Animated CSS3 Backgrounds

http://lab.simurai.com/css/space-cacss/ Is uses repeating-radial-gradient and changes background-size to do animation.

Easy Unit Testing

Recently I read article about Unit Tests:  http://blog.tabini.ca/2011/09/the-easiest-way-to-add-unit-test-to-your-application/ This is more about how to deal with application that already exists, and works. I totally agree with author, there is no point in sitting for three months only to add them! But adding them while working is much smarter! I agree that TDD is great, but this is good if You know what You want to build. I used to build prototype to get  idea how it can work and after that refactor it, and add features until it is good.