[REBOL] .rip files Re:(2)

2000-09-02 Thread andyyork

but I don't want answer the prompts... I want to use Task Scheduler.  I can
get the script to run but no idea how to input parameters via command line
scripting. Any ideas if it can be done?

Thanks,
andy

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Sunday, September 03, 2000 12:38 AM
To: [EMAIL PROTECTED]
Subject: [REBOL] .rip files Re:



- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, September 03, 2000 3:18 AM
Subject: [REBOL] .rip files


> Can anyone tell me how to make .rip files???
>
>

You need Carls' script from the library
http://www.rebol.com/library/scripts/rip.r

Run it and answer the prompts.

Cheers,

Allen K








[REBOL] Marketing

2000-09-02 Thread ptretter


I have decided to do some marketing for REBOL.  Although, I dont work for
them I feel it necessary to get the word out.  We have all been very
actively learning and using REBOL products for some time.  Time for REBOL to
move to the next level.  I hope everyone actively tells someone about this
wonderful new language and we get on with making Carl richer than he already
is and enrich our lives along the way.  To do both we need marketing.
Everyone pitch in and do you part.  Tell them about REBOL Press and the
REBOL website and about your new admiration for this language.  I guess I am
feeling just a bit enthusiastic tonight.

GO REBOL

Paul Tretter




[REBOL] .rip files Re:

2000-09-02 Thread allen


- Original Message - 
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, September 03, 2000 3:18 AM
Subject: [REBOL] .rip files


> Can anyone tell me how to make .rip files???
> 
> 

You need Carls' script from the library 
http://www.rebol.com/library/scripts/rip.r

Run it and answer the prompts. 

Cheers,

Allen K







[REBOL] GET vs. POST Re:

2000-09-02 Thread webmaster

Duh, forget.
I got it working.  :]

Jeff Rubin, CTO & Co-Founder
Audiopia
Shutup and Listen...
http://www.audiopia.com
also check out my personal site Brainbyte!
http://www.brainbyte.com




[REBOL] GET vs. POST

2000-09-02 Thread webmaster

I have The Official Guide and within there is a small function which is 
supposed to be able to detect whether GET or POST is used and then access 
the correct system variable path to receive the info which was submitted by 
the form.

I don't think it works.

Anyone else try this code and if so, does it work for you?

My cgi works great with GET but seems to die towards the end of the app 
process using GET because of the length of the string being submitted 
becomes larger and larger as you proceed.
So I wanted to switch to POST.

Thanks,

Jeff Rubin, CTO & Co-Founder
Audiopia
Shutup and Listen...
http://www.audiopia.com
also check out my personal site Brainbyte!
http://www.brainbyte.com




[REBOL] Code Security Re:

2000-09-02 Thread norsepower

Although it is not "secure," I have thought about a way to make it difficult, 
at least, for others to understand your code.

Using a text editor, use search and replace to change the 'words so that they 
are hard to understand when you read them. For example, change...

news-server: input
open-server: reform [rejoin ["np: open news://" news-server]]
do open-server

to...

Xz8hUjKLmhT89||hg~: input
Yn876asdfGXzeyg|adlfj: reform [rejoin ["POxj724xcUYxq|x|y|q7: open news://" 
Xz8hUjKLmhT89||hg~]]
do Yn876asdfGXzeyg|adlfj

Of course, keep a copy of the "readable" code for yourself, but distribute 
the gobbledygook to everyone else.

Hey, maybe someone could write up a code-replacement script for this? Then 
run the script on the script itself. Hmm...

-Ryan

>Hi,
>New to scripting languages as a major tool, here. So
>my question is what are the general views about the
>security and protection (against copying) of code in
>Rebol. How do you make money with something which is
>seen in source form so easily? I guess its OK with CGI
>scripts where its all happening at your end and may be
>combining with a lot of other technology, but
>applications like data mining look so much more
>vulnerable???
>Vivek
>
>__
>Do You Yahoo!?
>Yahoo! Mail - Free email you can access from anywhere!
>http://mail.yahoo.com/
>
>




[REBOL] Code Security

2000-09-02 Thread vkmodgil

Hi,
New to scripting languages as a major tool, here. So
my question is what are the general views about the
security and protection (against copying) of code in
Rebol. How do you make money with something which is
seen in source form so easily? I guess its OK with CGI
scripts where its all happening at your end and may be
combining with a lot of other technology, but
applications like data mining look so much more
vulnerable???
Vivek

__
Do You Yahoo!?
Yahoo! Mail - Free email you can access from anywhere!
http://mail.yahoo.com/




[REBOL] Strange chars in password Re:

2000-09-02 Thread mailinglists

Hi,

Allen Kamp replied to this earlier this week, I'll repost (hope you
don't mind, Allen? =)...

Regards,
Rachid

- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 23, 2000 12:00 AM
Subject: [REBOL] Strange chars in the password


> HI all,
>
> I need to connect to a FTP server but the password contains strange
chars
like #"@" #"\" #"#"
>
> I tried to url-encode the password, but it does not work.
> I'm sure it was already discussed but I cannot find it.
>
> thanx for advice
> oldes
>
>

Hi Oldes,

This allows you to avoid that..

