Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: leolujuyi/coffeescript-cookbook.github.io
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: coffeescript-cookbook/coffeescript-cookbook.github.io
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 19 commits
  • 14 files changed
  • 9 contributors

Commits on Dec 10, 2015

  1. Fixed a minor typo in the chaining page.

    Sami Pussinen committed Dec 10, 2015
    Configuration menu
    Copy the full SHA
    a0f55a3 View commit details
    Browse the repository at this point in the history
  2. Added myself to the authors page.

    Sami Pussinen committed Dec 10, 2015
    Configuration menu
    Copy the full SHA
    7fa9559 View commit details
    Browse the repository at this point in the history
  3. Merge pull request coffeescript-cookbook#136 from SamiPussinen/chaini…

    …ng-typo-fix
    
    Fixed a minor typo in the chaining page.
    peterhellberg committed Dec 10, 2015
    Configuration menu
    Copy the full SHA
    2fd9c30 View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2016

  1. Configuration menu
    Copy the full SHA
    202bdfd View commit details
    Browse the repository at this point in the history
  2. Merge branch 'Data-Meister-master'

    Closes PR coffeescript-cookbook#137
    
    This was a squashed rebase of the following:
    
    commit 721deae
    Author: Data-Meister <[email protected]>
    Date:   Thu Jan 21 18:02:57 2016 +0000
    
        remove todo
    
    commit f56cd11
    Author: Data-Meister <[email protected]>
    Date:   Thu Jan 21 18:02:13 2016 +0000
    
        Fix indentation
    
    commit 83f146e
    Author: Data-Meister <[email protected]>
    Date:   Thu Jan 21 18:01:17 2016 +0000
    
        Add a recipe to count occurrences of a given string within a message
    sukima committed Jan 22, 2016
    Configuration menu
    Copy the full SHA
    9d67a39 View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2016

  1. Configuration menu
    Copy the full SHA
    d6da838 View commit details
    Browse the repository at this point in the history
  2. Merge pull request coffeescript-cookbook#139 from Data-Meister/master

    Faster, simpler way to count occurrences of a given string
    lolmaus committed Jan 28, 2016
    Configuration menu
    Copy the full SHA
    23eb90c View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2016

  1. Configuration menu
    Copy the full SHA
    fdb756a View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2016

  1. Merge pull request coffeescript-cookbook#140 from Data-Meister/master

    Add new chapter: replacing sub-strings
    sukima committed Feb 10, 2016
    Configuration menu
    Copy the full SHA
    4f1223a View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2016

  1. Fix typo in syntax chapter

    tijwelch committed Sep 6, 2016
    Configuration menu
    Copy the full SHA
    9b10230 View commit details
    Browse the repository at this point in the history
  2. Merge pull request coffeescript-cookbook#141 from tijwelch/master

    Fix typo in syntax chapter
    lolmaus authored Sep 6, 2016
    Configuration menu
    Copy the full SHA
    2cd41d7 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2017

  1. Update development dependencies

    The versions of gems specified in the Gemfile.lock require ruby 1.9.3.
    Update them to the latest and greatest gems.
    blowmage committed Jan 11, 2017
    Configuration menu
    Copy the full SHA
    e3fbf9f View commit details
    Browse the repository at this point in the history
  2. Use new Jekyll configuration for code highlighting

    This removes the following warning:
    
    Deprecation: The 'pygments' configuration option has been renamed to 'highlighter'.
    Please update your config file accordingly. The allowed values are 'rouge', 'pygments' or null.
    blowmage committed Jan 11, 2017
    Configuration menu
    Copy the full SHA
    482af69 View commit details
    Browse the repository at this point in the history
  3. Merge pull request coffeescript-cookbook#143 from blowmage/update-dev…

    …elopment
    
    Update development environment
    
    [refs coffeescript-cookbook#142]
    blowmage authored Jan 11, 2017
    Configuration menu
    Copy the full SHA
    3346056 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    50515c7 View commit details
    Browse the repository at this point in the history
  5. Merge pull request coffeescript-cookbook#144 from blowmage/update-data

    Replace page data with site data
    
    [refs coffeescript-cookbook#142]
    blowmage authored Jan 11, 2017
    Configuration menu
    Copy the full SHA
    7ff9e5c View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2017

  1. Add more accurate details on CS ?= opperator (coffeescript-cookbook#146)

    * Update object-literal.md
    
    The example was wrong. It stated that ?= is similar to JS || when the || will affect not only not defined scenario but also any falsy values (values that evaluate as false)
    
    There are way to many differences between the 2:
    
    1. window.var = false;
    2. window.var = 0;
    3. window.var = '';
    4. window.var = [];
    5. window.var = null;
    
    window.var ?= 'something'
    console.log(window.var) ->
    1. false
    2. 0
    3. ''
    4. []
    5. 'something'
    
    window.var ||= 'something'
    console.log(window.var) ->
    1. 'something'
    2. 'something'
    3. 'something'
    4. []
    5. 'something'
    
    * Update object-literal.md
    
    * Update object-literal.md
    kikorb authored and sukima committed Mar 17, 2017
    Configuration menu
    Copy the full SHA
    685b09b View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2017

  1. Add myself to the Developers list

    Because I've [contributed fixes to the code base][1] I thought maybe I could be
    on the attributions list.
    
    [1]: https://github.com/coffeescript-cookbook/coffeescript-cookbook.github.io/search?q=author%3Asukima&type=Commits
    sukima authored Nov 5, 2017
    Configuration menu
    Copy the full SHA
    b152fa0 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2017

  1. Merge pull request coffeescript-cookbook#150 from coffeescript-cookbo…

    …ok/authors-self
    
    Add myself to the Developers list
    dbrady authored Nov 6, 2017
    Configuration menu
    Copy the full SHA
    53fc002 View commit details
    Browse the repository at this point in the history
Loading