Category: Uncategorized

  • MATE 1.12.1 and FreeBSD 10.3

    One place to put all little tweaks to make it work better with FreeBSD.

  • Too much antialiasing when rendering fonts with new freetype2

    In case there is too much antialiasing there it can be reverted to old behavior by setting environment variable FREETYPE_PROPERTIES to truetype:interpreter-version=35 (port gives suggestion of using “truetype:interpreter-version=35 cff:no-stem-darkening=1 autofitter:warping=1” but for me these extra options make no difference). More about available options can be found in freetype2 documentation (/usr/local/share/doc/freetype2/reference/ft2-toc.html section “Controlling FreeType Modules“, if…

  • Programming Fonts

    I was for very long time happy with Bitstream Vera Sans Mono, but since lately it doesn’t show that well on my monitor any more. I thought finding nice looking development font would be 5 minutes of browsing, but apparently it was not that easy. I found this website with lot of programming fonts and…

  • Directory Permissions for ASP.Net Web Applications

    If configuring with default settings make sure to add privileges to user “IIS AppPool\name_of_the_pool”. When testing application if using only IP make sure that checking hostname in request header is not enabled.

  • Unbound without DNSSEC on FreeBSD 10

    After initial installation according to instructions in handbook, you have to edit /var/unbound/unbound.conf and to add module-config: “iterator” to server section there, so it looks similar toserver: username: unbound directory: /var/unbound chroot: /var/unbound pidfile: /var/run/local_unbound.pid auto-trust-anchor-file: /var/unbound/root.key module-config: “iterator”

  • Useful one-liner for building template git comment

    Goes like this:git status | grep modified: | awk ‘BEGIN {FS=”[ \t]+modified:[ \t]+”;print “Change summary\n”;} {print “* ” $2 “\t\n”;}’ Sample output: Change summary * include/Application.hpp * include/fengine.hpp * nginx.sh * samples/if.ftx * src/fEngine/compiling/Compiler.cpp * src/fEngine/compiling/Compiling.cpp * src/fEngine/f/Alt.cpp * src/fEngine/f/BuiltInTag.cpp * src/fEngine/f/Case.cpp * src/fEngine/f/CodeGenerator.cpp * src/fEngine/f/Default.cpp * src/fEngine/f/ElIf.cpp * src/fEngine/f/Else.cpp * src/fEngine/f/Footer.cpp * src/fEngine/f/Foreach.cpp *…