Tuesday

Linux Mint Cinnamon: How to run Raptor Flowchart Programming App on Linux Mint using Wine Software?

How to run Raptor Flowchart Programming App on Linux Mint using Wine Software?

Start Menu > Administration > Software Manager
Enter your password to perform administrative tasks

Search box > type > Wine

Double-click the row Wine
Wine is Microsoft windows compatibility layer (meta-package)

Click the button Install
Wait until installation has finished

Start Menu > Wine > Configure Wine
Install “Wine Mono Installer”, click the button Install
Install “Wine Gecko Installer”, click the button Install
Wait until two installations have finished

Download Raptor portable app at
http://raptor.martincarlisle.com/RaptorPortable_4.0_Revision_6.paf.exe
Save the RaptorPortable_4.0_Revision_6.paf.exe in the home directory
Right-click “RaptorPortable_4.0_Revision_6.paf.exe” > Open With > Wine Windows Program Loader
Click the button Finish to finish the unzip process

To run the Raptor app on Linux Mint:
-- Right-click the RaptorPortable.exe in the RaptorPortable directory
-- Select "Open With" > "Wine Windows Program Loader"

Save your empty flowchart as the rap file extension
Draw a flowchart and check by yourself if your paper drawn flowchart is correct

No comments:

Measure execution time with Julia, example using sorting algorithms

# random integers between 1 and 100 inclusive, generate thousands of them x = rand ( 1 : 100 , 100000 ) @time sort (x; alg=InsertionSort, r...