when management believes that the only path to improved developer productivity is imposing arbitrary, unrealistic deadlines.
… there are more good ones.
I work in technology sector. And I do round a clock, not only from 9 to 5. It is my bread and butter, it is my hobby, it is the fascination of my life. And with the current rate of change particular in information technology (IT), there is always something new to learn, to try, to talk about. I often post news, thoughts, and reviews. And when I do, this is the category I use.
when management believes that the only path to improved developer productivity is imposing arbitrary, unrealistic deadlines.
… there are more good ones.
I came across this interesting opinion onĀ software liability. Ā Just to keep them here for the context, the suggested software liability rules include the following:
- Consult criminal code to see if any intentionally caused damage is already covered.
- If you deliver software with complete and buildable source code and a license that allows disabling any functionality or code by the licensee, then your liability is limited to a refund.
- In any other case, you are liable for whatever damage your software causes when used normally.
Which sounds reasonable from the position of “let’s sort the security issues”. Ā Even though I’m not a big believer in legal system when it comes to technology issues. Ā But then, there is this:
The software houses would yell bloody murder if any legislator were to introduce a bill proposing these stipulations
with which I personally disagree. Ā I think software houses that do quality work wouldn’t mind at all. Ā The people who would mind are the clients of software houses. Ā Quality always comes at a cost. Ā And raising quality of software immediately means rising the cost of software. Ā And the majority of clients (in my experience) don’t care about quality to the point where they would pay for it. Ā And there are plenty of examples in other industries – food, automobile, furniture, clothes, etc.
Basically, this all just reiterates my points of security and privacy are mythical and/or dead. Ā Mostly, because most people don’t care enough.
I spent a large chunk of yesterday experimenting with Vagrant on my Fedora 21 laptop. Ā I’ve used it before of course, but a friend asked for help with something I was planning to play with for a long time, so itĀ unexpectedly lead me into a journey.
Let’s start simple. Ā If you want the least possible amount of hassle with running Vagrant on Fedora, you should use it with Oracle VirtualBox provider (sometimes also called hypervisor). Ā It works great! Ā The only troubles with this approach is that VirtualBox relies on a kernel module (kmod-VirtualBox RPM), which has to match your current running kernel version to a digit. Ā This kernel module is NOT part of the official Fedora repositories, and, instead, can be found in the RPM Fusion yum repository (rpmfusion-free-updates). Ā This means that sometimes, when Fedora releases a kernel update, it might take a few days for the RPM Fusion repository to catch up with the kmod-VirtualBox updates. Ā And this, of course, might result in your Vagrant setup being broken.
The easiest way to protect against that is to disable automatic kernel, kernel module and VirtualBox updates. Ā To do so, add the following line to the [main] section of your /etc/yum.conf file, right after your VirtualBox/vagrant setup started to work:
exclude=kernel* kmod-* VirtualBox*
Now, if you forgot to do that a few times got pissed off with this situation (or don’t like Oracle for some reason), you might consider alternatives. Ā Which are a few. Ā Vagrant supports a variety of hypervisors. Ā One of the common alternatives is to use libvirt, which is shipped with Fedora distribution.
Installing libvirt is simple (thanks to this blog post). Ā Here’s pretty much all you have to do:
yum install libvirt libvirt-daemon libvirt-daemon-qemu virt-manager service libvirtd restart
The problem that you might realize now is that libvirt is not the most popular provider for boxes in the Vagrant world. Ā Most people seem to prefer VirtualBox. Ā But if your choices are satisfied, I’m glad for you. Ā If they are not, however, there is a work around that you might go for – vagrant mutate plugin. Ā This plugin converts vagrant boxes from one hypervisor to another.
In order to install this plugin on Fedora 21 you’ll need a few development tools first (this StackOverflow thread definitely helped with the weird g++ error):
yum install ruby-devel gcc-c++ make
Once you have those, install the vagrant plugin with your regular user (the one who will run vagrant VMs):
vagrant plugin install vagrant-mutate
Now you can mutate Vagrant boxes. Ā Unfortunately, you might find that mutate plugin doesn’t like boxes withĀ slash in their names (like chef/centos-6.5). Ā The suggested workaround is to either use box names without slashes, or to provide mutate plugin with the box URLs, rather than names. Ā The official boxes directory doesn’t give you URLs though, so you might be stack with random GitHub repositories or with an alternative directory, like Vagrantbox.es.
My adventures with this aren’t over yet. Ā Feel free to send suggestions my way. Ā From my side, here are a couple of other useful links on this subject:
One last bit of advise from me is that until you are absolutely sure that your Vagrant setup works perfectly, stick to 32-bit box images. Ā There’s nothing like ripping your hair out for three hours only to learn that your host hardware is 32-bit while you are trying to boot into a 64-bit operating system.
I nearly had a heart attack … it took me a couple of seconds to realize that this was a prank…
@mamchenkov Are you talking about GNU+Linux ?
— Richard Stallman (@rmsthebot) May 8, 2015
Well played, well played …
P.S.: For those of you who don’t know who Richard Stallman is – shame on you. :)
P.P.S.: Easy for you to spot the “bot” part here, but I saw on this on the mobile app, which was more insisting on the name rather than the handle.