Quick Macro Record/Playback Keyboard Shortcuts


Something I came across from this page http://askubuntu.com/questions/515185/run-several-xdotool-commands-in-one-line-separated-from-each-other. It’s a pretty awesome way to quickly record and playback macros. Install xmacro using this guy: sudo apt-get install xmacro And then to record, bind a keyboard shortcut like CTRL-F7 to this: … Continued

Changing Keyboard Shortcuts in MySQL Workbench


Edit the file /usr/share/mysql-workbench/data/main_menu.xml and find or add lines. You’ll need to restart MySQL Workbench for the changes to take affect. I’ve modified the next/previous tab shortcuts: Edit: Apparently it’s C:\Program Files\MySQL\MySQL Workbench x.x\data\ for Windows users. Thanks/Source!

Collection of MySQL Stuffs and Bits (As They Come In)

Cats: laravel, mysql

For my own reference (and so whoever might find them useful). Sometimes just MySQL and sometimes in Laravel-esican. Nullable integer column: Order numerically, except with NULL last Source: http://stackoverflow.com/questions/2051602/mysql-orderby-a-number-nulls-last MySQL SELECT * FROM table ORDER BY ISNULL(field), field ASC; Laravel … Continued