Click on any of these to get url
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
| ; + this support both positional and named args + refinements | |
| ; + type validation working properly accodring to the function definition | |
| ; + better error information | |
| ; note: a collab with Red/Sensei | |
| nfunc: func [spc bdy /local groups pos-names][ | |
| groups: collect [ | |
| current: copy [] | |
| stop: false | |
| parse spc [ |
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
| Red [ | |
| title: "Tourbillon Watch Desktop Widget for Windows 8+" | |
| author: "hinjolicious" | |
| note: { | |
| Idea: @hiiamboris work on "Cellestial Clock". | |
| Collaborator: Gemini AI | |
| Tested: on Red Toolchain v0.66 in Windows 11 | |
| June 13th, 2026 | |
| } | |
| needs: 'view |
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
| Red [title: "An experiment with INTO separation"] | |
| ; do %/d/devel/red/common/with.red | |
| buffers*: [] | |
| into: func [buffer [series!]] [append/only buffers* buffer exit] | |
| collect': function [code [block!]] [ | |
| also buffer: any [ | |
| take/last buffers* |
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
| Red [needs: view] | |
| img: draw 4000x2000 [scale 2 2 fill-pen yello circle 1000x500 1000 500] | |
| lag: object [max: avg: 0.0] | |
| offset: 0x0 | |
| plot: [] | |
| system/view/auto-sync?: off | |
| view/no-wait [ | |
| below |
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
| Red [ | |
| Title: "A Parse-based port of Michael Gilliland's web scraper" | |
| Author: @9214 | |
| Date: 16-Oct-2020 | |
| Link: https://youtu.be/HDMa4gcgEgI | |
| ] | |
| page: read-thru/binary to url! system/script/args | |
| link: [copy match [ahead https:// url!]] | |
| rule: [collect any [link keep (to url! match) | skip]] |
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
| Red [needs: 'view] | |
| ; frog | |
| ; https://opengameart.org/content/frog-player-spritesheets | |
| ; background | |
| ; https://opengameart.org/content/several-scrolling-backgrounds-and-layerable-runners | |
| frog-sprites: #{ | |
| 89504E470D0A1A0A0000000D4948445200000100000000800806000000E4B5B7 |
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
| Red [ | |
| Title: "Download links" | |
| ] | |
| args: system/script/args | |
| comment { | |
| - Accept a URL as input to program | |
| - HTTP GET URL | |
| - Parse response as HTML | |
| - Extract a links |
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
| Red [ | |
| Description: "Show values of intermediate expressions" | |
| Date: 12-Jun-2020 | |
| ] | |
| term: gui-console-ctx/terminal | |
| show: function [][ | |
| out2: copy [] out: pos: copy [] | |
| found: find/tail term/line "show " |
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
| Red [ | |
| Description: "Pre-load to mimic range/bounds syntax" | |
| Date: 22-May-2020 | |
| Author: @toomasv | |
| ] | |
| context [ | |
| default-start: func [stop step][ | |
| case [ | |
| any [percent? stop percent? :step][1%] | |
| any [pair? stop pair? :step][1x1] |
NewerOlder