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.

quick

iFinance 3.2.4
Wednesday, 03 November 2010 04:00
About iFinance
Offers a comprehensive and efficient approach to easily manage your personal finances. iFinance 3 conveniently manages your entire cash flow over multiple accounts. The completely redesigned graphic user interface helps you keeping an eye on all relevant information — at all times. Quick access to your data and diagrams, as well as to budgets and stocks have been focal points during development of iFinance’s new version.

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

 
Check whether a process is alive
Monday, 04 October 2010 10:26
Check whether a process is running (actually, present and alive) on a particular machine and/or system using its PID ...

Quick version ...


module Process
class << self
def process_alive?(pid)
begin
Process.kill(0, pid)
true
rescue Errno::ESRCH
false
end
end
end
end


A little bit slower version using /proc file system lookup ...


module Process
class << self
def process_alive?(pid)
Dir['/proc/[0-9]*'].map { |i| i.match(/\d+/)[0].to_i }.include?(pid)
end
end
end


Simple use-case:


irb(main):013:0> puts `ps aux | grep -i [t]omboy`
1000 26862 0.0 0.2 103972 9592 ? Sl Sep28 0:09 mono /usr/lib/tomboy/Tomboy.exe
=> nil
irb(main):014:0> Process.process_alive?(26862)
=> true
irb(main):015:0> Process.process_alive?(12345)
=> false
irb(main):016:0>

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/sjuGmBNkEx0/12347

 
FitPlot 3.2
Monday, 20 September 2010 07:00
About FitPlot
Who may need this program?

- CAD users that may have to plot several small drawings or more copies of a small drawing, can save their print job as pdf then drop each pdf on the fitPlot sheet window representing the plotter page. Here you can duplicate, rotate, rescale your pdfs.
- Print services may find in fitPlot a quick and tiny preprint application. It may be useful to prepare visually more copies of an image in the choosen plotter format sheet, optionally giving images trim marks, resizing, rotating etc..
- Web surfers who want a quick way to print found images. Keep an A4 (or Letter) format open aside while surfing on the web and drop on it the images I want to print. Easy and quick.

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

 
iFinance 3.2.3
Friday, 20 August 2010 07:00
About iFinance
Offers a comprehensive and efficient approach to easily manage your personal finances. iFinance 3 conveniently manages your entire cash flow over multiple accounts. The completely redesigned graphic user interface helps you keeping an eye on all relevant information — at all times. Quick access to your data and diagrams, as well as to budgets and stocks have been focal points during development of iFinance’s new version.

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

 
iFinance 3.2.2
Tuesday, 27 July 2010 07:00
About iFinance
Offers a comprehensive and efficient approach to easily manage your personal finances. iFinance 3 conveniently manages your entire cash flow over multiple accounts. The completely redesigned graphic user interface helps you keeping an eye on all relevant information — at all times. Quick access to your data and diagrams, as well as to budgets and stocks have been focal points during development of iFinance’s new version.

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

 


Taxonomy by Zaragoza Online