i want you to do detailed Rich Hickey inspired review of our architecture. what have complected? launch another inspired by John Ousterhout and a Yaron Minsky review
now shriram krishnamurthi's review ... Kmett's: then finally Casey Muratori ...
See https://ai.googleblog.com/2022/11/making-traversable-wormhole-with.html for a recent advance from Google researchers using their Sycamore quantum computer.
This lead me to ChatGPT to see if it could talk sensibly about this research before the fact and in some way predict the approach used.
Tavis Rudd: Hypothetical ways to make a Traversable Wormhole with a Quantum Computer using AdS/CFT. Discuss it from the perspective of information theory and geometry
One possible approach to creating a traversable wormhole using a quantum computer and AdS/CFT is to leverage the holographic principle, which states that the physics of a gravitational system can be described by a lower-dimensional boundary theory. In the case of AdS/CFT, this boundary theory is a conformal field theory (CFT) that encodes the information about the bulk AdS space.
Using this principle, one could attempt to encode the geometry of the wormhole in the CFT, and then use the quantum computer to manipulate the CFT in order to manipulat
| {-# LANGUAGE ScopedTypeVariables #-} | |
| {-# LANGUAGE UndecidableInstances #-} | |
| {-# LANGUAGE FlexibleContexts #-} | |
| {-# LANGUAGE TypeFamilies #-} | |
| {-# LANGUAGE RankNTypes #-} | |
| {-# LANGUAGE FlexibleInstances #-} | |
| {-# LANGUAGE TypeSynonymInstances #-} | |
| {-# LANGUAGE StandaloneDeriving #-} | |
| {-# LANGUAGE MultiParamTypeClasses #-} | |
| {-# LANGUAGE ExistentialQuantification #-} |
| 2.0 (Oct 12, 2007) | |
| !!!THIS RELEASE REQUIRES RECOMPILATION OF ALL COMPILED CHEETAH TEMPLATES!!! | |
| - fixed exception handling issue in the C implemenation of NameMapper | |
| [patch from Eric Huss] | |
| - fixed filtering of #included subtemplates | |
| [patch from Brian Bird] | |
| See the release notes from 2.0b1-5 and 2.0rc1-8 for other changes since |
| Lazy, infinite recursive sequences in Bash (like in Haskell, if you squint). | |
| I was inspired by the beautiful Haskell zipWith implementation of the Fibonacci sequence `fibs = 0 : 1 : zipWith (+) fibs (tail fibs)` | |
| to find an equivalent in bash using 'coroutines' and recursive pipes. | |
| My original experiments were https://twitter.com/tavisrudd/status/367164339716751360 | |
| "fun w/ recursive pipes: e=echo;mkfifo fib;{ $e 0 1 1 >fib &};{ while read i j k; do $e $i >&2; $e $j $k $(($j+$k));sleep .4; done;}<fib>fib" | |
| and https://twitter.com/tavisrudd/status/367142071489937408 | |
| "o=ouro;b=boros;mkfifo $o$b;e=echo; { $e $o > $o$b & }; { while read s;do $e $s>&2;case $s in $o)$e $b;;*)$e $o; esac; done; }<$o$b >$o$b" |
| Aff | |
| Brav Bravo | |
| Cai | |
| Doy Delt Delta | |
| Eck Echo | |
| Fay | |
| Goff | |
| Hoop | |
| Ish | |
| Jo |
| Resources: | |
| http://code.google.com/p/dragonfly | |
| http://sourceforge.net/projects/natlink/ | |
| http://tech.groups.yahoo.com/group/VoiceCoder/ | |
| Inspirations: | |
| http://emacs-vr-mode.sourceforge.net/ | |
| http://sourceforge.net/projects/voicecode/ | |
| and especially http://shorttalk-emacs.sourceforge.net/ShortTalk/index.html from which I've stolen a few key ideas and utterances. |
| Remapped on kinesis itself | |
| -------------------------------------------------------------------------------- | |
| caps lock -> backspace (freq use) | |
| backspace -> right gui/windows (freq use) | |
| left alt -> return/enter (very infreq use) | |
| right ctrl -> return/enter (freq use) | |
| right gui/windows -> left gui | |
| enter -> right gui (infreq use) |
| (require 'ibuffer) | |
| (defalias 'list-buffers 'ibuffer) | |
| (require 'ibuffer-vc) | |
| (setq ibuffer-formats | |
| '( | |
| (mark dss-modified vc-status-mini " " | |
| (name 35 35 :left :elide) | |
| ;; " " (mode 10 10 :left :elide) | |
| " " filename-and-process) |
| (defun dss/clojure-ignore-form () | |
| "Inserts, toggles, or moves Clojure's #_ ignore-next-form reader macro." | |
| (interactive) | |
| (flet ((in-string-p () (eq 'string (syntax-ppss-context (syntax-ppss)))) | |
| (in-comment-p () (eq 'comment (syntax-ppss-context (syntax-ppss))))) | |
| (skip-chars-forward " ") | |
| (while (in-string-p) | |
| (backward-char)) | |
| (cond | |
| ;; switch from a comment to an ignore form, if paredit is enabled |