• 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
r4wp5
r3wp9
total:14

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

world-name: r4wp

Group: #Red ... Red language group [web-public]
Andreas:
17-Oct-2012
As in my opinion, GPLv2-only libraries are a hostile mess I'd avoid 
in any case. Luckily I don't think I have come across any.
BrianH:
23-Nov-2012
(Sorry Doc about the off-topic stuff) And open-source forks that 
try to alter R3 to make ALIAS possible again will thus be that much 
less stable ond secure, so it will be an argument against their use. 
ALIAS is hostile to the R3 system model, and everything it might 
be a good idea to use ALIAS to do in R2 can be better done with other 
methods in R3.
DocKimbel:
8-Jun-2013
I use a Linux/ARM image running on QEMU to help me debug the low-level 
parts of Android port (which is a really hostile environment for 
low-level coding).
Group: Rebol School ... REBOL School [web-public]
PeterWood:
22-Jun-2012
Brian (Hostile Fork) was interested in developing a strict REBOL 
clone though his proposal was to use a "modern" cross platform approach 
such as QT/C++ 11.
Group: !REBOL3 ... General discussion about REBOL 3 [web-public]
MaxV:
21-Dec-2012
Hostile fork recovered the WIKI: https://github.com/hostilefork/r3-hf/wiki
 , so is someone needs isnformations or want to put informations, 
uses that link.

world-name: r3wp

Group: Ann-Reply ... Reply to Announce group [web-public]
Tomc:
5-Sep-2005
a few US cities are bicycle non-hostile, here in Eugene, Oregon where 
I bike most every day of the year is one of them.
Group: Core ... Discuss core issues [web-public]
Ladislav:
15-Jul-2010
The trouble is, that the situation is worse, as far as I am concerned. 
To me, MOLD is quite "hostile" actually
Group: I'm new ... Ask any question, and a helpful person will try to answer. [web-public]
Pekr:
5-Apr-2006
it is overall interesting issue - to get rebol running on various 
platforms in a way so it adheres to particular platform habits .... 
OS-X, WinCE being reported as Rebol feeling kind of hostile there 
...
Group: Parse ... Discussion of PARSE dialect [web-public]
BrianH:
24-Dec-2008
I had enough trouble with someone who was making hostile changes 
without discussing them first :(

Not that your changes would be hostile, but discussing them is still 
good.
Group: !REBOL3-OLD1 ... [web-public]
Henrik:
30-Sep-2009
I disagree on unfixing this. It's hostile towards the beginner to 
allow hanging the parser and I ran into this quite a few times, before 
finding out what went wrong.
Maxim:
2-Oct-2009
freebol is a domain owned by the guy refered to as "hostile fork" 
afaik
Group: !Cheyenne ... Discussions about the Cheyenne Web Server [web-public]
Dockimbel:
19-Aug-2009
Robert, how can Cheyenne know that "quantity" must be an integer! 
value if you don't tell it? Cheyenne can't validate that implicitly, 
you have to either use VALIDATE (see API doc) or make your own checking 
routines. By default, all your GET or POST  parameters are treated 
as string! value. If you need to check for their presence or need 
to convert them to another datatype, you have to validate the format 
so that it doesn't error out (or worth, let an hostile request pass).
BrianH:
11-Jan-2010
Not for web clients. You have to assume the client is hostile for 
web stuff, and screening REBOL data for malicious stuff is harder 
than parsing JSON data. The only way to be safe is to not transmit 
an executable dialect - full data dialect, reject anything bad.
Group: !REBOL3 ... [web-public]
BrianH:
2-Aug-2010
I have two reasons why I like keeping FUNC the way it is:

- FUNC is the simplest function-creating function, so giving it the 
shortest name seems appropriate.

- As a rule, we prefer to not rename old functions and then give 
their old names to new functions. That would be user-hostile.