Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

which

iWinSoft Barcode Maker 2.9
Wednesday, 30 June 2010 07:00
About iWinSoft Barcode Maker
A professional Barcode Label software for Mac OS X which Create up to 20 types of barcodes. A built-in label database with More than 800 Avery labels, cards, other media type templates are included. Other objects, like text and images can be added to your documents. Any object can be exported to other applications. The Sequential Numbers dialog box allows you to define the sequence in which barcodes are printed. This feature is extremely useful in generating serial-number and inventory barcodes. which is often necessary. It supports many types of barcode symbologies like (UPC A, UPC E, EAN 13, EAN 8, ISBN, ISSN, Datamatrix, Postnet, FIM Codes, Horizontal bars , Code 128, Codabar, Code 39, and Interleaved 2 of 5) that makes it easy to print barcodes in a matter of minutes.

Read more: http://www.apple.com/downloads/macosx/productivity_tools/iwinsoftbarcodemaker.html

 
ImageFlow Fx 2.37
Wednesday, 23 June 2010 07:00
About ImageFlow Fx
Creates stunning animated backgrounds and slideshows instantly from a collection of photos, movies or compositions directly on the timeline of your project in Final Cut Pro and Motion. There are now 27 plugins included in the release which allow you to create a wide variety of animation styles. ImageFlow Fx also includes a range of high quality vector edge masks and picture frames which you can apply to your projects.

V2 version features standalone installation, works on movies and still images, hi res vector masks and frames, graphical texture browser.

Read more: http://www.apple.com/downloads/macosx/finalcutstudio/imageflowfx.html

 
TinkerTool System 2.3
Tuesday, 08 June 2010 07:00
About TinkerTool System
A collection of system utility features helping you in performing advanced administration tasks on Apple Macintosh computers. The application makes use of a self-adapting user interface which automatically adjusts to the computer model and to the version of Mac OS X you are running. All options available in the current situation are accessible via “panes”, very similar to the techniques you already know from the System Preferences application. The features are controlled via a single window which allows you to use the application as a general toolbox and First Aid assistant.

Read more: http://www.apple.com/downloads/macosx/system_disk_utilities/tinkertoolsystem.html

 
A Simple Introduction to Unit Testing II
Thursday, 13 May 2010 12:07
Source: Ruby Programming/Unit testing - Wikibooks, collection of open-content textbooks [wikibooks.org]


Now there are three tests (three member functions) in the class. The function test_typecheck uses assert_raise to check for an exception. The function test_failure is set up to fail, which the Ruby output happily points out, not only telling us which test failed, but how it failed (expected <3> but was <4>). On this assertion, we've also added an final parameters which is a custom error message. It's strictly optional but can be helpful for debugging. All of the assertions include their own error messages which are usually sufficient for simple debugging.



#cat > simpleNumber.rb
#!/usr/bin/ruby

class SimpleNumber

def initialize( num )
raise unless num.is_a?(Numeric)
@x = num
end

def add( y )
@x + y
end

def multiply( y )
@x * y
end

end

#cat > tc_simpleNumber2.rb

require "simpleNumber"
require "test/unit"

class TestSimpleNumber < Test::Unit::TestCase

def test_simple
assert_equal(4, SimpleNumber.new(2).add(2) )
assert_equal(4, SimpleNumber.new(2).multiply(2) )
end

def test_typecheck
assert_raise( RuntimeError ) { SimpleNumber.new('a') }
end

def test_failure
assert_equal(3, SimpleNumber.new(2).add(2), "Adding doesn't work" )
end

end


#chmod 755 *.rb
#ruby tc_simpleNumber2.rb



Loaded suite tc_simpleNumber2
Started
F..
Finished in 0.051741 seconds.

1) Failure:
test_failure(TestSimpleNumber) [tc_simpleNumber2.rb:16]:
Adding doesn't work.
<3> expected but was
<4>.

3 tests, 4 assertions, 1 failures, 0 errors

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/co-gT25PNic/11325

 
Mac-HaBu 10.5
Friday, 07 May 2010 07:00
About Mac-HaBu
An easy to use accounting program with an integrated Invoice module. This program address the following users:

- Freelancer
- Small to middle companies
- Clubs
- Private households

Also for users, which don’t need a balance sheet an accounting program may be useful. Programs, which support only the recording of incomes and expenses, can show only the actual value. In many cases it is however necessary to include also future movements (e.g. paying by credit card).

This program is in German and English available. Please choose the corresponding package.

Read more: http://www.apple.com/downloads/macosx/business_finance/machabu.html

 
7
Next
End


Page 7 of 7
Taxonomy by Zaragoza Online