abodner

Stories kicked by abodner

More F# At Code Camp Hartford(atalasoft.com)

submitted by ericdcoolestericdcoolest(1200) 3 years, 9 months ago

Rick Minerich writes about CodeCamp in Hartford and his recent F# presentation with slides and code examples read more...

add a comment |category: |Views: 92

tags: another

Generic Fiddling(atalasoft.com)

submitted by ericdcoolestericdcoolest(1200) 3 years, 9 months ago

I spent an hour yesterday playing with generics to get my chops up a little better. After reading Krzystof Cwalina's post on the layout of the generic collections, I came up with this little gem: read more...

add a comment |category: |Views: 413

tags: another

Multilingual OCR(atalasoft.com)

submitted by tomdogtomdog(3230) 3 years, 9 months ago

The challenges of accommodating multilingual OCR engines - and what does "multilingual" really mean anyway when it comes to technical implementation? read more...

add a comment |category: |Views: 129

tags: another

Managed C++ and IDisposable(atalasoft.com)

submitted by tomdogtomdog(3230) 3 years, 9 months ago

Quick fix for IDisposable compiler error read more...

add a comment |category: |Views: 108

tags: another

Debugging Code in the GAC - the best thing since sliced bread(atalasoft.com)

submitted by ericdcoolestericdcoolest(1200) 3 years, 10 months ago

"[...] I read a lot and one thing that caught my eye was that any assembly that is to be used as an add-in needs to be signed and installed in the GAC. This is troublesome as I always assumed that debugging code built this way was going to be, well, a pain in the GAC." Steve Hawley from Atalasoft gives a great little tutorial on this would-be problem. read more...

add a comment |category: |Views: 244

tags: another

How to Build a Managed/Unmanaged Library(atalasoft.com)

submitted by tomdogtomdog(3230) 3 years, 10 months ago

Working with an unmanaged static library - with that, you can build a managed C++ wrapper that exposes the functionality that you need. The C++ compiler does some fairly amazing things in terms of knowing when to do unmanaged/unmanaged transitions, but sometimes it does some surprising things that will cost. [Sample code included in the post] read more...

add a comment |category: |Views: 139

tags: another

Free WPF Image File Viewer with Annotations(atalasoft.com)

submitted by tomdogtomdog(3230) 3 years, 10 months ago

This post includes a free image file viewer application complete with annotation controls - source code for the project is also included - this is a Windows Presentation Foundation application, 100% .NET, and was built using the DotImage toolkit from Atalasoft. read more...

add a comment |category: |Views: 668

tags: another

Custom functions in NAnt(atalasoft.com)

submitted by tomdogtomdog(3230) 3 years, 10 months ago

Some ideas about using NAnt for multiple builds. Code provided but is there a better way to do this? read more...

1 comment |category: |Views: 98

tags: another

Queuing up Your Remote Invokes(atalasoft.com)

submitted by tomdogtomdog(3230) 3 years, 11 months ago

Serializing requests for remote invoke or multiple requests at will? Here is some sample code and a free download that can help with setting this up. read more...

add a comment |category: |Views: 83

tags: another

The Cursed History of Smalltalk in .NET(atalasoft.com)

submitted by tomdogtomdog(3230) 3 years, 11 months ago

Digging up the history of Smalltalk for .NET - none of the 5 are currently in development read more...

add a comment |category: |Views: 221

tags: another

Visual C++ Compiler Bug Discovered(atalasoft.com)

submitted by tomdogtomdog(3230) 3 years, 11 months ago

This bug exists in the optimizer in VC 2003 and 2005. It does not exist in VC 2008. Code, etc. included. read more...

1 comment |category: |Views: 143

tags: another

ompiling, Linking, and Linq-ing(atalasoft.com)

submitted by tomdogtomdog(3230) 3 years, 11 months ago

Thoughts about LINQ vs. flat files read more...

add a comment |category: |Views: 151

tags: another

Tips on Creating Portable APIs(atalasoft.com)

submitted by tomdogtomdog(3230) 3 years, 11 months ago

Five tips and hints on creating good portable APIs. read more...

add a comment |category: |Views: 272

tags: another

Why Are Our Programs Still Represented by Flat Files?(atalasoft.com)

submitted by RickasaurusRickasaurus(1225) 3 years, 11 months ago

It's time to leave the secondary, external structure of our programs behind. If you can treat the reflected code from a programming language like an abstract data structure, why can’t you just keep the source itself in a similarly abstracted data structure? Isn’t the structure of a program more similar to a graph, than a list? Besides the momentum of the past, what is keeping us tied to having our code in this format? read more...

add a comment |category: |Views: 330

tags: another

PDF Image Grabber Application(atalasoft.com)

submitted by tomdogtomdog(3230) 3 years, 11 months ago

The PDF Image Grabber allows you to take embedded images out of PDF Files. Simply open the PDF, choose the page, and then choose which image you want. Then click the Save button and pick a filename. The file saved will be the original image in the PDF at its original size. Application and Source Code provided. read more...

add a comment |category: |Views: 388

tags: another

Simple Image Seam Carver Application(atalasoft.com)

submitted by tomdogtomdog(3230) 3 years, 11 months ago

This is a simple implementation of Seam Carving based on Atalasoft DotImage. Open an image, set the target width, and then click the Shrink button. If you need to protect an area from being removed, click the "Protect Area" button and then click and drag a rectangle to protect. Application and Source Code provided. read more...

add a comment |category: |Views: 169

tags: another