AltME groups: search
Help · search scripts · search articles · search mailing listresults summary
world | hits |
r4wp | 67 |
r3wp | 686 |
total: | 753 |
results window for this page: [start: 1 end: 100]
world-name: r4wp
Group: #Red ... Red language group [web-public] | ||
Andreas: 27-Feb-2012 | (2/3 inline binding code and the rest is very plain OpenGL and, yuck, GLUT.) | |
DocKimbel: 14-Jun-2012 | Well, we need to integrate an R3-like async port/event system with multithreading (both internal threads and OS threads), that's the real challenge. So port! might be implemented as a sub-class of actor! (basically a message-based object). This is still rought as I haven't worked on the details of ports and actors yet. I'm not sure that using an external library for that very sensitive part would be a good idea, because we probably only need a tiny subset of the features provided by those libs and we need a perfect integration with the rest of the runtime/language. You can count of me to implement the solution that will give us the best performances, as this is a critical feature for being able to implement state-of-the-art servers...and you know that we want a very fast Cheyenne v2. ;-) | |
Kaj: 13-Sep-2012 | The rest sounds good, too :-) | |
DocKimbel: 17-Sep-2012 | Fixed it. Going to rest now, will process other tickets tomorrow morning. | |
BrianH: 30-Sep-2012 | If you want one file per table, pick another engine. For the rest of that stuff SQLite is OK. | |
DocKimbel: 13-Oct-2012 | Arnold: I certainly won't document nor make "little tour" for internal code that is in alpha stage. That would be just a waste of time. For the '* suffix for function names, it indicates that the function takes arguments from Red stack. But that might be changed in the future, like all the rest of the code...until we reach beta stage (or even until 1.0 release). | |
Kaj: 15-Oct-2012 | They base themselves on Squeak, the traditional Smalltalk educational track, with Scratch on top, and Python thrown in to appease the rest of the world | |
Arnold: 15-Oct-2012 | Not exactly, I read rsc.r as if system-dialect is not set then start with the compiler.r script. (after that or else the rest of the script follows) but then is has some do other scripts and a modular part and the other scripts are modular too. It look all very sound bu somewhere <there must be/I expect> a first action or function call. | |
BrianH: 17-Oct-2012 | Or rather, our grandchildren might, barring further extensions of the copyright terms. I suppose that Ada Lovelace's work and maybe Jaquard loom programs have fallen into the public domain, but the rest of the public domain code was released to the public domain explicitly. Almost the entire history of computing is more recent than Steamboat Willy. | |
BrianH: 20-Oct-2012 | Don't underestimate the value of treating the header and the rest of the script differently. It lets you put a lot of static information in the header without even looking in the sctipt data at all. | |
Kaj: 26-Oct-2012 | Only RedSystem/empty returns to prompt. Rest hangs (hello, Fibonacci, Mandelbrot) | |
DocKimbel: 7-Nov-2012 | Pekr: the difference between AOT and JIT compilation is much thiner than you think. Just load Red/System compiler code to your R2 app, pass it any source code at runtime, use the link?: no option and you get compiled code and related data in form of binary! values...and voilą! :-) The rest is same as for Cyphre's JIT, you need a way to call native code in memory, something that is hardly possible in R2, but maybe Cyphre found a hole to achieve it anyway. | |
Oldes: 15-Nov-2012 | From R3-alpha world: Carl: It is zero based for math computation reasons. If you think that is wrong, we should discuss it and correct it soon. 11-Oct-2007 6:03:15 PM Carl: Rest of REBOL is one based for this reason: first = pick series 1 11-Oct-2007 6:03:33 PM Carl: The solution we discussed, but have not yet implemented (but it is easy to do) is to add a PICKZ (or PICK0) function. 11-Oct-2007 6:05:41 PM BrianH : Those math computation reasons are why I prefer zero based. I tend to use SKIP instead of AT for the same reason. 11-Oct-2007 6:06:09 PM BrianH : Please add PICKZ and POKEZ - I liked them in rebcode. 11-Oct-2007 6:06:46 PM | |
BrianH: 16-Nov-2012 | I've found that aside from computed indexes, the only times I use PICK/POKE on series are for negative/0 indexes, or indexes greater than 10. For the rest the ordinal functions are faster. | |
Arnold: 16-Nov-2012 | Why not have a special function to handle the 0 gap problem? The rest of the world can use the normal 'pick and 'poke and if you need the special ones they are available and behave as expected in those cases. | |
DocKimbel: 19-Nov-2012 | I guess I will just spend the rest of the day doing something useful, like coding, instead of having to play mind games with you. ;-) | |
Endo: 23-Nov-2012 | I've used FIRST, SECOND, THIRD, LAST and PICK for all the rest. It is even difficult to remember the name of the others as English is not my native language. | |
Henrik: 30-Nov-2012 | Now after observing development of several GUI systems, there are always some particular things I find wrong with them: They were designed with small details in mind rather than the big picture. This means that when a developer uses a GUI system, he'll find that some things are easy, while others are very hard. For example, none of our GUI systems are particularly designer friendly, meaning that building a skin requires a programmer with artistic skills. There are not many of those around and that's a real problem. Saphirion's R3 GUI was derived from Carl's work in a way, where several parts were rewritten, because they didn't scale enough for real-world GUIs. The rest of the work has been about beefing up the R3 GUI to handle what is needed. Development often seems to go in isolated sections: Building styles, building a layout engine, event handling, skin system, animation or whatever, without a properly coherent view on the whole thing. We talk about how we have a really nice feature, but that feature may not mean much, if it's not functioning in a coherent way with the rest. If I were to restart VID Ext Kit as a new GUI system, I would rewrite it top down: Start with an application with the simplest, purest GUI description and write the GUI system down from there. I would recommend that a GUI system for Red needs to be written like that, starting as early as possible and let it grow downwards instead of upwards with a real application in mind rather than some neat demos. | |
DocKimbel: 26-Dec-2012 | This is just a 4 days work, most of the code was implemented in the first 24h, the rest was spent debugging it and adding minor features. | |
Paul: 13-Mar-2013 | Great stuff guys, been taking a bit more time to get to know RED. Great work Doc, Kaj, Peter, and the rest of the testers and submitters. | |
DocKimbel: 21-Mar-2013 | I've removed Q from the console-specific module thinking it was in boot.red. :-) Needs some rest.... I will put Q back in console.red. Sorry Arnold. BTW, how do you manage to call quit the console if you redefine Q for custom usage? | |
Oldes: 23-Mar-2013 | I wanted to add colors into the console, but I'm not sure how... exactly the color codes are different in Windows from rest of the world. What would be the best way how to declare global constants per OS? | |
DocKimbel: 11-Apr-2013 | Only some static resources are on Cheyenne server, the rest is hosted by Blogger (Google). | |
Kaj: 28-May-2013 | Mwah, not really, compared to the rest. Perhaps the site is slow | |
DocKimbel: 23-Jun-2013 | Hi Oldes, I have pushed online only the low-level layers of the Android port. I will push the rest after some cleanups most probably tomorrow. It's working fine on pre-4.1 Android systems, but I'm still struggling with low-level bugs with 4.1+. | |
DocKimbel: 29-Jun-2013 | Arnold: it seems you didn't get that Red and Red/System are two different languages. As they are living in different abtraction layers, you can't expect to directly include code from one in the other. There are special interfaces for that purpose, ROUTINE is the main one for calling Red/System code from Red. That doesn't mean that all your Red/System code needs to be in a routine, just the interfacing code. The rest can be in different libraries that you load into Red/System space using #include in #system or #system-global directives. Including Red/System code into Red directly is not possible, because, these are two different languages. So you need to wrap your Red/System code (and Red/System includes) into a #system* directive. | |
Group: Announce ... Announcements only - use Ann-reply to chat [web-public] | ||
Maxim: 3-Jan-2013 | btw, IMHO, actual announcements, should be in "notice" color scheme (yellow bg) to separate them from the rest of the text. | |
Group: Ann-Reply ... Reply to Announce group [web-public] | ||
BrianH: 25-Sep-2012 | MaxV, REBOL isn't really an interpreter. DO is an interpreter, as is PARSE. The rest are library functions. If your code calls any of these functions, you need to provide the source to your code, even if it's encapped. | |
Andreas: 27-Sep-2012 | The `double j = 1.0. + 1.0` example is another bad one, sorry. It won't result in GCC runtime code being statically linked into the binary generated from a user program. But I will let that discussion rest, as it won't lead us anywhere. | |
Andreas: 27-Sep-2012 | (Sorry for picking up the GCC remark at all. I really want to let that rest, and I fully acknowledge your (Ladislav's) former description (the one I originally contested with "bad comparison").) | |
Henrik: 19-Oct-2012 | Only those that work with console. The rest seem to fail, because I don't have the appropriate DLLs. | |
BrianH: 5-Nov-2012 | I'm up for it. The rest of those suggestions sound good to me too. | |
Oldes: 4-Jun-2013 | I believe it's easier to modify MDP to be more compatible with rest of the world than waiting for world to adopt MDP. But it's your choise of course. | |
Henrik: 5-Jun-2013 | Yes, but it seems to make sense to base body text on this and build the rest around it. MDP has a particular way to format body text, but we've found that it's hard to extend. I would like an MDP2 that much better is capable of outputting right down from a single paragraph of markdown to a full multi-page document. | |
Group: Rebol School ... REBOL School [web-public] | ||
JohnM: 15-May-2012 | Thank you all for addressing my concerns and for your answers about my first coding question. Ahh.. rejoin. Reading up on it makes me better understand how some things are to be done in Rebol. Continuing to the final goal... I have to extract an email address from a GET transfer. The methoed of sending the info to me is completely out of my control. An email address will be entered into a form on a website not controled by me. GET methoed will send the data to my script. The people who created the form on the external site advised that they label the email address as "trnEmailAddress". So now I want to see if I am correct in thinking how to extract and use the email address. Will using the decode a cgi form command (I know they are not commands in the tradiational sense) work. How does it work, does it create variables out of the GET (or Post when using Post, but I am forced to recieve the info via GET) stream? The GET stream in my case will include "&trnEmailAddress=person%40example%2Ecom. So can I do this? decode-cgi system/options/cgi/query-string send trnEmailAddress "Thank you. Rest of message." Thanks for your help. | |
GrahamC: 16-May-2012 | cgi-block is your variable, and the rest are functions | |
Arnold: 19-May-2012 | Yet another task I think REBOL could help me with. Say I could not find the subtitles for an ancient tv-series i stumbled upon on the net. But I found subtitles in English. I can translate but some words will reoccur often, so I imagine a rebol script showing an original line or words to be translated. I type some translations and when I translate a word, all equal words in the rest of the document will change, saving me quite some time. | |
Maxim: 3-Jul-2012 | we neededed to support, xml rest, SOAP and direct get/post interface to the same functions, and that is now working via a configuration, which allows you to tweak how the url is read and switch interfaces on the fly. | |
Arnold: 12-Jul-2012 | Then the garbage should be separatedly collected. The paper, the glass, the compostable material, heavy metal's and rest-garbage. :) | |
BrianH: 14-Aug-2012 | If you are doing anything in PARSE, or generating blocks, or a wide variety of other things, it almost always pays off to do it in R3 if you can, rather than R2 or any of the other REBOL-alikes except maybe Topaz. Topaz has a few PARSE enhancements that R3 could use, but the rest don't even come close; there are so many bugs in R2 that need to be worked around that code for it can be quite different. Unfortunately, other factors can prevent people from using R3. Hopefully when Red itself is developed, not just Red/System, it will adopt the changes that we made for R3. | |
MagnussonC: 18-Sep-2012 | I read a file, line by line and want parts of each line in certain variables. First is an integer then a space and then a 3-4 character word then a space and then the rest of the line in a string. I guess there is no way like in Perl to match those variabels at once and put the value in numbered variables. I suppose I need to parse that line with something like (thru "a" copy b to "c") once for each variable (or perhaps first char with line/1)!? | |
Steeve: 3-Oct-2012 | Hum Ok, I see the >> return do [(body)] as a nice optimization of my code. But for the rest, I'm not sure... | |
BrianH: 3-Jan-2013 | For issues, we could have COPY return another issue of the same spelling, COPY/part return another issue spelled like that portion of the original (only integer part values, not offset positions because words don't have positions), and PICK return a character just as if the issue was a character container like strings are. We would have to avoid the positional functions, and the modifying functions could retern a different version the way that they do for the similarly immutable tuples, but the rest could be emulated as-is. | |
caelum: 27-Feb-2013 | set-net is in the source exactly as above, 'enface' is refusing to compile it, but it compiles (almost) the rest of the program just fine. | |
NickA: 10-Mar-2013 | What's the proper (fast) way to do this? REBOL [title: "Anagram List"] a: copy [] mix: func [str prev] [ repeat i length? str [ picked: pick str i rest: head remove at copy str i append a rejoin [prev picked rest] mix rest join prev picked ] ] mix input: ask "Text: " "" editor unique a | |
PatrickP61: 2-May-2013 | not really, it's just a quick shortcut to allow any REBOL command to be performed while it is in a script that is already executing. ...doing stuff... stopping here to accept various rebol commands and looping until finished ...doing the rest of the script | |
PatrickP61: 2-May-2013 | Its a way to "pause" a running script to enter rebol commands and then when I'm done, get out of the loop and continue with the rest of the script | |
Group: Databases ... group to discuss various database issues and drivers [web-public] | ||
TomBon: 9-May-2012 | if you are looking for a fultext/searchengine don't miss elasticsearch. scales well, based on lucene, very fast, simple to use. the interesting part is the compact rest api the storage model and the number of different analysers, tokenizer (snowball, ngram, etc). you can use elasticsearch also as a standalone nosql database with rebol. speaks completly json. working currently with 1.2 m documents + datastorage on a single machine. runs very smooth. evaluated other components before (sphinx, xapian, tokyo etc.) elasticsearch has it all and is much cleaner to handle than solr. | |
TomBon: 17-Nov-2012 | you have more than one solution, the first is a simple serial SELECT on each table -> compare the output for equal. of course this produce unnecessary DB overhead but I guess you won't feel any speed difference except you are serving a whole city concurrently. another, better one is a JOIN or UNION. SELECT table_name1.column_name(s), ... FROM table_name1 LEFT JOIN table_name2 ON table_name1.column_name=table_name2.column_name the JOIN direction (LEFT,RIGHT,INNER) for your reference table is important here. the resultset is a table containing BOTH columns. if both having a value -> match, if one is empty then you don't. index both fields to accelerate the query and use something like the free SQLyog to test different queries to make debugging easier for you. while you situation reminds me to myself, sitting infront of a monochrom asthon tate dot some decades ago and asking what next?, you should 'bite' yourself now thru the rest. It won't help you on longterm if you don't. | |
Group: Web ... Anything related to the WWW [web-public] | ||
Chris: 16-Jun-2012 | I don't think it'd be that difficult - most of the difficulty in the client was making sure all the hashing was correct, the rest is just storage and logic. | |
Chris: 20-Sep-2012 | The structure of MD since v2 is a separation of scanner and emitter. 'scan-doc will break text into a block of [style content] pairs. 'gen-doc will take that block and turn it into something, most commonly HTML. The features of your doc - using your ==+, ==#, etc. are in the spec of the parser. Loosely explained, the parser's rule 'resets' when it encounters a newline. It defines a few paragraph types that copies chunks of text (including 'paragraph that consumes text AND single newlines). The rest of the rule determines the paragraph style and expected paragraph type: "===" text-line (emit sect1 text) Could just as easily be: "==+" paragraph (emit my-bold-paragraph para) The way a document is presented is all in the emitter. Seems this is where you seem to be yearning for most control. My first motivation using MakeDoc was stripping it of any styles - I just wanted a minimum of HTML markup that could be embedded and properly moulded by CSS. In my script above, I iterate through the [style content] list and use 'switch to determine how to handle each, this should be sufficient for documents without any complexity. It's really then just a case of modifying the HTML that is emitted. Example of script used in RSP (exposes [escape-html scan-doc gen-doc]): <link rel="stylesheet" href="http://ross-gill.com/styles/anywhere.css"> <% do http://reb4.me/r/xhtml%> <pre><code><%= mold doc: scan-doc some-input-text %></code></pre> <%= gen-doc doc %> How it looks depends on the stylesheet you use. | |
Chris: 27-Sep-2012 | http://www.salesforce.com/us/developer/docs/api_rest/Content/quickstart_oauth.htm Is this the API you're trying to access? Looks as if it uses OAuth 2.0 (Etsy and Twitter are 1.0) - I'm not fully aware what the differences are. Note that even though Twitter and Etsy both use the same signing method (OAuth), they differ in how you get the user key - looks as if this one is different again... | |
Chris: 27-Sep-2012 | Hmm, that came across as unreadable here : ) - here it is again: http://www.salesforce.com/us/developer/docs/api_rest/Content/quickstart_oauth.htm Is this the API you're trying to access? Looks as if it uses OAuth 2.0 (Etsy and Twitter are 1.0) - I'm not fully aware what the differences are. Note that even though Twitter and Etsy both use the same signing method (OAuth), they differ in how you get the user key - looks as if this one is different again... | |
Group: !REBOL3 ... General discussion about REBOL 3 [web-public] | ||
BrianH: 26-Dec-2012 | Some of the rest of us (me particularly) had missed the Linux/OSX-style real console for R2, and saw the advantage of having that as an option in R3. We never really got that because R3 opened another window instead of operating in the console it was called from, which turned out to be the worst of both worlds. | |
GrahamC: 9-Jan-2013 | Amazon now insists that soap requests use https so back to using their REST protocol | |
Gregg: 14-Jan-2013 | I still have some rebol services stuff in production, and always had high hopes for it. And while I would like a self-contained, dialected model, I also want to be able to easily use 0MQ as a transport and REST interfaces to map over services. | |
Cyphre: 18-Jan-2013 | One more note: AFAIK the current version of TLS + the encryption support increased the binary only by ~10KB which is also cool. I have no clue how much could take adding the rest of missing algorithms though. | |
GrahamC: 18-Jan-2013 | or that they have such a REST service when they don't | |
BrianH: 19-Jan-2013 | I haven't had a chance to go over the remaining tickets yet. And there are some that weren't implemented yet because Carl didn't want to, but hadn't yet convinced the rest of us as to why. Those might be dismissed if we get a good argument against them, which we can do in some cases ourselves now that we can see the native source. | |
BrianH: 27-Jan-2013 | I've never needed to isolate something, so in general no. Most stuff should generally be regular modules or scripts. The rest are special cases. | |
BrianH: 31-Jan-2013 | I'm going to switch the rest of the code to non-rebinding loops and see if that helps. | |
Maxim: 25-Feb-2013 | I find that becomes quite assymetric in use. if TO is going to change behaviors... relative in some cases and absolute in others... using weird datatype conventions (which seem to be completely different from the rest) then I'd rather have a new Absolute keyword which works just like to on All datatypes. | |
Pekr: 7-Mar-2013 | BrianH: well, as for many scenarios, I can accept SDK like environment, where I choose, what to include, but for some ppl, some R3.exe should exist, which should contain some agreed upon functionality. If we go just with the opinion of let's have bare bone core.exe, and the rest via some includes, that scares hell out of me, really. That's like other languages, loosing what made REBOL rebolish. | |
Cyphre: 26-Mar-2013 | Important message for all R3 graphics fans: I have finished IMAGE datatype(including all image codecs and other related code) change so it uses 'standard' alphachannel values (ie. 0-trasparent 255-opaque)to be compatible with the 'rest of world'. Without this change we would have problems to connect r3 with graphics systems on misc platforms/graphics frameworks etc. This change will be in the upcoming revised R3 graphics code which is being worked on. So that is just FYI to avoid any duplicated efforts(in case you wanted to work on that in the feature). | |
Robert: 8-Apr-2013 | The generic problem to solve is this: You somehow have to specify what should happen for different actions. Let's start with the "somehow have to specify what should happen". For this you have some options: 1. Write the application logic code in the GUI spec block. For sort stuff OK, for long not. 2. Just call a function from the GUI spec block and write the rest somewhere elese. That's IMO the best way. I used FSM and just send "application logic events". The next part is the "for different actions". Same here: 1. Name them explicitly on-* and specify the code with one of the options above.BTW: IIRC R3-GUI has click and right-click blocks for convinience. 2. Define an implicit mappging from block order to event type. 1st block = click, 2nd = right click, 3rd = double left, 4th double right, etc. IMO that's not a good style. Overall what I never liked about VID was that is was not explicit enough. For big projects that's a must. For small you might skip this but if those projects get bigger, you are hit again. | |
MaxV: 9-Apr-2013 | My concern about GOB! is that all the rest seems not useful, probably at the present is missing some function, but or you act to GOB! directly or you have no other ways to change a facet. Am I wrong? | |
Group: !R3 Extensions ... [web-public] | ||
TomBon: 18-Dec-2012 | Some NOSQL connectors would be fine too, not all supporting a straight REST interface. MongoDB, Redis and Tokyo/Kyoto offers a very clean C api. |
world-name: r3wp
Group: !AltME ... Discussion about AltME [web-public] | ||
Sunanda: 3-Jan-2005 | You mean if Carl had reinstalled a 6-week old backup of the master REBOL2 world, it could have recync'ed itself by finding later messages from the rest of us? (I'm guessing six weeks since the last viable backup, as that was the date for one of the IOS restores). | |
Ryan: 5-Jan-2005 | MASLOW'S MOTIVATION THEORY The eminent psychologist Abraham Maslow postulated that people are animals who continually want. No matter how many needs they have satisfied at any one time, they constantly struggle upwards to reach higher levels. He classified these needs in a sequence of five levels the he referred to as "the hierarchy of human needs". The FIRST LEVEL is the lowest and most powerful. Maslow describes first level needs as the physiological needs, which include hunger, thirst, sex, air and rest. SECOND LEVEL: Safety and Security - Shelter, clothing, protection from enemies. THIRD LEVEL: Love and Belonging - Acceptance, friendship, lovers, family. FOURTH LEVEL: Esteem - Recognition, respect, achievement, prestige, independance, importance, attention and appreciation. FIFTH LEVEL (Highest): Self-actualizatoin - To develop or achieve one's full potential. | |
Group: Script Library ... REBOL.org: Script library and Mailing list archive [web-public] | ||
Graham: 14-Aug-2005 | Now the desktop source has a different license from the rest of rebol code. | |
Ammon: 10-Dec-2005 | Sunanda, "probe system" site:www.rebol.org inurl:thread did not return what I was hoping for. By dropping the inurl: then I was able to come up with one relevant thread and the rest of the results were talking about probing in the system object like system/script/args. I can't seem to get rid of the /whatever after system with Google. I was hoping that the ability use quotes to search for a specific phrase instead of breaking it apart and searching for multiple values could be added to the rebol.org search engine. | |
Ammon: 8-Mar-2009 | I attempted to rename button.r to vid-button.r so the new script should be deleted and the old one renamed if possible. As for the rest of them... wizard.r TO vid-wizard.r group.r TO vid-group.r drop-down.r TO vid-drop-down.r dragbar.r TO vid-drag-bar.r date.r TO vid-date.r Since we won't be calling the GUI Dialect in R3 VID the new names should make what the scripts do clear even after R3 GUI scripts start popping up... | |
Sunanda: 24-Jun-2009 | Just replied to a Feedback message sent to REBOL.org about the Script Library: > When will the current script library "die"? [The questioner suggests that R3 incompatibilities may mean we simply purge all R2 scripts to create an R3-only Library] My response...... Thanks for the question. The simple answer is: I hope never. *** Coincidentally, I have just started an exercise in seeing how many of my contributions to the Script Library will port with few or no changes. The results are encouraging so far: http://www.rebol.org/art-display-article.r?article=j26z I know some of my scripts will be obsoleted by R3. They can stay in the Library as R2-only resources. I am hoping many of the rest will be code compatible between R2 and R3, so they will work either way. *** Ladislav has also commented on his early porting experience: http://www.rebol.org/art-display-article.r?article=w24v There is some discussion of the issue on the REBOL3 AltME world: http://www.rebol.org/aga-display-posts.r?post=r3wp453x15753 *** The Library has a flexible tagging method for scripts, see: http://www.rebol.org/st-topic-index.r We can very easily add tags for (say) R3-ready R2-only Or whatever seems the best set to help partition the scripts into R2, R3, or both. Hope that helps a little! | |
Group: I'm new ... Ask any question, and a helpful person will try to answer. [web-public] | ||
BrianH: 10-Jun-2005 | Consider: The installer is run once per version, and the only problems left in its function are the location of registry entries that aren't visible from View anyway. The problems that affect day-to-day View operation have been fixed with the use of a seperate sandbox directory. The rest can be fixed in later versions with automagic migration code and no REBOL scripts would know the difference. Once installed, View can be used in a multiuser environment now (as of 1.2.117); we can make the installer multiuser-safe later. | |
Group: Make-doc ... moving forward [web-public] | ||
shadwolf: 11-Jan-2005 | visual interface need to bee designed with clic clic way but the rest no so the frendly way you show the code the entertainner it is ;) | |
Group: Linux ... [web-public] group for linux REBOL users | ||
Volker: 2-Mar-2006 | Knoppix can be installed and is is then a debian, so the rest can be apt-getted. damn small linux claims the same. Kanotix is a knoppix specially made for that. no guaratees.. | |
[unknown: 10]: 22-Mar-2006 | Its strange.. I should not be needing to run a fontserver..My desktop is already anti-aliased with fonts and so it the rest..But rebol still does not display it... mmm It does load the font though..(also when i look with an Strace during the execute rebol does read the font..) it simply does not display it ..yet! ;-) >> probe fnt1 make object! [ name: "/usr/X11R6/lib/X11/fonts/TTF/VeraMono.ttf" style: none size: 32 color: 0.0.0 offset: 2x2 space: 0x0 align: 'center valign: 'center shadow: none ] | |
Kaj: 5-Apr-2006 | It's dark magic. On some Linuxes, the REBOL fonts are really distorted. When they're as intended, it's still only old-style Helvetica that's not anti-aliased, so they stick out as a sore thumb compared to the rest of the system | |
Group: CGI ... web server issues [web-public] | ||
Anton: 20-Feb-2005 | Then, when one fails, you can shut it down and it won't affect the rest of the people running other versions. | |
Maxim: 26-Feb-2007 | is it possible to extract/change a cookie from the site a plugin is working in? I have embedded an app within an IIS served web site. I must make the reblet interact with the site's cookie, so it follows the rest of the site's status when relaunched (browsing to/from the app from other pages restarts the rebol app). | |
btiffin: 25-Jul-2007 | Daniel; Try http://www.rebol.org/cgi-bin/cgiwrap/rebol/view-script.r?script=cgi.r for some code. And http://www.rebol.net/cookbook/recipes/0026.htmlfor a REBOL sample solution and then wait for the rest of the forum members to pipe up with 'bigger better' solutions, and they will. :) | |
btiffin: 18-Sep-2007 | Petr; DON'T :) Suggesting that people try and sneak REBOL past sysadmins is a really really really bad idea. If they can't be convinced to try it, then change ISP, or try to convinvce them again. Don't be making REBOL look all cracky. That is the kind of maneuver that could sink the ship. The rest of us like the ship, and we fly the flag of peace and truth, not the Jolly Roger. :) | |
Maarten: 24-Nov-2007 | I am also adding a routing scheme (dialect) so basically you redirect all traffic except static stuff to a fastcgi process, it comes in the router and then it checks on extension or path (REST) what to do. | |
Group: Web ... Everything web development related [web-public] | ||
Pekr: 12-Jan-2005 | have you seen http://www.nvu.com/? Gecko based. They aim for something like Dreamwaver. IIRC, with dreamwaver, if you have e.g. some module, you can provide "plug-in", simply that web designer will parametrise you module using GUI and the rest is done under-the-hood .... | |
DideC: 13-Jan-2005 | To Web guru : is it possible to have a page without frame but with some content glued to the top or the bottom while the rest scrolls ? | |
Pekr: 31-Jan-2005 | I can also see combination of table (to create column/row template) and the rest be done using css ... | |
Group: XML ... xml related conversations [web-public] | ||
Graham: 8-Nov-2008 | I read that most web APIs are REST based, but there are still a significant number based on SOAP, and also JSON | |
Group: DevCon2005 ... DevCon 2005 [web-public] | ||
Robert: 20-Apr-2005 | Let's do it every year. Remember: Each second is the start of the rest of your lifetime. | |
Group: PgSQL ... PostgreSQL and REBOL [web-public] | ||
DaveC: 29-May-2007 | I've been using pgsql-protocol (r090) to store HTML reports into the DB. It can write a large compressed string into a text column ok. Trying to read the data back causes the program to hang. The length of the stored string returns 182514 chars. (In psql: SELECT length(html) FROM reports....) Test Code; sql: {SELECT html FROM reports.html_reports WHERE ticket = '2007-756-fcw'} insert db-port sql html: first db-port .... rest of test program never gets executed. Does anyone know if this a known behaviour? Thanks For information, if I select any other column, the program runs as expected. The data is these columns is a lot smaller in length. | |
Group: Sound ... discussion about sound and audio implementation in REBOL [web-public] | ||
Volker: 8-Sep-2005 | Thanks :) maybe if you make it ready for c, i could do the rest. means make it use structures, not relying on contexts etc. for the time-critical things. | |
Group: Rebol/Flash dialect ... content related to Rebol/Flash dialect [web-public] | ||
Oldes: 16-Mar-2006 | just found that the movies for this example http://box.lebeda.ws/~hmm/rswf/index.php?example=116 were missing - in the movie in the middle are czech soldiers on acid and the rest are the same chinese soldiers preparing to watch atomic explosion. | |
Terry: 16-Nov-2007 | I hope it works great.. and I hope the plugin gets fixed properly... then I'll mash it in with all the rest. | |
Group: Windows/COM Support ... [web-public] | ||
Pekr: 28-Jun-2006 | just ask DocKimbel to release his xy years old version. He did not do that, because RT asked him not to do so. IMO fastcgi is not feature which would ruin RT sales. Except secure mode there is very little value in the rest of Command - outdated ... | |
Group: Plugin-2 ... Browser Plugins [web-public] | ||
Pekr: 10-May-2006 | Brian - yeah, I do remember something like patents involved, but mainly imo it was MS move with IE 5.5, to move out from NS kind of plug-ins - the rest of the world is still using NS plugin architecture, that is why Mozilla plug-in works with Netscape, Opera and possibly others. | |
Pekr: 10-May-2006 | ok, I thought that the wrapper allows that, but there is aparently some limitation .... well, at least, having ns plug-in seems to work for the rest of the world, getting npruntime support on-board would be nice addition too ... | |
PhilB: 11-May-2006 | Pretty sure .... though I did recently re-install firefox (along with the rest of Windoze) but installed it into the same folder as my previous version. | |
Group: !Cheyenne ... Discussions about the Cheyenne Web Server [web-public] | ||
Oldes: 15-Oct-2006 | but at least under rest of the browsers it would looks better (and with overflow: scroll) | |
Group: DevCon2007 ... DevCon 2007 [web-public] | ||
Maxim: 2-Feb-2007 | this alone will open up REBOL to the rest of the industry. | |
[unknown: 9]: 4-May-2007 | I think you just upload them, and they take care of the rest. | |
Group: DevCon2008 (post-chatter) ... DevCon2008 [web-public] | ||
Sunanda: 21-Sep-2007 | If you skim the transcript of the Altme group during DevCon2007, you can see the frustrations cuuased by the narrow channel between the meeting room and the rest of the world. I think partially because the live feed was not a top priority for the organisers One idea: If 50 people paid USD15 to be Internet Participants at DevCon2008 that could fund a much better channel for them http://www.rebol.org/cgi-bin/cgiwrap/rebol/aga-display-posts.r?post=r3wp500x303 |
1 / 753 | [1] | 2 | 3 | 4 | 5 | 6 | 7 | 8 |