Rebol Tutorial

Rebol Programming - Learn Rebol with Real-World Examples

Archives for November, 2009

8 Nov by admin in All, Tools

Do you need to copy Big Files ?

Do you need to copy Big Files ?
To copy a binary file the easiest way is to use the read / write functions: write/binary %target-file.exe read/binary %source-file.exe But for big files, you may encounter some lack of memory. So if you are in need to copy a big file of 200 Mo like me sometimes, Carl has posted a ...more»
7 Nov by admin in All, Business

Rebol’s Marketing must sit above a good Strategy

Rebol’s Marketing must sit above a good Strategy
This article is a follow-up to my previous article "Rebolution3: think Solution not Revolution" which pinpointed that professional people were looking for Best Business Values relatively to other products. Marketing is key for sure, but it can only leverage a good strategy. In fact promoting a product that is based ...more»
1 Nov by admin in All, Architecture, Concept, Hot, OOP, Parsing, UML

How to create a Plug-In Architecture Application Framework - with a parallel comparison with C# (part I)

How to create a Plug-In Architecture Application Framework - with a parallel comparison with C# (part I)
What is a Plug-In Architecture Application Framework? According to this C++ article on Code Guru about Plug-in Architecture Framework for Beginners: Simply speaking, it is a framework that will allow a program to "look for" add-in functionality at startup, and then allow that plug-in to cooperate with itself. Famous examples are Eclipse, ...more»