An open API service indexing awesome lists of open source software.

https://github.com/chrislaskey/code-notes

Collection of personal notes on programming topics
https://github.com/chrislaskey/code-notes

elixir javascript ruby

Last synced: about 2 months ago
JSON representation

Collection of personal notes on programming topics

Awesome Lists containing this project

README

          

# Code Notes

Collection of personal notes on programming topics

## Code

Code examples are sorted by topic. See each directory and its individual readme for more information.

## Articles

In addition to capturing ideas in code, here is a list of programming related articles by topic including highlights.

### JavaScript

- [Curry or Partial Application](https://medium.com/javascript-scene/curry-or-partial-application-8150044c78b8)

> Definitions
> - **Application**: The process of applying a function to its arguments in order to produce a return value.
> - **Partial Application**: The process of applying a function to some of its arguments. The partially applied function gets returned for later use.
> - **Curry**: A function that takes a function with multiple parameters as input and returns a function with exactly one parameter.