• 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
r4wp7
r3wp37
total:44

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

world-name: r4wp

Group: #Red ... Red language group [web-public]
Kaj:
26-Apr-2012
I think he has super ability to walk through them ;-)
BrianH:
11-Aug-2012
IN block word is used in the R3 GUI. It does the same context walk 
that Doc says WITH does, but only to retrieve a word.
DocKimbel:
16-Nov-2012
the most sane way to make a decision here is to come up with use 
cases,


I can't agree more. What I am wondering is: have rebolers ever hit 
that specific issue (0 gap producing a calculation error) at least 
once? My feeling is that it is an extremely rare error case (but 
a nasty one) that could have been mitigated by just making PICK raise 
an error on 0.


Now, you could also say that you should never iterate over a series 
using indices. But, then why have PICK at all?


Right, IMHO, you shouldn't iterate over a series using indices, unless 
you have a good reason for it. In the general case, people should 
use "navigational" functions to walk through a series. PICK is ok 
as long as you don't PICK on 0.
Fork:
4-Mar-2013
Red is going to freak a lot of people out, despite being open source. 
 Having both options gives more growth potential, and the easier 
it is to walk between them the more strength the whole ecology will 
have.
Group: Ann-Reply ... Reply to Announce group [web-public]
GrahamC:
12-Dec-2012
Magazines were fun then .. now you have to do a random walk across 
the web
Group: !REBOL3 ... General discussion about REBOL 3 [web-public]
Andreas:
13-Apr-2013
Quite fortunate that you know already know enough of the GC to not 
mistakenly walk down the wrong road.
GiuseppeC:
1-Jun-2013
Ladislav, I disagree with your (not so) hidden opinion that the feature 
I proposed is not useful at all.

During my early days and even now I find difficult to uderstand REBOL 
code without "connectors" words which makes a line more descriptive.

I agree that dialecting is a big advancement. I also like the opportinity 
to write "first, second,... last" but  adding ";" should be a big 
change and you should really walk in the shoes of a newbie where 
reading a line with connector words really makes the difference.

world-name: r3wp

Group: All ... except covered in other channels [web-public]
Maxim:
21-May-2009
too bad there's no F1 this year... (in montreal) we won't be able 
to walk on ferrari street for a whole week... imagine, its been said 
by pilots, that montreal was the favorite spot for partying on the 
F1 championship after monaco.
Group: !AltME ... Discussion about AltME [web-public]
[unknown: 9]:
8-Feb-2006
Agreed.  


But if I did not engage Graham, I would be ignoring an important 
part of our relationship, which is "aside" from the point you describe. 
 


You know guys……………its OK to disagree about stuff, have deep discussions 
about them, and even walk away disagreeing to the end.  Perhaps it 
is a cultural difference that causes people to worry about "upsetting" 
people.
DideC:
4-Feb-2009
Jesus walk on the water
 ?!!???!!!?? Rebolish !!

Now I understand with BS was th most used group in this word (before 
BS-C).
DideC:
4-Feb-2009
Rebolish : humor !

With a "rebolcentral.org" domain name, I was surprised to fall on 
this "Jesus walk on water" page.
Maybe "Rebol walk on the IT water" ??
Rebolek:
5-Feb-2009
I think it's a bad joke. The setting is not bad, people don't usualy 
walk on water, but then what? Does he catch some fish with bare hands? 
Or is there someone passing by, telling him "you can't walk on water" 
and after he realizes that, he sinks down? No, nothing. There's no 
punch line. Sorry, bad joke.
BrianH:
8-Oct-2011
It really irks me that I can't use AltME on my phone. My internet 
landline has been iffy lately, but if I have problems with my phone 
connection I can just walk somewhere else.
Group: Core ... Discuss core issues [web-public]
shadwolf:
14-Jan-2005
for example if I say walk is frame 0 10 for human but for aliens 
in my game I nead to have only frames 0 to 5 for the walk I need 
to make 2 animation list and 2 animation switches to handle human 
(main caracter of my game for example) and alien
Sunanda:
26-Jul-2005
induce should be fairly easy -- walk the block with 'for and 'poke 
back the value
Geomol:
20-May-2006
We'll see, how fast this thing I'm building will be. I hope to be 
able to use it like you think of - having a world with lots of 3D 
stuff and be able to walk around and change things.
Group: View ... discuss view related issues [web-public]
Henrik:
27-Oct-2005
the hard part was to walk over to another PC in a different room 
:-)
Group: I'm new ... Ask any question, and a helpful person will try to answer. [web-public]
mhinson:
17-Jun-2009
I had a really usefull walk-through of Parse with Maxim a few weeks 
ago here.  I wouldn't say Parse has been any harder for me to learn 
about than any other aspect I have delved into so far, in fact I 
found the GUI stuff the most confusing to get ahead with.
Reichart:
3-Jan-2010
Well, I'm not trying to be a pain here..... so I will leave it at 
this....


