• Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

AltME groups: search

Help · search scripts · search articles · search mailing list

results summary

worldhits
r4wp60
r3wp694
total:754

results window for this page: [start: 201 end: 300]

world-name: r3wp

Group: All ... except covered in other channels [web-public]
Gabriele:
5-Jan-2005
Geomol: i'd suggest using RAMBO and not email feedback for bugs. 
this frees up some time for Carl.
Group: Ann-Reply ... Reply to Announce group [web-public]
Tomc:
27-Feb-2005
I belive  RT thinks that email is dead,  but since  not everyone 
understands it they still have to support it.
Sunanda:
10-Mar-2005
For the record,  REBOL.net and REBOL.org both look good for the next 
three years.


But a useful reminder for all of us to check our domains before it's 
too late.

And not to lose the email address to which the registrar sends reminders.....Email 
may be dead, but it's heart hasn't stopped beating yet.
ChristianE:
11-Jun-2005
Graham, I've just  sent you an email with a capture attached.
Graham:
11-Jun-2005
I just changed my email address for Altme... the other one has greylisting 
so will take a while to work
Graham:
11-Jun-2005
can you email me the latest demo ?
PeterWood:
2-Mar-2006
Clearly Carl doesn't subscribe to the AltME secure messaging theory:

 (I do not put his email address here to avoid spam harvesting).

;-)
PeterWood:
2-Mar-2006
It would be good if the web-publishing script "munged" email addresses 
though.
Group: !AltME ... Discussion about AltME [web-public]
Pekr:
7-Nov-2005
I also received email from one earlier reboller, that rebol's image 
is hurt also because of how do we aproach development (and the person 
in question meant product which has impact - Rebol itself, altme) 
... ppl could not be simply sure what exactly is going to happen 
and when.....
Ingo:
2-Mar-2006
Funny thing,

my internet connection is practically dead, no email, no webserving, 
but AltME still works ...
Henrik:
9-May-2006
don't know if that is in the todo list, but for exporting conversations, 
would it be possible to cover up email addresses?
[unknown: 9]:
12-May-2006
Are you kidding....what you guys all don't realize is that AltME-Rebol3 
"is" a a top selling game in Korea.  They try and guess what everyone 
is going to complain about next.  Someone won big money on the whole 
Troll email issue, and every time I rant I know this one guy loses 
his rent money (one would think he would learn by  now).
Pekr:
5-Sep-2006
but that 's it like telling, then someone sends me format.exe in 
email, I save it, and once I click it, it formats my HD :-) Or am 
I missing something? How is that supposed to be a security hole?
Group: RAMBO ... The REBOL bug and enhancement database [web-public]
Gabriele:
2-Oct-2006
the email address does not match, so it's not the "antropomorphization" 
guy.
Graham:
20-Nov-2006
and I would think most email clients would fall back ...
Group: Core ... Discuss core issues [web-public]
Ammon:
31-May-2005
Yup, found an email you sent to the mailing list  referencing this 
just before you posted here... ;~>
DideC:
1-Jun-2005
Tiscali has bought many Provider in France. They handle email in 
@tiscali.fr, @freesbee.fr, infonie.fr ... with the same POP server 
(proxy?). So they need the full email as login.
Graham:
6-Jun-2005
DideC has a script somewhere that allows you to examine your mail 
box and delete selected email.
I do too, but mine is part of a larger anti-spam package.
Graham:
7-Jun-2005
In most cases, where some spam has been bounced back to you as the 
account does not exist, the first line of the email says something 
like

Return-Path: <>

The <> is a special null email address to stop mail loops.


So, if you check all your email for this first line, then you should 
be able to delete all the automated bounces.
Graham:
11-Jun-2005
; open mailbox

len: length? mailbox
bounces: copy []

for i 1 len 1 [
	email: import-email raw: pick mailbox i
	if email/reply-to = "<>" [
		append bounces i
		print [ "Bounce at" i ]
	]
]

; remove bounces

reverse bounces
foreach num bounces [
	mailbox: head mailbox
	mailbox: skip mailbox ( num - 1 )
	remove mailbox
]

