Skip to content

Instantly share code, notes, and snippets.

@kevinburkeshyp
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevinburkeshyp/a42b2096ee6d67735178 to your computer and use it in GitHub Desktop.
Save kevinburkeshyp/a42b2096ee6d67735178 to your computer and use it in GitHub Desktop.
This is Normal
  1. CircleCI hung when trying to fetch page results via AJAX. I normally trigger a full refresh of the page when the tests finish to view the output.

  2. this happened on Github:

  3. Github image embed via raw.github.com is broken:

    While attempting to link to this image the Monosnap URL I had previously posted broke.

  4. Despite setting autoUpdatedAt to false in a Waterline model, Waterline still creates an updatedAt column when running tests. This value is always set to null, and broke a passing test.

  5. Tried to set up a rule to enforce single quotes in a Javascript project. JSHint deprecated the "quotmark" option for setting this and recommended JSCS. npm install jscs wanted to install ~1200 lines of dependencies to my NPM shrinkwrap file. jscs-dev/node-jscs#1586

  6. npm shrinkwrap occasionally generates "from" and "resolved" properties that have npmjs URL's, and sometimes generates the keys with version ranges. The process by which npm shrinkwrap chooses one or the other is opaque. I have found a workaround that involves calling npm shrinkwrap three times and deleting my entire node_modules folder at least once.

  7. Tried to use ESLint instead of JSCS for code hinting. ESLint has no "getting started" guide. I tried to enable dangling commas and failed. To enforce dangling commas for every object, don't set "comma-dangle": "always", or "comma-dangle": ["always"], or "comma-dangle": true. You need to set "comma-dangle": [1, "always"]. This is normal. eslint/eslint#3193

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment