Alex Whitman
Alex Whitman
You're right, it is. I had forgotten that that had changed in the project recently.
`grep` follows the symlinks so might be best to do that. Just have to be careful about not getting into a loop.
I don't use Typescript myself so I haven't been planning on it. I'm happy to help out if someone wants to take the lead on it.
I think you're almost there, the import just needs tweaking. ```js import PushBullet from 'pushbullet'; const pb = new PushBullet('API_KEY'); (async () => { try { let result = await...
The cache isn't being corrupted. It's simply a case of the plugin trying to copy a file to the location of a read-only file. The line of code in the...
Breaking changes are fine if they add benefit but I personally don't see much benefit to these files being read only. As you stated before > Copying, moving, and deleting...
https://github.com/zkat/cacache/blob/latest/lib/verify.js#L58 seems like the ideal place to fix the permissions. I guess the next question is what the permissions should be. 644 is fine in my case but 664 is...
I wouldn't hard code it to 64 pixels as the launcher size can be changed. Instead you should look at `/org/compiz/profiles/unity/plugins/expo/x-offset`.
Thinking about it more, there will always be an inherant ordering requirement due to variable assignment. ``` let STATUS = "started" shell { command => "echo Status: ${STATUS}", notify =>...
Makes sense about repositories and it's easy enough to drop files in the respective places. For users and groups there would be a question around what options of `useradd` and...