close mailbox
Graham:
11-Jun-2005
this is rather brute force as each email is downloaded ...
better to use one of the top hacks to just get the headers
Graham:
11-Jun-2005
that should be 

 email/return-path = "<>"
Graham:
13-Jun-2005
This means that a cgi script should be able to send out email even 
though the host does not provide a mail server for this purpose.
Graham:
19-Jun-2005
I would suggest that email/1 should be the part before the "@", and 
email/2 the bit after.
Then email/2/1 would access the first bit before the "." etc.
Allen:
19-Jun-2005
Graham: Are you asking for  email/1 & email/2 to map to the current 
email/user and email/host  refinements ?
Brett:
10-Jul-2005
For POP3 and email fans:


   http://www.rebol.org/cgi-bin/cgiwrap/rebol/documentation.r?script=do-pop-scheme.r


Gives you easy access to LIST, TOP, UIDL, etc. for your spam delete 
scripts or whatever.
PhilB:
18-Sep-2005
How do send an email and cc a second email address 
I tried this

lv-header: make system/standard/email [
    to: [test1-:-somehost-:-com]
    cc: [test2-:-gmail-:-com]
]


send/header/subject [test1-:-somehost-:-com] "This is a test" lv-header 
"Test Subject"

but the email gets sent to the to address but not the cc address.
Graham:
18-Sep-2005
USAGE:

    SEND address message /only /header header-obj /attach files /subject 
    subj /show

DESCRIPTION:
     Send a message to an address (or block of addresses)
     SEND is a function value.

ARGUMENTS:

     address -- An address or block of addresses (Type: email block)

     message -- Text of message. First line is subject. (Type: any)

REFINEMENTS:
     /only -- Send only one message to multiple addresses
     /header -- Supply your own custom header
         header-obj -- The header to use (Type: object)
     /attach -- Attach file, files, or [.. [filename data]]

         files -- The files to attach to the message (Type: file block)
     /subject -- Set the subject of the message
         subj -- The subject line (Type: any)
     /show -- Show all recipients in the TO field
Graham:
18-Sep-2005
since BCC means blind copy - ie the recipient should not get to see 
the cc fields, and the email should be addressed to them.
Group: Make-doc ... moving forward [web-public]
shadwolf:
3-Mar-2005
according to micha's  email I would say he is from polonia ;)
Group: Parse ... Discussion of PARSE dialect [web-public]
Geomol:
1-Dec-2005
(Right brackets are left out just after the email address by Altme.)
Sunanda:
28-Apr-2006
II was sure I'd posted this just after Oldes' message.....But it 
ain't there now.....Maybe it's in the wrong group)
Andrew has a nice starter set:

http://www.rebol.org/cgi-bin/cgiwrap/rebol/view-script.r?script=common-parse-values.r

And I know he has extended that list extensively to include things 
like email address and URL
Pekr:
19-Jul-2006
... but should not be simpler, so I wonder - so far, as you can see, 
mark-x is not finished, so it is ignored. How to catch this case 
properly and eventually generate error, send email, write to log, 
whatever?
Rebolek:
26-May-2007
So, this is my first attempt to do regular expressions in REBOL. 
Type on your console:
do http://bolek.techno.cz/reb/regex.r

Some things are missing and it can sometimes run in endless loop 
when it shouldn't, so please be benevolent :)

But at least the email regex can be translated and parsed succesfully.
Gregg:
26-May-2007
Graham, the best book I know of on regexs is Jeff Friedl's 'Mastering 
Regular Expressions'. He has an email validating regex (i.e. it just 
matches the RFC822 spec for an email address) which is almost 5K 
IIRC.
Group: MySQL ... [web-public]
Dockimbel:
28-Sep-2006
4) If all options failed, turn trace/net on, run a test, log all 
exchanges with the server and send it to me by email for analysis.
Will:
3-Jul-2008
I have a mysql wrapper that I use in production but haven't released 
because it need cleaning and docs, but if there is interest I could 
release for testing as is. id does things like:

print .db/get/all/sort/debug [mailing/m mailingLog/ml] [ml.dc m.email 
ml.url] [{ml._mailing=m.id}] [m.email asc ml.dc desc]

SELECT `ml`.`dc`,`m`.`email`,`ml`.`url` FROM `mailing` `m`,`mailingLog` 
`ml` WHERE ml._mailing=m.id ORDER BY `m`.`email`,`ml`.`dc` DESC
print .db/set/debug 'mailing 12 reduce['active false] 
UPDATE `mailing` SET `active`=0 WHERE id=12.0

print .db/get/all/flat/debug '_node_tree [_node _media] [{_tree=? 
AND _issue=?} 5443 22]

SELECT `_node`,`_media` FROM `_node_tree` WHERE _tree='5443' AND 
_issue='22'
..
Gabriele:
12-Nov-2008
BTW, Maarten told me that he knows for sure that you can get the 
number of result sets in advance, if he doesn't show up here (he 
can't be much in front of a computer these days), maybe you could 
email him to get more info.
amacleod:
24-May-2010
I'm serving the db from my own p for this host as there is server 
for now as bandwidth is not an issue yet. I signed unlimited bandwidth, 
storage, email accounts, mysql db's etc. for a few bucks a month. 

I was just testing mysql for possible use down the road.


When the time comes i will probably go the "linode" route as iwould 
want to use Cheyenne too and no provider is going to let you run 
that.
amacleod:
20-Oct-2010
What is the SOP for building json objects from MySQL queries? 

I saw this but I could not get it to work:

SELECT 
     CONCAT("[",
          GROUP_CONCAT(
               CONCAT("{username:'",username,"'"),
               CONCAT(",email:'",email),"'}")
          )
     ,"]") 
AS json FROM users;
Group: Linux ... [web-public] group for linux REBOL users
Gabriele:
13-Sep-2007
i don't think there's anything close to the bat. you might try running 
it with wine. personally, i moved to gmail because of the amount 
of spam i get, i expected to miss the bat a lot, but actually i don't 
use email that much anymore, so i'm fine.
Group: Web ... Everything web development related [web-public]
Graham:
20-Jun-2005
http://www.compkarori.com/smtp/index.html

A utility to check for valid email ...in beta test.
Graham:
20-Jun-2005
Now this is interesting ...

Email: [holger-:-rebol-:-com]

Smtp-challenge loaded ..
domain:  rebol.com

220-gs5.inmotionhosting.com ESMTP Exim 4.42 #1 Mon, 20 Jun 2005 18:19:13 
-0700 
HELO compkarori.com

220-We do not authorize the use of this system to transport unsolicited, 
220 and/or bulk e-mail.

250 gs5.inmotionhosting.com Hello compka at compkarori.com [216.166.83.25]
Mail from:
250 OK
RCPT TO:

550-"The recipient cannot be verified.  Please check all recipients 
of this

in state 3:  550-"The recipient cannot be verified.  Please check 
all recipients of this
user not found
Graham:
20-Jun-2005
Email: [gregg-:-rebol-:-com]

Smtp-challenge loaded ..
domain:  rebol.com

220-gs5.inmotionhosting.com ESMTP Exim 4.42 #1 Mon, 20 Jun 2005 18:19:37 
-0700 
HELO compkarori.com

220-We do not authorize the use of this system to transport unsolicited, 
220 and/or bulk e-mail.

250 gs5.inmotionhosting.com Hello compka at compkarori.com [216.166.83.25]
Mail from:
250 OK
RCPT TO:
250 Accepted
in state 3:  250 Accepted
ok - user is here!
Graham:
20-Jun-2005
Email: [gabriele-:-rebol-:-com]

Smtp-challenge loaded ..
domain:  rebol.com

220-gs5.inmotionhosting.com ESMTP Exim 4.42 #1 Mon, 20 Jun 2005 18:20:01 
-0700 
HELO compkarori.com

220-We do not authorize the use of this system to transport unsolicited, 
220 and/or bulk e-mail.

