Search found 54 matches

by kns
Sun Sep 29, 2013 4:32 pm
Forum: Off Topic
Topic: Help needed with C and C++
Replies: 14
Views: 3384

Re: Help needed with C and C++

jassing wrote:well; if you read the readme -- it shows a simple example, in the archive was a test file -- showme would run for me too; it just wouldn't process the file.
See above. You need an XServer running.
by kns
Sun Sep 29, 2013 3:54 pm
Forum: Off Topic
Topic: Help needed with C and C++
Replies: 14
Views: 3384

Re: Help needed with C and C++

Both compiled with a full installation of Cygwin (http://www.cygwin.com).

1. edit makefile - removing "-DLINUX"
2. type "make"

did showme work?

I haven't looked at what this code is meant to do...however, typing './showme' generates a short help screen of options/arguments. It appears to work ...
by kns
Sun Sep 29, 2013 3:12 pm
Forum: Off Topic
Topic: Help needed with C and C++
Replies: 14
Views: 3384

Re: Help needed with C and C++

Both compiled with a full installation of Cygwin (www.cygwin.com).

1. edit makefile - removing "-DLINUX"
2. type "make"
by kns
Fri Sep 20, 2013 3:40 pm
Forum: 3D Programming
Topic: Avoiding overlapping objects
Replies: 2
Views: 2209

Re: Avoiding overlapping objects

Thank you very much.
by kns
Fri Sep 20, 2013 11:54 am
Forum: 3D Programming
Topic: Avoiding overlapping objects
Replies: 2
Views: 2209

Avoiding overlapping objects

First, though I have owned PB for ages, it's only been recently that I have decided to give it serious attention. Essentially, I am brand new to the environment. With that caveat in mind I am attempting to randomly place N spheres without any overlap.

Rather basic.


Define.l NumObj=10
Dim prop ...
by kns
Thu Jun 25, 2009 8:59 pm
Forum: Off Topic
Topic: GUI/Dialogs for command line tools
Replies: 3
Views: 1529

GUI/Dialogs for command line tools

I'm searching for a utility that will provide the means to run existing command line tools, in this case data analysis, so that the output can be captured to an editable window or box. No doubt such an application already exists consequently any pointers would be most appreciated.

Thanks.
by kns
Thu Jul 27, 2006 8:11 pm
Forum: Announcement
Topic: [NEW BOOK] Purebasic - A Beginner's Guide To Programming...
Replies: 190
Views: 69064

Excellent!

I will certainly place my order within the next day or so.
by kns
Tue Jul 05, 2005 11:32 am
Forum: Announcement
Topic: [Book] PureBasic - A Beginners Guide
Replies: 18
Views: 9086

I'd buy it if there were several chapters on GUI applications.
by kns
Sun Jul 03, 2005 5:10 am
Forum: Off Topic
Topic: Pyxia sells.. but who's buying??
Replies: 60
Views: 21249

Yeah I agree.... Strange move.... A bunch of the community got together and purchased it together. It will be interesting to see if all or even most of the people that pledged their money will actually pay up now that they have won. Hopefully they will, but I wouldn't be suprised if they dont ...
by kns
Fri Jun 24, 2005 12:02 pm
Forum: Off Topic
Topic: FREEBASIC compiler
Replies: 31
Views: 9630

Comments removed....The following is 'Hello World' using Allegro.



#include "allegro.bi"

allegro_init
install_keyboard

if (set_gfx_mode(GFX_SAFE, 320, 200, 0, 0) <> 0) then
set_gfx_mode(GFX_TEXT, 0, 0, 0, 0)
allegro_message "Unable to set any graphic mode" + chr(13) + allegro_error + chr ...
by kns
Wed Jun 22, 2005 9:48 am
Forum: General Discussion
Topic: Forum Layout
Replies: 0
Views: 964

Forum Layout

A quick look will make it clear that there are more posts to the Miscellaneous versus the OS Specific groups. To minimize scrolling/improve usability, any chance that they can switched?

Thanks.
by kns
Sat Feb 19, 2005 11:44 pm
Forum: Tricks 'n' Tips
Topic: Polygon convex
Replies: 6
Views: 4212

Very cool!
by kns
Fri Feb 04, 2005 5:12 pm
Forum: Off Topic
Topic: Goodbye to PB community
Replies: 21
Views: 6540

Count me as another who looked forward to your posts. All of your projects have been of some interests.

K.
by kns
Sat Jan 29, 2005 1:29 am
Forum: Tricks 'n' Tips
Topic: Kohonen selforganising maps (Artificial Neural Networks)
Replies: 10
Views: 3819

Perhaps stating the obvious...

Neural networks are often used for classification tasks. That is, with data for many things/people in a sample population, the objective is to group those objects. The supervised versions assume that examples exist for which the correct classification is available ...