Browsing the archives for the Code Example tag

Progress Being Had

I occasionally get the opportunity to revisit code and rewrite applications i’ve written previously. Without fail i can always tell which of the applications was being used by me directly and how often i was running it, if not by the quality of the code… by the progress monitor i implemented. There are usually [...]

0 Comments

Assembly is definitely tough to work with

I have been very lax about sharing my experiences with the advanced assembly course, and ill tell you why – I am actually having a tough time and its bothering me. Its not tough to accomplish the projects…

Write an app that calculates the GCD for two integers
Begin work on my own Strings and Output libraries
Continue [...]

1 Comment

Code Example – MSSQL Test Update

I posted, in june of last year, about some very useful MSSQL tests that make development and the promotion process we use here at Broadcom easier. One of the tests was not entirely correct, and id like to make a quick substitution (although i wont be replacing the previous entry because it sort of works [...]

0 Comments

Code Example – NSIS – UT3 Install Locations

Along with the mod switch comes another piece of the pie. The installer allows you to package your mod for distribution. One of the hurdles that needs to be hopped over is finding UT3.exe so we can create the required shortcuts. Below is a short piece of code in NSIS to check the registry keys [...]

4 Comments

Assemble Your Primes

In todays code example we are going to look at a bit of code in MASM Assembly that calculates a series of prime numbers up to a user given value. Enjoy.

0 Comments

Getting back into the code

Assembly is allowing my favorite activity to take place, and leveling me off quite well. Efficiency is something that is highly important to me, so when i am given a lab that is about algorithms i become giddy! Todays lab is about calculating the dot product of a multiple dimensioned vector, lets walk through this.

0 Comments