Windows Access Token Delegation#
When you are doing impersonation, the token that the server uses is an impersonation token, and in order to "hop machines" with that token, to access UNC shares for example, you need to use < a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;810572">delegation to access the resources.
Categories: Code Links
Thursday, May 26, 2005 6:18:37 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Transparent Overlay in Flash#
This article covers the methods available for making flash float and be transparent.

It's supposed to be for Flash5, but it works in MX 2004 as well.
Categories: Code Links
Wednesday, May 25, 2005 8:46:08 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Javascript (and apparently other programming languages) can't do math#
This is retarted.

You give Javascript (and according to this article C, C++, or other languges) 2 number to multiply where one of them cannot be represented as a binary floating value and it will freak out when you try to multiply them together.

Check out the example below! Click GO to see the math result. Notice that in the 2nd example, all I am doing is multiplying by 10 and dividing by 10, so really nothing.


Categories: Code Links
Monday, May 23, 2005 9:25:50 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

"The Wall" Live#
This would be a good CD, one that I should probably order or buy or something.

I have downloaded a few live Pink Flyod CDs and they all kinda suck, but this one sounds pretty good, at least the tracks I have heard on launch.
Categories: Code Links
Sunday, May 22, 2005 11:28:18 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

1000% bonus poker site?#
This place is claiming they give you a 1000% bonus up to 5000 bucks when you sign up to play with them.

Sounds too good.
Categories: Code Links
Thursday, May 19, 2005 5:47:36 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Poker Tournament Results#
I have been playing more and more sit and go tournaments and I have been winning a few so I thought I should start keeping track of how I do. This is as good a place as any. I'll just do it in the comments.
Categories: Code Links
Tuesday, May 17, 2005 1:48:49 PM (Central Daylight Time, UTC-05:00) #    Comments [19]  | 

 

Validate CSS#
This site will look over your site and figure out if your CSS is valid, and check if you are doing stupid stuff w/ it.
Categories: Code Links
Thursday, May 12, 2005 3:47:56 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

No Title#
Categories:
Thursday, May 12, 2005 3:47:07 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Spider Test Your Site#
This page will take a url and spider it like it was a search engine, letting you know which links are being found and which are not (e.g. javascript redirects).

Pretty cool interface.
Categories: Code Links
Thursday, May 12, 2005 3:45:51 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

"Stripping off the time" from SQL Server DateTime datatypes#
SQL Servers DateTime must always contain a time value, but you can make it so that it is always set to midnight, or 00:00:00 by using the following code:

@dDate = DATEADD(d,DATEDIFF(d,0,@dDate ),0)

Not exactly pretty, but it does the trick.
Categories: Code Links
Thursday, May 12, 2005 10:45:39 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Thumbnail Extraction Using the Shell#
This article at vbaccelerator.com shows a way to use the IExtractImage interface to extract a thumbnail from any object that implements the IExtraceImage interface. This can be used for powerpoint files, word docs, and videos.
Categories: Code Links
Wednesday, May 11, 2005 12:41:47 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Cracking the Google Code... Under the GoogleScope#
This article from WWWCoder and the related http://yro.slashdot.org/article.pl?sid=05/05/10/1546207&tid=217&tid=155slashdot discussion has an overview of the patents filed by google for their new search technology (I believe its called TrustRank, as compared with PageRank which is used now).

The goal is to cut down on SEO spam and artificial links used to drive up placement.
Categories: Code Links
Tuesday, May 10, 2005 1:27:43 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Provider Design Patter#
When I have some free time (hahahha oh oh oh ok seriously that is funny, ok back to this entry) I should read this article on the provider model. It is basiclaly a way to write you applications to you can plug in a provider to abstract a section of work (e.g. error logging, or database connection)
Categories: Code Links
Tuesday, May 10, 2005 1:22:44 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Another Image Cross Fade w/ Source#
Here it is. It even has the source on the page.
Categories: Code Links
Wednesday, May 04, 2005 10:42:21 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Image Cross Fading w/ Javascript#
Here is a pretty cool example of image cross fading using javascript and DOM manipulation.
Categories: Code Links
Wednesday, May 04, 2005 10:40:58 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

VB Code to HTML Markup#
This cool little tool will convert VB code to HTML. A cool think would be to write an HTTP Handler for a blog site that would simply look for CODE sections and dynamically convert the code in those sections to nice markup. I guess you could do it on save as well, but that wouldn't be as nice for editing.
Categories: Code Links
Tuesday, April 26, 2005 2:21:21 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

CS and DNN get Integrated (Ad hock Solution) #
This posting on the Community Server forums shows a hack way to integrate the CS into DNN.
Categories: Code Links
Tuesday, April 26, 2005 12:24:41 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Find Out Webserver Info#
This site can find out information about the server hosting any website. It's easy to see if it is running windows, or a *nix, and what kind of server, apache, IIS, what version etc.
Categories: Code Links
Tuesday, April 26, 2005 10:42:35 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

ASCII Movies#
This guy does for sure.

Give it a minute to load, its worth it.

There are lots of others at the root website.
Categories:
Friday, April 22, 2005 3:16:28 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

CodeThat Grid - Excel Grid in Javascript#
Code That Grid is pretty amazing. Its basically a client side Excel sheet. Really neat.

I wonder how it would do with a ton of data though, if the javascript would slow to a crawl.
Categories: Code Links
Friday, April 22, 2005 1:47:25 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

All content © 2010, Christopher May, Inc
Open Job Positions
On this page
Google Ads
This site
Calendar
<June 2005>
SunMonTueWedThuFriSat
2930311234
567891011
12131415161718
19202122232425
262728293012
3456789
Archives
 Full Archives By Category
Sitemap
Blogroll OPML
Disclaimer

Powered by: newtelligence dasBlog 2.3.9074.18820

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

Send mail to the author(s) E-mail

Theme design by Jelle Druyts


Pick a theme: