• 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
r4wp97
r3wp1238
total:1335

results window for this page: [start: 1301 end: 1335]

world-name: r3wp

Group: #Boron ... Open Source REBOL Clone [web-public]
JaimeVargas:
13-Jul-2006
Like Kaj request for returning the last element.
Kaj:
8-Sep-2010
That's through Cheyenne's CGI mode, so with standard input reading, 
it should also be able to handle a POST request
Group: !REBOL2 Releases ... Discuss 2.x releases [web-public]
Pekr:
24-May-2007
My thoughts are as follows - if we request some small fixes, which 
can be workarounded, then let's spend RT's development in R3 area. 
Fix hard crashes and that's it for 2.7 release ...
james_nak:
2-Jun-2009
Have any of you ever seen where the request-date requester does not 
display the correct month? For example, it will say May 2009 when 
it is actually displaying June 2009. Selecting a date will give you 
the june date. Using the /date refinement doesn't seem to help either.
BrianH:
2-Jan-2010
Post the request on CureCode once we have a R2 project for it.
Carl:
26-Mar-2010
Steeve... that's an interesting request.... what's it used for?
TomBon:
15-Apr-2010
like this?
the cli connector is using the cli component nearly all major
databases delivering. the connection is made via rebols 

call/wait/info/output/error and a simple parse after, for the resultset.
I am using this prototype mainly for a q & d connect

to mysql/postgresql/monetdb/sqlite. on my list are also connectors 
for

firebird/oracle/greenplum/sybase/ingres/infobright/frontbase and 
cassandra.
pros:

1. very fast for single requests
2. no rewrite of code needed if a new version or protocol is out
3. easy 'data migration' between the db's

4. adding new db's are a matter of hours only (see the cli spec thats 
all)
5. fast prototyping and testing for new db's

6. robust, never had any trouble with cli's even with bigger resultsets

7. should be perfect also for traditional cgi (the process starting 
overhead is minimal, execpt you name is facebook)

8. very small footprint (~120 lines for connecting to 4 db's, could 
be the half)

with a nice tcp-server component like rebservice the 
cli multi connector could be very usefull as a c/s connector.
I made a test with 2.000 concurrent calls (simple select) 
on a 4 gig quadcore. the cpu was only close to 50%, a good value.

cons:


1. slow if you have very much serial inserts (unless you shape them 
into one sql query)
2. need to start a cli process for every request
3. needs a tcp server for non-local connections
4. some more, but who cares ;-)

with a solution to keep the cli open from rebservice,

these cons could disappear and the speed diff overhead to a memory 
based lib
could be marginal.
TomBon:
15-Apr-2010
there are 3 extension which would be very cool. 

1. tcp server for easy remote request  without the need for the cli 
on the client side (e.g. rebservice)  

2. a smart sql-syntax mapper for interactive migration (you can't 
read e.g. a mysql dump directly into postgresql) 

3. a stable cli alive holder to eliminate the startup payload for 
the request.
BrianH:
2-Sep-2010
Just posted a ticket about this for R3 (by request). This shows the 
problem:
>> http://user%40rebol.com:[blah-:-www-:-rebol-:-com]/
== http://[user-:-rebol-:-com]:[blah-:-www-:-rebol-:-com]/
; should be http://user%40rebol.com:[blah-:-www-:-rebol-:-com]/
nve:
2-Jan-2011
What is the plan for next release ?
Do we need to post bug/request on RAMBO ?
RobertS:
3-Jan-2011
one indicator: IE 8 (which is not my default now since I moved to 
K-mleon) runs VIEW 2.7.8 as a right-click option using RUN - but 
download with IE8 and run from Explorer file view correctly triggers 
a request to authorize due to no "valid" digital signature for MS 
- yet this MS alert fails to trigger when run after download using 
K-meleon browser (yet no issue after K-meleon downloads CORE 2.7.8 
)
BrianH:
3-Jan-2011
The request-to-authorize thing is managed by an extended attribute 
in one of the other forks of the file on NTFS, and not on FAT. Have 
you tried Chrome or Firefox?
Group: !REBOL3 GUI ... [web-public]
Pekr:
12-Oct-2011
No, not a musical request program, just whole REBOL ecosystem being 
 a hilarious parody ....
