r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[Ann-Reply] Reply to Announce group

Janko
9-Sep-2010
[2095]
(does anyone have anything related to openId with rebol?)
Henrik
10-Sep-2010
[2096x2]
Kaj, is it possible to wrap the result to fit the page?
if I say read %., it responds with not enough memory. curious error.
Kaj
10-Sep-2010
[2098x5]
No, it means you tried to use more memory than I'm willing to let 
you on our server :-)
That's explained in the introduction text on the start page
Oh wait, this one is different. That would have happened if there 
are already very many REBOL expression files in the folder. But for 
some reason, R3 now yields this result if you don't add a /
So it may be doing something weird that is caught by the set resource 
limits
I chose not to wrap the expression result to provide the purest evaluation 
result
Gregg
17-Sep-2010
[2103]
Very cool Max!
Maxim
17-Sep-2010
[2104]
I'm working on using radial fill-pens, but as expected... its VERY 
heavy.
amacleod
17-Sep-2010
[2105]
Very nice...for a days work....


Radial Fill-pens....that's what I was working with. did not get too 
far
Maxim
17-Sep-2010
[2106]
I've got fire done... tweaking it... but its easily 2 to 3 times 
heavier cpu-wise.
amacleod
17-Sep-2010
[2107]
Is there much improvement to it visually?
Maxim
17-Sep-2010
[2108]
for fire not much, a part that its a bit softer... though I am now 
trying to change the shape of the fill and cirlce so its a vertical 
ellipsis.. this should hel make the flames more or less lines..
Maxim
18-Sep-2010
[2109]
bah, its just too much cpu... with the smoke... it end ups eating 
7-10 more cpu, and I can't crank up the rate past 70 so its really 
bad.


with normal circles, I can up the rate to 500 and just make things 
less opaque and the end result is much prettier.
WuJian
18-Sep-2010
[2110]
Great work.
Maxim
18-Sep-2010
[2111]
I'm about to upload a new version... flame quality is really better 
and the default setup is really neet.
Gregg
18-Sep-2010
[2112]
Great stuff Max. It saves the setup, but doesn't seem to reapply 
it on startup. Is that correct? I had a good looking smoke and flame 
I wanted to share, but then closed the app again. Setting the smoke 
life to a smaller value greatly reduces the "bubble" effect and makes 
it look *really* nice.


The Smoke Darkness slider doesn't seem to initialize to the correct 
value. e.g. move it slightly and the smoke color changes dramatically 
the first time.
Maxim
18-Sep-2010
[2113]
the latest version saves all the birth points and their life span, 
but doesn't save out the "looks" properties yet.


about the smoke color slider... yes... I forgot to change it to light 
color.
Gregg
27-Sep-2010
[2114]
Thanks for updating INCLUDE Ladislav! I use it a lot, and this will 
give me more reason to try some things under R3.
Pekr
29-Sep-2010
[2115]
I'll just copy my email here, as I don't know everybody's on the 
ML:


This is great! First real R3 extension. Just few suggestions overall:


- we should not really forget about using schemes/ports - aproach 
you used is really an old-school, non rebolish. Surely useable, but 
maybe I am just too much used to nice other-rebol-db-driver interfaces. 
As for ports and blocking argument - wasn't R2 ODBC eventually blocking 
too?


- embedded extension is nice, but as well as for SQLite Robert did, 
I suggest to use DLL aproach, with tiny wrapper - you save novices 
from the need to set-up the compiler.


Other than that, I am very surprised that somene actually finally 
produced something VERY usefull, along with nice docs. Just - wow, 
and thanks :-)
ChristianE
29-Sep-2010
[2116]
Thanks, Petr, you're feedback is appreciated! Just some comments: 
Yes, I was thinking *ports*, too, but with R3, the not yet available 
*devices* will be an even better way to go. The API with open-* and 
close-* isn't really nice but it's not yet set in stone, no way. 
Definitely I'll compile to a DLL, too, that's just a matter of time.
Maxim
29-Sep-2010
[2117x2]
Christian... compiling to a db, requires two lines of text to change 
in you C code, and a change in compiler so that it compiles as a 
dll instead of an exe.   really. it takes 15 minutes to change (I 
did so as a test with one extension I was using to try out the new 
interface)
on top of it, you won't have to play around with updating your host 
itself each time a new release is done.   The host itself which is 
subject to change very often right now.
ChristianE
29-Sep-2010
[2119]
These two lines, Max, should be somet #define REB_EXT and a RXI_LIB 
RL  declaration, but that doesn't get me too far. This "15 minute 
 change" is going to cost me hours ;-) And the funny thing is that 
