• 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
r4wp204
r3wp3029
total:3233

results window for this page: [start: 1 end: 100]

world-name: r4wp

Group: #Red ... Red language group [web-public]
GrahamC:
29-Feb-2012
from the mailing list http://www.arnoldvanhofwegen.com/pics/banners/redlang.png
DocKimbel:
1-Mar-2012
Interesting designs indeed, I will try to list my wishes after the 
Devcon this weekend.
Bas:
3-Apr-2012
http://www.youtube.com/watch?v=UzdT9s-CfdE&list=PL2736E5F6878491D9&index=5&feature=plpp_video
DocKimbel:
11-Aug-2012
first context has the highest priority

: the nearest nested WITH has the higher priority (implemented but 
not tested yet).


Also, when specifying a block of namespaces, the first one in the 
list has priority other the next one, and so on.
Kaj:
11-Aug-2012
Brian, there was a blog about having RESOLVE, I think, walking a 
list of contexts, but Carl eventually decided that it wasn't needed 
"due to R3's new binding capablities"
DocKimbel:
15-Aug-2012
Compilation in working directory: I'm adding it in the todo list 
for the release.
Kaj:
16-Aug-2012
Now that non-English languages are up-and-coming in programming, 
it could solve the fragmentation of the available code pool, if you 
would implement an extra feature that would allow code to be saved 
and loaded with an ordered list of preferred alias languages
DocKimbel:
20-Aug-2012
Peter: thanks, then I'll add that to my todo-list.
james_nak:
22-Aug-2012
Someone else wrote:

So the 'solution' I found to this was to set up filters for the various 
repository emails by filtering on email list. The list filtering 
is mentioned here on the github blog: https://github.com/blog/967-github-secrets
(scroll down the page a bit).


I would then just forward the emails from selected repositories to 
the "correct" email address.
DocKimbel:
4-Sep-2012
So far, my short-list of encodings to support are UTF-8 and UTF-16LE. 
UTF-32 might be needed at some point in the future, but for now, 
I'm not aware of any system that uses it?


The Unicode standard by itself is not the problem (having just one 
encoding would have helped, though). The issue lies in different 
OSes supporting different encodings, so it makes the choice for an 
internal x-platform encoding hard. It's a matter of Red internal 
trade-offs, so I need to study the possible internal resources usage 
for each one and decide which one is the more appropriate. So far, 
I was inclined to support both UTF-8 and UTF-16LE fully, but I'm 
not sure yet that's the best choice. To avoid surprizing users with 
inconsistent string operation performances, I thought to give users 
explicit control over string format, if they need such control (by 
default, Red would handle all automatically internally). For example, 
on Windows::

    s: "hello"		;-- UTF-8 literal string

    print s		;-- string converted to UCS2 for printing through win32 
    API
    write %file s	;-- string converted back to UTF-8

    set-modes s 'encoding 'UTF-16 ;-- user deciding on format
or
    s/encoding: 'UTF-16

    print length? s	;-- Length? then runs in O(1), no surprize.



Supporting ANSI as internal encoding seems useless, being able to 
just export/import it should suffice.

BTW, Brian, IIRC, OS X relies on UTF-8 internally not UTF-16.
Kaj:
8-Sep-2012
They're still hacked now and then, but there are ever more. Here's 
a market share list:
DocKimbel:
15-Sep-2012
I will provide the basic ones for Red: TCP, UDP, DNS, HTTP(S), SSL, 
SSH/SFTP, SMTP. Also, I would like to have a few more for remote 
or local storage builtin: Dropbox, MySQL, Postgresql. 