250 gs5.inmotionhosting.com Hello compka at compkarori.com [216.166.83.25]
Mail from:
250 OK
RCPT TO:
250 Accepted
in state 3:  250 Accepted
ok - user is here!
Volker:
7-Oct-2005
Well, depends on setup-effort, not code-size. And you can send send 
the tex thru email too :))
Ammon:
2-Feb-2006
The idea of combining the browser, email, newsgroups, etc, has failed 
miserably in every application that I've seen.
Ammon:
2-Feb-2006
The funny thing to me is that I can trust Outlook Express to deal 
with huge (10's of thousands) email/newsgroup archives than ANY other 
mail application that I've used.  Mozzila, Thunderbird, etc.  Every 
one of them except Outlook have just failed funtion or function so 
much slower than OE that I just can't use them.
Anton:
22-May-2006
I got it.  I didn't want to give them my email address.
Anton:
22-May-2006
Yes, I shouldn't have assumed it was needed, but I gave them a Yahoo 
email anyway, so no drama.
Henrik:
22-May-2006
I'm sure they'll spend the rest of the day in agony that they didn't 
get your real email address. :-)
Pekr:
13-Feb-2007
What I really like is www.view-card.com system. It is able to embedd 
images directly into email's body (not an attachement), but I found 
out, that most freemails has html email displaying turned off by 
default ....
Pekr:
13-Feb-2007
had anyone done an email address validation according to rfc 2822? 
Well, I mean email adress part? Our to-email "whatever-stupidity-you-write-here423423423-rebol-considers-being-an-meail@{{}}}]//" 
is kind of funny :-)
Pekr:
13-Feb-2007
I thought datatypes should be usefull, and there is exactly precise 
description of what is, and what is not email, so how Rebol can simplify 
it so much?
Sunanda:
13-Feb-2007
Not quite an email address validator, but the REBOL.org uses an email 
address spotter [contributed by Andrew Martin] to find and obsfucate 
email addresses in ML messages, etc.

You could use the same basic parse patterns to identify / validate 
email addresses. 

I haven't checked RFC 822 in detail, so it is likely that Andrew's 
code is more liberal than the actual spec, but it could be a starter.
Would you like a copy of the function?
Group: Announce ... Announcements only - use Ann-reply to chat [web-public]
Bo:
19-Jul-2005
For anyone reading this on AltWeb, please email me at [LTC-:-sonic-:-net] 
with your findings.  Thanks!
Carl:
2-Mar-2006
You can reach him at email on rebol.com if necessary. (I do not put 
his email address here to avoid spam harvesting).
Group: SDK ... [web-public]
Louis:
8-Mar-2006
Can it read a web page ?  I don't know, but it can't send email.
[unknown: 5]:
24-Mar-2006
Yeah that is true.  Thanks Bo.  I got an email into Cindy currently.
Group: !RebGUI ... A lightweight alternative to VID [web-public]
MikeL:
23-May-2005
Google found a more current version http://alain.goye.free.fr/rebol/NoteReb.r
 exactly where Alain advised it was in his email
shadwolf:
6-Jun-2005
* Open rebol console and type :

print next lowercase mold checksum/method "mon-password" 'md5

    * Then send an email to [webmaster-:-rebolfrance-:-info] :
          o Utilisateur:  nickname (registred one)

          o Password: {9c3f8c1d181f8d7c4d2919d801943c51} (can be the raw password 
          too)
          o Nom complet: Real Name
          o Email: [mon-email-:-mon-serveur-:-com]
Pekr:
7-Aug-2005
I know ... I just received email from old time reboller who's name 
I will not disclose, but he is right - why we are still pretending 
we have some secret weapon? The rest of the world really does not 
care:


  I don't want to know anything that the public won't be told. Why 
  do I
need a special handshake just to find out what REBOL intends 
  to do
someday? I just want to be a satisfied customer, I have no 
  desire to
be part of a secret club. Aren't plans and roadmaps what 
  you share
with customers? I have no need for secret organizations, 
  closed door
policies, or special preferential relationships.

Good 
  ideas need to withstand the harsh light of day, which is a
by-product 
  of openness and transparency. MS and other companies do not
care 
  one bit if REBOL is open-source-- they are so far beyond caring
about 
  that. RT has no first-mover advantage or special secret that
makes 
  REBOL a dangerous disruptive technology, and if it did,
open-source 
  or not, they could recreate it within a year (maybe not
compact, 
  but no one will care). Remember MS employs some of the top
scientists 
  from functional programming in their labs.
