Michal Stolarczyk
Michal Stolarczyk
This is just an idea, so I'm happy to discuss the details when it comes to working on implementing this. Basically, currently in `lib/fog/compute/openstack/requests/create_server.rb`, we've got this piece of code:...
So, I'm not entirely sure if this a bug in `fog-openstack` - or an incorrect assumption made in `fog-core` (I'd say a bit of both). The problem is that if...
Hey guys. In my `emacs.org`, I've got the following configuration: ``` (evil-leader/set-leader "") (setq evil-leader/in-all-states t) (evil-mode nil) (global-evil-leader-mode) (evil-mode 1) ``` I needed to use it like that as...
Hi guys. I had stumbled across a method definition similar to the one below: ``` def make_noise for count in 1..10 do puts "meow" end end ``` After putting the...