I had it working as a DLL first with A102/A103 and then changed to 
embedded extension. Now I don't find my way back ...
Maxim
29-Sep-2010
[2120]
looking at it now... there are a few changes... but look at this 
code by Andreas, and it should get you up and running within minutes... 
basically copy/paste all the appropriate stuff and change what is 
specific to your code.

https://gist.github.com/0677266b8511d83ce76a
ChristianE
29-Sep-2010
[2121]
That's what I was doing, the comiler still is complaining about missing 
stuff. Will have a look into this tomorrow.
Maxim
29-Sep-2010
[2122]
note that you cannot use the hostkit API directly, only the extension 
API.


what I did was a separate host-kit like header which creates defines 
for the functions I needed.  I added a platform #ifdef, so that it 
will automatically adapt to new platforms if I try to port it.
Andreas
29-Sep-2010
[2123x3]
ChristianE: I took the liberty of adapting your code to also allow 
building it as DLL. Here's the complete diff:

https://gist.github.com/fa147ed65ee752b23133
Building as hostkit-embedded extension is the default, the ODBC_DLL 
define triggers building as external extension.
This also adds a target to the makefile, that allows buidling the 
external dll via `make ../lib/ext-odbc.dll`.
ChristianE
29-Sep-2010
[2126x2]
Andreas, this is great! I'll apply the changes tomorrow evening since 
I'm not a my dev pc now, and put the DLL on the page for others to 
download and play it..
(play with it)
ChristianE
30-Sep-2010
[2128]
Andreas, thanks again for the diff ! I wouldn't have come up with 
the solution. I've just put the DLL online.
Graham
30-Sep-2010
[2129]
Perhaps you could write a small tutorial on how to create extension 
and dll while it's fresh in your mind :)
ChristianE
30-Sep-2010
[2130]
NIce idea, Graham.
PatrickP61
30-Sep-2010
[2131]
Please do!
Robert
5-Oct-2010
[2132]
Max is Renote like National Velocity?
Maxim
5-Oct-2010
[2133x6]
yeah, it seems to be very similar (You meant notational Velocity 
I guess ;-)

though the title is actually called tags, they are the same concept... 
only in renote, they are pushed on the right, to be less obstructive.
funny I never heard about NV, thought the idea is borne of the same 
thing... though renote already seems more powerfull with 3 days of 
dev behind it.
(because of macros)
note that I've tested with hundreds of notes and its still very fast., 
even the scrolling.
auto-tagging is also flexible, especially when you use the parent 
modes.  this automatically adds tags to your note based on the parent 
it is in.
this is done even when its grouped later.  


I will be adding a "get all children" command so that it can be used 
in macros. (add/remove tags to a whole group)
I also plan on adding other export modes, one being for make-doc 
 it would allow us to edit data and look at it via make-doc strings 
in a single click.
Henrik
25-Oct-2010
[2139]
Z:\Downloads\Applications\r3-cgr\cgr-apps\r3.exe


This application has failed to start because the application configuration 
is incorrect. Reinstalling the application may fix this problem.

Not sure what that means...
Maxim
25-Oct-2010
[2140]
I've never seen this error !  on what os?
Henrik
25-Oct-2010
[2141]
XP under VirtualBox
Robert
25-Oct-2010
[2142]
Sounds like corrupted EXE
Cyphre
25-Oct-2010
[2143]
Maxim, the exe doesn't work for me either. I'm gettingsomethinglike 
"There was an error during execution" or so in a Windows message 
box. Win XP here.
Maxim
25-Oct-2010
[2144]
what size was your zip.