Internet-Web



Are you having problems with Windows Authentication in ASP.NET (2.0)?


h1 Wednesday, January 10th, 2007

I was too!

I went to a few different tutorials (Tutorial 1 , Tutorial 2) on how to set it up for an intranet environment, but I couldn’t get it to work.

It seemed like it wasn’t working because IIS wasn’t properly authenticating the user. But when I went to my IIS settings everything was right according to the tutorials…

(Like this…)
wa-aspnet-iis-settings.JPG

Everything was right! But still no luck.

To make a long story short, I found this article and it did the trick…

Forcing NTLM Authentication (IIS 6.0)

Now I can enjoy Windows Authentication in ASP.NET for my Intranet Web App! :D

Do you have any WordPress plugin requests?


h1 Friday, November 17th, 2006

I’m looking for a project and I’ve been meaning to make a WordPress plugin and make it available to the community for a while. But I need some ideas. I want to make a great and useful plugin.

Go ahead and leave any ideas in the comments. I can’t promise I’ll do it but if I find the right one I’ll do it.

Dreamhost and Subversion (source control)


h1 Friday, May 5th, 2006

I’ve been looking for something like this for a while now. And low and behold, my host (Dreamhost) offers a one click install source control system called Subversion. Here is a nice tutorial on how to get it set up…

I can’t wait to really start using this!

guitarcentermerch.com


h1 Monday, April 24th, 2006

I worked on the application powering guitarcentermerch.com while working at BandMerch.com.

This web application allows you to upload a custom logo (it must be black with a full white background) and place/size it on a shirt and choose the logo color. The overall goal of the project was to provide a web interface to order a one color custom logo silk screened on a tee-shirt.

This was done by one other developer and myself. And it also ties into the native shopping-cart of BandMerch.com. The major parts that I contributed to were the image processing and the work-flow of the pages. The image processing part was done using Java Advanced Imaging and Java’s standard imaging. The work-flow part was done with Javabeans, HTML, and Javascript.

testing PodPress


h1 Saturday, February 25th, 2006

this is just a test of PodPress, it will probably be deleted soon…

Listen now:

Download podcast directly
| Standard Podcast (MP3) |

THIS IS ONLY A TEST


h1 Friday, February 17th, 2006

I’m just testing this audio-player plugin …

Listen to some Air Bach… (if it works)

ooo.. that doesn’t sound too great..
Oh well the plugin works great though… I’ll have to put some of the music I made a long time ago on this site…

Thank you Feed2JS


h1 Tuesday, February 7th, 2006

Feed2JS is a nice little service that helped me get a little job done quickly. I wanted to make my “Visitors” section on the sidebar (scroll up or down maybe, you’ll see it) look like the rest of my site. Blog Flux Mapstats provides an of my last 25 visitors (the cities) and with Feed2JS I was able to get some code to use the rss. This gave me more control over how the cities appear below.
Don’t know if everyone will understand what I’m talking about here, but anyway…
Thank you Feed2JS

Blog Flux rocks!!


h1 Monday, February 6th, 2006

This is a great service for bloggers to track where visitors are coming from (in cyber-space and physical-space). The following link will show you a map of the world and all the locations (cities) from where someone accessed my site (at least the last 25 visitors).

http://mapstats.blogflux.com/12826.html

You can find this link always at the bottom of my side bar. And I know a have “Visitors” section in the sidebar showing the city names of the last 15 unique visitors.
The map is from Google Maps, which is a great map web application example of .
This is a nice feature for any blog and I plan to add it on my other blog sites. There are more great services that Blog Flux offers for free. If your a blogger, check them out at BlogFlux.com

AJAX - A good method for web apps


h1 Friday, October 7th, 2005

is a method of creating more desktop-like web applications. In the future (and even now), many websites/ web applications will act more and more like desktop applications. Google maps is a good example of this… (search for more ). More and more you will see websites that rival the functionality of desktop applications. This is good, its quick and “on demand” distribution of your application. No need to download and install the application to your hard disk to get the functionality you need. All thats required is a powerful enough computer and an Internet connection. It is a typical thin client (meaning the browser) / server model. Ajax helps balance the processing load between the client and server efficiently. You have the speed of processing locally and the large data store of information via the server.
I found the .NET libraries and I look forward to seeing what I can do with this!
- The free library for .NET (C#)