DCSIMG
October 2007 - Posts - מקודד לשווא

October 2007 - Posts

2
תגובות

internationalization of mobile controls על ידי danielisimo

In our current project we are building an asp.net mobile store front. Yesterday I bumped up with localization issues, when starting the project I took in consideration that asp.net has a good support for internationalization and that we already know it from past projects so implementing should be a breeze. Unfortunately it looks like that the mobile controls didn't take it to the last mile. The framework and web site compilation supports resource files but the specialized mobile controls e.g...
7
תגובות

FCKEditor flow direction plug-in על ידי danielisimo

In a recent project we needed to allow Hebrew input in FCKEditor , and it was missing RTL/LTR flow direction controls. after developing this plug-in I understood the importance of documentation. This project has zero to none documentation, and it took me a significant amount of time to carry out a simple task like it. It's a shame because it has a really good extension API. you can download the plug in from this.location (at list i acquired a little bit of JavaScript humor) Installation notes...
2
תגובות

About.Me על ידי danielisimo

Hi my name is Daniel Cohen (29), And I'm working in the software industry for the past 8 years. Three years ago I stared my own shop , focusing on delivering content to unique devices like TV set top boxes, cell phones kiosk stations and other "exotic" devices. Our backend is usually built with Microsoft stack (some out of the box and some alt.net) Our frontend is more diverse and including verity of technologies and vendors. Personally I'm in to automation and productivity, and...
0
תגובות

Hanselminutes #86 - Software Licensing with Jonathan Zuck על ידי danielisimo

On my way to a client's I've listened today to the latest hanselminutes show titled "Open Source Software Licensing with Jonathan Zuck of ACT Online" this show is a must listen for every developer that uses 3rd party code downloaded from the net, and is liable for his creation. it's a great introduction to software licensing and patents and clears some uncertainties when using common licensed libraries (like GPL , LGPL , BSD ect').
תגים:,
3
תגובות

object serialization in JavaScript (or Mozilla toSource API) על ידי danielisimo

in the past year or so we have been working with JSON to serialize messages , and always we bump up with the issue of circular references. while searching for a solution I've discovered that Mozilla has an internal object serializer that is fast and works with circular references. Check it out: var a = new Object(); a.name = "daniel"; b = new Object(); b.a =a; b.createDate = new Date(); b.index= 4; document.write(b.toSource()) results in : ({a:{name:"daniel"}, createDate:...
Powered by Community Server (Commercial Edition), by Telligent Systems