Skip to content
cjhaas blog

Basically a place that Chris can post solutions to problems so he can easily find them later

cjhaas blog

Basically a place that Chris can post solutions to problems so he can easily find them later

CSS Transitions not working first time in Firefox and Internet Explorer

Posted on May 24, 2013 By [email protected]

I was doing some simple CSS transitions like transition: left 0.5s ease-in-out 1 and they were working just fine in Chrome but Firefox and Internet Explorer either wouldn’t use the transitions or they wouldn’t work the first time but subsequent times they would. So if I had an arrow that moved something…

Read more

DO NOT SEND ME MY PASSWORD. EVER!!!

Posted on May 17, 2013 By [email protected]

I can’t believe anyone would actually transmit a password in the clear in this day and age. Especially a tech(-ish) company. Just signed up for an API key at a screen shot place (won’t name but people can guess) and they sent me my password via email. Thank you for…

Read more

*** failed to import extension kilnauth from ~/KilnExtensions/kilnauth.py: invalid syntax

Posted on April 18, 2013 By [email protected]

You might run into this error message if you’ve got an older version of python installed. The problem is the newer with syntax: with open(self.__temporary_path, ‘r’) as f: before = md5(f.read()).digest() The solution is to just convert it to try/finally f = open(self.__temporary_path, ‘rb’) try: before = md5(f.read()).digest() finally: f.close()

Read more

MySqlDump to individual files and restoring again

Posted on April 17, 2013 By [email protected]

Make sure that your mysql user has permission to access the file system (the FILE privilege). GRANT ALL does not do this. You can check your user by doing: select user, host, file_priv from mysql.user; To enable: grant FILE on *.* to ‘root’@’localhost’;flush privileges; Also make sure that mysqld can…

Read more

iTextSharp slightly smarter text extraction strategy

Posted on March 13, 2013 By [email protected]

iTextSharp’s SimpleTextExtractionStrategy is great but it is simple as the name implies. It can detect new lines pretty well but it has no care for the order of the lines themselves. If your PDF isn’t written top to bottom (as many PDFs aren’t) you’ll get everything out of order. The code…

Read more

WordPress Post Formats Admin UI

Posted on January 24, 2013 By [email protected]
Read more

Error when resizing VirtualBox disk on Windows

Posted on November 27, 2012 By [email protected]

I recently needed to resize my CentOS VDI using the following command: “c:\Program Files\Oracle\VirtualBox\VBoxManage.exe” modifyhd “c:\CentOS\CentOS.vdi” –resize 20480 Unfortunately it kept failing with this error message: VBoxManage.exe: error: Failed to create the VirtualBox object! VBoxManage.exe: error: Code CO_E_SERVER_EXEC_FAILURE (0x80080005) – Server execution failed (extended info not available) VBoxManage.exe: error: Most…

Read more

Webalizer on Windows

Posted on November 15, 2012 By [email protected]

This post is really only some notes for me on how to use Webalizer on Windows to parse IIS log files (w3c format). If you have any questions about this please DO NOT ASK ME. Download and extract the Windows binaries Download and unzip/untar the latest GeoDB to the same directory…

Read more

Crashplan GUI Crashing

Posted on October 23, 2012 By [email protected]

We had a machine with a very large backup set (~3TB) with some large DV files (~4GB). For a while our backups were running fine but recently whenever we tried launching the Crashplan GUI it would run for a little bit, hang and then finally crash. Nothing showed up in…

Read more

Allow WordPress to update itself without using FTP

Posted on July 3, 2012 By [email protected]

Quick and simple, if you want to avoid putting FTP credentials into WordPress every time that you perform an update add this to your wp-config.php file somewhere before the magic stop line (“That’s all, stop editing!”) define(‘FS_METHOD’, ‘direct’); More from the codex here You might also need to mess with…

Read more
  • Previous
  • 1
  • …
  • 12
  • 13
  • 14
  • …
  • 18
  • Next

Recent Posts

  • Google open redirect
  • How to use AI to write code
  • Doctrine/Symfony MariaDB DSN connection string
  • Creating a portable copy of pdftotext from source
  • Gravity Forms shortcode getting extra line breaks when used with ACF

Recent Comments

  • jose luis on #2 – VB.Net iTextSharp Tutorial – Add an image to a document
  • Eliezer Castanon on iTextSharp slightly smarter text extraction strategy
  • javad on How to recompress images in a PDF using iTextSharp
  • MANOUS3784 on Flock is awesome
  • Sang on Flock is awesome

Archives

  • June 2026
  • October 2025
  • November 2023
  • September 2023
  • July 2023
  • June 2023
  • May 2023
  • April 2023
  • December 2022
  • September 2022
  • April 2022
  • October 2021
  • September 2021
  • April 2021
  • January 2021
  • October 2020
  • August 2020
  • June 2020
  • May 2020
  • December 2019
  • November 2019
  • October 2019
  • July 2019
  • May 2019
  • December 2018
  • October 2018
  • July 2018
  • November 2017
  • October 2017
  • August 2017
  • July 2017
  • June 2017
  • May 2017
  • April 2017
  • March 2017
  • February 2017
  • January 2017
  • September 2015
  • December 2014
  • November 2014
  • October 2014
  • September 2014
  • August 2014
  • July 2014
  • November 2013
  • May 2013
  • April 2013
  • March 2013
  • January 2013
  • November 2012
  • October 2012
  • July 2012
  • March 2012
  • January 2012
  • October 2011
  • September 2011
  • July 2011
  • February 2011
  • December 2010
  • November 2010
  • October 2010
  • September 2010
  • August 2010
  • June 2010
  • April 2010
  • January 2010
  • December 2009
  • November 2009
  • October 2009
  • July 2009
  • June 2009
  • May 2009
  • April 2009

Categories

  • Accessibility
  • Advanced Custom Fields
  • Authorize.Net
  • BWP Minify
  • Composer
  • Crappy Google Search Results of the Day
  • CSS
  • Doctrine
  • Drupal
  • Drush
  • Elasticsearch
  • Fun links of the day
  • Google Analytics
  • Gravity Forms
  • HHVM
  • HTML
  • iTextSharp
  • JavaScript
  • Linux
  • mysql
  • nginx
  • Optimization
  • PDF
  • PdfPTable
  • PHP
  • Plugins
  • Ramblings
  • Random things I learned
  • Redis
  • Security
  • simplesamlphp
  • SQL Server
  • SSH
  • SSL/TLS/HTTPS
  • Stack Overflow
  • SVG
  • Symfony
  • Synology
  • Uncategorized
  • Unicode
  • Varnish
  • Vendi Best Practice
  • VIP
  • Weird Google Search Results
  • Windows
  • WordPress
  • WP-CLI

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
©2026 cjhaas blog | WordPress Theme by SuperbThemes