ubuntu.macvelli.org
The Machiavellian Ubuntu Blog : How to install 10 Band Equalizer for Rhythmbox
http://ubuntu.macvelli.org/2016/08/how-to-install-10-band-equalizer-for.html
The Machiavellian Ubuntu Blog. Cunning thoughts on Ubuntu. Thursday, August 25, 2016. How to install 10 Band Equalizer for Rhythmbox. I like Rhythmbox on Ubuntu Desktop but it does not come with an equalizer out of the box. Fortunately, there is a 10 band equalizer that you can install as a plugin and it works really well. Here are the steps to install the 10 band equalizer with Rhythmbox version 3 and later:. Create a directory under your home directory for storing the 10 band equalizer plugin.
ubuntu.macvelli.org
The Machiavellian Ubuntu Blog : Well that didn't last long
http://ubuntu.macvelli.org/2016/12/well-that-didnt-last-long.html
The Machiavellian Ubuntu Blog. Cunning thoughts on Ubuntu. Thursday, December 1, 2016. Well that didn't last long. Unfortunately, using Ubuntu Desktop as my primary OS has come to an end just after six months of "giving it the ol' college try". Why, you might ask? Two words: graphics drivers. For over sixteen years, I have contributed spare computing power to SETI@Home. And the fastest way to earn credits is to set up GPU computing on BOINC. Nvidia Proprietary Drivers: After upgrading to Ubuntu 16.04...
ubuntu.macvelli.org
The Machiavellian Ubuntu Blog : December 2016
http://ubuntu.macvelli.org/2016_12_01_archive.html
The Machiavellian Ubuntu Blog. Cunning thoughts on Ubuntu. Thursday, December 1, 2016. Well that didn't last long. Unfortunately, using Ubuntu Desktop as my primary OS has come to an end just after six months of "giving it the ol' college try". Why, you might ask? Two words: graphics drivers. For over sixteen years, I have contributed spare computing power to SETI@Home. And the fastest way to earn credits is to set up GPU computing on BOINC. Nvidia Proprietary Drivers: After upgrading to Ubuntu 16.04...
ubuntu.macvelli.org
The Machiavellian Ubuntu Blog : Enabling Nvidia Hardware Acceleration in Google Chrome on Ubuntu 16.04
http://ubuntu.macvelli.org/2016/10/enabling-nvidia-hardware-acceleration.html
The Machiavellian Ubuntu Blog. Cunning thoughts on Ubuntu. Tuesday, October 25, 2016. Enabling Nvidia Hardware Acceleration in Google Chrome on Ubuntu 16.04. I bought an ASUS GeForce GTX 750 Ti. For my Ubuntu 16.04 machine to replace an AMD video card and I noticed right away that Chrome was not operating at peak efficiency. So I checked chrome:/ gpu. And sure enough the hardware acceleration was disabled. What to do? First, I looked at chrome:/ settings. Next, I looked at chrome:/ flags. I enabled the "...
ubuntu.macvelli.org
The Machiavellian Ubuntu Blog : How to fix a broken fstab in Ubuntu
http://ubuntu.macvelli.org/2016/08/how-to-fix-broken-fstab-in-ubuntu.html
The Machiavellian Ubuntu Blog. Cunning thoughts on Ubuntu. Sunday, August 21, 2016. How to fix a broken fstab in Ubuntu. I was messing around with my /etc/fstab. Settings which connect my Ubuntu desktop to my NAS server via Samba and I screwed it up. When I restarted my desktop, Ubuntu would just hang asking for a password and yet I could not provide the password and get to the login screen. Boot failure! Boot into the Ubuntu Live CD. Run the following commands to mount the partition with the root.
ubuntu.macvelli.org
The Machiavellian Ubuntu Blog : August 2016
http://ubuntu.macvelli.org/2016_08_01_archive.html
The Machiavellian Ubuntu Blog. Cunning thoughts on Ubuntu. Thursday, August 25, 2016. How to install 10 Band Equalizer for Rhythmbox. I like Rhythmbox on Ubuntu Desktop but it does not come with an equalizer out of the box. Fortunately, there is a 10 band equalizer that you can install as a plugin and it works really well. Here are the steps to install the 10 band equalizer with Rhythmbox version 3 and later:. Create a directory under your home directory for storing the 10 band equalizer plugin. Run the ...
ubuntu.macvelli.org
The Machiavellian Ubuntu Blog : overGrive!
http://ubuntu.macvelli.org/2016/04/overgrive.html
The Machiavellian Ubuntu Blog. Cunning thoughts on Ubuntu. Sunday, April 10, 2016. In my earlier post about Google Drive for Linux. I enumerated several options available for getting Google Drive to work under Linux. Home/ user /Google Drive. Directory under Ubuntu. I thought this was going to be an easy solution to the problem of not having an official Google Drive client for Linux. I started going through the installation instructions for Ubuntu. And was doing fine until I hit the section about pressin...
java.macvelli.org
The Machiavellian Java Blog: Did You Know: It is optional to declare a throws clause in Java
http://java.macvelli.org/2016/09/did-you-know-it-is-optional-to-throw.html
The Machiavellian Java Blog. Friday, September 2, 2016. Did You Know: It is optional to declare a throws clause in Java. I ran into an interesting aspect of Java the other day that I was heretofore unaware of. I asked my very first question on Stack Overflow about it as I was surprised I was able to Remove a Java checked exception while overriding an interface method. Turns out the answer as to why this is allowed is quite simple. Take java.lang.Appendable. I can remove throws IOException. Did You Know: ...
java.macvelli.org
The Machiavellian Java Blog: Reverse Lookup of Java Enum Values
http://java.macvelli.org/2016/08/reverse-lookup-of-java-enum-values.html
The Machiavellian Java Blog. Monday, August 29, 2016. Reverse Lookup of Java Enum Values. With a structure similar to the following code:. Public enum EnumWithIntValue { ZERO(0), ONE(1), TWO(2), THREE(3), FOUR(4), FIVE(5); private final int intValue; private EnumWithIntValue(final int intValue) { this.intValue = intValue; } public final int getValue() { return this.intValue; } }. I then wanted to do a reverse lookup where I pass in a primitive int. Value and return the corresponding enum. Or to put it an...
SOCIAL ENGAGEMENT