Propaganda Oculta
martes, septiembre 18, 2012
What is Testing?
I don't do Twitter, but every once in a while interesting tweets make their way to my eyeballs. As of late I've been swimming pretty deeply in Testing waters and I found this definition so funny and truthful and sad that I had to share it.
"Testing is the infinite process of comparing the invisible to the ambiguous so as to avoid the unthinkable happening to the anonymous"
- Thomas Petersen, QA Manager at Unity Technologies

Etiquetas:

 
miércoles, agosto 01, 2012
wisptis.exe y tabletas wacom
Tengo una tableta Graphire4 (parece que los drivers de ésta y Bamboo son los mismos), y últimamente me ha estado dando problemas, pero sólo en ocasiones muy específicas.

He estado viendo un poco de video de las olimpiadas usando Chrome, y de repente Chrome crea un proceso llamado wisptis.exe. Cuando éso pasa, el mouse de la tableta como que se vuelve invisible para ciertos otros procesos.

En éste momento tengo wisptis.exe corriendo, y no me molesta en Firefox, ni en Chrome, ni en ProcessExplorer. Pero sí me molesta en Visual Studio 2010. A lo mejor el problema es con VS? El problema desaparece cuando termino el proceso wisptis.exe.

Curiosamente, wisptis es acrónimo de Windows Ink Services Platform Tablet Input Subsystem y me parece deliciosamente irónico que cuando éste subsistema inicia, mi tableta deja de funcionar con uno de los principales productos de Microsoft.

Ni idea de quién será el responsable de éste bug. Microsoft? Wacom? Google (en caso de que Chrome tenga su propia copia, dañada, de wisptis)?
 
jueves, junio 07, 2012
Awesome Linux ports
It's kind of silly, but I was pretty happy to see that a new Linux build of Super Meat Boy was added to the Humble Indie Bundle V (and to the downloads of HIB4 users as well, naturally). Other HIB V highlights:

 
sábado, marzo 10, 2012
Scanning library bug in Xubuntu
This is a silly bug, but I learned about a new command, getfacl, so I figured I should write about it. Reinforce the experience, if you will.

The bug is that the scanning program (simple-scanner, xsane, etc.) cannot detect the scanner. First thing, is there actually a scanner being detected? Here's another command that I've never used before, by the way:
$ sane-find-scanner
...
found USB scanner (vendor=0x04b8 [EPSON], product=0x0818 [USB MFP]) at libusb:001:005
...
 Ah, so there *is*! Let's check its permissions:
$ getfacl /dev/bus/usb/001/005
getfacl: Removing leading '/' from absolute path names
# file: dev/bus/usb/001/005
# owner: root
# group: lp
...
Clearly the scanner was assigned to user root and group lp. Simple workaround is to make sure that saned, the scanning daemon, is part of the lp group:
$ sudo adduser saned lp
And it worked. Of course, I never would have found out about this without the great comments posted on the bug's launchpad.net page.

Update: Spoke too darned soon. Still doesn't work in Xubuntu 11.10. But Ubuntu 11.10 on my netbook worked fine. The ridiculous part? The same thing happens with printing! Can't get it to work in xubuntu desktop, works fine with ubuntu netbook. Bah.

Update 2: By the way, Xubuntu 12.04 has zero problems with my printer/scanner. No need for any of these commands anymore!

Etiquetas: , , , ,

 
martes, diciembre 27, 2011
Nuevo hack para Skype y Ubuntu Oneiric (11.10)
Resulta que, aparentemente, las nuevas versiones de PulseAudio juegan un poco mejor con la anticuada Skype. Nomás hay que configurar PulseAudio para que use el dispositivo y el conector adecuado.

En las propiedades de Input de PulseAudio, el dispositivo de hardware interno es simplemente "Internal Audio Analog Stereo," y el conector no es el micrófono análogo, sino el "Analog Input."

Pero ahora el problema son los drivers de video. Los más nuevos ya no se entienden bien con Skype (que no ha tenido nuevas versiones para linux desde hace años). Hay que forzar a Skype a que use las librerías para compatibilidad.

