Skip to content

Remove completed recipes for wanted recipes documentation #101

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 31, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 1 addition & 24 deletions wanted-recipes.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,10 @@ Here's a list of recipes we think we need. Pick one, implement it, and remove it

In the notes below, "JS" means the recipe is just a simple passthrough to an existing JavaScript method.

## Introduction

We need a better introduction. Right now the first recipe is [Embedding JavaScript](/chapters/syntax/embedding_javascript), which doesn't set the right first impression. How about three or four recipes that hold new users' hands a bit more as the first section?

## Syntax

* Ensuring variables are closed over # with "do"

## Objects

## Strings

* HTML methods # JS .sup(), .sub(), .blink(), .link(url), etc. May not exist in your JS impl!
Expand Down Expand Up @@ -45,10 +39,6 @@ evens.every even
[1..10].some (x) -> x % 2 == 0 # => true
{% endhighlight %}

## Dates and Times

* Empty

## Math

* square root # JS Math.sqrt
Expand Down Expand Up @@ -89,24 +79,11 @@ foo 1, 2, 3
# => 6
{% endhighlight %}

## jQuery

## Regular Expressions

## Networking

* Streaming HTTP server
* Streaming HTTP client

## AJAX

* Getting data from a remote server # using raw XHTTPRequest instead of jQuery's `$.ajax`

## Design patterns

* Creational Patterns
* Abstract Factory
* Prototype
* Prototype

* Structural Patterns
* Adapter
Expand Down