Skip to content

Instantly share code, notes, and snippets.

@gurzgri
gurzgri / redsizing.red
Last active April 4, 2023 17:02
resize no-border no-title
Red [
author: "Christian Ensel"
needs: 'view
]
;-- requires the following patch for Red/View
;
patch: {
$ git diff --unified=1
diff --git a/modules/view/backends/platform.red b/modules/view/backends/platform.red
@gurzgri
gurzgri / try-odbc-only.red
Last active June 10, 2022 09:13
Table Template meets ODBC scheme
Red [
Author: ["Toomas Vooglaid" "Christian Ensel"]
Needs: 'View
]
#include %table-template.red
port?: func [value [any-type!]] [port! = type? :value] ;-- missing helper
context [
@gurzgri
gurzgri / conway.red
Last active February 11, 2022 17:01
Conway's Game of Life
Red [
title: "Conway's Game of Life"
author: "Gurzgri"
needs: 'view
]
life: leaf + 0.0.0.0
dead: linen + 0.0.0.0
init: func [size [pair!] density [percent!]] [
@gurzgri
gurzgri / gofish.red
Last active February 8, 2022 22:03
Red Playground
Red [
Title: "Go Fish"
Author: "Christian Ensel"
Date: 08-Feb-2022
]
ranks: [2 3 4 5 6 7 8 9 10 J Q K A]
suits: [♠ ♣ ♥ ♦]
rank-of: func ["Returns rank of card" card] [trim/with copy card "♠♣♥♦"]