מקודד לשווא
גבולות השפה הם הם גבולותיה של המחשבה
Sign in
|
Join
|
Help
עמוד הבית
טופס יצירת קשר
אודות
RSS 2.0
Atom 1.0
חיפוש
תגיות
.NET
.net .40
ActionScript
addon
air2
ajax
as3
asp.net
availability
bash
bidi
box2d
Box2DFlex
browser
c#
CAP
chrome
client side
community server
content-type
css
css3
demo
design
DEV
display
doc
document database
education
ETL
explorer
firefox
flash
flash 10.1
flex
flex3
form
framework
game
gist
hack
header
howto
HTML
html5
input
integration
javascript
JavaScript plug-in download
json
localization
mobile
mod
multitouch
mxml
nosql
nvidia
OFFTOPIC
open source
podcast
Podcast list
ravendb
resources
review
RTL
SAAS
scalability
sharding
Silverlight
software license
sqlite
storage
summary
TECH
text layout framework
textfield
thanks
timezone
tip
tips
tips and trick
tips and tricks
trick
ui
vista
visual studio
vs2010
w3c
web20
win7
windows
wordpress
אינטרנט
דפדפן
טכנולוגיה
כרום
עזרה
קוד פתוח
קיטורים
תוכנה
ניווט
Home
All Posts
RSS
Popular Tags
ארכיון
August 2011 (1)
June 2011 (1)
May 2011 (1)
November 2010 (1)
July 2010 (7)
June 2010 (11)
May 2010 (4)
April 2010 (2)
November 2009 (13)
September 2009 (5)
June 2009 (1)
April 2009 (2)
March 2009 (3)
February 2009 (6)
January 2009 (1)
December 2007 (5)
November 2007 (4)
October 2007 (5)
Me
DNA Studio
Code In Vain
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...
תגים:
JavaScript plug-in download
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').
תגים:
podcast
,
review
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:...