Upgrade to Pro — share decks privately, control downloads, hide ads and more …

This is the problem

nelstrom
September 21, 2012
250

This is the problem

Ambiguity is the enemy of clear communication in code and prose.

nelstrom

September 21, 2012
Tweet

Transcript

  1. Ext.define "ScopeDemo.view.Main", extend: 'Ext.form.FormPanel', config: items: [ { xtype: 'button',

    text: 'Go', scope: this, handler: -> this.submit() } ] is the problem
  2. Insert-normal mode is a special version of normal mode, which

    gives us one bullet. We can fire a single command, after which we'll be returned to insert mode immediately. It is invoked from insert mode by pressing `<c-o>`.
  3. Insert-normal mode is a special version of normal mode, which

    gives us one bullet. We can fire a single command, after which we'll be returned to insert mode immediately. It is invoked from insert mode by pressing `<c-o>`. I think we have to restate what "it" is --not clear to me. Ed
  4. Insert-normal mode is a special version of normal mode, which

    gives us one bullet. We can fire a single command, after which we'll be returned to insert mode immediately. It is invoked from insert mode by pressing `<c-o>`.
  5. Insert-normal mode is a special version of normal mode, which

    gives us one bullet. We can fire a single command, after which we'll be returned to insert mode immediately. It is invoked from insert mode by pressing `<c-o>`.
  6. Insert-normal mode is a special version of normal mode, which

    gives us one bullet. We can fire a single command, after which we'll be returned to insert mode immediately. We can switch to insert-normal mode by pressing `<c-o>`. I think we have to restate what "it" is --not clear to me. Ed Better? Me
  7. ...we can use the `\zs` and `\ze` items to crop

    the match, making it a subset of the entire pattern. This makes it possible to specify a range of text that must match in its entirety, before zeroing in on a subset of those characters.
  8. ...we can use the `\zs` and `\ze` items to crop

    the match, making it a subset of the entire pattern. This makes it possible to specify a range of text that must match in its entirety, before zeroing in on a subset of those characters. Can we rephrase the last sentence? I'm not clear what "This" is, what "it" is, and what the range of text is matching. Is it just me?
  9. ...we can use the `\zs` and `\ze` items to crop

    the match, making it a subset of the entire pattern. This makes it possible to specify a range of text that must match in its entirety, before zeroing in on a subset of those characters. is the problem