World: r3wp
[!REBOL3-OLD1]
older newer | first last |
Pekr 17-Jun-2009 [15622] | So, now I am happy owner of HTC Touch Pro 2 ... now I need my first R3 build for it :-) http://www.htc.com/www/product/touchpro2/overview.html |
Janko 17-Jun-2009 [15623] | Will .. that would be really interesting to look at as GC looks very interesting and minimal in concepts.. to bad I am not in ADC :( |
amacleod 17-Jun-2009 [15624x2] | Pekr, I have had the HTC touch for a year and a half...been a little disappointed. I hope the newer versions are a bit better but I'm not sure if its the hardware or windows mobile that most disappoints... HAve you seen teh new palm pre? It looks interesting! |
If r3 was up and running on htc touch I think I would overlook alot of my issues with it... | |
Pekr 17-Jun-2009 [15626x3] | no, not yet, and I have no plan to support proprietary "OS" as PalmPre is. It allows some kind of web like development. OTOH I haven't studies it properly yet. I am quite disappointed by Android - it is a let-down for me, at least for what I saw on HTC devices - just hyped because of Google, nothing special ... |
What were your issues? It is clearly not as smooth as iPhone is in operation. This is mostly because of capacitative vs resistive touch screen. I needed few days to make ma touch navigation more solid. Overall it feels more sluggish. But TouchFlo3D version 2 is quite snappier and I would not probably buy any Windows Mobile without that add-on. | |
... and yes, it might be the problem of Windows, because how is that iPhone has relatively slower HW, yet feels speedier? | |
BrianH 17-Jun-2009 [15629] | A lot of that is UI design. |
Henrik 17-Jun-2009 [15630] | speaking of which... iPhone OS 3.0 was just released. |
Pekr 17-Jun-2009 [15631] | 'round being now a native. This should be welcome by those doing looped math operation. |
Ladislav 17-Jun-2009 [15632] | 10 times faster, more accurate, less exceptions |
BrianH 17-Jun-2009 [15633x2] | Yay! I haven't been able to review the ROUND and RANDOM tickets since the functions were being rewritten - this should help. |
After reviewing the current state of the R3 module system, here is the state of what is implemented so far: - Dependencies - Encapsulation - Explicit exports to the system exports - Implicit import of the system exports And here is what is not implemented so far: - Explicit imports, even just limiting imported words to those in the dependencies - Distinguishing exports for explicit import from the system exports - Access controls for the system exports It will not be possible to implement what is not currently implemented until the mezzanines and natives are put into modules. However, what is implemented so far is enough to start the process of putting the system code into modules. Further work on the module system (except bug fixes) and any preprocessor will have to wait until the system code modularization is done. | |
Robert 18-Jun-2009 [15635] | Regarding MATH stuff.I alway need functions to convert from scientific to human readable form including thousand seperators, using "," instead of "." etc. How about adding this to the CORE? IMO a very high frequent function. |
Henrik 18-Jun-2009 [15636] | Gabriele's FORM-DECIMAL function has always worked solidly for me. It could be considered as a mezz. |
Robert 18-Jun-2009 [15637] | Yes, but making it native might be a good idea. I call this function a lot and with a lot of numbers while filling input-forms. |
Henrik 18-Jun-2009 [15638] | as long as it's not too complex. form-decimal is a rather complex mezzanine. |
Pekr 18-Jun-2009 [15639] | can't download new alpha, tried xy times and still receiving timeouts .... |
Oldes 18-Jun-2009 [15640x2] | It's possible to download it from web using browser (but it's slow).. or try to enhance this value: system/schemes/http/spec/timeout |
Downloads are here http://www.rebol.com/r3/downloads.html | |
Paul 18-Jun-2009 [15642] | maybe a better name would be numerize. |
BrianH 18-Jun-2009 [15643x2] | Specific formatting is always a bit of a problem, because everyone needs it, they need it to be fast, they need it to be consistent, and they need it to be completely different from what other people need. Personal preferences, industry standards, local standards, none agree. Fortunately in R3 native doesn't have to mean built-in or standardized. |
Remember, "human-readable" depends on the human doing the reading. | |
Sunanda 19-Jun-2009 [15645] | Some notes on my first attempts to run R3-alpha against existing, published R2 scripts: http://www.rebol.org/art-display-article.r?article=j26z |
Steeve 19-Jun-2009 [15646] | Hmmm... we don't use anymore "to-pair reduce [x y]" since a while, but "as-pair x y". |
Sunanda 19-Jun-2009 [15647] | The script was written back in 2003, when as-pair was not availabe. Oddly, R3-a58 does support to-pair, but not for integers, suggesting the problem is just a glitch: >> to-pair [1 2] ** Script error: cannot MAKE/TO pair! from: [1 2] >> to-pair [1.0 2.0] == 1x2 |
Steeve 19-Jun-2009 [15648] | Interesting conversion in R3. >>to-pair 2.8 ==2x2 |
Sunanda 19-Jun-2009 [15649] | That's an R2 feature too. It kind of makes sense: to-pair 2 == 2x2 ;; duplicates the 2 to create the missing value to-pair 2.8 == 2x2 coerce to integer!, then as above. |
BrianH 19-Jun-2009 [15650] | to-pair [1 2] not working is a bug, btw. Has a ticket and everything. |
Maxim 19-Jun-2009 [15651] | pairs are very usefull in R2 I hope their functionality doesn't change. |
BrianH 19-Jun-2009 [15652] | Aside from that bug, I've seen no changes. AS-PAIR might go native though. |
Maxim 19-Jun-2009 [15653] | so when will the plugin interface be documented? |
BrianH 19-Jun-2009 [15654] | It's not even done yet. After this month I guess. |
Maxim 19-Jun-2009 [15655] | I just can't wait :-) |
Sunanda 20-Jun-2009 [15656] | is binary a string? Carl wants opinions to help him decide: http://www.rebol.net/r3blogs/0209.html |
Sunanda 22-Jun-2009 [15657] | No twitter or other announcement, but alpha 58 is out -- over 25 curecode issues addressed: http://www.rebol.net/wiki/R3_Releases#View.exe_2.100.58_21-June-2009 |
Pekr 22-Jun-2009 [15658] | yeah, I am really satisfied with last few months of developments, and I think that the community in overall is, as Carl is doing mostly Core stuff, and not GUI. R3 is getting more and more robust and consistent, although there is still some way to go. I can feel that we are getting more R3 fixes per month, than we get for R2 in last decade :-) |
Sunanda 22-Jun-2009 [15659] | Yes -- I am hitting bugs, reporting them on curecode and often seeing them fixed in just a few days. It's a good time to be evaluating R3. |
BrianH 22-Jun-2009 [15660] | New operator !== for STRICT-NOT-EQUAL? - that was the last comparison action without an operator :) |
Ladislav 22-Jun-2009 [15661x2] | Carl asked: wouldn't it be best to have same? to check for bit-by-bit equality? - this would "doom" same? :a 'a to yield False, requaring a new comparison operator to compare for "the same variable" case |
requiring, sorry | |
BrianH 22-Jun-2009 [15663] | So SAME? is less strict than STRICT-EQUAL? for words? |
Ladislav 22-Jun-2009 [15664x2] | not just for words, for numbers,... |
but, certainly not "completely less strict": >> same? 'a use [a] ['a] == false >> strict-equal? 'a use [a] ['a] == true | |
BrianH 22-Jun-2009 [15666x2] | Weird - I thought it was a strict hierarchy of increasing equality. Never wrote code that would be tripped up by that. |
new comparison operator - why not = or EQUAL? | |
Ladislav 22-Jun-2009 [15668x3] | this hierarchy never existed, AFAICT. |
since equal? 'a use [a] ['a] should yield True IMO | |
The only thing I am sure about is, that the IDENTICAL? function ( http://www.rebol.net/wiki/Identity) is the finest possible (except for my bugs). | |
BrianH 22-Jun-2009 [15671] | For SAME? I am more concerned about word binding equality than datatype equality. If the datatypes differing would make the return value false, we can always convert to the same datatype. |
older newer | first last |