Group: ReBorCon 2011 ... REBOL & Boron Conference [web-public]
Bas:
26-Feb-2011
The Request Pipeline
Group: !REBOL3 Proposals ... For discussion of feature proposals [web-public]
BrianH:
20-Jan-2011
I put in a request for Ladislav's feedback in a ticket comment, and 
in other AltME worlds where he works. Including the RMA world, where 
they write code that would be affected by this.
Group: Red ... Red language group [web-public]
Steeve:
11-Mar-2011
Doc, do you see something ? 
I pulled a request.
Dockimbel:
11-Mar-2011
Your pull request disappeared, I guess you'll publish a new one.
Steeve:
11-Mar-2011
I repulled a request.
Dockimbel:
11-Mar-2011
It seems a ticket is opened for each pull request...
PeterWood:
4-Apr-2011
This article was an influence in the decision to request people to 
register to the Google Group - http://ejohn.org/blog/google-groups-is-dead/
PeterWood:
13-Apr-2011
I'll  guess that  the next request will be for an unsigned integer.
Kaj:
27-May-2011
I've taken over Andreas' changes, corrected the runtime syscall, 
and uploaded new empty, hello, reply-server and request-client
Dockimbel:
10-Jun-2011
I am considering your request for an implicit casting for imported 
functions using a return: [logic!] declaration. I could add it, by 
forcing a type conversion if the function is imported, but if the 
function already returns the right value (0 | 1), it will have to 
pay an extra cost for a useless conversion and no way to avoid it.
Kaj:
23-Jun-2011
unless all [
	(
		message: receive socket 0
		as-logic message
	)(

  prin "Received request: "  print as-c-string message-data message
		end-message message
	)(
		;wait 1
		send socket  as [byte-ptr!] reply  1 + length? text  0
	)
][
	print zmq-form-error system-error
]
Dockimbel:
23-Jun-2011
Btw, your code snippet could be rewritten as:

message: receive socket 0
unless all [
	as-logic message
	end-message message
	;wait 1
	send socket  as [byte-ptr!] reply  1 + length? text  0
][

 prin "Received request: "  print as-c-string message-data message
	print zmq-form-error system-error
]
Dockimbel:
12-Aug-2011
Cross-posting jocko's reply from RebelBB french forum: 

There are two steps in this DLL: 


- first send a request to the Google api, for instance : http://translate.google.com/translate_tts?tl=en&q=hello+world
Google returns an audio file : translate_tts.mp3


- second, automatically open this file and play it. I use a DirectXShow 
filter (windows only), directly able to render the url. In the case 
of Linux, cUrl could do the first step, and, for instance VLC the 
second
Kaj:
10-Sep-2011
Doc, the 0MQ binding still works, so you can use the request/reply 
example, on Linux or Windows
Oldes:
28-Jan-2012
done.. you can find complete diff for the pull request here: https://github.com/dockimbel/Red/pull/201/files
Dockimbel:
28-Jan-2012
Code review of your pull request finished. Only minor things except 
maybe for the addition in `get-variable-spec` that might cause some 
issues.
Dockimbel:
2-Feb-2012
Pull request #201: Oldes, thank you very much for your changes. It 
should be ok now for merging, I will just run a few more tests before 
that.
Pekr:
6-Feb-2012
No, not anything, but what normal consument expects. There is plenty 
of bare bones DVD players, DVB-T tuners, and apart from video, all 
handle even photos, as I think, that in the age of digital cameras, 
it is pretty normal to request such a feature. But - whatever ...
Kaj:
16-Feb-2012
bash-4.0# ./request-client 
0MQ version: 2.1.4

Connecting to Hello World server...
Sending request 1
Received reply 1: World
Resource temporarily unavailable
Sending request 2
Received reply 2: World
Resource temporarily unavailable
Sending request 3
Received reply 3: World
Resource temporarily unavailable
Sending request 4
Received reply 4: World
Resource temporarily unavailable
Sending request 5
Received reply 5: World
Resource temporarily unavailable
Sending request 6
Received reply 6: World
Resource temporarily unavailable
Sending request 7
Received reply 7: World
Resource temporarily unavailable
Sending request 8
Received reply 8: World
Resource temporarily unavailable
Sending request 9
Received reply 9: World
Resource temporarily unavailable
Sending request 10
Received reply 10: World
Resource temporarily unavailable
Resource temporarily unavailable
Resource temporarily unavailable
Oldes:
20-Feb-2012
Here is the fix in the pull request: https://github.com/dockimbel/Red/pull/206/files
Group: Topaz ... The Topaz Language [web-public]
Janko:
12-Nov-2011
Yes I do some variant of that too. Hm.. maybe I just viewed all this 
wrong so far.. I imagined that when something will go wrong I will 
be looking and hacking on generated javascript (I use it and console 
sometimes), but yes I should view it that I will be changing the 
topaz with print statements for example and viewing the output.


In this case .. is it planned so that topaz could be automatically 
compiled on http request (in dev mode at least)? so that you can 
just edit and reload, like with javascript (without manually compiling)?
Group: World ... For discussion of World language [web-public]
PeterWood:
4-Dec-2011
Nenad uses Github issues for bug and feature request tracking for 
Red though perhaps the wiki would be better for a List of REBOL incompatabilities?
1301 / 133512345...10111213[14]