Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Aurel

Pages: [1] 2 3 ... 12
1
Programs / Re: Better Bench by Ed Davis
« on: April 15, 2022, 06:49:12 am »
Here is my results with qb64 1.5v on win7 32bit

2
Programs / Re: Evolving RI (Robot Intelligence) for a room vacuum
« on: March 05, 2022, 04:40:25 am »
Very good Mark
This one remind me on one old ZXspec example

3
Programs / Re: 1945
« on: December 12, 2021, 01:30:07 pm »
hi johnno B++

I just download your zip and compile with v1.5
at first game not respond then i figured that is started without data folder
then i add data folder in same folder where is created exe and voila game start...
well ...looking strange at first because it is in full screen (i remember versions in windowed mode)
this one work very well...

4
QB64 Discussion / Re: What's your digital signature look like?
« on: December 01, 2021, 11:03:14 am »
what a heck...
i tried again and now compile fine
hmm...that was strange....sorry if I bothering you.

5
QB64 Discussion / Re: What's your digital signature look like?
« on: December 01, 2021, 11:00:13 am »
here is:

Quote
D:/ARCHIVE/qb64_1_5_win_x86/qb64/internal/c/c_compiler/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/bin/ld.exe: reopening ..\..\Dsignature.exe: Permission denied

6
QB64 Discussion / Re: What's your digital signature look like?
« on: December 01, 2021, 09:06:38 am »
Hmmm
I tried to compile this code with V1.5 on win7_32 bit and i get compiler error
why?...do i need to use latest 2.0 for such a simple program ?

7
Hello
Very nice report...i like it
some things i understand and some not ..i am not good listener..heh



8
QB64 Discussion / Re: smallest LINUX that will run compiled QB64 ?
« on: November 12, 2021, 03:37:20 pm »
No i used KDE 3
but looks to me that older linux distro with KDE 3
are faster ..because of smaller kernel i think

just for testing you can try polippix linux which is ubuntu based
and run faster than Q4OS..it is KDE 4 i think

9
QB64 Discussion / Re: smallest LINUX that will run compiled QB64 ?
« on: November 10, 2021, 03:30:41 am »
so Q4OS work as BSpinoza says
i have it installed and worked fine but somehow slow

10
Programs / Re: Language
« on: November 09, 2021, 02:08:02 pm »
hi Ed...
i get it how to test it in your subset Interpreter
uhh...little bit crazy because i don't use console very much
but work well ...!!!

11
Programs / Re: Language
« on: November 09, 2021, 12:40:50 pm »
hello Ed...and others of course

Ed ..you killing me with this negative power_up-s
i tested it right now in my microA and ouhh...
it must be written like this to get same result but work
in my case i made power_up like a function with parens (why ..i don't know )

by the way Ed...is same result in your subSet Interpreter ...i cannot test it ?

12
QB64 Discussion / Re: Trouble understanding MID$( )
« on: November 07, 2021, 04:28:02 am »
what ,what and what
i must say that i am surprised with MID$
it is such a simple and elegant string function which return subString ...right?

mark says :

mid$( t$, len) ..yes it is ok but not for everyone....it should be standard

MID$ ( target_string, start_Pos, Len_Of_substring)

13
Programs / Re: How Many Recursive Calls Can Your System Take?
« on: November 03, 2021, 06:43:50 am »
Quote
Steve's Fill routine is not a great example. No exit check and no clear path to finishing ie it continues to expand outward in 4 directions from every point.

Yes and each time function point(x,y) return value and that value accumulate his own amount on stack
or memory...i guess

14
QB64 Discussion / Re: Recursion
« on: November 02, 2021, 03:32:25 pm »
heh yes
with 20 work!
even i am not sure that i understand it exactly how is connected with
circle radius( stupid me ..he he )..

15
QB64 Discussion / Re: Recursion
« on: November 02, 2021, 09:36:59 am »
also Steve code compile fine
but when i run it ..then crush ...
i asking why ??

Code: QB64: [Select]
  1.   Screen _NewImage(640, 480, 32)
  2.      
  3.     Circle (240, 240), 200, &HFFFF0000
  4.     Fill 240, 240, &HFFFF0000
  5.      
  6.     Sub Fill (x, y, kolor As  Long)
  7.         If Point(x, y) <> kolor Then Pset (x, y), kolor
  8.         If Point(x + 1, y) <> kolor Then Fill x + 1, y, kolor
  9.         If Point(x - 1, y) <> kolor Then Fill x - 1, y, kolor
  10.         If Point(x, y + 1) <> kolor Then Fill x, y + 1, kolor
  11.         If Point(x, y - 1) <> kolor Then Fill x, y - 1, kolor
  12.     End Sub

i changed kolor var to _offset and then program started but then crush

Pages: [1] 2 3 ... 12