World: r3wp
[Announce] Announcements only - use Ann-reply to chat
older newer | first last |
Cyphre 30-Jun-2006 [310] | Yes, that would be great. |
Dockimbel 1-Jul-2006 [311] | Fix for MySQL driver released today (v1.0.7): o Fixes a comptability issue in handshaking with new servers using old passwords format. See http://www.softinnov.org/rebol/mysql.shtml |
Gordon 1-Jul-2006 [312] | That's amazing. Thanks Dockimbel. |
Henrik 7-Jul-2006 [313] | TOOLBAR version 0.0.3 released. Toolbar is a new layout function for creating a MacOSX or Windows style toolbar for VID. Files: http://hmkdesign.dk/rebol/toolbar/toolbar-manual.html http://hmkdesign.dk/rebol/toolbar/toolbar.r http://hmkdesign.dk/rebol/toolbar/toolbar-demo.r |
Henrik 13-Jul-2006 [314] | TOOLBAR version 0.0.5 released. Files: http://hmkdesign.dk/rebol/toolbar/toolbar-history.html http://hmkdesign.dk/rebol/toolbar/toolbar-manual.html http://hmkdesign.dk/rebol/toolbar/toolbar.r http://hmkdesign.dk/rebol/toolbar/toolbar-demo.r http://hmkdesign.dk/rebol/toolbar/toolbar-demo-2.r |
Gabriele 9-Aug-2006 [315] | Updated: http://www.rebol.net/projects.html |
Anton 19-Aug-2006 [316] | My site is operational once again (athough not all files available yet, lots of good stuff) http://anton.wildit.net.au/ |
[unknown: 9] 19-Aug-2006 [317] | Cogitation.swf = 404 error |
Henrik 21-Aug-2006 [318] | PAN-IMAGE version 0.0.1 http://www.hmkdesign.dk/rebol/panimage/pan-image.r This is just a face which allows panning of an image larger than the face, by dragging the mouse around on the image. Supports keyboard and scrollwheel. USAGE: view layout [pan-image 300x300 <huge-image>] |
james_nak 22-Aug-2006 [319] | Henrik, very cool and useful. |
Gabriele 23-Aug-2006 [320] | Client side QML Editor released: http://www.rebol.org/cgi-bin/cgiwrap/rebol/view-script.r?script=qml-ed.r |
Volker 24-Aug-2006 [321] | shrinkwrapt graphics/network-demo: http://polly.rebol.it/test/test/game/istaba.exe |
Oldes 4-Sep-2006 [322x2] | Just found this amazing Rebol application: do http://www.rebolution.net/ccsinogrammes.r ( http://www.rebolution.net/sinogrammes.html) |
Sorry if you know it, I found it by accident and I really like it, just a shame, that the france chars are wrong with my czech regional settings (but the chinnese chars look good and the animations... really good work) | |
Coccinelle 10-Sep-2006 [324] | A UPnP pilot is on the library here : http://www.rebol.org/cgi-bin/cgiwrap/rebol/view-script.r?script=upnp-igd.r Run it and you will discover all your UPnP device on your lan if any (lan printer, internet gateway and other lan equipement). It will also list your port mapping on your internet gatway if any. To run it, if needed, open your firewall for UPnP connection. The objective is to help anyone how wants to develope and run server on their PC with an automatic port mapping for incomming connection. For example, if AltMe embed this tool, running a world on my PC would be more simple as no more NAT configuration is needed to route incoming connnection. |
Oldes 12-Sep-2006 [325] | PDB-to-TXT convertor - http://oldes.multimedia.cz/rebol/pdb.r |
Ladislav 13-Sep-2006 [326] | Site http://www.fm.tul.cz/~ladislav/rebol/updated (Spider.r, REBOL identity article). Tried to post the info to the ML, but didn't succeed |
Pekr 13-Sep-2006 [327] | can whole package be downloaded somehow? running spider.r yields you need lfunc, which is 'included, so you need 'include, then 'lfunc 'includes other 4 funcs etc .... :-) |
Ladislav 13-Sep-2006 [328x2] | there is a zip file containing everything |
(see index.html) | |
MikeL 13-Sep-2006 [330] | It's http://www.fm.tul.cz/~ladislav/rebol/rebol.zipunder 1.3 The contents of this site Good work in documenting your articles. Is there sample data to run for spider.r ? |
Ladislav 13-Sep-2006 [331x2] | try the one in the COMMENT |
OTOH, it is possible to not download anything, just say: INCLUDE-PATH: union include-path [http://www.fm.tul.cz/~ladislav/rebol/] and everything will work | |
Louis 19-Sep-2006 [333] | rebol [ Title: "Stopwatch" Date: 23-Mar-2005 Version: 1.0.0 File: %stopwatch.r Author: "Louis Turk" Purpose: "Simple desktop stopwatch." ] kbhit: does [ con: open/direct/binary/no-wait console:// until [wait con] choice: to-char pick con 1 close con choice ] forever [ prin "Hit any key to start: " kbhit start-time: now/time/precise print [start-time] prin ["Hit any key to stop : "] kbhit end-time: now/time/precise print [end-time] print [newline newline end-time - start-time newline newline] ] |
Oldes 19-Sep-2006 [334] | forever [ask "hit to start" t: now/time/precise ask "hit to stop" print now/time/precise - t] |
Louis 19-Sep-2006 [335x2] | rebol [ Title: "Stopwatch" Date: 19-Sep-2006 Version: 2.0.0 File: %stopwatch.r Author: "Louis Turk" Purpose: "Simple desktop stopwatch." history: "v.2 works across midnight thanks to Gabriele" ] kbhit: does [ con: open/direct/binary/no-wait console:// until [wait con] choice: to-char pick con 1 close con choice ] forever [ prin "Hit any key to start: " kbhit start-time: now/precise print [start-time] prin ["Hit any key to stop : "] kbhit end-time: now/precise print [end-time] print [newline newline difference end-time start-time newline newline] ] |
Oldes, you either have very fast hands or a very fast computer or both. I can't get close to your record even using your code. But isn't it amazing what be done with just one line of rebol code? | |
Oldes 19-Sep-2006 [337] | It's easy, I just hit enter and watch the times:-) |
Henrik 28-Sep-2006 [338] | HTTP Tools. A small script containing a few functions to read the HTTP header of a webserver. It doesn't do much, but the main purpose is to determine which scripting language is used on a specific webserver. I use it to upload ASP and PHP scripts to various webservers, without having the user needing to know the scripting language in advance. It's not very strong yet and some servers will not reveal this information, but I hope it can be built into a reliable tool for determining scriping language over time. http://hmkdesign.dk/rebol/http-tools/http-tools.r Example: >> server-type http://rebol.com == "Apache" >> x-power-type http://www.hmkdesign.dk == "php" >> x-power-type http://www.microsoft.com == "asp" |
Oldes 28-Sep-2006 [339] | maybe you should change name as there is already script with such a name in the library http://www.rebol.org/cgi-bin/cgiwrap/rebol/view-script.r?script=http-tools.r |
Carl 4-Oct-2006 [340] | Added this: http://www.rebol.com/news/cheyenne.html |
Claude 5-Oct-2006 [341] | we don't find it !!!!! |
Dockimbel 5-Oct-2006 [342] | I'll make a first public release this week-end. |
Claude 5-Oct-2006 [343] | super !!!! |
Geomol 8-Oct-2006 [344] | NicomDoc 2 is out! http://home.tiscali.dk/john.niclasen/nicomdoc/ Major enhancements are equations (mathematical formulas) and mail merge. Other new things include sub- and super-script and specification of template within the document. |
Anton 11-Oct-2006 [345] | Scroller style with arrows-together option (Amiga style): do http://anton.wildit.net.au/rebol/gui/demo-ami-scroller.r |
Geomol 11-Oct-2006 [346] | Anton, I get an error: ** Script Error: include has no value (under OSX, if that has anything to say) |
Anton 11-Oct-2006 [347x2] | Try it again. If you still get an error try this first: |
load-thru/update http://www.rebol.net/reb/index.r | |
Louis 11-Oct-2006 [349x2] | REBOL [ Title: "Slideshow" Date: 12-Oct-2006 Name: 'SLIDESHOW ; For window title bar Version: 1.0.0 File: %slideshow.r Author: "Louis A. Turk" Rights: "Public Domain; use at your own risk." Needs: "A version of REBOL/VIEW supporting sound" Purpose: {To make possible simple, easy to make narrated slide shows. Hopefully can be used with the REBOL plugin to show narriated slides on a web site. Hopefully can an effective tool to teach REBOL programming. } Note: { The concept and design originated with Louis A. Turk. DideC helped considerably by answering programming questions and giving bits of code; it would not have been possible without his help. Josh also answered programming questions. You can make wav files using the free program Audacity. http://audacity.sourceforge.net Advanced JEPG Compressor does and excellent job compressing graphics files so they load faster, but is not free. } History: [ 1.0.0 [ "First release." "Louis"] ] Language: 'English ] ;Requires a data file named %slides.r containing lines of blocks in the following format: ;Each block must contain: (1) slidename, (2) overlay, (3) caption, (4) sound. ;Example block: [%slide1.jpg "Overlay text." "A caption!" %sound.wav] ;Use "" for no overlay or caption. ;file: request-file/title/only "Select the slides data file to use." "Select Data File" file: %slides.txt ;uncomment the above line, and comment this one to select data files with different names. slides: load file narrate: func [talk] [ ;--- Manage the sound sound-port: open sound:// insert sound-port load talk wait sound-port close sound-port ] view/new win: layout/size [] 650x650 ;<= Set the max size you need wait 0 ;---Initialize REBOL's internal event handler. foreach slide slides [ ;--- Start the slide show set [graphic overlay caption narration] slide lay: layout [ origin 0 banner center bold red "A REBOL Produced Narriated Slide Show" image graphic overlay 500x400 frame black [unview] [quit] text 500 bold caption button "Quit" center [quit] ] center-face/with lay win append clear win/pane lay show win narrate narration ] do-events |
There is one problem with slideshow.r and that is that the slide is not centered correctly in the window. Does anyone know how to fix that? | |
Anton 12-Oct-2006 [351] | This is a center-face problem. It assumes you are talking about two window faces. You can closely mimic the center-face behaviour though. Replace the line center-face/with lay win by lay/offset: max 0x0 win/size - lay/size / 2 |
Louis 12-Oct-2006 [352] | Thanks, Anton. That solved the problem. |
Ladislav 13-Oct-2006 [353] | INCLUDE ( http://www.fm.tul.cz/~ladislav/rebol/include.r) has been updated thanks to Henrik. See also http://www.fm.tul.cz/~ladislav/rebol/include.html |
Geomol 19-Oct-2006 [354x2] | Apollo 1.4.1 released: http://home.tiscali.dk/john.niclasen/apollo.zip Fixed a problem with the buttons for missions with a lot of pictures. Unpack the zip and start apollo.r. The indexes for Apollo 7-17 missions doing the years 1968-1972 will be created. The script loadthumbs.r can be used to download all thumbnail pictures, so the apollo.r script will run faster. Run loadthumbs.r after the indexes have been created by apollo.r. (Thumbs are around 30MB!) The pictures are a collection of the pictures released on the website: http://www.apolloarchive.com/ |
Apollo 1.4.2 released:http://home.tiscali.dk/john.niclasen/apollo.zip Fixed a bug in the "Update Index" function. | |
Rebolek 23-Oct-2006 [356] | I've just uploaded TextureLab version 0.3.2 to REBOL.ORG . http://www.rebol.org/cgi-bin/cgiwrap/rebol/view-script.r?script=texture-lab.r |
Maxim 31-Oct-2006 [357] | There is finally a script to demonstrate some of GLayout's current capabilities. the demo script will download and save slim and glayout on its own (asking first), hands free, no obscure installation needed. do http://www.rebol.org/cgi-bin/cgiwrap/rebol/download-a-script.r?script-name=glayout-demo.r |
Brock 31-Oct-2006 [358x2] | Nice work Maxim, love your button styles, the menu's. Very nice looking and nice feel. |
Sorry, should have been in Ann-Reply | |
older newer | first last |