Skip to content

Instantly share code, notes, and snippets.

@ktilcu
ktilcu / !Description.md
Last active August 21, 2017 22:48
kyle-Opinion: Async/Await vs Promises

I was reading this article about why A/A is better than Promises and saw a few code examples stood out to me as being unfair. I am not saying A/A is not better, I just think we need to be a lot more explicit about why it's better. Read below and I will go through each section in the article.

Overall, I think the main benefit of A/A is readability for people who are not familiar with Promises. The problem is that in order to understand A/A at a useful depth, you have to understand promises. In my mind, we are just covering one problem with another and making YAA (yet another abstraction) that people have to understand in order to figure out async programming.

I think a post talking about how to do promises well would be much more useful than one that shows that new language features are better than bad code.

@ktilcu
ktilcu / partials.md
Last active August 15, 2017 20:38
kyle-Opinion: Avoid partials!

During a recent discussion Nathan made 2 excellent points about partials:

  1. partials can be unneeded.
  2. partials can be opaque.

I would like to support those and add a bit of advice:

  1. Avoid partials!

Un-needed _.partial

@ktilcu
ktilcu / point-free-ramda.js.md
Last active August 15, 2017 20:40
kyle-Refactor: Point free with Ramda goodness

The initial function seemed straightforward and very close to functional programming but there was a bit of buried complexity.

function generate(seedWords) {
  const filteredWords = filterInputs(seedWords);
  const initialHash = R.head(filteredWords) || 'thunder';
  const hashWithRandom = appendRandom(initialHash);
  return generateHelper(hashWithRandom, R.tail(filteredWords));
}
@abhiaiyer91
abhiaiyer91 / reduxSelectorPattern.md
Last active July 7, 2024 13:03
Redux Selector Pattern

Redux Selector Pattern

Imagine we have a reducer to control a list of items:

function listOfItems(state: Array<Object> = [], action: Object = {}): Array<Object> {
  switch(action.type) {
    case 'SHOW_ALL_ITEMS':
      return action.data.items
    default:
@toddmotto
toddmotto / *.md
Last active April 25, 2023 09:06
Component versus Directive in AngularJS

Component versus Directive in AngularJS

.component()

Components are not "helper" methods, they are the best change in Angular 1.x since I've been using it.

What is the role of .component()?

  • Declares new HTML via a template or templateUrl
  • Should be used to create Components as part of a Component architecture