As of 2016-02-26, there will be no more posts for this blog. s/blog/pba/
Showing posts with label tablet. Show all posts

Recently, Google Search moved the search options from left-side to top-side:

Left: old design, options at left-hand side. Right: new design: options at top below input box

More space for result?

With the new design, theres a bit more breathing room, ...

I have to say that I don't feel it for web search results. It doesn't seem to add any useful space at all from what I see since the width of result seems to be same, ~500 pixels.

Even with the Knowledge Graph, still looks same to me:



In fact, little more awkward white space on wide screen, which should be everyone's screen type nowadays. If you maximize the window, it always has a lot of white space on search results, that probably will never be resolved. It's fine actually, not really a big issue.

Click harder!

It's bit of strange when using the "Search tools," such as time range. In the old design, you click and options drop down, then you move your mouse cursor directly downward. But with this new design, you have to go left and little bit down. Since the options now is actually drop-down menu style, it requires two-clicks if you want to change from "Past hour" to "Past 24 hours." Less efficient than the old design.

To make this point for clear, please search for "apple tart" in Recipe search. The tick boxes for ingredients were used to be easy to click on, now you have click more times. It's so inconvenient.

Fewer search types shown initially

Another issue with this new design is Video search isn't shown initially, you have to click on "More" to access it. Frankly, I use video search quite often, especially when a song is bugging me. Beside Video search, News search isn't shown, either. I also use News search whenever I hear something, just not as frequent. I think Google tries to maintain the same width as the result area width for the default search type. So, they demote Video and News.

Although I do find search query will promote certain search type, e.g. searching for viral video promoting Video type or "notes app" promoting Application type.

Something is good?

One thing is good from the new design is the image search:



More thumbnails in one page, it's good, right?

Verdict

I can understand why Google want to make it better for tablet and mobile users, but rolled this design to desktop users, I don't feel it's right design.

If I have to give this design a score, I would say 2 out of 5 with this comment: not an improvement.

I followed my own steps to set up wdaemon for my Intuos 3 on Fedora 9, but I can't even start X server. The log said the InputDevice's Type is incorrect. The Type should be one of stylus, eraser, pen and pad, but it already is one of them. I guess this may be an problem with X.org 1.5?



I don't want to compile latest source, so I found a newer package on Koji, 0.8.0.3-2-fc10. Upgraded with this version, the problem is gone.

I have to compile the source of wdaemon for my wacom tablet. You may need to read my old blog post, Use wdaemon for hotplugging, for more detail, I only write essential stuff here, so please also read it. I like to put source under ~/var/src.

mkdir -p ~/var/src
cd ~/var/src
sudo apt-get install subversion libc6-dev
svn co https://jake.ruivo.org/wdaemon/trunk/ wdaemon
cd wdaemon
make
sudo make install
Adjust the main program

sudo ln -s /usr/local/bin/wdaemon /usr/bin/
In my old post, I did

cp /usr/local/etc/rc.d/init.d/wdaemon /etc/init.d/
However, that initiation boot script doesn't work on Ubuntu without modification. So I just add necessary command to /etc/rc.local

modprobe uinput
/usr/bin/wdaemon -c /etc/wdaemon.conf -f
Set up udev

sudo cp udev/*.rules /etc/udev/rules.d
sudo mkdir /etc/udev/scripts
sudo cp udev/is_uinput.sh /etc/udev/scripts
I still need to modify the `60-wacom.rules`

# udev rules for wacom devices
# will create:
# /dev/input/wacomX
# /dev/input/wacom-tablets/model-tabletX
# /dev/input/wacom-tablets/model-unique PCI/USB path
#
KERNEL=="event*", SYSFS{idVendor}=="056a", SYMLINK+="input/wacom"
KERNEL=="event*", SYSFS{idVendor}=="056a", SYSFS{idProduct}=="00b5", SYMLINK+="input/wacom-tablets/intuos3-6x11 input/wacom-tablets/intuos3-6x11-%b"
Note that this is for my wacom tablet. You can try to re-plug and see if there is a new device come up in /dev/input/wacom-tablets. If there is, then you don't need to modify as I did; if not, try to modify. After re-plugging your tablet, run

sudo sh -c "wdaemon -a > /etc/wdaemon.conf"
This will automatically create the configuration for wdaemon. Now, you can run

modprobe uinput
/usr/bin/wdaemon -c /etc/wdaemon.conf -f
If /dev/input/ has new device, then it's time to modify your xorg.conf. If you already added those InputDevice for you wacom tablet, then you only need to change the device path. Here is mine

Section "ServerLayout"
...
InputDevice "stylus" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
InputDevice "pad"
...
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/input/uinput-devices/uinput-wacom-intuos3-6x11-tablet"
Option "Type" "stylus"
# Option "ForceDevice" "ISDV4" # Tablet PC ONLY
Option "USB" "on"
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/input/uinput-devices/uinput-wacom-intuos3-6x11-tablet"
Option "Type" "eraser"
# Option "ForceDevice" "ISDV4" # Tablet PC ONLY
Option "USB" "on"
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/input/uinput-devices/uinput-wacom-intuos3-6x11-tablet"
Option "Type" "cursor"
# Option "ForceDevice" "ISDV4" # Tablet PC ONLY
Option "USB" "on"
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "pad"
Option "Device" "/dev/input/uinput-devices/uinput-wacom-intuos3-6x11-tablet"
Option "Type" "pad"
Option "USB" "on"
EndSection
Press ctrl+alt+backspace to restart your X, log in, try you tablet with re-plugging it.