You are welcome to contribute other ones to that list (IMAP, SMTP, 
MongoDB, CouchDB would be nice additions).
Henrik:
17-Sep-2012
is there a list of any-function!s implemented?
DocKimbel:
17-Sep-2012
Also, if someone is willing to make such a list right now and maintain 
it updated, that would be nice.
Rebolek:
18-Sep-2012
Pekr, if you are interested what action!s and native!s are currently 
available, I wrote simple parser that goes thru %actions.reds and 
%natives.reds and outputs list of all implemented functions.
Arnold:
21-Sep-2012
Well my patience is being tested. No red-lang mailing list for me 
for a week or more. Account disabled. (Red-terrorist :) )
DocKimbel:
22-Sep-2012
I don't think that all future Red users will be pleased to have to 
provide a long list of advertisement with all their apps, just because 
Red uses 3rd-party libs underneath.
Kaj:
23-Sep-2012
http://www.youtube.com/playlist?list=PL3926D5E4DBD8B360
DocKimbel:
26-Sep-2012
You can find the codepoints you need here: http://en.wikipedia.org/wiki/List_of_Unicode_characters
Arnold:
6-Oct-2012
Ah Kaj, could you put up a shopping list of thing to buy too when 
you buy a RaspberryPi?
Kaj:
6-Oct-2012
Arnold, you want me to give a list of things that you would need 
to get a Raspberry going?
Arnold:
7-Oct-2012
 after running around all week buying additional needed equipment.

 that sounds like a shopping list comes in handy when purchasing a 
 RaspberryPi, there are some surprises like needing a VGA monitor 
 where the standard videoout on the Pi is HDMI.
DocKimbel:
11-Oct-2012
Pekr: look into the commits list, not in the source code.
Pekr:
11-Oct-2012
by commit list, do you mean eg. https://github.com/dockimbel/Red/commits/v0.3.0
DocKimbel:
15-Oct-2012
I think it will take me one or two days for the 0.3.0 release todo-list 
to get done.
Pekr:
15-Oct-2012
Some blog article about what 0.3.0 brings to the table, would be 
nice then, to show ppl what is implemented, what one can do already 
in Red (eventual list of supported dtypes, natives, actions?), and 
what comes next? That would keep ppl motivated ...
DocKimbel:
15-Oct-2012
Wrinting a new blog entry is part of the todo-list. ;-)
Pekr:
15-Oct-2012
Did not know, that todo-list contains also non-development related 
stuff :-)
Arnold:
15-Oct-2012
Did not know making the to-do list takes two to three days ;)
Pekr:
15-Oct-2012
:-) to do list to get done means, to implement all to-do items :-)
Arnold:
15-Oct-2012
Is that still on your to-do list Pekr :D
DocKimbel:
20-Oct-2012
Resolving import cycles

: we've solved that in Red/System compiler by having a simple "included 
files" list and it stops inclusion if already done once. But we do 
that at compile-time, so it's easy.
DocKimbel:
25-Oct-2012
I've cleaned up the open tickets today and created a wish list page 
in the project's wiki on github.
DocKimbel:
28-Oct-2012
I also thought about "WinCon" at the beginning (and "WinGUI" instead 
of "Windows"), but quickly dropped it because it would not be easy 
to remember, and inconsistent with the way other targets are named. 
See the targets list at the bottom of this page: 

https://github.com/dockimbel/Red
Pekr:
31-Oct-2012
I would not mind. Something like "sponsored by" or any other text 
would be ok with me ... not sure about the amounts of money displayed, 
but maybe then two lists - top donators, others who contributed too. 
Dunno - simply put - someone might make one donation for higher amount 
of money, so ask such person, if he would mind if only one list is 
available ...
Pekr:
31-Oct-2012
what do you mean by anonymous? What I think is OK is to display list 
of donators, in no respective order. It is the same like list of 
eventual top frequent code contributors. I think that ppl could be 
ok with that. Of course, if someone opts to stay "hidden", you will 
not list him/her ....?
Endo:
31-Oct-2012
So you can share the total donation amount (per month, or all), and 
"thanks to those people" text on the web site. Put people to the 
list if they donate even once.

There is something similar on C64 Scene Database: http://noname.c64.org/csdb/donate.php
Bas:
31-Oct-2012
http://www.youtube.com/watch?v=9eQPtrw8rIQ&list=PLN-OHO8jjoowvi5peIoOp_E05wpf2YQVh&index=1&feature=plpp_video
Gabriele:
1-Nov-2012
when you donate, you can choose to appear in the list or not, and 
if yes, what name to appear as.
BrianH:
7-Nov-2012
People overestimate what linking means. It really is as simple as 
a pointer, the same thing that it means in a linked list.
DocKimbel:
16-Nov-2012
perhaps one other way to look at this problem is to only have positive 
indices, and have REVERSE (or similar) return a value that is not 
a copy or modification of the series, but simply lets you look backwards.


