Category Archives: Tools
6 Books Every Programmer Should Own
I’ve seen many lists about the best programming books and I am sure there are a lot of books that are specific to a programming knowledge or technology – that I have not included in my list.
The books I have chosen are those that are meant to inspire, increase productivity and improve your programming design [...]
How to Enter Standard Input in Xcode Debugger Console
I was having an issue when I ran a program in Xcode Debugger Console that utilized scanf() the program would just hang.
The program would work correctly when run directly from the Terminal.
The only solutions that I could find online were to install a previous version of Xcode.
Solution
When entering standard input, you need to terminate [...]
5 Steps for Wordpress Preparation
If you are self-hosting your Wordpress blog (not using Wordpress.com), it is a good idea to setup an instance on your local computer.
Setting up a local instance of Wordpress and a development environment will help you tweaking theme source files, test upgraded Wordpress installations and test plugins – without making changes on your live site. [...]
Output PDF Binary to Browser in ASP.NET
Here is the code to output PDF Binary to the browser using ASP.NET / VB.NET.
Note: This code assumes that you already have the PDF binary data stored in a byte() array called data.
Response.ClearHeaders()
Response.ClearContent()
Response.ContentType = "application/pdf"
Response.BinaryWrite(buffer)
Response.End()
To add an Open / Save dialog window:
Response.AddHeader("content-disposition","attachment;filename=report.pdf")
If you encounter errors in Adobe Reader, make sure that your aspx page [...]
An Overview of Microsoft PowerShell
I decided to install SQL Server 2008 Express and while I was resolving my prerequisite issues I noticed that one of the requirements was to have Windows PowerShell installed. I have to admit, I have never heard of Windows PowerShell at this point, I just passed this off as another utility that was included as [...]
Using Subversion with Xcode, Part III
In Part I, I walked through the process of setting up repositories and projects in Subversion, Part II covered configuring Subversion with Xcode, this part will provide an overview of the SCM tools within Xcode and also show you how to tag and branch your code within Subversion.
Xcode SCM Attributes
If you have your project successfully [...]
Using Subversion with Xcode, Part II
In my previous post, Using Subversion with Xcode, Part I, I covered how to create a repository and provided a set of scripts to use to automate these tasks. In this post I will demonstrate how to use the SCM client within Xcode to access your Subversion server.
SSH
Before you can use Xcode’s SCM client to [...]
Using Subversion with Xcode, Part I
When you start learning new languages and work through different projects and problems, I find it helpful to have my code under version control (or SCM). Keeping on topic with my previous post about learning iPhone Application Development, it may be a good idea to version your code especially when working with the Stanford University [...]
More Programming Books Recommended By Readers