Group: DevCon2005 ... DevCon 2005 [web-public]
Gabriele:
28-Jul-2005
[Just sent confirmation emails to whoever has registered. Sorry for 
not doing that earlier. If you have registered and haven't get a 
confirmation (either via email or here from me directly), please 
register again.]
Group: AltWeb ... AltME Web Mirror [web-public]
Ingo:
14-Jul-2005
As already stated somewhere else by someone else ... it would be 
nice to filter out email-addresses, before mirroring to the web.
Graham:
15-Jul-2005
as long as the email addresses are filtered out ... nope
Group: Rebol School ... Rebol School [web-public]
Pekr:
26-Oct-2007
The problem probably is, that you are trying to send your email from 
outside of @mail.com domain.
Pekr:
26-Oct-2007
smtp servers usually don't allow you to send email via themselves, 
if you are not part of particular network, or they require authentication 
to smtp - usually your accont name and password is enough. I think 
that in such case, you are out of luck with REBOL. Not sure our smtp 
protocol can handle it ... but - go to www.rebol.org and try to search 
for "smtp" - there are some scripts which could help you ....
Gregg:
29-Oct-2007
You could also write a custom app that sends via email, and a reader 
on the other end that grabs them.
Group: rebcode ... Rebcode discussion [web-public]
BrianH:
22-Oct-2005
Thanks Graham! According to the internet archive, the page was started 
in March, 2000 and was taken down after Dec, 2003.

The last version of this page is http://web.archive.org/web/20021209120704/www.robertmuench.de/parse_ideas.html

I am referenced twice in this page under different, outdated email 
addresses.
Geomol:
12-Dec-2005
I got an email from Carl at one point regarding this issue. I asked 
to have poking of tuples in rebcode. Carl wrote:

Regarding below, tuple poke not supported on images.
But, perhaps 
it makes sense to add that, eh?


As I also see it, adding support for tuple datatype from within rebcode 
is a good solution. Carl is aware of it, it seems, so just *poke* 
him once more and ask for that. It should also work with PICK of 
course (reading pixels).
Group: Windows/COM Support ... [web-public]
james_nak:
27-Oct-2007
Does anyone have an example of how to pop-up a little window in the 
Window's system tray? I've seen the system tray examples but I want 
to create a "reminder" like when Outlook does when gets a new email, 
etc.
Group: Tech News ... Interesting technology [web-public]
Henrik:
3-Oct-2006
I don't know. I use IM, IRC and AltME way more than email. For me, 
email is a rather clunky communications tool. It seems to me that 
for many people, IM requires you to be at the computer all the time, 
which of course it doesn't. I guess it's heritage from the even older 
phone era. :-)
Henrik:
3-Oct-2006
Mail can be good for ad hoc databases, but in my experience, keeping 
track of a conversation can be a bit of a nightmare if you are not 
careful, changing the subject line or something that will screw the 
thread up. This depends on how good the mail client is at threading. 
There is also a problem with certain mail clients not adhering to 
the Re: standard reply prefix for subjects.

Seeing how different people use mail clients very differently, it's 
hard to keep posts flowing in a readable way, if they continously 
decide that every mail needs a new subject, or the subject line is 
blank. This happens for people who are not accustomed to posting 
on mailing lists, where structure is very important. Unfortunately 
most customers that I deal with, do not use their mail clients efficiently, 
because they are unaware of the weaknesses of email. Email was designed 
in an era where sending text messages across phonelines were considered 
pretty high tech and was mostly used by technical people and only 
in select locations.


Just today I was looking for a mail inside an old thread, a response 
to a question I had asked a customer. I couldn't find it. It turned 
out that the customer apparently had never answered it, but I can't 
be sure whether I had accidentally deleted it or if the mail client 
had stowed it somewhere else. Mail just doesn't cut it anymore. It 
needs to be replaced with something much more rigid and with structure 
forced upon it by the clients. Significant protection from spam should 
be there by design, not by throwing advanced algorithms, money and 
CPU power at the problem.


This is why I like AltME. You have the instant messaging capability 
and I can still write long blurps like this one without loosing structure 
of an ongoing one-line conversations in the same thread (group in 
AltME). It'll end up in the right place. It's going to be very certain 
that you'll be able to read it a few seconds after I hit Send. It's 
logged and searchable, though it will scroll out of view quickly.
Henrik:
14-Nov-2006
interesting... AltME wants that to be an Email address
Group: SQLite ... C library embeddable DB [web-public].
Ashley:
4-Nov-2006
1.0.1 available at: http://www.dobeash.com/download.html


