Paul Oakenfold & Cassandra Fox - Touch Me (Mike Koglin 2.0 remix)
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
Spotted @ #418 Trance Around The World with Above & Beyond
Spotted @ #074 Group Therapy Radio with Above & Beyond
Some JPA queries, especially the ones with a LIKE operator, can run very slow on a SQL server using jTDS.
The issue is in the way the jTDS drivers send the parameter strings to the SQL server. Apparently Java will attempt to send the parameters Unicode by default, and SQL server will translate it to ASCII. It can take some seconds because it changes each column value to Unicode before comparing against your parameter. This means it can't take full advantage of any index on the field leading to much slower performance.
If you add the following parameter sendStringParametersAsUnicode=false to your connection string in the datasource, this conversion step can be skipped and it can speed up the performance of your queries:
jdbc:sqlserver://localhost\SQLEXPRESS;DatabaseName=TESTDB;sendStringParametersAsUnicode=false
I recently got a question from somebody who has a personal site on the web and he wanted to disable the phone number linking on his own site (which is rendered automatically in the Safari application of an iPad). I first assumed that such request could not be answered, but I came across following solution:
If you include the following meta tag at the top of your page:
<meta name="format-detection" content="telephone=no">
... phone linking will be disabled. More information can be found on the developer pages of Apple: https://developer.apple.com/library/ios/featuredarticles/iPhoneURLScheme_Reference/PhoneLinks/PhoneLinks.html
I recently had a problem with an update of Office on my Macbook Pro. The only solution was to remove everything (but really EVERYTHING) from Office for Mac. Afterwards, the installation + update went fluently.
A very good tutorial on removing Office for Mac can be found here: http://support.microsoft.com/kb/2398768
When I logon to a server which is running a FileZilla server (as a service), I always get a popup which connects to the FileZilla server. It's a bit annoying as you can only disable this popup while installing the server. There's no GUI configuration to disable it after post install.
Luckily, there's a small fix in the windows registry which disables the popup, but still keeps the FileZilla server service running in the background:
Spotted @ #072 Group Therapy Radio with Above & Beyond