>I know that this will be very mundane, basic stuff to the people on this
list
>that have a lot of port programming experience. But, if you are a novice
like
>me, this might be a way to get your feet wet in this subject. I know I am
>already learning a lot.
Hi Jamey!
I would´nt consider this
So, as our new mailserver doesn't allow attachements, here's my example
once again
Cheers,
-pekr-
REBOL [
Title: "Progress bars ..."
Author: "Petr Krenzelok"
Email: [EMAIL PROTECTED]
Date:19-Oct-2000
Comment: {Just played a little bit with progress bars. The bar ob
> Regarding your scripts. Like you I have a need to upload files, but I also
> have a need to download files regularly. I would appreciate it if you could
> describe how your script checks for a connection and how it has been
> installed as a service under windows NT. I've other uses in mind fo
The basic tool is the SRVANY utility, included as part of the Windows
NT resource kit. The kit is available FTP from Microsoft for NT3.51
and NT4.0.
Easily adapted instructions are included with the program in the file
SRVANY.WRI available on many places on the web.
> Hi Fantam,
> a not really
Hi Gabriele
Just finished reading through the eval object. It is a useful tool, but I
am even more impressed by the elegance of your code. Nice work!
I have one quick question. Could you comment on why 'self is required in the
line
expr: self/translate expr
It is clearly needed, becau
On 19-Oct-2000/14:07:14-7:00, [EMAIL PROTECTED] wrote:
>That NAME - "pointer swizzling at page fault time" - it makes me want to be
>in a dark room, the only illumination coming from an ignored monitor behind
>me with a Windows blue screen of death, while before me a beautiful woman
>intently swir
Thanks for the tip, I'm going to check it out.
Scott
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
Share information about yourself, create your own public profile at
http://profiles.msn.com
For the past two days, we had everybody here boxing and shipping, catching
up the REBOL FOR DUMMIES back orders. By sometime tomorrow, all orders in
house will have been shipped. Which means that all orders coming in now will
get shipped same day.
Now's a good time ta order.
http://rebolpress.co
Ingo,
As keywords I mean words that are built into the language. All the words
in the Rebol/core dictionary qualify for this. I realize that users can
create thier own words but these I do not think fit in the same category.
--
To unsubscribe from this list, please send an email to
[EMAIL PR
Andrew,
Sorry I was a lttle to quick with my previous reply. That is a great Idea!
I think that it would not be all that hard as well, Just base the highlight
off of actual values. But what whould you do about the statements that are
not keywords but specialized strings such as urls, file locati
Thank you! That should help alot.
--
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the
subject, without the quotes.
Hi Joel,
this explanation sounds really good to me, it's the most
understandable complete explanation. (Meaning most explanations
up to now have either been an understandable but short "look
at this" or a complete but but to my mind overly complex
description).
That said, I'd add a short "that'
Hi Eric,
besides from there being no keywords in rebol, you can use
'what
to get a list of all words in the toplevel context which
happen to be bound to a function at the moment.
I hope that helps,
Ingo
Once upon a time [EMAIL PROTECTED] spoketh thus:
> hello all,
>
> If any of you are
Eric wrote:
> > I have just updated the syntax file for REBOL. It still needs a little
tweaking but it should be ready in a few days. As a side note there seem to
be a lot of new keywords etc. That aren't included in the core/dictionary or
in the user guide, is there a way that I can find out what
I may not yet understand the issues involved in memory management, but to
this dilettante, any technique promises to solve such issues AND that calls
itself by such a whimsical name - "pointer swizzling at page fault time" -
PS@PFT - has got to be a good thing.
That NAME - "pointer swizzling at p
This message goes out to all you who, like me, are novices when it comes to
using ports to communicate between your Rebol script and other programs.
I am in the process of learning Rebol. I have been writing some small
applications that use text files to store any data needed.
Because Core does
At the moment I can email it to you if you would like. Later on I will see
if I can't post it on the web or at the vim.org site. I have spoken with
Mike, the current maintainer of the official vim syntax for rebol and he
suggested that I become the maintainer. So in the future an updated syntax
m
Joel,
If you change your .sig header to look something like this, it will probably
be OK:
REBOL [file: %sig.r author: "Joel" email: [EMAIL PROTECTED] date: now
purpose: "Sig" category: 'example]
-Bo
On 19-Oct-2000/12:52:55-5:00, [EMAIL PROTECTED] wrote:
>Anybody know what caused the error me
And how would one acquire it? THANKS IN ADVANCE...
> If any of you are VIM (as VI Improved). I have just updated
> the syntax
> file for REBOL. It still needs a little tweaking but it should be ready in
> a few days. As a side note there seem to be allot of new keywords
> etc. That
> aren't
This is delightful! Thank you!
At 01:12 PM 10/14/00 +0200, you wrote:
>Hi all!
>
>Have you been sometimes annoyed by tha fact REBOL does not support
>operator precedence? Here's the answer:
>
>>> a: 2 b: 4 c: 3
>== 3
>>> eval [b ^ 2 - 4 * a * c]
>== -8
>
>The magic trick is:
>
>>> eval/
hello all,
If any of you are VIM (as VI Improved). I have just updated the syntax
file for REBOL. It still needs a little tweaking but it should be ready in
a few days. As a side note there seem to be allot of new keywords etc. That
aren't included in the core/dictionary or in the user guide
Hello [EMAIL PROTECTED],
You can use get and set:
## word1: "This is a word"
== "This is a word"
## word2: 'word1
== word1
## word2
== word1
## get word2
== "This is a word"
## set word2 "It still is"
== "It still is"
## word1
== "It still is"
(## is my rebol prompt...)
/Thom
Hey larry,
This my be a stupid question but does it work the same way for set?as
in
word1: "Hello World"
word2: 'word1
set word2 "New World"
print world1
>>New world
Thanks
--
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the
subject,
Hi Eric,
look at the following console session:
>> word1: "initial value"
== "initial value"
>> set 'word1 "new value"
== "new value"
>> word1
== "new value"
>> word2: 'word1
== word1
>> set word2 "even newer value"
== "even newer value"
>> word1
=
Anybody know what caused the error message below? (If it's my sig block,
I guess I'll get another one...)
-jn-
[EMAIL PROTECTED] wrote:
>
> [ARCHIVE] Error: Required header fields missing
>
> Dear [EMAIL PROTECTED],
>
> I'm afraid I could not find some required fields in the script you re
This might help...
>> word1: "test"
== "test"
>> type? word1
== string!
>> word2: 'word1 ;this assigns word2 to the word word1 not its value
== word1
>> type? word2
== word!
>> word2
== word1
>> word3: word1 ;word1 is naturally evaluated to "test" then assigned
== "test"
>> type? word3
== string!
On Thu, Oct 19, 2000 at 02:29:01AM -0700, [EMAIL PROTECTED] wrote:
> I don't think many developers take these books
> seriously regardless of their content.
it's too bad too . the dummie's book (despite their name) are a great way to
get up to [intermediate] speed with a particular topic.
i
Hi Eric
>> word1: "This is a word"
== "This is a word"
>> word2: 'word1
== word1
>> get word2
== "This is a word"
>> word3: 'word2
== word2
>> get get word3
== "This is a word"
This process can be carried out to any depth.
HTH
-Larry
- Original Message -
From: <[EMAIL PROTECTED]>
To: <
I seem to be misunderstanding the use of words in rebol.
say I had the following code
word1: "This is a word"
word2: 'word1
is there any way using word2 to access and set the value of word1? It seems
to me that I should be able to. I guess what I am asking is if a function
is passed a variable
- Original Message -
From: Petr Krenzelok <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, October 19, 2000 4:50 PM
Subject: [REBOL] various progress bars styles ...
> Hi,
>
> just needed progress bar today and played a little bit with /View ...
>
> Cheers,
> -pekr-
>
>
As being a professional developer, I am still buying Dummies books.
You'll never know what you are missing in those books unless you buy
them, believe me.
Geo...a long time developer
[EMAIL PROTECTED] wrote:
>
> -- Forwarded message --
> Date: Wed, 18 Oct 2000 18:01:27 -0400 (E
Hi Fantam,
a not really REBOL related question, but how do you
start a rebol script as a service under NT?
thanks in advance,
Ingo
Once upon a time [EMAIL PROTECTED] spoketh thus:
> From: Fantam <[EMAIL PROTECTED]>
<...>
> with no user interaction. Since I use NT, I installed the scripts
Hello, Carl and list,
Every time I try to verbalize what happens in cases such as:
rebol []
for test1 1 5 1 [
block1: []
insert block1 "text1"
]
I become very frustrated with myself. I end up with remarks that are
far more complex than my mental concept of what's ha
On Thu, 19 Oct 2000, Ralph Roberts wrote:
> REBOL FOR DUMMIES is SMART for REBOL's growth.
>
Thanks for the well thought out reply. I agree with what you've
said. I can see that the For Dummies book can be an important step in
REBOL's growth.
"Why is any object we don't understand alw
Ole,
I believe you are thinking the same way I did which is incorrect.
The functions are duplicated as evidenced by a response that Elan
sent about this very question a few weeks back. Here it is:
--- from [EMAIL PROTECTED] --
Hi Rodney,
I believe REBOL makes a new copy of functions f
On Thu, Oct 19, 2000 at 03:55:17PM +0100, Hayes Philip wrote:
> Why ?
read-io is not intended to be used with UDP. It is a low-level function that was
added to REBOL only for use by REBOL's internal protocol implementations (HTTP
etc.). It bypasses a lot of useful code, including, in the case of
Hi, Carl,
Carl Read wrote:
>
> Thanks for all the replies on this everyone - I'm a little the wiser
> now.
>
I'm glad to see from the replies that other folks can do a better job
of reading the entire question than I did... ;-) Sorry if my first
answer was a bit too hasty!
>
> It was in a fu
Ralph,
Thanks. I've seen the Dummies books. They are very useful. Good luck!
Joe
-Original Message-
From: Ralph Roberts [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 19, 2000 9:53 AM
To: [EMAIL PROTECTED]
Subject: [REBOL] Re: REBOL FOR DUMMIES! (fwd)
>
> Personally, I don't car
Why ?
-Original Message-
From: Holger Kruse [mailto:[EMAIL PROTECTED]]
Sent: 19 October 2000 15:14
To: [EMAIL PROTECTED]
Subject: [REBOL] Re: UDP Networking (fwd)
On Thu, Oct 19, 2000 at 02:16:25PM +0100, Hayes Philip wrote:
> Holger,
>
> I'm running 2.4.37.10.1 on Solaris 2.6
>
> whe
Hi,
just needed progress bar today and played a little bit with /View ...
Cheers,
-pekr-
-- Binary/unsupported file stripped by Listar --
-- Type: text/x-rebol
-- File: progress-bars.r
--
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the
s
On Thu, Oct 19, 2000 at 02:16:25PM +0100, Hayes Philip wrote:
> Holger,
>
> I'm running 2.4.37.10.1 on Solaris 2.6
>
> when I run this ...
> #
> buffer: make string! 1000
> listen-port: open/binary/direct udp://:
> forever [
> wait listen-port
> read-io listen-port buffer 100
>
> Personally, I don't care what they title the book "Rebol for dummies" They
> can call it Rebol for the blinking ignoramous. I still intend to buy it.
>
>
> Joe
>
>
You're a good man, Joe.
Thanks,
--Ralph
--
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "u
Several of you have asked me where the two books about REBOL currently
available fall into place and why you should buy both. My book REBOL FOR
DUMMIES (now available) was meant as an introduction and tutorial to make
you actually productive in REBOL quickly, painlessly, and with a bit of
verve. T
> > REBOL FOR DUMMIES by Ralph Roberts (five-star general in the
> > REBOLution!) is now being shipped by REBOL Press Online -- weeks ahead
> > of availability from Amazon, B&N, or the corner bookstore.
> >
> I'm curious why the second book on the REBOL language is in the
> For Dummies lin
Holger,
I'm running 2.4.37.10.1 on Solaris 2.6
when I run this ...
#
buffer: make string! 1000
listen-port: open/binary/direct udp://:
forever [
wait listen-port
read-io listen-port buffer 1000
print buffer
print listen-port/remote-ip
clear buffer
Personally, I don't care what they title the book "Rebol for dummies" They
can call it Rebol for the blinking ignoramous. I still intend to buy it.
Joe
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 19, 2000 5:29 AM
To: [EMAIL PROTECTED]
On Thu, Oct 19, 2000 at 02:31:02AM -0700, [EMAIL PROTECTED] wrote:
>
>
> Hi!
>
> Having an udp-server
>
>s: open udp://
>
> and receiving a message
>
>copy/part s 1
>== "Blubb"
>
> How to find out, from which ip and port the message has been send?
> I know I can answer to the cl
Hi Fantam,
Thanks for your description. I use Rebol for generating and uploading my web
sites. For this purpose it works admirably. Also, Rebol is a tool that has
let me explore various problems that I've felt have been impractical with
other languages (I'm not talking DCL now :) ). As a result,
48 matches
Mail list logo