Above & Beyond feat. Justine Suissa - Little Something
Spotted @ #114 Group Therapy Radio with Above & Beyond
Spotted @ #114 Group Therapy Radio with Above & Beyond
Spotted @ #105 Group Therapy Radio with Above & Beyond
Spotted @ #102 Group Therapy Radio with Above & Beyond
My Macbook was recently running very slow. I've noticed Spotlight was constantly rebuilding the index. By executing the following lines of code in my terminal, the corrupted index was fixed:
$ sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.metadata.mds.plist $ sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.metadata.mds.plist
Query to list all the indexes which are disabled in your database:
SELECT sys.objects.name, sys.indexes.name FROM sys.indexes INNER JOIN sys.objects ON sys.objects.object_id = sys.indexes.object_id WHERE sys.indexes.is_disabled = 1 ORDER BY sys.objects.name, sys.indexes.name
My webhosting recently upgraded to PHP 5.4.X - my website is currently running on an old installation of Drupal 6 (version 33). I was suffering a lot of PHP warnings when browsing through some of my webpages. An interesting patch could be found at https://www.drupal.org/node/1543434, which actually cleared all warnings.
Thanks Peter Bowey!
Spotted @ Armin Van Buuren - A State of Trance - podcast 338!
Spotted @ Armin Van Buuren - A State of Trance - podcast 338!
Sinds 2014 heeft Deinze er een nieuwe logopedie bij. De praktijk is gevestigd te Petegem-aan-de-Leie, dichtbij het centrum van Deinze. Wie op zoek is naar een goede logopediste kan heel wat informatie terug vinden op de site van Aline Delezie: http://www.adlogo.be
To install Trac 1.0.1 on a Windows 8.1 installation, I used the following dependencies:
Apache HTTPD | 2.2.25 (32bit) |
Python | 2.7.8 (32bit) |
setuptools | 5.4.1 |
mod_wsgi | 3.5.ap22.win32-py2.7 (32 bit) |
Subversion | 1.8.9 (r1591380) |
Python Subversion bindings | svn-win32-1.8.9 |
WSGIScriptAlias /trac C:\Trac\cgi-bin\trac.wsgi # Process Trac requets Alias /trac/chrome/common C:\Trac\htdocs\common # Serve static content directly from disk (don't send to .cgi script) Alias /trac/chrome/site C:\Trac\htdocs\site # Serve static content directly from disk (don't send to .cgi script) <Directory C:\Trac\cgi-bin> WSGIApplicationGroup %{GLOBAL} Order allow,deny Allow from all </Directory> <Directory C:\Trac\htdocs> Order allow,deny Allow from all </Directory> <Location "/trac/login"> AuthType Basic AuthName "Trac" AuthUserFile C:\SVN\conf\svn-auth-file Require valid-user </Location>
Cannot load C:/Program Files/Apache Software Foundation/Apache2.2/modules/mod_wsgi.so into server: The specified module could not be found
[components] tracopt.versioncontrol.svn.* = enabled
#!/bin/sh REPOS="$1" REV="$2" TXN_NAME="$3" trac-admin C:\Trac changeset added #REPOSITORYNAME# $REV