Sorry I missed yesterday. I had a post on my Cisco class scheduled, so I’m going to make that post today. Cisco’s Network Fundamentals Chapter 10 is about planning a network. The chapter covers choosing routers and switches, choosing cabling types, allocating sub nets, and connecting to routers with console cables. For routers and switches,
Category: Technology
Asterisk Series
Okay, I have put absolutely zero work into planning this, but I’m going to start a series of blog posts on configuring Asterisk. I have an Asterisk box running with phone service from Vitelity. My plan is to setup a system which allows you to make calls from your computer, cell phone, or other SIP
MIME Multipart Order of Preference
As part of a project for a client, I needed to do a MIME multipart email which would include both a plain text and HTML version. The HTML version was supposed to be the default version. However, I discovered that the MIME specifaction is somwhat counter intuitive. You must put your prefered version as low
Getting the Current URL in WordPress
For some reason, I could not find this anywhere in my searches. You can get the permalink for the current post or page using: get_permalink( $post->ID ); Of course this only works on posts or pages, not on searches and the like. I have no idea why I had such a hard time finding this.