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
- Host: GitHub
- URL: https://github.com/chrislaskey/code-notes
- Owner: chrislaskey
- Created: 2017-03-31T15:47:41.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-08-01T15:41:14.000Z (almost 8 years ago)
- Last Synced: 2025-03-09T23:45:02.618Z (over 1 year ago)
- Topics: elixir, javascript, ruby
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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.