Category Archives: General

Escaping XML with Sed

There are five XML characters that need to be escaped: ” &quot; ‘ &apos; < &lt; > &gt; & &amp; And here is the solution ruakh provided over on stackoverflow sed ‘s/&/\&amp;/g; s/</\&lt;/g; s/>/\&gt;/g; s/”/\&quot;/g; s/'”‘”‘/\&#39;/g’

Posted in General | Leave a comment

ccClock

All the information is included This is also released as a podcast on Hacker Public Radio and on the Internet Archive. Over the years the image of the clock has been abstracted and stylized to a point where a long and … Continue reading

Posted in General | Leave a comment

I am trying to mount a cifs share aka smaba/smb/windows share, from a Debian server so I can access log files when needed. To do this automatically I create two mounts, one which is read only and is automatically mounted … Continue reading

Posted in General | Leave a comment

Adding SQLite as a datasource to SQLeo

An audio version of this post is available on Hacker Public Radio. I have been looking for a tool that will graphically and programmatically track identifiers as they pass through systems. I could have done this in Inkscape after following … Continue reading

Posted in General, Podcasts | 1 Comment

not a dynamic executable

I sometimes have issues running a 32bit program under Linux X64. When you run ldd it reports that it’s not a dynamic executable # ldd /usr/bin/snx not a dynamic executable However if you run file, you do see that it … Continue reading

Posted in General | 1 Comment

I was installing Oracle VirtualBox 5.0 as per http://www.if-not-true-then-false.com/2010/install-virtualbox-with-yum-on-fedora-centos-red-hat-rhel/. I ran into the following issue. Stopping VirtualBox kernel modules [ OK ] Uninstalling old VirtualBox DKMS kernel modulesError! There are no instances of module: vboxhost 5.0.4 located in the DKMS … Continue reading

Posted in General | Leave a comment

CheckPoint SNX install instructions for major Linux distributions

I decided to do a round up of how to install the software needed on GNU/Linux to enable access through a CheckPoint firewall. My focus was on distributions whose ISO downloads supported UEFI boot, and hard disk encryption out of … Continue reading

Posted in General, snx | 21 Comments

Stopping mplayer from displaying Album Art on Music or Podcasts

I use mplayer as my media player of choice. If it discovers embedded album art in the media files, it will display them as a popup window. To prevent this from happening you can use the switch -vo null which will tell it … Continue reading

Posted in General | 2 Comments

Unable to access SharePoint in Firefox but it is possible in Chrome

Thanks to the the-edmeister  for giving a solution to this issue https://support.mozilla.org/en-US/questions/1007248 That type of message might be related to Insecure NTLM (pre-NTLMv2) authentication being disabled in Firefox 30. Type about:config in the URL bar and hit Enter. Accept the … Continue reading

Posted in General | Leave a comment

Can’t locate CPAN.pm in @INC

Had a strange one while installing my new work laptop. I was migrating from one system to another, so I did a clean install of Fedora 21 and copied my data over. After that I could no longer open cpan, … Continue reading

Posted in General | Leave a comment