When...anyone, can walk up to any REBOL word, learn about it, add 
to it, talk about it, for all others to share in and learn from, 
then... I'm happy.
Group: Syllable ... The free desktop and server operating system family [web-public]
Volker:
3-Sep-2005
I like to walk thru walls..
Group: !RebGUI ... A lightweight alternative to VID [web-public]
MaxV:
4-Jan-2012
You can create the following file index.html:
<?php
  function getDirectoryList ($directory) 
  {
    // create an array to hold directory list
    $results = array();
    // create a handler for the directory
    $handler = opendir($directory);
    // open directory and walk through the filenames
    while ($file = readdir($handler)) {

      // if file isn't this directory or its parent, add it to the results
      if ($file != "." && $file != "..") {
        $results[] = $file;
      }
    }
    // tidy up: close the handler
    closedir($handler);
    // done!
    return $results;
  }
?>
Group: !Uniserve ... Creating Uniserve processes [web-public]
Dockimbel:
13-Jan-2010
In your Uniserve service, build a list of ports with every client 
connecting (on-new-client event). When required, walk through the 
list of ports and broadcast whatever you want to the selected ones 
(or everyone). See this Chat application server-side source as an 
example of how to achieve that (it's not an Uniserve service, but 
it's very close anyway) : http://cheyenne-server.googlecode.com/svn/trunk/Cheyenne/www/ws-apps/chat.r


The resulting chat application is here : http://demo.cheyenne-server.org:8080/chat.html
Group: DevCon2005 ... DevCon 2005 [web-public]
Mario:
27-Jul-2005
Who plans to go for a walk in Milan? Any special request? I will 
make you use feet a lot and 15 to 20 euros for transports and tickets.
[unknown: 9]:
29-Jul-2005
Mario, I will be on the walk I believe.
Group: Tech News ... Interesting technology [web-public]
JaimeVargas:
18-May-2006
Getting Real Work Shop - 

https://workshop.37signals.com/

   Getting Real is about getting the interface right before you get 
   the software wrong. It's about less software, making change inexpensive 
   and constant iteration. Less paper, more work. Less talk, more walk. 
   Getting Real is about deliverin
[unknown: 9]:
30-Dec-2006
I watched a program recently about crossing the street there.  The 
trick being to begin to cross, and keep your speed exactly the same 
at all times.  Which they demonstrated.  Two women holding hands 
(one was a westerner) cross the very wide street with motorcycles 
and mopeds and tiny cars whizzing by.  Scared me to simply watch 
it.


I suspect he paused, which would be something most of us that are 
not used to that might do.


It is a deep shame, as an absent minded professor, one of my big 
fears is being hit by a car.  I used to walk home at about 3:00 a.m 
almost every night.  My office and home were 3k apart.  The streets 
were completely empty, and so I felt somewhat safe from cars.  One 
night in deep thought I crossed the street (totally ignoring the 
state of the light) and was almost hit by a racing car.  Often, when 
I would arrive at home I simply could not remember walking at all, 
I was so deep in thought.
[unknown: 9]:
1-Feb-2007
Consider nothing more than a routine that studies what options people 
select for themselves.  I reset my Word (and anything else I have 
control over) to *always* use Helvetica.  I *always* set my WinAmp 
to be "Always on top".  When I walk up to an ATM, I *never* select 
"Spanish".  When I get in my car I *never* want the radio "ON"


What if people's settings were simply gathered in a central database. 
 Categorized, etc.  What if every button on software had a unique 
ID, and a genus, and like senses or never endings created stronger 
connection in the database by how often they were pressed… 

The species of button called "Play | Pause" would be very strong.
It's brother "FF | RW" would be pretty well connected as well.
Graham:
2-Sep-2009
Looks like they'll also be sellng in NZ too.  I wonder if my dog 
would mind if I used a NZ$7000 bike to '"walk" him ...
Henrik:
15-Feb-2010
It doesn't look particularly organized (surprise). I wonder if they 
made the simple test: Walk up and down a staircase while using the 
phone.
Group: !REBOL3-OLD1 ... [web-public]
Kaj:
6-Oct-2007
The biggest problem is that they will walk away before contacting 
you, so you don't know you're loosing people
[unknown: 5]:
2-Feb-2009
Brian, I'm critical of how Carl and the dev team are handling things 
at this point.  At least from my perspective this project is being 
managed poorly.  The rollout to the new developers to test and provide 
feedback is not being equipped with a "hit the ground running" gameplan. 
 In order for anyone to know what a function is they must source 
it and they have no access to examples.  Sure we can eventually figure 
out how the code works but that comes at a cost to each of the new 
contributors in time and energy when this could have been facilitated 
by others of the reb dev team.  Regarding, the mezz functions, I'm 
glad to here they won't be built inside the main bin and includes 
as modules.  That is good news.  Regarding, chat, Carl needs to run, 
not walk, away from using console for chat.  The more that console 
chat is used the more concerned I get a feeling that R3 is a mirror 
of that same level of usability which is not a good impresion.
BrianH:
2-Feb-2009
The advantage to the current chat is the messages in it, not the 
UI. Those messages are still going to be there when the GUI client 
is in use, and we needed something in place to get the information 
out there and managed (AltMe wasn't good enough at management). However, 
you have once again figred ot the plan: Carl intends to run, not 
walk, away from using console for chat.
Janko:
12-Feb-2009
Brian .. some most certanly a crazy question ... is there a way you 
could walk/execute a block of code in steps ... this is probably 
possible (if they take no arguments)  [ func-1 func-2 func-3 ] ... 
but is there some "magic" way to execute make func consume their 
arguments, like this >> b: [ print "hello" add 4 6 ]<< and >>do get-expr 
b 1<< would print "hello" and >>do get-expr b 2<< would calcualate 
10 ... I know this is probably not even remotely possible
Reichart:
15-Feb-2009
In theory you can force people to walk a path, in the case of the 
task example I just gave, we can't do that, since you can click on 
anything.
Geomol:
8-Apr-2009
First you crawl, then you walk, then you fly.
Group: Plugin-2 ... Browser Plugins [web-public]
Ingo:
19-Jun-2006
... and in a company, do you want the admin to walk to all boxes 
just to set up Rebol/plugin?
Group: DevCon2007 ... DevCon 2007 [web-public]
[unknown: 9]:
11-May-2007
But can non-cam man walk over to cam and jump past the Union? : )
[unknown: 9]:
11-May-2007
15-30 knott winds in the afternoon offf the beach.  You can water 
start (walk with your board and just launch out into the ocean)
Group: Games ... talk about using REBOL for games [web-public]
Volker:
16-Jan-2007
nobody wants to try to walk around in my game?^^
Group: !REBOL3 Extensions ... REBOL 3 Extensions discussions [web-public]
Robert:
6-Mar-2010
So, decision made: Serializing BLOCK within in Extensions is a PITA. 
As long as you want to walk a BLOCK and don't have to deal that much 
with nested BLOCKs it's OK.


But it's not possible to make a to-string block! within an extension 
with a simpe to-string call.


Overall I think we need a way to serialize Rebol datatype into a 
char* or void* in a way that it can be stored and brought back into 
Rebol.
Group: !REBOL3 GUI ... [web-public]
shadwolf:
8-Aug-2010
and more complexity you will add to your engine more unexpected problems 
you will face...


 Like what we experienced in area-tc... suddently our perffectly working 
 engine under wnidows XP shows strong bugs in rendering just by arriving 
 on windows7. After 6 month in searching the why  and not finding 
 any cause to that rendering jam I by chance tryed the ultimate thing 
 no programer does i retro versionned back like 10  version below 
 the rendering engine and there suddently i found that rendering problems 
 disapeared by miracle...


I spend 10 times more time searching why the rendering was defective 
on windows 7 than doing area-tc and viva-rebol.r.  And that's too 
what  completly killed my mood. What else can i do than try to make 
this community know my experience with extensive text processing 
in draw with R2 to not have the same conceptual lacks repeated in 
R3.


And clearly  in R2 the text commands in AGG/draw were not suited 
for docuement rendering... That  doesn't means AGG can't do it ... 
that means at that time the dialect draw wasn't designed to exploit 
 intensivly text rendering. I always said before runnning you have 
to learn to crawl, then to stand up, then to walk. for me the way 
i  saw the realisation of a rendering engine text oriented for draw 
dialect was first step changing the color of  choosen elements in 
the text, then changing the font spécificity anytime anywhere in 
the document then being able to do strong text manipulations like 
moving by drag and drop paragraphs, inserting multimedia content 
in the document, scaling paragraphs etc... 

ROBERT: 

In fact that depends what  the rich text engine aims ... for example 
read only rendering is pretty different of  real time editing wisiwyg 
engine... The complexity betwin both approach is like 1 to 100...
Group: !REBOL3 ... [web-public]
BrianH:
4-May-2010
On the other hand, there could be a new function type - perhaps called 
method! - that uses object-relative bindings, including binding 'self 
to the object and prohibiting 'self from being an explicit parameter. 
Object path evaluation would have to be modified to provide the implicit 
'self parameter, and all object bindings at the point of creation 
would be made relative to 'self. Not sure how that would work with 
hidden fields - it probably would have to not see them. And it would 
have to stack walk up the call chain at definition time to find the 
appropriate object to rebind to the dynamic object binding, and perhaps 
again at method start time to find out which object to be relative 
to. All in all a complex proposal, but that kind of thing might not 
be avoidable in REBOL's binding model.
Andreas:
19-Oct-2010
walk-path 'Obj/P*/D*/C*/Value
Group: Core ... Discuss core issues [web-public]
Dockimbel:
8-Feb-2011
do load

 does not work with the serialized form (I tried it)?" I'm not sure 
 to understand what you mean there. SAVE/ALL uses MOLD/ALL to serialize 
 values, so binding information is not preserved. If you want to restore 
 correct binding in a object! serialized using /ALL format, you need 
 to write some code to walk through object's functions body blocks 
 and bind object's words explicitely using BIND.