Search found 37 matches

by jerico2day
Tue Sep 06, 2011 11:05 pm
Forum: Game Programming
Topic: plot command slow when setting color?
Replies: 2
Views: 2120

plot command slow when setting color?

Why is the plot() command slow when setting a color? I replaced it with LineXY and setting color and there was no discernible speed loss, however, when using plot, my program runs at about half-speed. Any ideas?
by jerico2day
Sun Jul 10, 2011 12:25 am
Forum: Game Programming
Topic: Coder needed for Visual Jump 3D
Replies: 37
Views: 21313

Re: Coder needed for Visual Jump 3D

I'm in the USA.
by jerico2day
Sat Jul 09, 2011 12:35 pm
Forum: Game Programming
Topic: Coder needed for Visual Jump 3D
Replies: 37
Views: 21313

Re: Coder needed for Visual Jump 3D

Sounds good
by jerico2day
Fri Jul 08, 2011 1:02 pm
Forum: Game Programming
Topic: Coder needed for Visual Jump 3D
Replies: 37
Views: 21313

Re: Coder needed for Visual Jump 3D

Hi, I've been programming in Darkbasic pro ever since it was released and darkbasic classic a few years before that. I've been playing with purebasic for a few months too and have a very solid handle on it.

I'd be willing to program for you, but I would have to charge quite a bit. If you're ...
by jerico2day
Sun Jul 03, 2011 11:06 am
Forum: Coding Questions
Topic: Redirecting web file to local file?
Replies: 7
Views: 1717

Re: Redirecting web file to local file?

I just want to point out that these are great ideas, but a determined hacker can reverse engineer your program and either remove the checks or add the checks to their own php script.

But it will stop hackers for the most part unless someone takes a personal interest in your program.
by jerico2day
Sat Jul 02, 2011 5:34 pm
Forum: Coding Questions
Topic: Do not seen to be able to send email...
Replies: 7
Views: 1484

Re: Do not seen to be able to send email...

I'm at work now, so I can't do it, but google mail offers smtp and is free to sign up.
by jerico2day
Sat Jul 02, 2011 2:09 pm
Forum: Coding Questions
Topic: Redirecting web file to local file?
Replies: 7
Views: 1717

Re: Redirecting web file to local file?

Yes. There's no way to circumvent this type of behavior. If it's on the client side, they can really do whatever they want to your program.
by jerico2day
Wed May 04, 2011 3:43 am
Forum: Coding Questions
Topic: sqlite in memory?
Replies: 3
Views: 1152

Re: sqlite in memory?

Ah wonderful. Thanks!
by jerico2day
Tue May 03, 2011 10:47 pm
Forum: Coding Questions
Topic: sqlite in memory?
Replies: 3
Views: 1152

sqlite in memory?

Is it possible to create and use an sqlite database in memory? I found this thread:

http://www.purebasic.fr/english/viewtopic.php?t=27149

But the code no longer works and I can't wrap my head around it.
by jerico2day
Sat Apr 23, 2011 3:50 pm
Forum: Coding Questions
Topic: pointers and lists
Replies: 4
Views: 1285

Re: pointers and lists

Great, thanks guys!
by jerico2day
Tue Apr 19, 2011 10:52 pm
Forum: Coding Questions
Topic: pointers and lists
Replies: 4
Views: 1285

pointers and lists

Hey all, I'm designing something using pointers to keep track of list items for speed reasons. I'm wondering if a pointers address will ever change in a list element? I've done some tests where I added and deleted elements and no other elements changed their pointer address, but I want to make sure ...
by jerico2day
Wed Mar 30, 2011 4:40 pm
Forum: Coding Questions
Topic: logical issue with lists and removing them
Replies: 2
Views: 803

Re: logical issue with lists and removing them

Hmm, well I ran some tests and it looks like on my computer I can delete about 1000 nested elements within about 150-180ms, this is pretty good for what I'm using it for (deleing an object won't be a frequent event and it's very unlikely I'll have more than 2 or 3 nested elements and 100 total).

I ...
by jerico2day
Wed Mar 30, 2011 5:09 am
Forum: Coding Questions
Topic: logical issue with lists and removing them
Replies: 2
Views: 803

logical issue with lists and removing them

The following code should delete an element and all child elements. It works fine if I don't reset the list each time I add an element (I reset it as I want new elements up front). However, when I reset the list and add an element, when it goes to delete it won't delete the requested ID, just the ...
by jerico2day
Mon Mar 28, 2011 2:20 pm
Forum: General Discussion
Topic: When do you start versioning, and do you use CVS?
Replies: 13
Views: 3547

Re: When do you start versioning, and do you use CVS?

I run a virtualmachine on my dev machine which runs virtualmin (virtualmin is a server control panel). Out of the box virtualmin offers a control panel to manage SVN datastores. So when I start a project, I just make a new SVN database. I then installed Trac (though that requires command line ...