Jesse Weigert

1,623
reputation
131 views

Registered User

name Jesse Weigert
member for 1 year
seen 4 hours ago
website
location Seattle, WA
age 27
Currently a software developer at Microsoft.
Dec
8
comment Protect yourself against Dos attacks
Really, it belongs on both. There are things that you can do as both an application developer as well as a sysadmin to limit the effectiveness of a DoS attack.
Nov
27
comment alternative to mysql_fetch_array()
Yes, there are two big advantages: 1. Built in SQL parametrization support which when used correctly eliminates SQL injection problems. 2. Allows you to easily switch database engines by changing the connection string. (No need to replace all your mysql_fetch_array() calls with the equivalent postgresql/Oracle/MSSQL calls.) There are plenty of other advantages as well. pear.php.net/package/MDB2
Nov
27
comment alternative to mysql_fetch_array()
Please try using the PEAR::MDB2 database abstraction library instead of calling the mysql function calls directly.
Nov
20
comment What is the “Shell Namespace” way to create a new folder?
Yes.. Call SHChangeNotify as this is the correct way to do it. Poking around in the IContextMenu is a good way to ensure your program breaks on the next version of Windows.
Nov
15
comment How can be 2 = 1.99999…?
Technically not a "rounding error". 1.9999... is exactly equal to 2
Nov
5
answered IE6 Javascript problems with $Revision$ in the filename
Oct
28
answered How can I embed a textarea inside of another textarea in HTML?
Oct
28
comment Best open source database for large web based application
@James: Exactly, but if the need arises.... @Larry: Well written stored procedures should conform to the SQL specification, and switching to a new database would only require minor changes to the schema and stored procedures, but not any changes to your application. In fact, your application could be written such that the database engine could be configurable at run time. If you hard coded SQL statements into your application, then changing the database engine might require changes to the application itself.
Oct
28
comment Best open source database for large web based application
MSSQL express has built in limitations which limit scaling or using in any environment with more than about 5 clients.
Oct
28
answered Best open source database for large web based application
Oct
27
comment How do I make it so that people can use “https://” on my domain?
This probably belongs on serverfault.com
Oct
26
awarded  Popular Question
Oct
26
comment Send E-mail using C# - Not so easy.
Code sample is good, but please use the using pattern instead of manually disposing of the mail object.
Oct
26
answered How session and cookie works?
Oct
25
answered C# Random Number
Oct
3
revised download link hidden
Clarified my answer
Oct
3
comment download link hidden
The first example should work and is necessary so that the browser has a clue on what to call the file.
Oct
3
answered download link hidden
Oct
2
revised Exchange Data between two apps across PC on LAN
edited tags
Sep
30
comment Auto update: Is this secure?
The user of the library should be able to pass the name of the application and the current version, and the library could read the metadata from the installer to check the last two points.
Sep
30
revised Auto update: Is this secure?
fixed typo
Sep
26
comment Exchange, IIS and multiple nics
Don't delete it. Post your answer and accept it.
Sep
25
answered Listening for incoming emails from an Exchange Server.
Sep
23
answered Auto update: Is this secure?
Sep
23
answered Cheaper alternative to FogBugz
Sep
22
awarded  Popular Question
Sep
16
awarded  Yearling
Sep
12
comment Add appointment to calendar through Exchange programatically
Use CDO for Exchange 2003 and EWS for 2007/2010. Btw, EWS is MUCH easier than CDO.
Aug
24
accepted How can I run some script code when an item is forwarded to an Exchange public folder?
Aug
24
comment How can I run some script code when an item is forwarded to an Exchange public folder?
Event sinks were always a bad idea and I don't think they're even supported in Exchange 2007 anymore. If they are, they definitely won't be supported in Exchange 2010.
Aug
24
answered How can I run some script code when an item is forwarded to an Exchange public folder?
Aug
24
answered Will Subversion efficiently store OpenXML Office documents?
Aug
21
answered Stopping Session Sharing between malicious users in Rails
Aug
18
answered Centralized Credentials Service For Various Apps
Aug
18
comment Is JDBC secure?
This works for PHP/MySQL as well as pretty much any other modern/web programming language.
Aug
17
accepted Explanation of re-usable structures in OO PHP
Aug
14
revised Website security pitfalls and what can I do in ASP.NET MVC to avoid/mitigate them?
Clarified SQL injection. Html.Encode is for preventing user data from executing in browser, not for protecting against SQL injection.
Aug
10
comment How to stop Exchange from automatically converting plain text emails to HTML?
How is your application retrieving the mails?
Aug
2
comment How to submit a multipart/form-data HTTP POST request from C#
Sadly, this is what I had to do.
Jul
30
comment How to submit a multipart/form-data HTTP POST request from C#
That would work if I would just uploading the file. However, I need to include a bunch of other form variables along with it.
Jul
30
comment How to submit a multipart/form-data HTTP POST request from C#
I've mainly been looking at HttpWebRequest, but every resource I've found on the internet explains how to manually build the request. Here is one of many similar examples I have found: social.msdn.microsoft.com/Forums/en-US/…
Jul
30
asked How to submit a multipart/form-data HTTP POST request from C#
Jul
27
comment How can I protect a directory using PHP?
Unkwntech: True, but there's the chance that it's already installed.
Jul
22
answered How can I protect a directory using PHP?
Jul
22
answered Is sub-domain better or sub-folder?
Jul
22
comment Is sub-domain better or sub-folder?
Technically, you can register a wildcard SSL certificate and have it work for all of your subdomains.
Jul
21
accepted asp.net application pool and garbage collection
Jul
21
accepted Avoid network login prompt
Jul
20
answered asp.net application pool and garbage collection
Jul
20
revised How to use outlook web access
edited tags