Category: Uncategorized
-
Installing multiple instances of Phabricator on the same server
Just non-obvious steps listed (with things to replace in uppercase), follow their installation instructions for general setup: Don’t forget to add lineexport PATH=”/usr/local/bin:$PATH”to ssh-hook file, since FreeBSD is installing php in /usr/local/bin (otherwise you might receive error “error: AuthorizedKeysCommand /usr/local/libexec/XXXX failed, status 127“)
-
How to set default sound output device in FreeBSD
It can be done using sysctl hw.snd.default_unit. Before that it is good idea to check contents of /dev/sndstat file.
-
Having external links open in new windows in Redmine
Add these lines of js to public/javascripts/application.jsfunction addTargetExternalLinks() {$(‘.external’).attr(“target”, “_blank”);}$(document).ready(addTargetExternalLinks); Credits to this redmine discussion.
-
How to have deferred queue to resend
Executesendmail -q
-
How to check your monitor subpixel order
Most likely it is RGB, but you can check at http://www.lagom.nl/lcd-test/subpixel.php
-
How to check if row is visible when filter is active in OpenOffice Calc or Excel
For example to check if row 5 is visible use formula subtotal(2; A5:A5) – that will return 1 if row is visible, and 0 if it is not. It should work in Excel as well.