Monthly Archives: October 2009
What Programming Language Should I Learn Next?
I am a big fan of reddit and it is usually my primary source of reading what’s new. There is a sub-category (sub-reddit) on Reddit for Programming and one question that is posed very frequently is: What programming language should I learn next? If your purpose for learning a new language is career motivated, I [...]
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 [...]
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 [...]
How to Read a Book Using SQ3R
Before I entered college over 10 years ago, I participated in a 1-day seminar for incoming freshmen called Strategies for Success. The purpose of the seminar was to introduce you to study habits and prepare you for the college workload. What reminded me recently of this seminar was a book that I started reading: ‘Secrets [...]
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 [...]
Enhance Your Skills By Belonging to Professional Organizations
If you work in information technology, how do you keep both your social and technical skills up-to-date to remain competitive? Enrolling in an academic program could be beneficial to improving your skills, but it could get expensive and often a technical curriculum will not cover the latest technologies. This is where belonging to a professional [...]
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 [...]
17 Websites for Sharing Programming Knowledge