At first look, the implementation overhead wouldn't be high for supporting 
such feature and that could solve our PICK issue, elegantly I think. 
My only interrogation about it would be: will we be able to easily 
reason about such "reversed" view of series once mixed with "normal" 
series in the middle of our code or would it confuse many people?


Anyway, I think this one should be in the short-list of the possible 
solutions.
BrianH:
16-Nov-2012
If we do R2's behavior, make sure that PICKZ and POKEZ exist so I 
have something to use. They can call PICK and POKE internally. I 
need something that does computed indexes/offsets, and I can't afford 
to have a hole in the list (0 for R2), and I can't count on the port 
scheme supporting SKIP.
DocKimbel:
16-Nov-2012
and I can't afford to have a hole in the list

 Brian, could you give us some short code cases where this was a problem 
 for you? This would really help.
DocKimbel:
16-Nov-2012
We should write a short-list of possible options that would solve 
the whole issue and see if we can get a large consensus on one of 
them. Anyone kind enough to extract the different options we've discussed 
and put them somewhere online with the main pros/cons?
DocKimbel:
17-Nov-2012
Note also that in the PICK/BACK scenario, negative integers become 
available for a new possible usage, like addressing a series from 
tail (if that makes sense in a REBOL-like language). I know Brian 
is fully against that, but we need objective arguments to reason 
upon. "From tail" indexes are still a toy idea for me, until we can 
list all the pros/cons and see if it is an helpful addition or a 
bad idea.
Jerry:
19-Nov-2012
Now Red supports 21 datatypes. In the following R3 datatype list, 
datatypes with a minus prefix are not supported in Red yet.


action -binary -bitset block char -closure -command datatype -date 
-decimal -email -end -error -event -file -frame function get-path 
get-word -gob -handle -image integer -issue -library lit-path lit-word 
logic -map -module -money native none -object op -pair -paren path 
-percent -port -rebcode refinement set-path set-word string -struct 
-tag -task -time -tuple -typeset unset -url -utype -vector word
Pekr:
20-Nov-2012
Jerry, I am not sure, I would post such a list, especially to Red 
FB channel. It looks almost discouraging. How will you measure the 
quality of Red e.g. running on ARM, and R3 not?
Pekr:
20-Nov-2012
Doc - interesting - I know you have no intention to port View, but 
what about other types of events? Will not be there an event type? 
I want my wait-list with various events - networking, serial port, 
whatever :-)
DocKimbel:
22-Nov-2012
Jerry: it's a bit premature, but yes, that should be the way to create 
and consume redbin data. You can also add SAVE to that list.
Kaj:
25-Nov-2012
You can write such a list in the arguments of a function, so you 
can make a constructor function that takes the constants and delivers 
the array
Gregg:
30-Nov-2012
My suggestion, then, is to make a list of target OSs, prioritize 
the value of a GUI on them, and propose the best GUI solution for 
each.
Pekr:
30-Nov-2012
I think the check list is done :-) I think that in 2-3 months, Doc 
wants to start by - Android :-) And maybe something in that direction 
is already slowly starting to happen :-)
DocKimbel:
6-Dec-2012
It would be really nice to have automatic builds+tests running on 
all major supported platforms for each new commit on main branch, 
and an automatic report generated online. That would really saves 
us time and avoid missing some obvious regressions.


I know that Andreas started working on that. Andreas, do you already 
have a good plan to achieve it?  Do you need help/resources?


