Steven Pinker - A New Enlightenment
Another really great Long Now talk - I'm definitely a believer!
Another really great Long Now talk - I'm definitely a believer!
https://www.youtube.com/watch?v=RMo7jUs0GMs
Some very cool paintings!
via jwz
Great conversation with Rodney Brooks (iRobot & Rethink Robotics) on the history & future of AI and robots, with some sobering arguments against the idea of a coming AI apocalypse.
org-mode
is so much better with some rich formatting. It really
makes it appealing as a text format with embedded and actionable code —
whether that is as a source file for literate-programming or just some notes
with code snippets.
I've added the following to my .emacs
, based on
Org as a Word Processor:
;; org-mode formatting improvements
(require 'org-bullets)
(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1)))
(add-hook 'org-mode-hook (lambda () (whitespace-mode -1)))
(setq org-hide-emphasis-markers t)
(let* ((variable-tuple (cond ((x-list-fonts "Source Sans Pro") '(:font "Source Sans Pro"))
((x-list-fonts "Lucida Grande") '(:font "Lucida Grande"))
((x-list-fonts "Verdana") '(:font "Verdana"))
((x-family-fonts "Sans Serif") '(:family "Sans Serif"))
(nil (warn "Cannot find a Sans Serif Font. Install Source Sans Pro."))))
(base-font-color (face-foreground 'default nil 'default))
(headline `(:inherit default :weight bold :foreground ,base-font-color)))
(custom-theme-set-faces 'user
`(org-level-8 ((t (,@headline ,@variable-tuple))))
`(org-level-7 ((t (,@headline ,@variable-tuple))))
`(org-level-6 ((t (,@headline ,@variable-tuple))))
`(org-level-5 ((t (,@headline ,@variable-tuple))))
`(org-level-4 ((t (,@headline ,@variable-tuple :height 1.1))))
`(org-level-3 ((t (,@headline ,@variable-tuple :height 1.25))))
`(org-level-2 ((t (,@headline ,@variable-tuple :height 1.5))))
`(org-level-1 ((t (,@headline ,@variable-tuple :height 1.75))))
`(org-document-title ((t (,@headline ,@variable-tuple :height 1.5 :underline nil))))))
And then I start the .org files with the following parameters:
#+STARTUP: indent
#+STARTUP: odd
#+STARTUP: hidestars
#+STARTUP: showall
#+TITLE: document title
Some nice info on how to get emacs' org-mode looking nice (well, for a plain text format at least).
Very neat demo of org-mode code blocks.
That is some bizarre probability theory!
https://the8layers.com/2016/10/30/how-long-will-you-wait-hitchhiking-on-the-road/