Ahora uso el siguiente comando:

LD_PRELOAD=/usr/lib/i386-linux-gnu/libv4l/v4l1compat.so /usr/bin/skype

La locación de v4l1compat.so puede variar de distribución a distribución.

... Creo que ya es hora de encontrar un reemplazo para Skype ...

Etiquetas: , , , , , ,

 
miércoles, julio 27, 2011
How to fix the height of the scroll thumb in Flex
If you decide to use a VScrollBar or HScrollBar directly, you'll notice that the scroll thumb is always tiny, no matter the amount of scrolling that is available. The root of the problem is that the ScrollThumb class has an explicitMinHeight of 10, but the way to change that is not very straightforward. Here's the easiest solution I found:

import mx.controls.VScrollBar;
import mx.core.mx_internal;

public class MyVScrollBar extends mx.controls.VScrollBar
{
public function MyVScrollBar()
{
super();
}

public override function set pageSize( value:Number ):void {
super.pageSize = value;
updateThumbHeight();
}

[...]

public override function setScrollProperties(
pageSize:Number,
minScrollPosition:Number,
maxScrollPosition:Number,
pageScrollSize:Number = 0
):void {
super.setScrollProperties(
pageSize,
minScrollPosition,
maxScrollPosition,
pageScrollSize
);
updateThumbHeight();
}

private function updateThumbHeight():void {
if ( mx_internal::scrollThumb ) {
mx_internal::scrollThumb.explicitMinHeight = 40;
}
}
}


So, we're extending the VScrollBar, and using the weird mx_internal namespace to access its scrollThumb property, which is an instance of ScrollThumb class. Now it's just a matter of setting explicitMinHeight whenever one of the scroll properties is changed. I only show pageSize, but the other properties in setScrollProperties() should also be overridden.

This gives you a larger thumb, which is nice, but we can do better. A dynamically-sized thumb is simply as big as the scrollbar itself minus the scrollable ammount, and if we add a simple Math.max() to prevent the thumb from getting too tiny (again), we're set! Change the last function to this:

    private function updateThumbHeight():void {
if ( mx_internal::scrollThumb ) {
mx_internal::scrollThumb.explicitMinHeight =
Math.max( height - maxScrollPosition, 40 );
}
}

It's important to note that explicitMinHeight does a lot of work for us, adjusting the rest of the scroll properties as necessary. Other height-related properties do not work as well.

The original solution was taken from Nathan's answer to a JustLogged question, but sadly it's not considered the "accepted" answer; you have to see the "other" answers to find Nathan's.

About mx_internal, it's actually a member modifier, like private or public. All the properties you see in the Flex debugger with a yellow rhombus are mx_internal properties. For a more in-depth look, check out When and how to use mx_internal in Flex at Code Of Doom.

Etiquetas: ,

 
jueves, junio 30, 2011
Cómo convencer a Skype en Ubuntu de que no use PulseAudio
Desde hace mucho tiempo que el micrófono no me funciona con la instalación típica de Skype en Ubuntu. PulseAudio es demasiado quisquilloso y nomás no se entiende con Skype, así que siempre termino usando Skype sin PulseAudio de la siguiente manera:

/bin/sh -c "PULSE_SERVER=127.0.0.1 skype"

Etiquetas: , , ,

 
Personal sounding board and public memory.

Nombre: Alejandro Moreno
Ubicación: Edmonton, Alberta, Canada

CodeWeavers

enero 2005 / febrero 2005 / marzo 2005 / noviembre 2005 / diciembre 2005 / febrero 2006 / marzo 2006 / abril 2006 / julio 2007 / agosto 2007 / noviembre 2007 / septiembre 2010 / octubre 2010 / noviembre 2010 / enero 2011 / junio 2011 / julio 2011 / diciembre 2011 / marzo 2012 / junio 2012 / agosto 2012 / septiembre 2012 /


Powered by Blogger