Zyaga Writing about whatever the hell I want, cuz it's the Interwebz!

Archive Results for ' Programming'


6Jan/100

Tutorial: C# XML Serialization

Tutorial: C# XML Serialization

Almost every decent sized project in any programming language winds up having at least one configuration file. XML is a standard we often rely on because it’s generally perfect for the job. However, most people end up simply working with the XML file like they would any other file or simply scanning along each part of the “tree”. XML Serialization can take care of a lot of these instances with much better results, by providing an actual class interpretation of the configuration file. Let me show you.

1Jan/100

LangFreQ Beta v1.1 – New Features

LangFreQ Beta v1.1 – New Features

I haven’t been posting much at all lately and mostly it’s because I’ve been so busy with the holidays, but also because I wanted to crank out the new LangFreQ Beta v1.1 with new features. I’ve been working hard to get these out and while I think these features are a vast improvement on the site, or an addition if you will, I think it will be a long time before I say LangFreQ is out of “beta”.

15Dec/090

LangFreQ – Beta

LangFreQ – Beta

Lately, I haven’t been as active as I would like. Part of that is because I’ve been so busy on a new little project of mine, the other part is that I’m studying Japanese so much. ;) I’d like to share with you the project I’ve been tinkering with, it’s called LangFreQ!

7Dec/090

Introduction to Google Hacking

Introduction to Google Hacking

I recently just taught my first class on EduFire, called “Introduction to Google Hacking”. From the feedback I’ve been getting, people seemed to enjoy it, so I’ll continue teaching it. I don’t know about the future, but for right now, I’ve decided I’m going to make it free! Why? Because I believe this is information everyone should know!

16Nov/091

Live Learning/Teaching with EduFire

Live Learning/Teaching with EduFire

One of the best things you can do for your self when trying to learn something new, whether it be a language or how to develop computer applications, is to join a class. But not everyone has the time, resources, or even money to do that. That’s where EduFire steps in! Teachers, you’ll want to check this diamond in the rough out too! They provide what you need to teach when you want, where you want, and for what you want($$$ ;) )!

9Nov/095

Tutorial: PHP Random Image

Tutorial: PHP Random Image

I was working on a website of mine when I came across the need to be able to have a script randomly pull an image from a specific folder and then display it. Obviously, server side scripting is going to be involved so I decided to write this function in PHP. Let’s take a look!