I can provide a Linux server for Linux/x86 targets. Having a Windows 
machine online + MacOS X would be great. Also a Linux/ARM (RPi for 
example) that is always up and reachable from the net could nicely 
complete the list.
DocKimbel:
9-Dec-2012
The source code should be easily parse-able, so the list of functions, 
native, actions, ops could be extracted and pretty-printed as a web 
page. IIRC, someone tried to make such script but I didn't see any 
result yet.
DocKimbel:
26-Dec-2012
BREAK is on my todo list. I might add CONTINUE too. GOTO could be 
useful for implementing fast FSM, but having some specific feature 
for FSM support would probably be a cleaner option than GOTO.


I personally very rarely need BREAK/CONTINUE, their usage depends 
on your programming style and the way you implement algorithms.
Gerard:
26-Dec-2012
@ Doc : Will the interpreter have included (some time in the future) 
some of the debug features planned for R3 (Hooks, stack ops, etc...) 
? That would be nice but it's just my wish list ;-)
DocKimbel:
26-Dec-2012
Gerard: reading the comments from your links, all the features people 
mention are on my todo-list for the Red IDE. ;-)
DocKimbel:
3-Jan-2013
Hardly, the symbol table purpose is to provide a mapping between 
an integer value (the symbol ID) and a string representation. If 
we could allow the removal of a symbol, we would need: 


1) to be sure that a symbol is not used anymore anywhere (would require 
an equivalent of a full GC collection pass) before removing it.


2) maintain a list of freed "slots" in the symbol table for re-use.


3) being able to trigger the symbols-GC at relevant points in time.


Even with that, it would still be hard to counter a LOAD-based attack 
on the symbol table.
DocKimbel:
12-Jan-2013
If you're thinking about OS bindings, they should go in %platform/ 
folder. Can't you add CALL to natives? If you need help I can give 
you a check-list of things to add to support a new native, it's pretty 
simple.
DocKimbel:
9-Feb-2013
I might add #374 too the list too as it is related to scoping.
DocKimbel:
16-Feb-2013
Preliminary path! and set-path! support added to Red interpreter.

https://github.com/dockimbel/Red/commit/53f87ff81822e81c5ddf56245e68f8e6255c698b


Works only on series! so far, function calls with refinements are 
next on the todo-list.
GrahamC:
5-Mar-2013
I believe redoing the website is on the list of things to do ...
Rebolek:
6-Mar-2013
As Geomol doesn't list World in used tools for his iOS projects I 
guess it failed.
NickA:
7-Mar-2013
Without those features, there's no reason for anyone to take a look 
at REBOLish stuff.  It's just weird syntax, as far as they're concerned. 
 Take a look at http://www.runrev.com/products/livecode/LiveCode/
.  18 pages of feature description.  That's an attractive list, and 
I think should be read by everyone here.  It provides some perspective 
as to how much work is required for Red to become a viable competitor.
DocKimbel:
9-Mar-2013
I'm counting 27 datatypes implemented so far in Red. The next on 
the list will be: typeset!, errror!, object!, port!, binary!. Although, 
I'm not sure in which precise order they will be added (especially 
for error! and object!, not sure which one I'll do first).


For other datatypes, like float!, date! and time!, which are not 
a requirement for building Red core itself, I would like them to 
be contributed if possible. I could provide a sample empty datatype 
file and instructions on how to use Red's current internal API to 
anyone willing to work on them.
BrianH:
9-Mar-2013
It's on my todo list to do more LOAD tests for R3. You can use those 
then, at least as a start.
Endo:
10-Mar-2013
Trello is a very good choice, so anyone can see what is on the list 
easily. I use it for my work and personal lists. There is Android 
app too.
Group: Announce ... Announcements only - use Ann-reply to chat [web-public]
MaxV:
11-Jul-2012
Look also at this page: http://www.maxvessi.net/rebsite/wr/if 
 your site is about Rebol and isn't the list on the left, please 
