Welcome to Community Server Sign in | Join

/Dan/.NET - Dan Robey's .NET Dumping Spot

IESL Software

<November 2009>
SuMoTuWeThFrSa
25262728293031
1234567
891011121314
15161718192021
22232425262728
293012345

Post Categories

Navigation

Subscriptions

/rants (RSS)

/rants
strange .net special character quirk
Apparently doing String.IndexOf("special character") might not always work as you expect it. The æ character is found in the string "ae" Test yourself by dropping this into a .aspx page: <% if("ae".IndexOf("æ") == 0) {Response.Write("why?");}%> Read More

posted Tuesday, August 02, 2005 5:52 PM by dsrobey with 0 Comments

firefox/IE ASP.NET textbox
Just in case anyone else ever has this problem, the asp:textbox in ASP.NET has the two width properties "Width" and "Columns" if you want to set the width of a textbox to a certain size so it will display correctly across browsers, both width and columns Read More

posted Monday, April 11, 2005 3:41 PM by dsrobey with 1 Comments

Exceptions- use them!
I am annoyed. I am extremely annoyed. I have just taken an hour to debug an error which did not exist. I downloaded the source code for the newest taxi server for 1.124. Installed, set permissions, etc. When I hit the server, it froze. ASPNET went to Read More

posted Monday, December 08, 2003 2:20 AM by dsrobey with 0 Comments

dealing with long queries
One of the problems with long web queries is user feedback. If a SQL command takes seconds or even minutes to complete, or if some other heavy processing must be done, users must wait idly as the status bar creeps along, blindly guessing at how long Read More

posted Thursday, December 04, 2003 2:13 PM by dsrobey with 0 Comments

sql injection attacks
While your head is still spinning from the last post, don't think that SQL server is the answer either. If an adversary knows your SQL server setup, they can find weaknesses in your database calls and do "sql server injection attacks." Basically, since Read More

posted Thursday, November 20, 2003 2:02 PM by dsrobey with 0 Comments

BigInts, C#, Crypto
I take back what I said here about the C# BigInt class. It actually is very well put together. I take issue with the fact that .Equals() does not take an Object, but aside from that it does everything you'd really want a bigint class to do. I'm wondering Read More

posted Monday, November 17, 2003 10:29 PM by dsrobey with 0 Comments

.NET more secure than Linux?
@stake recently published a survey claiming that the .NET framework is more easily secured than Linux. Their methodology includesa list of actions system admins needed to perform to harden the web server. Their criteria mainly hinges on usability and Read More

posted Monday, October 06, 2003 1:31 PM by dsrobey with 0 Comments

blog web service needed
we need a blog web service. Or do we already have one?  I want to programmatically author rss. The only problem would be security, which we could do through WS-SEC I've been looking through lately. Read More

posted Tuesday, September 30, 2003 2:08 PM by dsrobey with 0 Comments

pros and woes of Intellisense
Ever since I started using mono to do my 1.124 problem sets, I've noticed that my honed programmer's edge has been dulled by years of working with Intellisense. If I need to take a sqare root of a number, I no longer can remember where to find the function. Read More

posted Monday, September 29, 2003 12:50 PM by dsrobey with 0 Comments

more on wearable computing
browsing around for more info:weblog mentioned on a slashdot about the BBC article with a little more info.the whitepaper on MIT group's UI. They bring up some vaild points about the display being very small, task management in that environment, etc. Read More

posted Thursday, September 11, 2003 1:58 PM by dsrobey with 0 Comments

wearable computing
A recent BBC article highlighted the oncoming wave of wearable computing devices. While currently the iPod is the biggest hit, with any luck pervasive computing will grow. Some issues still need to be resolved before this becomes a reality: A power Read More

posted Thursday, September 11, 2003 1:21 PM by dsrobey with 0 Comments

bad design practice
Little annoyed today because when I got to work, my windows messenger account would not work.  I use trillian normally, so that I can be signed onto several different accounts on different services.  Today I got a message that said: “.NET Messenger Service Read More

posted Tuesday, September 02, 2003 11:19 AM by dsrobey with 0 Comments

google did it!
google beat me to it :(I run my own little scraper portal called webwalkby, so named because it "walks by" some of the major sites I read frequently every so often and caches their content as rss streams. It grabs me comics, headlines from slashdot, and Read More

posted Tuesday, August 26, 2003 1:57 AM by dsrobey with 0 Comments

Longhorn FS & knowledge rep
Everyone's heard by now that Longhorn's shipping with a relational database driven file system. While all kinds of problems and perks come with this decision, this decision runs deeper than the obvious implications. By using a relational database, winFS Read More

posted Wednesday, August 20, 2003 3:49 AM by dsrobey with 0 Comments

blogportal
Thinking about the IESL blogportal: it would be nice to have an upstream RSS of all our blog entries.  i.e. a combined listing of all the blogs the entire group did.  This shouldn't be that difficult to hack together given the component rss feeds.  Might Read More

posted Monday, August 18, 2003 1:49 AM by dsrobey with 0 Comments