Frederik Held

Results 50 comments of Frederik Held

Running the `jekyll/minimal` image like this: ``` docker run --rm --volume "$PWD:/srv/jekyll" -p 4000:4000 --env JEKYLL_ENV=development jekyll/minimal:3.8 sh -c "apk add libc-dev g++ make && jekyll serve --future -s src"...

Adding `bundle exec` before `jekyll serve` leads to another error: ``` /usr/local/lib/ruby/gems/2.6.0/gems/bundler-2.0.2/lib/bundler/spec_set.rb:87:in `block in materialize': Could not find rake-13.0.6 in any of the sources (Bundler::GemNotFound) ``` Did I mention that...

For my most basic need (use an interface for coding that I'm used to) the solution could be as simple as hot-reloading changes to files on the disk into the...

Thanks for the quick reply! I was looking for something like this, but trying it like this ```js 'use strict' const dbus = require('dbus-next') const bus = dbus.systemBus() bus.disconnect() ```...

:-D okay. So I have to put some sleep in between to fix this :-D This actually works :-) ```js 'use strict' const dbus = require('dbus-next') const bus = dbus.systemBus()...

Is this error I just got in any way related to the fact that dbus-next keeps connections open? ` UnhandledPromiseRejectionWarning: DBusError: The maximum number of active connections for UID 1000...

So I should make it a global? I actually expected that `dbus` already is the global and `dbus.systemBus()` just returns the reference... Singleton style or something like that. Do you...

> for android you can use "largeIcon:" property to show your image first copy your image in `res/drawable` folder (not in 'res' only) and then write the name of your...

So I need to fork the repo and build my own version of the plugin you say? That's something I tried to avoid tbh because I'm not that much into...

Editing the code directly in node_modules is the worst advice you could give to anyone who tries to write software on a level that is above script kiddie 😖 How...