Alexander O'Mara
Alexander O'Mara
Pressing Shift + : hotkey brings up a little command window where git commands can be entered. The only problem is, you can't see what you are typing inside it....
The Objective-C API's on macOS don't use the `connect` function under the hood, instead they use `connectx` which according to the man page is like a combination of `bind` and...
As far as I can tell, the JSHint validation plugin does not support the use of a `.jshintignore` file at the root of the project folder. Is there any way...
The `package.json` [`scripts`](https://docs.npmjs.com/misc/scripts) are useful, but they are also a potential security issue. For example: ### [A Malicious Module on npm](https://blog.liftsecurity.io/2015/01/27/a-malicious-module-on-npm) > Earlier this week a package called `rimrafall` was...
NPM broke the first rule of naming things by not namespacing package names. Any replacement should not make the same mistake. Other package managers like Composer does this. Use GitHub...
## Summarize this feature [According to Wikipedia](https://en.wikipedia.org/wiki/Apple_Icon_Image_format#Other_types) it's possible to create an icns file with a dark mode embedded inside of a light mode icns file. ## Why should this...
It would be nice to have an option to have `addBuffer` compress the buffer if that makes the resulting file smaller. I'm not sure it would really work for `addFile`...
As far as I can tell, there is no way of resizing the symbols panel. This makes it challenging to use with long symbol names. It would be great is...
It looks like the current deno compile implementation simply appends data to the deno binary (like a self-extracting ZIP). Trouble is, since this data isn't integrated as part of the...
The enable semantic rules option (`enableSemanticRules`) appears to cause the linter to lint the previous versions of the file saved on disk, rather than the current contents of the editor....