send me your link; if you know some site about Rebol and it isn't 
in the list, please send me a link.
Kaj:
20-Sep-2012
http://www.youtube.com/watch?v=YtLHl-Kpyyg&list=PLo1XY7fgXbYZkC5H38c7UhlVVHWz2gztd&index=1&feature=plpp_video
Ladislav:
6-Nov-2012
Reposting Carl Read's: "For those wanting an email list again, note 
there's already one on Google Groups: groups.google.com/forum/?fromgroups#!forum/rebol"
Arnold:
6-Dec-2012
A kind reminder to subscribe to the Red mailing list at https://groups.google.com/forum/?hl=en&fromgroups#!forum/red-lang
is you haven't done so already.
Group: Ann-Reply ... Reply to Announce group [web-public]
Arnold:
2-Jul-2012
@Rebolek Thanks, that wil be on the list together with line width 
and color and font-size preferences, a multilingual help function 
and a resize mechanism. ((:
Janko:
25-Sep-2012
http://en.wikipedia.org/wiki/List_of_open-source_programming_languages
there are many w/ GPL
Kaj:
12-Nov-2012
Still, almost everything in Fossil's implementation duplicates stuff 
that will be in Red, so an alternative Fossil implementation in Red 
is on my wish list :-)
Gregg:
23-Mar-2013
Ah, now that I click them--and remember--I get it. My gut said that 
Available Words would give me a matrix with the languages at the 
top and a list of words available in each.
Group: Rebol School ... REBOL School [web-public]
GrahamC:
5-Apr-2012
View question http://synapse-ehr.com/community/threads/adjusting-a-text-list-starting-point.1447/
Marco:
7-Apr-2012
@GrahamC: after "data read %." insert: "with [append init [sld/data: 
0.5 do-face sld none]]".
sld

 is the name of the slider of the text-list, 0.5 means jump to the 
 middle.
PeterWood:
3-May-2012
This might help you get started:

>> d: open/direct/lines %system-use-case-list.html
>> ln-d: length? ln: first d
== 6
>> ln+nl: read/binary/part %system-use-case-list.html ln-d + 2
== #{3C68746D6C3E0D0A}
GiuseppeC:
7-May-2012
Isn't in VID a god text viewever with scrollers ? Text List does 
not work here. It show only the first line of text.
james_nak:
7-May-2012
Giuseppe, if it is textviewers that you are looking for, you may 
want to see Henrik's Vid Extention Kit.  http://www.hmkdesign.dk/project.rsp?id=vid-ext-kit&page=info
because if you are going to do anything slightly more complex than 
VID "text-list"  you will find data-list much more powerful. BTW, 
what are you supplying as data in your text-list?
Gregg:
7-May-2012
The LIST style is very flexible for read-only displays, but more 
work.
Endo:
8-May-2012
strange characters

: You need to set /line-list of your VID widget to show it correctly.
GiuseppeC:
8-May-2012
Line-list ? What is it ?
Endo:
8-May-2012
layout [x: text "test"]
;update x/text with a long text
x/line-list: none
show x
Endo:
8-May-2012
Its better to set line-list to none for every update.
Henrik:
26-Jun-2012
it depends on what you want to do. LIST is not very flexible.
Arnold:
30-Jun-2012
That is now on the wish-list!
Sujoy:
3-Jul-2012
hi maxim!

thanks - saw that in the docs, and also saw brett;s sort-object-series 
function on the mailing list
not quite sure how it works with an inner object though
Maxim:
3-Jul-2012
you can simply say that when an entry doesn't have a year, it is 
always larger,  so you have them at the end of the list.  you could 
then sort those without a date according to their name.


if you want just the list for "1991-1992" yes, that is a good approach... 


however usually, the fastest way to filter-out lists, is to copy 
the block (not deep, so its quick) and then use remove-each on the 
new block... like-so:

filtered-data: copy data

remove-each [hash mcapz] filtered-data [ not select mcapz "1991-1992"]
Arnold:
12-Jul-2012
This says it is for binary data like images. In the first lines of 
this post http://www.mail-archive.com/[list-:-rebol-:-com]/msg01452.html 
it is mentioned as bringing not the solution to this wish. I passed 
this by, I'll stil have a second look, things in php could have 'suffered' 
improvements..
Maxim:
13-Sep-2012
even the event list is a hard-coded list.  which is part of the problem.
Sujoy:
10-Oct-2012
:)
is this because pool-list is empty?

