richarddewit
richarddewit
Highlights like file added/modified in the tree-view, linter status and lines added/removed in statusbar are all plain white (#FAFAFA). It's caused by [line 188 of config.less](https://github.com/braver/isotope-ui/blob/6162b9b6de2a1260b93dd6be4f31d83254a966f5/styles/config.less#L188) which overrides every other...

Following the docs, I've changed the `default_columns` of the `BaseModel`, mainly to change the ID column type from `Int64` to `UUID`: ```crystal abstract class BaseModel < Avram::Model macro default_columns #...
On some machines (servers) running PagedJS CLI, the following error occurs: ``` node_modules/pagedjs-cli/bin/paged:157 if (err) throw err; ^Error: ESPIPE: invalid seek, write ``` This is because it uses `fs.writeFile`. When...
I just noticed that the keys aren't sorted. E.g. : and ; are somewhere inbetween letters. IMO it should be something like: 1. Special keys (., SPC, TAB, ...) 2....
Let the message tell you to close the dialog to select a toolchain. Fixes #383
I'm learning Go and I love pre-commit. This repo has A LOT of hooks, many of them overlap and I'm a bit overwhelmed. What is a beginner-friendly list of hooks...
Since RN 0.14 [static images can be required from within project files](https://facebook.github.io/react-native/docs/images.html#static-image-resources), however this requires an [additional build step in Xcode](https://facebook.github.io/react-native/docs/upgrading.html#from-0-13-to-0-14) which bundles the index.ios.js file complete with all other...
According to [official docs](https://docs.emmet.io/cheat-sheet/): > CSS module uses fuzzy search to find unknown abbreviations, e.g. `ov:h` == `ov-h` == `ovh` == `oh`. However this doesn't seem to be "enabled" in...
This makes Bootstrap and FontAwesome lazyloading possible, for if you don't want to use both/either of those to be used in the entire project, but just in the Admin interface....