From da1c1c2c2b751cfef910ed8b955a073f35ee6931 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Thu, 31 Aug 2023 13:10:29 -0700 Subject: [PATCH] minor updates --- chicago-talk/chicago-talk.factor | 4 ++-- galois-talk/galois-talk.factor | 12 ++++++------ google-tech-talk/google-tech-talk.factor | 14 +++++++------- hmc-talk/hmc-talk.factor | 14 +++++++------- jvm-summit-talk/jvm-summit-talk.factor | 4 ++-- minneapolis-talk/minneapolis-talk.factor | 2 +- otug-talk/otug-talk.factor | 12 ++++++------ svfig-talk/svfig-talk.factor | 2 +- tc-lisp-talk/tc-lisp-talk.factor | 4 ++-- vpri-talk/vpri-talk.factor | 12 ++++++------ 10 files changed, 40 insertions(+), 40 deletions(-) diff --git a/chicago-talk/chicago-talk.factor b/chicago-talk/chicago-talk.factor index aa6208c..6b2ee33 100644 --- a/chicago-talk/chicago-talk.factor +++ b/chicago-talk/chicago-talk.factor @@ -1,12 +1,12 @@ ! Copyright (C) 2009 Slava Pestov. -! See http://factorcode.org/license.txt for BSD license. +! See https://factorcode.org/license.txt for BSD license. USING: slides help.markup ; IN: chicago-talk CONSTANT: chicago-slides { { $slide "factor" - { $url "http://factorcode.org" } + { $url "https://factorcode.org" } } { $slide "goals" "high level language" diff --git a/galois-talk/galois-talk.factor b/galois-talk/galois-talk.factor index a942419..592a970 100644 --- a/galois-talk/galois-talk.factor +++ b/galois-talk/galois-talk.factor @@ -1,5 +1,5 @@ ! Copyright (C) 2008 Slava Pestov. -! See http://factorcode.org/license.txt for BSD license. +! See https://factorcode.org/license.txt for BSD license. USING: slides help.markup math arrays hashtables namespaces sequences kernel parser memoize io.encodings.binary locals kernel.private help.vocabs assocs quotations @@ -11,7 +11,7 @@ IN: galois-talk CONSTANT: galois-slides { { $slide "Factor!" - { $url "http://factorcode.org" } + { $url "https://factorcode.org" } "Development started in 2003" "Open source (BSD license)" "Influenced by Forth, Lisp, and Smalltalk" @@ -281,10 +281,10 @@ CONSTANT: galois-slides "Mark sweep for native code" } { $slide "Project infrastructure" - { $url "http://factorcode.org" } - { $url "http://concatenative.org" } - { $url "http://docs.factorcode.org" } - { $url "http://planet.factorcode.org" } + { $url "https://factorcode.org" } + { $url "https://concatenative.org" } + { $url "https://docs.factorcode.org" } + { $url "https://planet.factorcode.org" } "Uses our HTTP server, SSL, DB, Atom libraries..." } { $slide "Project infrastructure" diff --git a/google-tech-talk/google-tech-talk.factor b/google-tech-talk/google-tech-talk.factor index 8c8524f..7e6822f 100644 --- a/google-tech-talk/google-tech-talk.factor +++ b/google-tech-talk/google-tech-talk.factor @@ -1,5 +1,5 @@ ! Copyright (C) 2008 Slava Pestov. -! See http://factorcode.org/license.txt for BSD license. +! See https://factorcode.org/license.txt for BSD license. USING: slides help.markup math arrays hashtables namespaces kernel sequences parser memoize io.encodings.binary locals kernel.private help.vocabs assocs quotations @@ -11,7 +11,7 @@ IN: google-tech-talk CONSTANT: google-slides { { $slide "Factor!" - { $url "http://factorcode.org" } + { $url "https://factorcode.org" } "Development started in 2003" "Open source (BSD license)" "First result for \"Factor\" on Google :-)" @@ -297,7 +297,7 @@ CONSTANT: google-slides } { $slide "The parser" { "Example: URLs define a " { $link POSTPONE: URL" } " word" } - { $code "URL\" http://paste.factorcode.org/paste?id=81\"" } + { $code "URL\" https://paste.factorcode.org/paste?id=81\"" } } { $slide "Example: memoization" { "Memoization with " { $link POSTPONE: MEMO: } } @@ -523,10 +523,10 @@ CONSTANT: google-slides "Mark sweep for native code" } { $slide "Project infrastructure" - { $url "http://factorcode.org" } - { $url "http://concatenative.org" } - { $url "http://docs.factorcode.org" } - { $url "http://planet.factorcode.org" } + { $url "https://factorcode.org" } + { $url "https://concatenative.org" } + { $url "https://docs.factorcode.org" } + { $url "https://planet.factorcode.org" } "Uses our HTTP server, SSL, DB, Atom libraries..." } { $slide "Project infrastructure" diff --git a/hmc-talk/hmc-talk.factor b/hmc-talk/hmc-talk.factor index 18a7e5f..a9a23ed 100644 --- a/hmc-talk/hmc-talk.factor +++ b/hmc-talk/hmc-talk.factor @@ -5,7 +5,7 @@ IN: hmc-talk CONSTANT: hmc-slides { { $slide "Factor!" - { $url "http://factorcode.org" } + { $url "https://factorcode.org" } "Development started in 2003" "Open source (BSD license)" "Influenced by Forth, Lisp, and Smalltalk" @@ -313,11 +313,11 @@ CONSTANT: hmc-slides } { $slide "Project infrastructure" - { $url "http://factorcode.org" } - { $url "http://concatenative.org" } - { $url "http://docs.factorcode.org" } - { $url "http://planet.factorcode.org" } - { $url "http://paste.factorcode.org" } + { $url "https://factorcode.org" } + { $url "https://concatenative.org" } + { $url "https://docs.factorcode.org" } + { $url "https://planet.factorcode.org" } + { $url "https://paste.factorcode.org" } "Uses our HTTP server, SSL, DB, Atom libraries..." } { $slide "Project infrastructure" @@ -378,7 +378,7 @@ CONSTANT: hmc-slides "\"hello\" play-as-morse" } { $code - "USE flip-text" + "USE: flip-text" "\"hello\" flip-text ." } } diff --git a/jvm-summit-talk/jvm-summit-talk.factor b/jvm-summit-talk/jvm-summit-talk.factor index 4eda5c2..80b3e0a 100644 --- a/jvm-summit-talk/jvm-summit-talk.factor +++ b/jvm-summit-talk/jvm-summit-talk.factor @@ -1,5 +1,5 @@ ! Copyright (C) 2009 Slava Pestov. -! See http://factorcode.org/license.txt for BSD license. +! See https://factorcode.org/license.txt for BSD license. USING: slides help.markup math math.private kernel sequences slots.private ; IN: jvm-summit-talk @@ -11,7 +11,7 @@ CONSTANT: jvm-summit-slides "We want a language for anything from scripting DSLs to high-performance numerics" "I assume you know a bit about compiler implementation: parser -> frontend -> optimizer -> codegen" { "This is " { $strong "not" } " a talk about the Factor language" } - { "Go to " { $url "http://factorcode.org" } " to learn the language" } + { "Go to " { $url "https://factorcode.org" } " to learn the language" } } { $slide "Why are dynamic languages slow?" "Branching and indirection!" diff --git a/minneapolis-talk/minneapolis-talk.factor b/minneapolis-talk/minneapolis-talk.factor index 7c0a02c..f2d03a6 100644 --- a/minneapolis-talk/minneapolis-talk.factor +++ b/minneapolis-talk/minneapolis-talk.factor @@ -170,7 +170,7 @@ CONSTANT: minneapolis-slides "Factor development began in 2003" "About a dozen contributors" "Handful of \"core contributors\"" - { "Web site: " { $url "http://factorcode.org" } } + { "Web site: " { $url "https://factorcode.org" } } "IRC: #concatenative on irc.freenode.net" "Mailing list: factor-talk@lists.sf.net" } diff --git a/otug-talk/otug-talk.factor b/otug-talk/otug-talk.factor index 59c8154..f56feb6 100644 --- a/otug-talk/otug-talk.factor +++ b/otug-talk/otug-talk.factor @@ -1,5 +1,5 @@ ! Copyright (C) 2008 Slava Pestov. -! See http://factorcode.org/license.txt for BSD license. +! See https://factorcode.org/license.txt for BSD license. USING: slides help.markup math arrays hashtables namespaces kernel sequences parser memoize io.encodings.binary locals kernel.private help.vocabs assocs quotations @@ -15,7 +15,7 @@ IN: otug-talk CONSTANT: otug-slides { { $slide "Factor!" - { $url "http://factorcode.org" } + { $url "https://factorcode.org" } "Development started in 2003" "Open source (BSD license)" "Influenced by Forth, Lisp, and Smalltalk" @@ -303,10 +303,10 @@ var price = (order == null ? null : order.price);" } "Eliminate redundant computations (value numbering)" } { $slide "Project infrastructure" - { $url "http://factorcode.org" } - { $url "http://concatenative.org" } - { $url "http://docs.factorcode.org" } - { $url "http://planet.factorcode.org" } + { $url "https://factorcode.org" } + { $url "https://concatenative.org" } + { $url "https://docs.factorcode.org" } + { $url "https://planet.factorcode.org" } "Uses our HTTP server, SSL, DB, Atom libraries..." } { $slide "Project infrastructure" diff --git a/svfig-talk/svfig-talk.factor b/svfig-talk/svfig-talk.factor index 1c60d51..3009b85 100644 --- a/svfig-talk/svfig-talk.factor +++ b/svfig-talk/svfig-talk.factor @@ -489,7 +489,7 @@ SYNOPSIS "\"hello\" play-as-morse" } { $code - "USE flip-text" + "USE: flip-text" "\"hello\" flip-text ." } { $code diff --git a/tc-lisp-talk/tc-lisp-talk.factor b/tc-lisp-talk/tc-lisp-talk.factor index 8bda960..504f6ac 100644 --- a/tc-lisp-talk/tc-lisp-talk.factor +++ b/tc-lisp-talk/tc-lisp-talk.factor @@ -1,5 +1,5 @@ ! Copyright (C) 2009 Doug Coleman. -! See http://factorcode.org/license.txt for BSD license. +! See https://factorcode.org/license.txt for BSD license. USING: assocs combinators constructors eval help.markup kernel multiline namespaces parser sequences sequences.private slides vocabs.refresh words fry ; @@ -8,7 +8,7 @@ IN: tc-lisp-talk CONSTANT: tc-lisp-slides { { $slide "Factor!" - { $url "http://factorcode.org" } + { $url "https://factorcode.org" } "Development started in 2003" "Open source (BSD license)" "Influenced by Forth, Lisp, and Smalltalk" diff --git a/vpri-talk/vpri-talk.factor b/vpri-talk/vpri-talk.factor index bd08158..e82f9fd 100644 --- a/vpri-talk/vpri-talk.factor +++ b/vpri-talk/vpri-talk.factor @@ -1,5 +1,5 @@ ! Copyright (C) 2008 Slava Pestov. -! See http://factorcode.org/license.txt for BSD license. +! See https://factorcode.org/license.txt for BSD license. USING: slides help.markup math arrays hashtables namespaces kernel sequences parser memoize io.encodings.binary locals kernel.private help.vocabs assocs quotations urls @@ -11,7 +11,7 @@ IN: vpri-talk CONSTANT: vpri-slides { { $slide "Factor!" - { $url "http://factorcode.org" } + { $url "https://factorcode.org" } "Development started in 2003" "Open source (BSD license)" "Influenced by Forth, Lisp, and Smalltalk" @@ -442,10 +442,10 @@ CONSTANT: vpri-slides "Got rid of interpreter" } { $slide "Project infrastructure" - { $url "http://factorcode.org" } - { $url "http://concatenative.org" } - { $url "http://docs.factorcode.org" } - { $url "http://planet.factorcode.org" } + { $url "https://factorcode.org" } + { $url "https://concatenative.org" } + { $url "https://docs.factorcode.org" } + { $url "https://planet.factorcode.org" } "Uses our HTTP server, SSL, DB, Atom libraries..." } { $slide "Project infrastructure" -- 2.34.1