r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[Announce] Announcements only - use Ann-reply to chat

Maxim
9-Jun-2010
[769x2]
moliad.net   is now on-line.   :-)


Served via cheyenne, using Remark-mod, building pages dynamically.


Now that I've got the look pinned, the server & all dependencies 
sorted out,  I can now concentrate on CONTENT & documentation. :-)


The server is setup with all remarking debugging enabled (which is 
extensive!).  so there might be some slow down sometimes.  Usage 
will allow me to see if its an issue or not. 

Tell me what you think of the style (in ann-reply :-)
oops: forgot the link  :-)

http://www.moliad.net
Pavel
9-Jun-2010
[771]
D extension: DLL doing virtually nothing (ie. return 4 fixed values) 
of size 200KB its "cool" seems D needs some optimalization in exporting 
things IMO. Similar library compiled under TCC was about 2KB (the 
test dll from example by Carl)
Robert
10-Jun-2010
[772x2]
Yes, that's because the D runtime is required which does a lot like 
GC etc.
The DLL is only  a demonstrator as I wrote to show how to do it. 
Nothing more.
Kaj
10-Jun-2010
[774]
200 KB is very small for such a runtime. I suppose it can also be 
linked dynamically?
Robert
10-Jun-2010
[775]
I'm not sure, haven't checked yet. But the linker only includes what 
the app / DLL uses, so the dynamic version would be bigger.
Robert
19-Jun-2010
[776x4]
Since a couple of days I'm in close contact with Carl discussing 
how we can help to move R3 forward.
And, how to best deal with the community so everyone can see that 
things move on.
The rebol3 twitter acount will be used for update and progress postings. 
So, if you want to know what's up follow it.
So, I will be ghost-twittering there too.
Graham
19-Jun-2010
[780]
So, Socialite App is you?
Robert
19-Jun-2010
[781]
Yes.
Graham
14-Jul-2010
[782]
http://jira.rebolsource.net:8080 now has an open source license from 
Atlassian.  I have sufficient capactity to add your open source project 
if you want to use this tracker.
Graham
17-Jul-2010
[783]
Installed the greenhopper plugin to allow one to use a scrum project 
template
Robert
18-Jul-2010
[784x2]
I published our test-framework code, which we are going to use for 
all our developments to: www.rm-asset.com
No GUI testing support yet, but this is coming next. We are adding 
GUI testing support right from the start to our R3-GUI library.
Mchean
19-Jul-2010
[786]
wow Robert that's quite a rebol staff you have
PeterWood
21-Jul-2010
[787]
I have pubished  a beta version of a simple decimal arithmetic library 
for R2 called money.r


It can be found at http://www.rebol.org/view-script.r?script=money.r
Ashley
23-Jul-2010
[788]
New website ( http://policywatch.org.au) generated 100% from my 
new HTML/CSS/JS/jQuery markup language ... MML (Meta Markup Language). 
More details to follow once the election is over! ;)
Graham
23-Jul-2010
[789]
Are you standing??
Janko
23-Jul-2010
[790]
Ashley: that site looks very clean and light in positive way.


Maxim: cool front page and menus (I got 404 on clicks, i suppose 
that is not yet done). Who makes such cool graphics
amacleod
23-Jul-2010
[791]
MML? This is a rebol dialect?
NickA
23-Jul-2010
[792]
I'd really like to see more about MML Ashley.
Chris
7-Aug-2010
[793]
AltJSON 0.2.2 - Warning: adds behaviour designed to tame large integers 
and potentially breaks existing serialisation of issue!

http://bit.ly/AltJSON| http://www.ross-gill.com/r/altjson.html

Please let me know of any problems.
Sunanda
10-Aug-2010
[794]
Congratulations to Nick for the 1000th script published on REBOL.org
   http://www.rebol.org/view-script.r?script=file-download-cgi.r
sqlab
10-Aug-2010
[795]
line 39. a missing "  after pass
NickA
10-Aug-2010
[796]
Thanks sqlab - it's fixed :)
Chris
20-Aug-2010
[797x2]
S3 access turned R2 protocol: http://www.ross-gill.com/r/s3.html
- and a version using Graham's adapted HTTP protocol: http://www.ross-gill.com/r/s3http.r
Crud, brief synopsis:

	write s3://<bucket>/my-file.txt "My File"

 write/custom/binary s3://<bucket>/my-png.png read/binary %my-png.png 
 [read]
	editor s3://<bucket>/my-file.txt
	layout [image load s3://<bucket>/my-png.png]

Requires AWS key and secret.
Graham
20-Aug-2010
[799]
CR - where's the UD ?
Chris
20-Aug-2010
[800x2]
That's the other crud.  U is the same as R on S3 (as near as I can 
tell) and D is a little way off.
Brief article on parse vs. regex for pattern matching.  Includes 
script for matching urls in plain text, and one for overlaying a 
text face with links (adapted from, I think, Allen K's work): http://www.ross-gill.com/page/Beyond_Regular_Expressions
Graham
20-Aug-2010
[802]
Allen and Gabriele from memory
Chris
23-Aug-2010
[803]
Almost there: Twitter API client using OAuth (Basic Auth is being 
turned off).  Only thing I can't get working is signing a POST request 
with a body (which sucks for sending updates):

	http://www.ross-gill.com/page/Twitter_API_and_REBOL


I've tried using my rest:// protocol and the currently published 
version uses Graham's HTTP modifications (regular HTTP does not work 
as you can't use custom headers with a GET request).


Aside from that, the GET requests work, as does the authorization 
process.  Any observations welcome.
Maxim
24-Aug-2010
[804]
Precise timing for R2 using kernel32.dll functions on Windows

http://www.rebol.org/view-script.r?script=windows-chrono.r


there is a 'TIME-LAPSE function, and a 'CRONO-TIME function.   the 
later isn't completely aligned with the NOW function (a few milliseconds 
off IIRC), but it is very precise from one call to the next.


some might also find the 'i64-TO-FLOAT function (and related i64-struct) 
usefull for converting 64bit integers (stored as structs of two integers) 
into decimal! values.


many window functions use 8 byte long unions (64 bits) as arguments 
for return values and they are very complicated to use because REBOL 
only supports signed ints.  this makes it much easier to implement 
routines for those functions.
AdrianS
24-Aug-2010
[805x4]
Max, maybe you can update the script so that it looks in the system 
directory for kernel32.dll - i.e. %systemroor%/system32
systemroot is the environment variable for the windows directory
systemroot, I meant
as it is, the loading of the dll failed for me
Maxim
24-Aug-2010
[809]
what OS version?
AdrianS
24-Aug-2010
[810x2]
win 7 64 bit - but systemroot is common to all
the script resolved the directory for kernel32.dll to the directory 
of the rebol executable
Maxim
24-Aug-2010
[812x6]
probably since the system32 isn't in the paths of the 64 win7
and with the system32 it worked?
I mean with your suggestion... it worked?
how would I get the value of  %systemroot% ... it doesn't seem to 
be valid within a rebol path.
(lets move to ann-reply)
windows-chrono.r updated on rebol.org with better windows dll path 
resolution and bug fixes
Luis
25-Aug-2010
[818]
L