I wanted a feature similar to this for quite some time. Really it is one of the things that I missed from WordPress. The ability to take LaTeX (like 
\documentclass{article} 
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{bm}
\newcommand{\mx}[1]{\mathbf{\bm{#1}}} % Matrix command
\newcommand{\vc}[1]{\mathbf{\bm{#1}}} % Vector command 
\newcommand{\T}{\text{T}}                % Transpose
\pagestyle{empty} 
\begin{document}
$y= r\sqrt {1-\frac{x^2}{r^2}}$
\end{document}) based sequences and convert them to .png to display on my blog. You will also need to note that I did this on a self hosted environment, you may have to check with your hosting provider first to see if this will work for you. Here are the steps I took to achieve this:

  1. Download MikTex portable from http://www.miktex.org/portable/about
  2. Extract the zip file to a folder on your server (I chose c:\Tools)
  3. Setup your IIS User in Windows (NOT IIS) to have Read+Execute permissions on the above folder
  4. Make sure you are setup in Full Trust
  5. Download the extension attached to this post into your ~/App_Code/Extensions folder
  6. Setup the directory paths properly
  7. Make sure the output directory is Read+Write permissions for your IIS User (in both Windows and IIS)

More...

Comments Comments (0) Permalink Permalink     Rss feed for comments Post Comment Feed

E-mail DotNetKicks Digg StumbleUpon Slashdot Twitter Facebook Del.icio.us

Making your own home router for $500.00 (or less)

Getting sick of trying various consumer level SOHO routers, I decided to take my abilities to the next level. I wanted to build and configure my own gateway / router box. There are several steps to accomplish to do this yourself, and hopefully this post will illustrate the steps that I took.

More...

Comments Comments (15) Permalink Permalink     Rss feed for comments Post Comment Feed

E-mail DotNetKicks Digg StumbleUpon Slashdot Twitter Facebook Del.icio.us

We got back in town on Saturday from our cruise to Alaska. The weather was pretty rainy, but accomodations were made to keep us occupied during the bad storms. I will have to say that the staff on board the Golden Princess were very friendly and accomodating. The land based excursions were the prize attractions.

The Golden Princes in her glory:
AlaskaCruise2009-001.jpg
AlaskaCruise2009-001.jpg

Pam loves dolphins:
AlaskaCruise2009-010.jpg
AlaskaCruise2009-010.jpg

The ZipLine excursion:
AlaskaCruise2009-219.jpg
AlaskaCruise2009-219.jpg

The second night I had troubles with the swaying, so I ended up missing the first formal dinner night. I guess I am not as used to the water as I thought I would be. We were not able to get entry into Victoria Canada because of rough waters which makes me a bit sad because I wanted to see castles. Saftey of the crew and passengers is obviously more important though.

Just check out the rest of the photos in the photo gallery

Comments Comments (9) Permalink Permalink     Rss feed for comments Post Comment Feed

E-mail DotNetKicks Digg StumbleUpon Slashdot Twitter Facebook Del.icio.us

If you have having issues connecting with people in Baldur's Gate 2 you will need to read the FAQ carefully. They used DirectPlay (from Direct X) to do the multiplayer. It requires both inbound and outbound ports forwarded for both sides of the game. Additionally, It requires these port settings on anything higher than Windows XP SP 2.

TCP: 2300 - 2400, 6073, 47000 - 49000

UDP: 2300 - 2400, 6073, 47000 - 49000

Hope this information helps someone else.

Comments Comments (21) Permalink Permalink     Rss feed for comments Post Comment Feed

E-mail DotNetKicks Digg StumbleUpon Slashdot Twitter Facebook Del.icio.us

I integrated GalleryServerPro into BlogEngine.NET using the ASP.NET SQL Server Membership. Here are the steps that I went through to accomplish this.

Integrating GalleryServerPro with BlogEngine.NET (Please note this is for MS SQL Server installation using SQL Server Membership, you can tweak it to be anything you want this just worked for my setup)

  1. Obtain GalleryServerPro from http://www.galleryserverpro.com/ (Please donate, this guy rocks!)
  2. Compile the web application into a separate folder
  3. Copy all of the .dll files from GalleryServerPro/Website/bin into your BlogEngine.NET/Bin folder
  4. I created a folder called BlogEngine.NET/gallery to support the required files
  5. This is the batch file that I use:

    xcopy /Y /S GalleryServerPro\Website\gs\controls BlogEngine\BlogEngine.NET\gallery\gs\controls\
    xcopy /Y /S GalleryServerPro\Website\gs\handler BlogEngine\BlogEngine.NET\gallery\gs\handler\
    xcopy /Y /S GalleryServerPro\Website\gs\images BlogEngine\BlogEngine.NET\gallery\gs\images\
    xcopy /Y /S GalleryServerPro\Website\gs\pages BlogEngine\BlogEngine.NET\gallery\gs\pages\
    xcopy /Y /S GalleryServerPro\Website\gs\script BlogEngine\BlogEngine.NET\gallery\gs\script\
    xcopy /Y /S GalleryServerPro\Website\gs\services BlogEngine\BlogEngine.NET\gallery\gs\services\
    xcopy /Y /S GalleryServerPro\Website\gs\skins BlogEngine\BlogEngine.NET\gallery\gs\skins\
    REM xcopy /Y /S GalleryServerPro\Website\CodeFiles BlogEngine\BlogEngine.NET\App_Code\CodeFiles\
    xcopy /Y /S GalleryServerPro\Website\Properties\* BlogEngine\BlogEngine.NET\Properties\
    xcopy /Y /S GalleryServerPro\Website\App_GlobalResources\* BlogEngine\BlogEngine.NET\App_GlobalResources\
    xcopy /Y /S GalleryServerPro\Website\bin\GalleryServerPro.Web.dll BlogEngine\BlogEngine.NET\Bin\
    del /S /F BlogEngine\BlogEngine.NET\gallery\gs\*.designer.cs
    echo DONE

    Keep in mind that you need to call the delete command. Removing the *.designer.cs files are required to convert these control files from a web application to a website (since that is what BlogEngine.NET uses).

  6. This step is the most complicated and difficult. Please be VERY aware of how to modify web.config files. If there is an error after these instructions it is 95% chance that it was an error inside this step.
  7. Merge data from the GalleryServerPro/Website/web_sqlserver_2.0 (or GalleryServerPro/Website/web_sqlserver_3.5 depending what version of .NET Framework you have). into your BlogEngine.NET/web.config. I would strongly suggest backing up your old web.config file so you can redo it over again if things get too hairy.
  8. Edit your global.asax file by adding this to the end of your void Application_Start(object sender, EventArgs e) method
    Application["ComponentArtWebUI_AppKey"] = "This edition of ComponentArt Web.UI is licensed for Gallery Server Pro application only.";
  9. Run the http://yoursitehere.com/gallery/Default.aspx?g=install and follow the Wizard
    After you upload the changes to your website follow these instructions on how to get the website setup http://www.galleryserverpro.com/support/GalleryServerProAdminGuide_v2_2_3286.pdf
  10. After installing it look at BlogEngine.NET/gallery/gs/pages/install.ascx and change the setup option to false

You can visit my gallery by going to http://www.jwendl.net/gallery/

I also wrote an extension to convert [ gsp:1234 ] into a GalleryServerPro thumbnail. I am still working on it though, but here is the initial version.

GalleryServerPro.cs (3.13 kb)

Comments Comments (28) Permalink Permalink     Rss feed for comments Post Comment Feed

E-mail DotNetKicks Digg StumbleUpon Slashdot Twitter Facebook Del.icio.us

It looks like the wizard class might be primarily the area of effect spell caster. Some of the new spells shown on the trailer and game play look really nice.

Wizard Trailer

Comments Comments (2) Permalink Permalink     Rss feed for comments Post Comment Feed

E-mail DotNetKicks Digg StumbleUpon Slashdot Twitter Facebook Del.icio.us

I first wanted to say thank you to my friend Anbon for coaxing myself and my wife Pam to show up to Convergence this year! I saw many interesting people and sat through some pretty amazing sessions. Some people that I met were John Kovalic, Kenneth Hite and James Kakalios. I ended up learning a lot about gaming and role-playing that I did not even consider. As being a newbie to Convergence I would like to mention that I felt that the hotel they used for the Convention was too small to accommodate the amount of people that showed up. I will post photos from this when I get my photo gallery extensions figured out.

More...

Comments Comments (0) Permalink Permalink     Rss feed for comments Post Comment Feed

E-mail DotNetKicks Digg StumbleUpon Slashdot Twitter Facebook Del.icio.us

I will be at this years Convergence convention in Bloomington, MN. I plan on bringing various games such as Munchkin, Lunch Money, Knightmare Chess and whatever else I fancy. If you plan on being there, you should comment or something. It would be nice to connect with people in the blogsphere.

 

Comments Comments (0) Permalink Permalink     Rss feed for comments Post Comment Feed

E-mail DotNetKicks Digg StumbleUpon Slashdot Twitter Facebook Del.icio.us

I will be attending Microsoft's Professional Developers Conference (PDC) for 2008 in Los Angles. It will be interesting to see what Microsoft has to offer as far as insight on the new tools goes. I am excited for the pre-conference session I signed up for also titled Performance by design using the .NET Framework. I plan on blogging about this when ever I can. So keep your eyes glued to my crappy blog and you may learn a thing or two.

Comments Comments (3) Permalink Permalink     Rss feed for comments Post Comment Feed

E-mail DotNetKicks Digg StumbleUpon Slashdot Twitter Facebook Del.icio.us

Well it appears that the folks at Blizzard decided to scoop up individuals who were sick of playing World of Warcraft. It appears that Diablo III has already hit wikipedia (that means it's official right?)

The gameplay footage looks amazing. Currently, there is only two characters revealed. You know how Blizzard is though, they say something is going to be built and it comes out five years later.

Here is a few youtube videos of it:

Comments Comments (1) Permalink Permalink     Rss feed for comments Post Comment Feed

E-mail DotNetKicks Digg StumbleUpon Slashdot Twitter Facebook Del.icio.us

About Author

Justin Wendlandt
Justin Wendlandt
I work for Wells Fargo, play a lot of video games, and program in many languages. [ more ] E-mail me Send mail

View Justin Wendlandt's profile on LinkedIn View Justin Wendlandt's Facebook Profile View Justin Wendlandt's Twitter Profile View Justin Wendlandt's Zune Profile View Justin Wendlandt's Xbox Live Profile

Calendar

<<  September 2010  >>
MoTuWeThFrSaSu
303112345
6789101112
13141516171819
20212223242526
27282930123
45678910

View posts in large calendar

Recent Posts

Recent Comments

Comment RSS

Most comments

ericchapman ericchapman
1 comments
gb United Kingdom
Clone High Streaming Clone High Streaming
1 comments
us United States
iphone mad iphone mad
1 comments
gb United Kingdom

Poll

This poll is closed.
What do you use to connect to the internet?
A DLink Exterme Gaming router
 
0.0%
A Linksys / Cisco home router
 
0.0%
None of the above
 
0.0%
A Netgear home router
 
0.0%
I built my own box to do routing
 
100.0%

Total Votes: 1

Stock Quotes

WFC 25.10 +0.44 (+1.78%)
GOOG 463.18 +2.845 (+0.62%)
BBY 33.46 +0.80 (+2.45%)
CML 17.80 +2.79 (+18.59%)
COST 58.59 +0.80 (+1.38%)
MSFT 23.94 +0.04 (+0.17%)

Digsby

Xbox Gamer Card

Jwendl Gamer Score: 11570
Jwendl
Rock Band 2 (310) TMNT 1989 Arcade (35) Assassin's Creed II (340) Marvel Ult. Alliance 2 (390) FINAL FANTASY XIII (245) Borderlands (1340) Kane and Lynch:DeadMen (40) Madden NFL 10 (0) Family Game Night (0) STREET FIGHTER IV (180) South Park (180) Gears of War 2 (400) TEKKEN 6 (0) Culdcept SAGA (95) CSI: Deadly Intent (0) CSI-Hard Evidence (0)
Offline
8/30/2010 1:31:44 AM
Last seen 08/30/10 playing Xbox.com

Xbox Avatar

xbox Avatar

Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2010

Creative Commons License