rebol esmtp失败?
尝试使用 smtp.hotpop.com 进行 esmtp esend [email protected] "Test" 我想使用 http:// www.rebol.org/view-script.r?script=esmtp.r 和 http:/…
如何在Rebol中发送http get来下载wordpress xml备份文件?
我想使用 rebol 从 http://reboltutorial.com 下载我的博客的 xml 备份/wp-admin/export.php 的 形式是 <form action="" method="get"> <h3>O…
Rebol Draw:如何将文本置于框中居中?
我想将“您的横幅文本”居中,但不知道如何计算文本宽度 view layout [ box white 728x90 effect [ draw [ text 100x20 "Your Banner Text" ] ] ] …
Rebol 世界上最小的 Http 服务器:为什么要先等待监听端口?
在这段代码中 web-dir: %./www/ the path to rebol www subdirectory listen-port: open/lines tcp://:80 port used for web connections buffer: m…
Rebol 中是否有更优雅的语法来执行此操作?
我正在写一篇关于 Rebol 对象持久性的教程,但我不确定我的方式是否是最好的 假设 %config.txt 包含 a: 1 b: 2 我们然后可以将其加载 config: constru…
为什么不能在 Rebol 中重写内置函数?
我创建了这个, cloneset: :set set: func[word [word!] value][ if/else (type? get word) = list! [ print "list is immutable" ][ cloneset word v…
从hotmail下载邮件
我想编写从 hotmail 下载邮件的脚本。 Gmail 和 Hotmail 都允许通过端口 995 上的安全 POP 进行访问。 我的脚本在 Gmail 上运行良好...但是在我将线路…
Rebol 解析:处理空格和复制 var
我读了第15章: http://www.rebol.com/docs/core23/ rebolcore-15.html#section-8” spacer: charset reduce [tab newline #" "] spaces: [some space…
关于 MS Windows 的 QuickTime API 有哪些好的教程?
Closed. This question is seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. It does not …
如何访问 REBOL 标头?
假设我在另一个文件 (imported.r) 中有一个 REBOL 脚本,如下所示: REBOL [ author: {Greg} title: {Awesome REBOL Code} ] x: 3 如何将此文件导入到…
在 REBOL 中动态添加单词到上下文
想象一下以下 REBOL 代码: foo: context [bar: 3] 我现在有一个上下文 foo,其中定义了 'bar。 如何动态地将新单词注入到此上下文中? 是否可以? 我…