Remapping Mouse Buttons on Linux Mint

This worked for me on Linux Mint 19.

First, install “xbindkeys” and “xautomation” with :

$ sudo install xbindkeys
$ sudo install xautomation

Then see which mouse button to remap by running "xev | grep button" and press the button you want to remap in the xev window. For me, it was button '8'.

The above comes from https://www.howtoforge.com/tutorial/map-mouse-on-linux/, but that article references /etc/X11/xorg.conf which I had trouble making.

Categories: 

Getting an entry-level job in computer programming

A young man who's studying computer science in college asked me for information regarding how to get an internship in the software industry. Here's what I told him :

There is great demand for programmers with a bit of experience. You just need to get a bit of the right (or desired) experience.

I think there are several ways to do this :

Upgrading Drupal 7 PHPTemplate-based themes to Drupal 8

I'm looking to start trying out Drupal 8. But I need some themes for display.

Here's a couple good articles on how to handle this :

http://www.undpaul.de/en/blog/2013/06/02/upgrading-busy-theme-drupal-8

http://www.undpaul.de/blog/2013/07/04/theming-drupal-8-conversion-themes...

For my current D7-based themes, looks like I have a couple options :

- Modify "slightly" the PHPTemplate-based themes and use them mostly as-is.

- Run the PHPTemplate-based theme thru "Twigify" at https://drupal.org/sandbox/forest/1974984

Categories: 

Follow-up on Ubuntu apt sources.list in Amazon Web Services

This is a follow-up to a previous post where I was having trouble running apt-get as part of the initial boot process for a new AWS instance.

I actually never could automatically load packages using the recommended workaround of using apt_mirror :


#cloud-config
apt_mirror: http://us.archive.ubuntu.com/ubuntu/

When I'd check the cloud-init log at /var/log/ apt-get would just sort of silently fail.

Getting Ubuntu cloud-init to work in an Amazon (AWS) VPC

Ubuntu's cloud-init is a mechanism which can be used to provision a new instance upon initial boot. I imagine cloud-init can be used in many environments, but I'll focus on its use in Amazon Web Services (AWS).

You can invoke cloud-init in at least a couple ways :

- shell, with a lead line of #!/bin/sh
- cloud-init, with a lead line of #cloud-config

Amazon Web Services SDK for PHP 2 Documentation

As I mentioned in an earlier post, the new SDK for PHP 2 for Amazon Web Services (AWS) is kind of lacking in documentation. Since the PHP SDK 2 for AWS is pretty new (November, 2012), hopefully this lack of documentation will be addressed. However, here are some notes which will help me and hopefully others.

At least for now, I'll focus on EC2 examples and code as that's what I need at the moment.

Amazon Web Services SDK for PHP 1 vs. SDK for PHP 2

I'm pretty new to Amazon Web Services (AWS) and especially "managing" AWS through PHP, so hopefully this will help me and others.

There are apparently two ("1" and "2") PHP-based SDKs available to manage AWS with PHP. It looks like version two was announced in November, 2012.

When the PHP SDK 2 was released, it seemed like it didn't support as many AWS features as PHP SDK 1, but now SDK 2 seems to support all AWS features, including new ones like OpsWorks.

So which one is better?

Pages

Subscribe to luhman.org RSS