Screencasting Practice & Feedback: 00002

Plan

  • Demonstrate how I like to quote content in Org-Mode
  • Learn how to use call-outs and text-boxes
  • Learn how to ad-lib content
  • Scripted out location of content and video-recording of presenter to make sense of what is appearing on the screen and where
  • Learn how to use content-music

Execution

  • Made video top right 100% of the top right corner
    • This means scaling it by 50%
  • Remove the dropshadow from the video
    • The video stood out enough already
  • Amplified volume by 200%
  • Added callouts interesting content
  • Added watermwark, 25% scale, 25% opacity, 10 key-presses from bottom and right edge
  • Include the word Screencast in announcement to distinguish between screencast and blog post
  • 6h of effort for 7m of content
  • Posted manually on Reddit
  • Blog published to social sites

Outcome & Feedback

  • Wrote a script; didn’t pay attention to it enough
  • After re-recording it six times, said I would never re-record it again. Instead made corrections using text-boxes positioned over my face.
  • Light was OK
  • Speaking volume was too quiet; content volume was too loud
  • Skin was shiny
  • Looping the banner and jingle at the end was a mistake
  • The 3m monologue about Braille displays was interesting to me and perhaps no one else so don’t include that. 3m is a long time.
  • Use a lower-third intead of text boxes
  • Redditers commented that a blog post would have been more concise and faster. What is the best of both worlds?

Screencasting Practice & Feedback: 00001

Plan

  • Develop a jingle and banner to introduce the videos
  • Learn how to use ScreenFlow on smallest project possible
  • Learn how to publish and monetize on YouTube
  • Learn how to define closed-caption content

Outcome & Feedback

  • YouTube
    • Easy and pleasant process
    • Signing up takes 30m or so
    • Publishing the video offers 20-30 configuration options
  • Forgot to develop a watermark for the videos
  • Closed-captioning is tedious and time-consuming
  • Screenflow project is large; be sure to keep it on a large disk
  • Glad to have worked in a simple project like this to get some practice with Screenflow. It took some trial and error to grok the power of layers in practice.
  • Volume wasn’t loud enough
  • Transitions were OK; can see some blockiness because of how I layered the background

(Screencast) The Best Emacs Modifier Key Setup for OS X

Here is an easy way to use both Emacs and OS X modifier keys when you are inside Emacs:

Toggle the right-option and function key to switch between using them inside Emacs and using them for OS X.

Addendum: <2016-06-08 Wed 08:22>

I used Karabiner to make ENTER send LEFT CONTROL when chorded. I used OS X to make CAPS LOCK be CONTROL. I didn’t change OPTION and COMMAND. I made this change because Emacs couldn’t ignore the key-event when it was coming from Karabiner.

Here is the code:

(help/on-osx
 (setq mac-control-modifier 'control)
 (setq mac-right-control-modifier 'left)
 (setq mac-command-modifier 'meta)
 (setq mac-right-command-modifier 'left)
 (setq mac-option-modifier 'super)
 (setq mac-right-option-modifier 'left)
 (setq mac-function-modifier 'hyper)
 (defun help/toggle-mac-right-option-modifier ()
   "Toggle between passing option modifier either to Emacs or OS X."
   (interactive)
   (let ((old-ropt mac-right-option-modifier))
     (setq mac-right-option-modifier
           (if (eq mac-right-option-modifier 'left)
               'none
             'left))
     (message "Toggled `mac-right-option-modifier' from %s to %s."
              old-ropt
              mac-right-option-modifier)))
 (defun help/toggle-mac-function-modifier ()
   "Toggle between passing function modifier either to Emacs or OS X."
   (interactive)
   (let ((old-func mac-function-modifier))
     (setq mac-function-modifier
           (if (eq mac-function-modifier 'hyper)
               'none
             'hyper))
     (message "Toggled `mac-function-modifier' from %s to %s."
              old-func
              mac-function-modifier))))

Brené Brown: Listening to shame

  • URL
  • “Vulnerability is not weakness”
  • “[It] is our most accurate measurement of courage; it fuels our daily life”
  • “Vulnerability is the birthplace of innovation, creativity, and change”
  • “You gotta dance with the one who brung ya”
  • “TED is the failure conference; very few people here are afraid to fail and have failed miserably many times”
  • “The credit goes to the man in the arena”
  • “Shames drives “Never good enough” and “Who do you think you are?””
  • Regarding men and shame, a male attendee shared that “You say to reach out, tell our story, be vulnerable… but [the most important women in my life] would rather me die on top of my white horse than watch me fall down. When [men] reach out and be vulnerable we get the shit beat out of us and don’t tell me it is [from other guys] it is the women in my life who are harder on me than anyone else”.
  • “Shame is an epidemic in our culture”
  • “Empathy is the antidote to shame”
  • “Me too; the two most powerful words when we are in struggle”
  • “Vulnerability is the path back to finding each other”

Brené Brown: The Power of Vulnerability

  • URL
  • “An ordinary life as become synonymous with a meaningless life”
  • You can’t hear what she has to share too many times and in too many ways and this presentation is another great one
  • “Love and belonging are irreducible needs of [humans]”
  • Research shows that: “Our capacity for whole-heartedness can never be greater than our willingness to be broken-hearted which is terrible but truthful”
  • “Vulnerability is the path to [everything good about being human]”
  • “Empathy fuels connection; sympathy drives disconnection”
  • “I know what is like down here and you’re not alone” (Empathy)
  • “You wanna sandwich?” (Sympathy)
  • “Sympathy is how we respond when we don’t want to be vulnerable”
  • “Blame gives some semblence of control even if it blaming ourselves”
  • “Blame is discharging pain”
  • “Accountability is a vulnerable process”
  • “Empathy is not scripted; it is about being present and engadged”
  • “Rarely can a response make something better. What makes something better is connection”
  • “Shame is I am bad; guilt is I did something bad and the outcomes are hugely different”
  • “Shame corrodes the part of us that believes that we can change”