Bumped version to 1.0.x as code is no longer "beta" (I actually had 
a few people email me about that!)


Incorporates new IMPORT function (twice as fast as a tight INSERT 
loop) and Robert's nested transaction handling logic (so nested BEGIN, 
COMMIT, END and ROLLBACK statements are correctly handled). Also 
changed logging behavior so all logging is off by default (i.e. use 
/log to turn on *all* logging).
Louis:
16-Nov-2006
What am I doing wrong here:

rebol []
do %sqlite.r
do %rebgui.r

if not exists? %id.txt [write %id.txt 1]

db: %indodex.db
either not exists? db [
    CONNECT/create/flat/direct/format db

    SQL "create table base (id, Nama, Alamat, Telefon, Handfon, Fax, 
    Email, Tgl_Nikah, Nota)"

    SQL "create table birthdays (id, Nama, Jenis, Hubungan, Tgl_Lahir, 
    Agama, Nota)"
][
    CONNECT/flat/direct/format db
]
unless value? 'ctx-rebgui [
	either exists? %rebgui-ctx.r [do %rebgui-ctx.r] [do %rebgui.r]
]
set-colors
tab-size: 120x55
fonts: reduce [font-sans-serif font-fixed font-serif "verdana"]
do show-cc: make function! [] [
display "IndoDex Ver. 1.0.1" [
    tab-panel #HW data [
        "Add" [

            label "Title:" priority: drop-list 30 #W "Pak" data ["Pak" "Ibu" 
            "Sdr." "Sdri." "Drs." "Dr." "Tuan" "Nyonya"] 20x5
            return
            label "Nama:" nama: field 
            return
            label "Alamat:" alamat: area 50x30
            return
            label "Telefon" telefon: field
            return
            label "Handfon" handfon: field
            return
            label "Fax:" fax: field
            return
            label "E-Mail:" email: field
            return
            label "Nota:" nota: area 50x30
            return
            button "Save" [
                (id: to-integer read %id.txt)

                SQL/flat/direct {insert into base values (id, Nama, Alamat, Telefon, 
                Handfon, Fax, Email, Tgl_Nikah, Nota)}
                (write %id.txt id)
                show-text ex-status "Saved"]
        ]
        "Edit" [
            
	]
	"Search" [
	]
    ]
]
]
do-events
Louis:
16-Nov-2006
This doesn't work either:


 SQL ["insert into base values (?, ?, ?, ?, ?, ?, ?, ?, ?)" ID, Nama, 
 Alamat, Telefon, Handfon, Fax, Email, Tgl_Nikah, Nota]
Ashley:
16-Nov-2006
Try reducing the block, as in:


 SQL reduce ["insert into base values (?, ?, ?, ?, ?, ?, ?, ?, ?)" 
 ID, Nama, Alamat, Telefon, Handfon, Fax, Email, Tgl_Nikah, Nota]
Louis:
16-Nov-2006
Here's the latest version:

rebol []
do %sqlite.r
do %rebgui.r
unless value? 'ctx-rebgui [
	either exists? %rebgui-ctx.r [do %rebgui-ctx.r] [do %rebgui.r]
]
set-colors
tab-size: 120x55
fonts: reduce [font-sans-serif font-fixed font-serif "verdana"]