read [
scheme: 'ftp
 user: "user-name"
 pass: "password"
 host: "ftp.securesite.com"
 path: "private/"
 target: "file.dat"
]



So that you don't have to construct that all the time, you could do use
the
following code..


;---
config: make object! [pass: "password" user: "username"]

authenticate: func [
{Returns a filled scheme block complete with password}
url [url!] {The url to parse}
/local url-value url-obj
][
url-obj: make net-utils/url-parser []
set url-obj/vars none
url-value: url

parse/all url url-obj/url-rules
;---Return Url data set
compose [
scheme: (to-lit-word url-obj/scheme)
user: (config/user)
pass: (config/pass)
host: (url-obj/host)
path: (url-obj/path)
target: (url-obj/target)
]
]

;e.g usage
; read authenticate ftp://ftp.securesite.com/private/file.dat
; read authenticate http://www.securesite.com/private/file.dat

;--

Cheers,

Allen K





[REBOL] Announcing: REBOL FOR DUMMIES Re:(3)

2000-09-02 Thread ralph

And I for one truly appreciate it... thanks! And I support Sweden, I drive a
Volvo.

--Ralph

>
>At least for me, the main reason for buying this book (and all other
>REBOL books) is to support Carl, Ralph, Elan, REBOL, and REBOL Press.
>
>These books are about $20 cheaper in sweden, but I think it is worth
>buyinf from REBOL Press/Alexander Books anyway.
>
>/PeO
>
>
>> Hey, I'm a dummy! That's why I'm going to buy this book! Thanks, Ralph!
>>
>> > REBOLs aren't dummies. But they know folks who are! 
>> >
>> > Announcing the pre-publication sale of REBOL FOR DUMMIES by Ralph
>> > Roberts. Take a look at the contents and sample chapter (on CGI) at
>> > http://www.REBOLpress.com. Then pass this link on to your friends and
>> > co-workers who need to join the REBOLution.
>> >
>
>--
>/*  P-O Yliniemi, Bizlink Systems & Development AB
>  *\
>\* [EMAIL PROTECTED] | Solaris (SunOS 5.6-5.8), Perl, REBOL |
>[EMAIL PROTECTED] */
>/* +46-70-4663336 |   CGI, (S)HTML, PHP, sql |
>+46-70-5685919 *\
>\*| Apache, qmail, squid, BIND, IPFilter |
>+46-911-205474 */
>





[REBOL] Announcing: REBOL FOR DUMMIES Re:(2)

2000-09-02 Thread peoyli


At least for me, the main reason for buying this book (and all other
REBOL books) is to support Carl, Ralph, Elan, REBOL, and REBOL Press.

These books are about $20 cheaper in sweden, but I think it is worth
buyinf from REBOL Press/Alexander Books anyway.

/PeO


> Hey, I'm a dummy! That's why I'm going to buy this book! Thanks, Ralph!
> 
> > REBOLs aren't dummies. But they know folks who are! 
> > 
> > Announcing the pre-publication sale of REBOL FOR DUMMIES by Ralph
> > Roberts. Take a look at the contents and sample chapter (on CGI) at
> > http://www.REBOLpress.com. Then pass this link on to your friends and
> > co-workers who need to join the REBOLution.
> > 

-- 
/*  P-O Yliniemi, Bizlink Systems & Development AB   *\
\* [EMAIL PROTECTED] | Solaris (SunOS 5.6-5.8), Perl, REBOL | [EMAIL PROTECTED] */
/* +46-70-4663336 |   CGI, (S)HTML, PHP, sql |+46-70-5685919 *\
\*| Apache, qmail, squid, BIND, IPFilter |+46-911-205474 */




[REBOL] .rip files

2000-09-02 Thread trobrock

Can anyone tell me how to make .rip files???




[REBOL] Strange chars in password

2000-09-02 Thread reboldes

I need to connect to FTP but the password contains chars like #"@" or #"\". What can I 
do?

thanks oldes




[REBOL] PNG examiner

2000-09-02 Thread reboldes

I want to create a script that will allow me to create or modify simple png files.
I've started with this script, that parses all the standard "chunks" in the file, but 
I could not go through the CRC and compression (LZ77 derivate).

Anybody want to help me?

oldes

PS: The PNG spec. I used: http://oldes.multimedia.cz/spec/REC-png.html

 png.r
 test.png


[REBOL] Strange chars in password

2000-09-02 Thread reboldes

I need to connect to an FTP server but the password contains chars like #"@" or #"\". 
What can I do?

thanks oldes




[REBOL] Announcing: REBOL FOR DUMMIES Re:

2000-09-02 Thread ralph

Order form is live and on line now. We are pleased to serve you.

--Ralph Roberts


>
>REBOLs aren't dummies. But they know folks who are! 
>
>Announcing the pre-publication sale of REBOL FOR DUMMIES by Ralph
>Roberts. Take a look at the contents and sample chapter (on CGI) at
>http://www.REBOLpress.com. Then pass this link on to your friends and
>co-workers who need to join the REBOLution.
>
>Special Offer: All copies purchased through REBOL Press Online are
>autographed by author (and REBOL guru!) Ralph Roberts.
>
>The REBOLution continues!
>
>--
>Danny Ramsey, Publisher, REBOL Press
>The Official Source for REBOL Books
>http://www.REBOLpress.com
>