i put in a debug "print" cmd in the on-new-client function of task-master.r, 
which is the only place i could see pool-list being appended to...but 
it seems the function is not called
Sujoy:
10-Oct-2012
on-new-client: has [job][
  ;added this line
  print client/remote-ip
  if client/remote-ip <> 127.0.0.1 [close-client exit]
  set-modes client [keep-alive: on]
  client/timeout: 15
  client/user-data: make task []
  ;only place where pool-list is appended to...
  append pool-list :client
Sujoy:
11-Oct-2012
Will do Greg...I saw on the zmq list that you were doing the peering 
example as well...super stuff
Group: Databases ... group to discuss various database issues and drivers [web-public]
BrianH:
21-Mar-2012
With ChristianE's R3 ODBC, the initial insert dbport returns a header 
list translated to REBOL naming conventions, though it doesn't work 
right with unlabeled columns. Not sure with R2.
Maxim:
21-Mar-2012
ok, so what do the columns returned by the [columns]  query mean? 
 (without docs, remember I'm not assuming the docs are up to date 
or even apply to Firebirds interface)


I tried to list the RDB$FIELDS metadata table, but it clearly doesn't 
match the columns output.
ChristianE:
22-Mar-2012
I may find some time to tweak the R3 ODBC-API a bit if you could 
supply a prioritized list of things that need work. Regarding problems 
with certain SQL types one easy workaround could be to just allow 
all types without direct support by rebol to read them as strings, 
you then could do anything you like withthem. Regarding "R3's documentation 
for its port model is a bit lacking" - I surely won't have any time 
to find out why the port model I used feels alien to R3 without the 
better R3 beeing documented anywhere.
Pekr:
21-Jul-2012
Simply put - millisecond lock time is enough fine grained for my 
purposes, but - let's assume you have several ppl working on some 
customer list, where each customer has some orders. Those ppl do 
select particular customer, and work with orders. What I want is 
- when some user selects particular customer, I need its record being 
locked. The trouble is, that when I use BEGIN transaction for sqlite, 
it locks all the file, and does not allow other process to do write 
to the DB.


I wonder, if I can somehow obey it, not really having per record 
locking. I would have to implement my own lock mechanism (not locking 
in fact), not allowing others select/enter customer record, when 
some other person is working on it?
Group: !Syllable ... Syllable free operating system family [web-public]
Kaj:
9-Sep-2012
http://www.youtube.com/watch?v=xpjVze-YOKI&list=PL-sJ-JyMOF6FcvI-cEK3esrCJaQzmlae0&index=2&feature=plpp_video
Group: Web ... Anything related to the WWW [web-public]
Chris:
20-Sep-2012
The structure of MD since v2 is a separation of scanner and emitter. 
'scan-doc will break text into a block of [style content] pairs. 
'gen-doc will take that block and turn it into something, most commonly 
HTML.


The features of your doc - using your ==+, ==#, etc. are in the spec 
of the parser. Loosely explained, the parser's rule 'resets' when 
it encounters a newline.  It defines a few paragraph types that copies 
chunks of text (including 'paragraph that consumes text AND single 
newlines).  The rest of the rule determines the paragraph style and 
expected paragraph type:

  "===" text-line (emit sect1 text)

Could just as easily be:

  "==+" paragraph (emit my-bold-paragraph para)



The way a document is presented is all in the emitter. Seems this 
is where you seem to be yearning for most control. My first motivation 
using MakeDoc was stripping it of any styles - I just wanted a minimum 
of HTML markup that could be embedded and properly moulded by CSS. 
In my script above, I iterate through the [style content] list and 
use 'switch to determine how to handle each, this should be sufficient 
for documents without any complexity. It's really then just a case 
of modifying the HTML that is emitted.



Example of script used in RSP (exposes [escape-html scan-doc gen-doc]):


  <link rel="stylesheet" href="http://ross-gill.com/styles/anywhere.css">
  <% do http://reb4.me/r/xhtml%>

  <pre><code><%= mold doc: scan-doc some-input-text %></code></pre>
  <%= gen-doc doc %>

How it looks depends on the stylesheet you use.
1 / 3233[1] 2345...2930313233