if not exists? %id.txt [write %id.txt 1]
i: to-integer read %id.txt
i: i - 1
either not exists? %indodex.db [
    CONNECT/create %indodex.db

    SQL "create table base (ID, Title, Nama, Alamat, Telefon, Handfon, 
    Fax, Email, Tgl_Nikah, Nota)"

    SQL "create table birthdays (ID, Nama, Jenis, Hubungan, Tgl_Lahir, 
    Agama, Nota)"
][
    CONNECT %indodex.db
]
do show-cc: make function! [] [
set-colors
display "IndoDex Ver. 1.0.1" [
            label 16 "ID:" id: text (to-string i)
            return

            label 16 "Title:" title: drop-list 30 #W "Pak" data ["Pak" "Ibu" 
            "Sdr." "Sdri." "Drs." "Dr." "Tuan" "Nyonya"] 20x5
            return
            label 16 "Nama:" nama: field 
            return
            label 16 "Alamat:" alamat: area 50x30
            return
            label 16 "Telefon:" telefon: field
            return
            label 16 "Handfon:" handfon: field
            return
            label 16 "Fax:" fax: fax: field
            return
            label 16 "E-Mail:" email: field
            return
            label 16 "Nota:" nota: area 50x30
            return
            button "Save" [

                ;UNCOMMENT THE FOLLOWING LINES AND YOU WILL SEE THEY DON'T WORK. 
                ANYBODY KNOW WHAT IS WRONG?

                ;SQL reduce ["insert into base values (?, ?, ?, ?, ?, ?, ?, ?, ?, 
                ?)" id/text, title/text, nama/text, alamat/text, telefon/text, handfon/text, 
                fax/text, email/text, tgl_nikah/text, nota/text]

                ;SQL {insert into base values ('Pak' 'Ibu' 'Sdr.' 'Sdri.' 'Drs.' 
                'Dr.' 'Tuan' 'Nyonya' 'Jonew')}
                (i: to-integer i)
                (i: i + 1)
                (write %id.txt i)
                (i: to-string i)
            ]
            button "GUI Info [

                print [id/text " " title/text " " nama/text " " alamat/text newline]
            ]
            button "DB Info" [
                print TABLES
                SQLite/col-info?: true
                print SQL "select * from base"
                print SQLite/columns
            ]
            button "Halt" [
                halt
            ]
            button "Quit" [
                quit
            ]
]
]
do-events
jrichards:
21-Jan-2010
Is this an accepted method of populating the fields of a view form 
or is there a more precise method?

btn-next: func[][
   if (counter  < (length? db)) [
    counter: counter + 1
    lname/text: db/:counter/2
    fname/text: db/:counter/3
    spouse/text: db/:counter/4
    email/text: db/:counter/5
    hphone/text: db/:counter/6
    cphone/text: db/:counter/7
    addr/text: db/:counter/8
    city/text: db/:counter/9
    state/text: db/:counter/10
    zip/text: db/:counter/11
    
    show window
    ]
]
Gregg:
21-Jan-2010
There is no standard I know of for mapping data to faces. A number 
of us have rolled our own systems over time, each with our own critieria 
and design aesthetic.


As a simple starting point, consider setting up declarative mappings 
and driving a data-exchange loop. e.g.

face-field-map: [
    lname 2 fname 3 spouse 4 
    email 5 hphone 6 cphone 7 
    addr 8 city 9 state 10 zip 11
]

foreach [face-name field-index] face-field-map [
    set-face get face-name  pick db/:counter field-index
]
Janko:
18-Apr-2010
--

You can use rebsqlite with core on windows (it allows dll inclusion) 
but how can you use it on linux? It seems linux rebol doesn't allow 
.so . I used rebpro which does this but now I also need to send an 
email from it and it gives me some strange message "Set-Net not provided."?


Maybe I am doing something wrong/using the wrong tools... how can 
you use rebol with sqlite on linux??
Group: Plugin-2 ... Browser Plugins [web-public]
Sunanda:
16-May-2006
<<disallowing send? why? can't you just send email by java script?>>

Because it is an easy way for some bad software to leak confidential/private 
information from my machine -- gather all the stuff it can and then 
send it in an email.

Similarly, being able to *read* URLs is another way info can be leaked.....The 
server at the other end records the URL parameters, eg

    read http://www.bad-guys-website.com?passwords-dicovered=abcdef/secret123
security as weak as javascript's
 is not a good selling point
MaxV:
14-Jul-2011
Yes, bubbles take a little too time the first time it's launched, 
but it's very impressive,; so I put it first.
If you want more scripts, just email me: [maxint-:-tiscali-:-it]
Group: !Cheyenne ... Discussions about the Cheyenne Web Server [web-public]
Dockimbel:
14-Jul-2007
Ok, give me a few minutes and I'll send you a fix by email.
Group: DevCon2007 ... DevCon 2007 [web-public]
Gabriele:
11-May-2007
sorry, email is [developers-:-relavance-:-com] (missed the s)
Sunanda:
11-May-2007
Rons says he's happy to anawer questions their developers' group.
That email address again:
   [developers-:-relavance-:-com]
