Welcome to Atalasoft Community Sign in | Join | Help

Browse by Tags

All Tags » Programming   (RSS)
I read this kind of funny story about a kid who got himself into a little trouble reading and writing barcodes by hand . After reading it, I figured if he's going through the trouble of getting graph paper and markers to write Code 39, I can certainly Read More...
1 Comments
Filed under: ,

Attachment(s): BarcodeWriterDlls.zip
On March 20th, the regular meeting of the Western Mass Developer's Group will feature Rich Hickey, the author of Clojure. Clojure is a dialect of Lisp that compiles to Java Bytecode and runs on the JVM. It features persistent, immutable data structures Read More...
1 Comments
Filed under:
Last week, I wondered why Scribd uses Flash instead of AJAX and mentioned that it wouldn't work on my iPhone. Today I read that Debian has removed flash from their distribution . Sure, the number of Debian installations won't even show up in the 3rd decimal Read More...
0 Comments
Filed under:
The 2nd annual Business of Software Conference will be in Boston in the Fall. The conference is a off-shoot of the very popular BoS Forum on JoelOnSoftware . The site has videos up from last year's conference. I found this one on measuring your code's Read More...
0 Comments
Filed under:
While preparing my PowerShell presentation a few weeks ago, I was reminded of this explanation of stream processing from the SICP lectures . This concept is widely used in Unix shells, but is really taken to the next level in PowerShell. In fact, after Read More...
1 Comments
Filed under:
Atalasoft was at DevConnections this week, and I went to a some of the sessions including one on a deep dive of Linq, where I learned why Linq looks like this: from ord in orders select ord.id, ord.amount Instead of this: select ord.id, ord.amount from Read More...
One of the things I did for our new 4.0 release was write some GUI tests with AutomatedQA's TestComplete for our new and improved AJAX Image Viewer and Thumbnail Viewer . Along the way I learned a lot about how to write and maintain automated GUI scripts Read More...
Part of what I'm doing puts me knee-deep in Atalasoft ImageCommands. I was staring at some results of TintGrayscale and wondered how easy it would be to make the kind of 3D images that are a combined red and blue images with Atalasoft dotImage. Turns Read More...
0 Comments
Filed under: ,

Attachment(s): 3DPhotoMaker.zip
Everyone knows the first two rules of optimizing: (1) Don't pre-optimize, and (2) Use a profiling tool to make sure you spend time optimizing the right code. I mostly agree with (1) -- I'll get back to that in a bit, and nothing beats a good profiling Read More...
0 Comments
Filed under:
The Humble Dialog Box [pdf] is a pattern to separate UI behavior from code that deals with a specific view technology, like WPF. Essentially, for each window you have a UI data/behavior class, an abstract view class (or interface), and a concrete view Read More...
0 Comments
Filed under: ,