This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Rebol [ | |
| Title: "Parser" | |
| Author: "Christopher Ross-Gill" | |
| Date: 13-Feb-2018 | |
| Home: https://github.com/rgchris/Scripts | |
| File: %parser.reb | |
| Version: 0.1.0 | |
| Purpose: {Incremental Parser} | |
| Rights: http://opensource.org/licenses/Apache-2.0 | |
| Type: module |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/local/bin/rebol -qs parser.test.reb | |
| Rebol [ | |
| Title: "Parser" | |
| Author: "Christopher Ross-Gill" | |
| Date: 13-Feb-2018 | |
| Home: https://github.com/rgchris/Scripts | |
| File: %parser.r | |
| Version: 0.1.0 | |
| Purpose: {Incremental Parser} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/local/bin/red | |
| Red [ | |
| Title: "HTTP Console" | |
| Date: 15-Dec-2018 | |
| File: %httpc.red | |
| Version: 0.1.2 | |
| Author: "Christopher Ross-Gill" | |
| History: [ | |
| 15-Dec-2018 0.1.2 "Red Version" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Rebol [ | |
| Title: "Detect Scroller" | |
| Date: 17-Dec-2018 | |
| Author: "Christopher Ross-Gill" | |
| ] | |
| scroll-handler: make object! [ | |
| ; SCROLL-* events use OFFSET to determine the direction and amount of | |
| ; scrolling to be considered, therefore to ascertain the offset, one needs | |
| ; to track the position of the pointer. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Rebol [ | |
| Title: "Get Gravatar" | |
| File: %gravatar.r | |
| Date: 27-Nov-2012 | |
| Purpose: "Generate Gravatar Profile Image URLs" | |
| ] | |
| gravatar: use [to-md5][ | |
| to-md5: func [val [any-string!]][ | |
| lowercase enbase/base checksum/method to binary! lowercase trim form val 'md5 16 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Rebol [ | |
| Title: "Link Up" | |
| File: %linkify-face.r | |
| Version: 0.0.1 | |
| Home: http://www.ross-gill.com/page/Beyond_Regular_Expressions | |
| Date: 8-Aug-2010 | |
| Purpose: "To identify URIs in face/text and overlay with links" | |
| Author: "Christopher Ross-Gill" | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Rebol [ | |
| Title: "JSON Server" | |
| Date: 19-Dec-2018 | |
| Author: "Christopher Ross-Gill" | |
| ] | |
| do http://reb4.me/r/altjson | |
| do http://reb4.me/r/httpd | |
| data: [ ; in lieu of CSV data, from Rebol in Ten Steps |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/local/bin/rebview -iqvs | |
| Rebol [ | |
| Title: "libRed Test" | |
| Author: "Christopher Ross-Gill" | |
| Date: 19-Dec-2018 | |
| ] | |
| libred: make object! [ | |
| library: load/library %libRed.dylib |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/local/bin/red | |
| Red [ | |
| Title: "Right Aligned Text" | |
| Date: 23-Jan-2019 | |
| Author: "Christopher Ross-Gill" | |
| ] | |
| font-weight: 'bold | |
| font-size: 30 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/local/bin/rebview -iqvs | |
| Rebol [ | |
| Title: "Events Test" | |
| Date: 12-Dec-2018 | |
| Author: "Christopher Ross-Gill" | |
| File: %events.r | |
| Version: 0.1.0 | |
| Comments: { | |
| - Linkify Face (http://www.ross-gill.com/page/Beyond_Regular_Expressions) |