Group: Games ... talk about using REBOL for games [web-public]
Gabriele:
7-Nov-2008
maybe you can email him and ask :)
Geomol:
9-Jun-2010
Robert, I sent you an email.
Endo:
16-Aug-2011
Reichart: I really want to see to trick :) You can find my email 
address on Altme.

I mostly can guess next moves of the computer, but couldn't find 
a trick to win every game (Well actually I know one, after a game 
finished you can still continue to play, like 2 two players game. 
By that way you can increase your rank.. But this is nothing about 
AI ofcourse.

At the first a few games I can win immediately, but after several 
games (say 10-15 games) then I cannot win easily. After computer 
rank is 2-3 kyu I cannot win at all (as I'm a beginner Go player.)
By the way its help files are also very well to teach the rules.
Group: !CureCode ... web-based bugtracking tool [web-public]
Gregg:
19-Jun-2007
Tried to register and got this:

> RSP Error Trapped<

Error Code : 	303
Description : 	script error !
answer? expected reference argument of type: string

Near : 	[if not denied?: any [ all [ params/pass <> params/pass2 
"Both passwords don't match" ] all [ "Unknown user" <> identify-user 
params {This Login ID already exists, please choose another} ] all 
[ not find params/email #"@" "Invalid email address" ] all [ not 
captcha/answer? params/code session/content/captcha-text "Wrong Captcha 
code, please try again" ] ]]
Where : 	protected-exec
Oldes:
18-Nov-2008
And there must be something more as registering new user gives error:
Error Code :  	500
Description : 	access error !

Cannot open /c/rebol/server/Cheyenne/www/curecode-r091/www/curecode-r091/nonenone/email-activation.tpl

Near : 	[template: read join locale/get-path %email-activation.tpl]
Where : 	send-confirmation
Dockimbel:
21-Jan-2009
Error account no yet activated

 => check your junk folder in your mailbox for the confirmation email 
 (I need to investiguate on this one, could be caused by different 
 kind of issues)
Dockimbel:
21-Jan-2009
Ok, so either your mail server didn't accepted emails from CureCode 
server, or there's a random bug on CureCode's email sending script.
[unknown: 5]:
21-Jan-2009
I don't know why my mail server would deny it.  I can try a different 
email account though.
Dockimbel:
21-Jan-2009
You provided the same email address in the second attempt.
Group: DevCon2008 (post-chatter) ... DevCon2008 [web-public]
Reichart:
17-Dec-2008
Nick, I'm throwing my questions into a wiki, which will eventually 
become the Wiki to tell people everything they need to know to jump 
into the DevCon.

This is a public syndicated version of the Wiki


https://www.qtask.com/qwiki.cgi?mode=previewSynd&uuid=89Q6MQ8PFN5YU27HNSV87LWB22QT


If you want to edit the Wiki, you simply need to be a member of the 
REBOL SIG project in Qtask.


If anyone wants in, just shoot me a message with the email address 
you want me to use.  There are already about 70+ people in the project.


Here is the link to the editable Wiki  https://www.qtask.com/quilt.fcgi#qwiki-8382?project=198
Reichart:
19-Dec-2008
OK...I knocked out a very quick mock up of a DevCon page that should 
work.  

The logic is, everything on the main page, but if you want the details, 
you can drill in one more level.


https://www.qtask.com/files.cgi/REBOLDevCon.png?actions=get&projectid=198&fileviewid=52216&filename=REBOLDevCon.png
(if you need a membership to Qtask, just post to me your email)
Reichart:
19-Dec-2008
Post a private message to me with your Email, then you have access 
to all sorts of other features too.
NickA:
23-Dec-2008
Reichart, at this point, the only presenters that I'm aware of are 
those from Qtask, listed in the email at  http://mail.rebol.net/cgi-bin/mail-list.r?msg=44443
.   Is there more discussion anywhere else about topics/presenters 
that I've missed?
201 / 75412[3] 45678