World: r3wp
[RT Q&A] [RT Q&A] Questions and Answers to REBOL Technologies
older newer | first last |
PeterWood 3-Jan-2006 [165] | From Core Louis asked "Does anyone know when rebol will support unicode?" |
Pekr 3-Jan-2006 [166] | nobody knows - scroll up a bit - I asked the same question not so long ago .... |
Rebolek 9-Jan-2006 [167] | Q: What's the reason for moving submission date for Demo Contest to 31.1. ? Thanks. |
Louis 11-Jan-2006 [168x2] | Thanks, Peter and Pekr. But of course I am a little disappointed as I badly need unicode support right now. |
I wonder if there is a C dll somewhere that would give unicode support to the SDK. I have been searching the web for one, but haven't found anything yet. I hate the thought of going back to C, as I haven't programmed in C for a long time. | |
Pekr 11-Jan-2006 [170] | Louis - php uses its "own function", called iconv. AFAIK, iconv is unix utility, maybe you can use that command-line tool or maybe it is available as a library? Dunno ... |
JaimeVargas 11-Jan-2006 [171] | Louis what you want to do with Unicode. What sort of support you need? |
Pekr 11-Jan-2006 [172] | Jaime - e.g. what I need is quite simple - having app on Windows, I need to submit my data to mySQL data in Poland, so it needs to be translated to another charset .... (but IIRC it can be done on server, so I will hopefully manage it without rebol supporting unicode for now ) |
Louis 11-Jan-2006 [173] | I have two needs: (1) I need to display Greek, English, and Indonesia in the same file. (2) I need to be able to convert uppercase Greek characters with accent and breathing marks to lowercase without losing the accent and breathing marks. |
JaimeVargas 11-Jan-2006 [174x3] | Displaying is probably the most difficult, specially for indonesia language. Conversion should be that hard. I guess you are receiving your data in unicode format. So you will need a parser to scan the bytes in the unicode buffer (a simple string!) and maybe generate the display by using the glyphs that encode each char. |
Very low level solution but possible. | |
Now I don't know anything about unicode format, but writing a parser for it, should be that hard. | |
Louis 11-Jan-2006 [177x2] | I found this: http://www-306.ibm.com/software/globalization/icu/downloads.jsp Now I'll have to see if I can get it to work with REBOL Command SDK. |
Documentation here: http://icu.sourceforge.net/userguide/icu.pdf Does this look to you pros that it will work with REBOL command. | |
yeksoon 11-Jan-2006 [179] | why is displaying difficult for "Indonesian language"? |
Louis 11-Jan-2006 [180] | Indonesian is no problem. Greek with accent and breathing marks is the problem. |
Graham 12-Jan-2006 [181] | Can 'run be added to the sdk ? It's in IOS ... |
Pekr 12-Jan-2006 [182x2] | hmm, run is in latest View 1.3.2. Do you miss it with SDK? |
from SDK libs directory, only rebol.exe seems to have 'run inside. That is imo inconsistency ... I will rambo it ... | |
PeterWood 12-Jan-2006 [184] | YekSoon: Presuming the "Indonesian Language" is Bahasa Indonesia and not one of the hundreds of native languages, the difficulty will be if it is written in Jawi script. (Which I'm sure you know is Arabic script with a couple of added letters). |
Pekr 12-Jan-2006 [185] | ah, rambo got spammed once again ... I think that we will have to introduce View generated visual numbers, which you will have to enter into some field ... that seems to be the only protection .... |
yeksoon 12-Jan-2006 [186] | ah, yes... Jawi. my assumption is Bahasa Indonesia in Latin |
Louis 12-Jan-2006 [187] | yeksoon, you assume right. |
Gabriele 12-Jan-2006 [188] | petr: actually even a static image with a "password" to copy stops 99% of automated spam scripts. anyway the situation with rambo is not that bad yet. i just wish i could delete that spam myself. |
Pekr 22-Jan-2006 [189x2] | I was away for a week plus few days, and I thought that maybe I will be suprised by some new releases of Rebol. With RT announcing removal of alpha releases it seems to me, that they also managed to remove steam out of the community once again ... ? At least ppl had something new to test, post new request, ideas, etc. Now we once again don't know, when things like Rebcode will return back, or how Rebcode will be further developed, as we know, it misses security things .... |
Is there any schedule for anything actually? Rebcode, rich-text, rif? All we know for past two months is OS-X is being worked on/updated, and some unconfirmed rumours of Rebol 3.0 being considered to be developed. Any other info? | |
PeterWood 25-Jan-2006 [191] | Has the Holiday Demo Contest been cancelled? |
[unknown: 9] 25-Jan-2006 [192] | No, why? |
Pekr 26-Jan-2006 [193] | maybe because demo upload script was promissed to be on-line on 8th of January, but so far ppl don't know, where to upload their demos. But, as I suggested, I don't expect there will be more than 5 - 6 participants, so instead of losing time to code such upload script, maybe it would be wiser to tell publicly an email address, where participants should send their demos :-) |
[unknown: 9] 26-Jan-2006 [194] | Good point, I'll find out. |
Gabriele 26-Jan-2006 [195] | upload script will be posted very soon (today, at worst very early tomorrow) |
Henrik 28-Jan-2006 [196x2] | question: I own a Linksys WAP54G access point which runs on a MIPS processor with a small Linux server on it. I tried loading REBOL/Core for MIPS onto it, but it couldn't run. The thing is, there is quite a lot of embedded hardware that runs such small linux servers. It would be easy to make control software via REBOL, connected to a PC running an encapped REBOL/View application. This would allow for rich realtime control software, rather than using the normal (slow and non-realtime) built-in webserver. I already managed to get realtime readouts on signal strength, by polling the access point through telnet and displaying a simple meter in a REBOL/View script, something not normally possible. But you could do much, much more, if you could run /Core on it directly. I think there is a lot of unused potential here. Would RT consider such ports of REBOL/Core to various embedded hardware products and provide a list of embedded hardware products that can run /Core? |
addition: I mean embedded hardware products that run Linux and is fairly easy to access for experienced users | |
JaimeVargas 28-Jan-2006 [198x3] | Thats what why-wire has done with openbsd. Running on smaller embedded hw requires careful crafting of memory footprint and cpu use. |
core by itself consumes 2MB of RAM and depending on your program it can take more than 10% of the CPU. BEER was designed with the restrictions of embedded hw in mind, so it keeps very tight memory use and cpu use is the main reason for BEER to be async. | |
Booting rebol on different systems will require good library support so as not to run into problems. But you are ideas are good. Another think is to be able to embed the core image into the ramdisk systems of flash memory, those problems are different in each case. | |
Jerry 1-Feb-2006 [201] | Will REBOL/View support MacOS for Intel? I plan to get a MacBook Pro (Intel) Notebook. I would love to work on my REBOL projects in MacBook Pro. |
JaimeVargas 1-Feb-2006 [202] | Possibly, But there is not official position on universal binaries. |
Ingo 1-Feb-2006 [203] | What's the current state and future plans of Rebol/Services? It's been a long time since there have been any news ... |
Pekr 1-Feb-2006 [204] | It's been long time since we heard any plans ... |
Henrik 6-Feb-2006 [205] | Is there any news on the DIFF function as written about in the blog here: http://www.rebol.net/article/0126.htmland http://www.rebol.net/article/0128.html ? |
Gabriele 6-Feb-2006 [206] | Henrik, see http://www.rebol.org/cgi-bin/cgiwrap/rebol/view-script.r?script=reboldiff.r |
Rebolek 6-Feb-2006 [207] | Is this going to be part of REBOL, as written in blog article? |
Gabriele 6-Feb-2006 [208] | probably. it was developed for that reason, though we haven't discussed it further. |
Gabriele 16-Feb-2006 [209] | just to keep you informed (this is not an official announcement, we will be releasing a roadmap soon), the development of REBOL 3.0 is starting. no eta or feature list available yet. |
Anton 16-Feb-2006 [210] | cool. |
Pekr 17-Feb-2006 [211] | very cool, thank you Gabriele ... that is exactly what was missing. IMO ppl can wait, even longer then roadmap check-point state, but there should really be some roadmap and some more-often releases of alpha stuff - at least I found it vital, as ppl were throwing in some ideas, bug fixes, etc. |
Kaj 2-Apr-2006 [212] | Why is the View 1.3.2 release for Linux not on the main RT View download page? On the test build page it has release status, and I'm getting people who are unable to find the Linux download |
Volker 2-Apr-2006 [213] | No draw with fonts makes it beta? No "every-linux"-version? Or overlooked. I opt to have it there too. |
Gabriele 2-Apr-2006 [214] | problem is that it does'n work out of the box in all distros (you may need symlinking/installing libs), and there's the freetype issue. |
older newer | first last |