User Joe Basirico - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T10:21:22Zhttp://stackoverflow.com/feeds/user/20795http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1845193/programmatically-scroll-the-windows-mobile-window0Programmatically scroll the windows mobile windowJoe Basirico2009-12-04T06:16:20Z2009-12-04T07:16:58Z
<p>I have a form that has a number of controls on it (enough that the scroll bar is visible). How can I programmatically control the scroll window?</p>
<p>I can fake it now by calling the <code>.Select()</code> method on the last control in the Form, but I'd really like to be able to scroll all the way to the bottom of the window.</p>
http://stackoverflow.com/questions/1844807/what-does-mean/1844863#1844863-1Answer by Joe Basirico for What does /([^.]*)\.(.*)/ mean?Joe Basirico2009-12-04T04:28:03Z2009-12-04T04:28:03Z<p>the . character matches any character except line break characters the \r or \n.</p>
<p>the ^ negates what follows it (in this case the dot)</p>
<p>the * means "zero or more times"</p>
<p>the parentheses group and capture, </p>
<p>the \ allows you to match a special character (like the dot or the star)</p>
<p>so this <code>([^.]*)</code> means any line break repeated zero or more times (it just eats up carriage returns).</p>
<p>this <code>(.*)</code> part means any string of characters zero or more times (except the line breaks)</p>
<p>and the <code>\.</code> means a real dot</p>
<p>so the whole thing would match zero or more line breaks followed by a dot followed by any number of characters.</p>
<p>For more information and a really great reference on Regular Expressions check out: <a href="http://www.regular-expressions.info/reference.html" rel="nofollow">http://www.regular-expressions.info/reference.html</a></p>
http://stackoverflow.com/questions/1768633/how-can-i-add-mouse-click-event-to-web-textbox-in-c/1768671#17686711Answer by Joe Basirico for How can I add mouse click event to Web TextBox in c#Joe Basirico2009-11-20T06:21:03Z2009-11-20T06:33:52Z<p>If you're talking about a client side onclick event you can use the OnClick property in the designer, or you can manually add the "onclick" event in code.</p>
<p>For the onclick method try the following:</p>
<pre><code>//asp will allow the onclick event to pass through to the webpage
<asp:textbox onclick="myJavaScriptFunction()" runat="server" id="myTextBox" ... >
</code></pre>
<p>To add the attribute manually try this:</p>
<pre><code>myTextBox.Attributes.Add("onclick", "myJavaScriptFunction()");
</code></pre>
http://stackoverflow.com/questions/1768663/in-asp-net-i-just-want-to-position-an-adrotator-in-the-right-top-corner-of-my-we/1768703#17687031Answer by Joe Basirico for In ASP.NET, I just want to position an Adrotator in the right top corner of my webpage.how?Joe Basirico2009-11-20T06:29:27Z2009-11-20T06:29:27Z<p>You can float the adrotator above the rest of the text using css. Add your Adrotator to the top of the page (before any other controls) and add the style:</p>
<pre><code>float: right;
</code></pre>
<p>You could also use the "top" and right properties to put it there.</p>
<pre><code>position:absolute;
top:5px;
right: 5px;
</code></pre>
<p>Your last, and arguably best option, would be to use a proper Div layout on the page. Maybe one of these would work for you:
<a href="http://layouts.ironmyers.com/" rel="nofollow">http://layouts.ironmyers.com/</a></p>
http://stackoverflow.com/questions/477913/how-do-i-remove-etag-headers-from-iis7/1256846#12568460Answer by Joe Basirico for How do I remove eTag headers from IIS7?Joe Basirico2009-08-10T19:48:12Z2009-08-10T19:48:12Z<p>I've run into this problem too, but this article seems to solve my ETag issue. Jeff, does this help?</p>
<p><a href="http://support.microsoft.com/?id=922733" rel="nofollow">http://support.microsoft.com/?id=922733</a></p>
http://stackoverflow.com/questions/211169/cng-cryptoserviceprovider-and-managed-implementations-of-hashalgorithm/1004127#10041270Answer by Joe Basirico for CNG, CryptoServiceProvider and Managed implementations of HashAlgorithmJoe Basirico2009-06-16T21:48:21Z2009-06-16T21:48:21Z<p>The Cng versions are supposed to be a little faster, but I just wrote up a little program that compares the speeds of each. (I had a client that was asking about the performance characteristics of MD5 vs. SHA1)</p>
<p>I was surprised to find out there is little to no difference between MD5 and SHA1, but was also surprised that there is a slight difference in Cng and the CryptoServiceProvider. </p>
<p>The source is pretty straight forward, I added reps to do the same iteration multiple times so I could average in case there was any weirdness going on, on my machine during one of the runs.</p>
<p>call the following with a call like this:</p>
<pre><code>CalculateHash(1, 1024, new SHA1CryptoServiceProvider());
static long CalculateHash(UInt64 repetitions, UInt64 size, HashAlgorithm engine)
{
RandomNumberGenerator rng = RandomNumberGenerator.Create();
byte[][] goo = new byte[repetitions][];
for (UInt64 i = 0; i < repetitions; i++)
{
goo[i] = new byte[size];
rng.GetBytes(goo[i]);
}
DateTime start = DateTime.Now;
for (UInt64 i = 0; i < repetitions; i++)
{
engine.ComputeHash(goo[i]);
}
return DateTime.Now.Subtract(start).Ticks;
}
</code></pre>
<p>I ran this in a loop of increasing size to figure out if one fell over when using large or small inputs. Here is the loop, and the data follows (my computer ran out of ram at 2^28):</p>
<pre><code>int loops = 32;
UInt64 reps = 1;
int width = 20;
Console.WriteLine("Loop#".PadRight(6) +
"MD5".PadRight(width) +
"SHA1".PadRight(width) +
"SHA1Cng".PadRight(width) +
"SHA256".PadRight(width) +
"SHA256Cng".PadRight(width));
for (int i = 0; i < loops; i++)
{
UInt64 size = (UInt64)Math.Pow((double)2, (double)i);
Console.WriteLine((i + 1).ToString().PadRight(6) +
CalculateHash(reps, size, new MD5CryptoServiceProvider()).ToString().PadRight(width) +
CalculateHash(reps, size, new SHA1CryptoServiceProvider()).ToString().PadRight(width) +
CalculateHash(reps, size, new SHA1Cng() ).ToString().PadRight(width) +
CalculateHash(reps, size, new SHA256CryptoServiceProvider()).ToString().PadRight(width) +
CalculateHash(reps, size, new SHA256Cng()).ToString().PadRight(width));
}
Loop# MD5 SHA1 SHA1Cng SHA256 SHA256Cng
1 50210 0 0 0 0
2 0 0 0 0 0
3 0 0 0 0 0
4 0 0 0 0 0
5 0 0 0 0 0
6 0 0 0 0 0
7 0 0 0 0 0
8 0 0 0 0 0
9 0 0 0 0 0
10 0 0 10042 0 0
11 0 0 0 0 0
12 0 0 0 0 0
13 0 0 0 0 0
14 0 0 0 0 0
15 10042 0 0 10042 10042
16 10042 0 0 0 0
17 0 0 0 10042 10042
18 0 10042 10042 20084 10042
19 0 10042 10042 30126 40168
20 20084 20084 20084 70294 70294
21 30126 40168 40168 140588 140588
22 60252 70294 80336 291218 281176
23 120504 140588 180756 572394 612562
24 241008 281176 361512 1144788 1215082
25 482016 572394 723024 2289576 2420122
26 953990 1134746 1456090 4538984 4830202
27 1907980 2259450 2982474 9118136 9660404
28 3805918 4508858 5804276 18336692 19581900
</code></pre>
http://stackoverflow.com/questions/535089/do-ternary-operators-increase-complexity-in-programs/535109#5351090Answer by Joe Basirico for Do ternary operators increase complexity in programs?Joe Basirico2009-02-11T01:42:20Z2009-02-11T01:42:20Z<p>I used to be in the “ternary operators make a line un-readable” camp, but in the last few years I’ve grown to like them when used in moderation. Single line ternary operators can increase readability if everybody on your team understands what’s going on. It’s a concise way of doing something without the overhead of lots of curly braces for the sake of curly braces. </p>
<p>The two cases where I don’t like them: if they go too far beyond the 120 column mark or if they are embedded in other ternary operators. If you can’t quickly, easily and readably express what you’re doing in a ternary operator. Then use the if/else equivalent.</p>
http://stackoverflow.com/questions/473998/tool-or-language-to-count-occurrances-of-errors-in-a-log-file/474022#4740224Answer by Joe Basirico for Tool or language to count occurrances of errors in a log fileJoe Basirico2009-01-23T18:49:45Z2009-01-23T18:49:45Z<p>Perl would be my first choice for the string parsing. Using a RegEx you could parse through that log file in no time. From what I can see it looks like you're dealing with a nicely computer readable file. You could use a Perl hash to do your averaging. </p>
<p>You could likely do the same thing with C# and their RegExs if you're more familiar with that, but Perl was built to do stuff like this.</p>
http://stackoverflow.com/questions/241899/how-can-you-create-an-asp-net-2-0-web-service-that-consumes-and-produces-json-obj/241916#2419161Answer by Joe Basirico for How can you create an ASP.Net 2.0 web service that consumes and produces JSON objects?Joe Basirico2008-10-28T01:02:10Z2008-10-28T01:02:10Z<p>WCF is great, but requires .net 3.5. </p>
<p>Check out this article on MSDN that describes quite a bit about JSON and asp.net from an introductory level.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb299886.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb299886.aspx</a></p>
http://stackoverflow.com/questions/235848/most-astonishing-violation-of-the-principle-of-least-astonishment/236653#2366533Answer by Joe Basirico for Most Astonishing Violation of the Principle of Least AstonishmentJoe Basirico2008-10-25T16:30:35Z2008-10-25T16:35:56Z<p>I collect "funny error messages" I think they probably apply here. I've collected them from various sources over the years, so if you know what piece of software these come from, please tell me in a comment.</p>
<p>I think one of my favorites is this one though
<a href="http://picasaweb.google.com/joebasirico/funnyerrormessages#5114174375491317826" rel="nofollow">http://picasaweb.google.com/joebasirico/funnyerrormessages#5114174375491317826</a></p>
<p><a href="http://picasaweb.google.com/joebasirico/funnyerrormessages" rel="nofollow">http://picasaweb.google.com/joebasirico/funnyerrormessages#</a></p>
http://stackoverflow.com/questions/235700/system-windows-forms-webbrowser-refresh-showing-previous-page/235707#2357071Answer by Joe Basirico for System.Windows.Forms.WebBrowser.Refresh showing previous pageJoe Basirico2008-10-25T00:51:02Z2008-10-25T00:51:02Z<p>Try adding an event handler to your code that runs when the "DocumentCompleted" event fires. Then add your refresh code in there. There are some examples of code here in MSDN. If you do it this way you won't lose any time guessing if the page has loaded, and can continue processing as soon as it is ready.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.webbrowser.documentcompleted.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.windows.forms.webbrowser.documentcompleted.aspx</a></p>
http://stackoverflow.com/questions/235650/is-there-a-concise-catalog-of-variable-naming-conventions/235702#2357022Answer by Joe Basirico for Is there a concise catalog of variable naming-conventions?Joe Basirico2008-10-25T00:45:55Z2008-10-25T00:45:55Z<p>The best naming convention set that I've seen is in the book "<a href="http://rads.stackoverflow.com/amzn/click/0735619670" rel="nofollow">Code Complete</a>" Steve McConnell has a great section in there about naming conventions and lots of examples. His examples run through a number of "best practices" for different languages, but ultimately leave it up to the developer, dev manager, or architect to decide the specific action.</p>
http://stackoverflow.com/questions/232231/public-key-email-encryption/232252#2322524Answer by Joe Basirico for public key email encryptionJoe Basirico2008-10-24T02:03:08Z2008-10-24T02:03:08Z<p>Thunderbird with Enigmail is a great free solution for what you’d like to do. I use Outlook and PGP, but I think they’re approximately the same.</p>
<p>For a detailed explanation of <a href="http://en.wikipedia.org/wiki/Public-key_cryptography" rel="nofollow">public/private key encryption</a> check out the wiki page, but I’ll try to sum up here.</p>
<p>To encrypt a message so that nobody else but the receiver (bob) can view it you encrypt the message using Bob’s public key. The public key allows you to encrypt but not to decrypt. Without a public key you cannot encrypt a message, so there is no worry about encrypting a message that nobody can decrypt.</p>
<p>When Bob receives your message he will use his private key to decrypt the message. He keeps this private key very secret so that nobody else can decrypt his mail.
To send an encrypted message back Bob will use _your public key (which you have sent him before) to encrypt a message. Then he will send it to you and you can decrypt it using your private key.</p>
<p>That said the solution that I use for my mail is to use opportunistic encryption, so if I have the public key of any recipient of my mail message it gets automatically encrypted, if I do not, it doesn’t. This doesn’t protect me from accidentally sending out a secret message to a person that I don’t have a public key for however. For that I have to be very careful to always verify I have all the keys I need to have for secret messages.</p>
<p>In order to do this I have an e-mail rule setup that says that if I have the word [PGP] in the subject line it will not allow the message to be sent unencrypted. If I try to it will throw an error and warn me of my mistake.</p>
<p>The <a href="http://enigmail.mozdev.org/documentation/quickstart-ch1.php#id2532985" rel="nofollow">enigmail</a> site has a good description on how to setup thunderbird to encrypt your messages.</p>
http://stackoverflow.com/questions/232099/css-z-index-question/232130#2321301Answer by Joe Basirico for css z-index question?Joe Basirico2008-10-24T00:52:53Z2008-10-24T00:52:53Z<p>add z-index: 1 to your headerR class in the CSS.</p>
http://stackoverflow.com/questions/231951/whats-the-next-thing-on-your-list-to-learn/231978#2319781Answer by Joe Basirico for What's the next thing on your list to learn?Joe Basirico2008-10-23T23:38:04Z2008-10-23T23:38:04Z<ul>
<li>WCF, WPF and linq</li>
<li>jquery</li>
<li>other neato .net 3.5 features</li>
</ul>
http://stackoverflow.com/questions/231943/what-is-the-most-disruptive-thing-in-a-developers-day/231953#23195349Answer by Joe Basirico for What is the most disruptive thing in a developer's dayJoe Basirico2008-10-23T23:29:42Z2008-10-23T23:29:42Z<p>Checking back to StackOverflow every 15 minutes to see if your rep has gone up?</p>
<p>Seriously I've found that e-mail is the most distracting thing in my day. I used to have a policy that I'd check mail once in the beginning of the day, then again after lunch. Now that I'm a manager I can't do that as much.</p>
http://stackoverflow.com/questions/231902/what-language-platform-to-choose-for-a-new-web-application/231934#2319340Answer by Joe Basirico for What language/platform to choose for a new web application?Joe Basirico2008-10-23T23:23:39Z2008-10-23T23:23:39Z<p>I look for a solid API that I can leverage, to get me up and running quickly. I want to use something that has good performance, can scale, is secure, and something that I know I can get support on if I run into trouble. </p>
<p>Lately I've been developing most my applications in ASP.NET C#. It's a well supported language and framework that is fast and solid.</p>
<p>If you want something quick and dirty I agree with Alexander Django is cool. Ruby on rails is nice too though.</p>
http://stackoverflow.com/questions/231903/how-much-to-log-within-an-application-how-much-is-too-much/231926#2319260Answer by Joe Basirico for How much to log within an application??? How much is too much...Joe Basirico2008-10-23T23:20:49Z2008-10-23T23:20:49Z<p>From a security standpoint logging can be an interesting topic. I wrote a <a href="http://blogs.csoonline.com/when_ddos_attacks_become_personal" rel="nofollow">blog entry</a> on CSO Online a while back in the wake of a couple of DDOS attacks. This is the section where I talked about logging, hope it helps a bit:</p>
<blockquote>
<p>Techniques such as log throttling,
write only logs, and using log servers
can strengthen the retroactive
security of a system. After a possible
DDoS attack has occurred the company
will no doubt want to investigate the
attack. An investigation is only
possible if the correct level of
logging has been used. Too much and
the logs will quickly become filled,
which could be the reason for the DoS
in the first place. Too little and the
logs will be worthless because they
don’t contain enough information to
catch the criminal.</p>
</blockquote>
http://stackoverflow.com/questions/231746/how-do-i-monitor-text-file-changes-with-c-difficulty-no-net/231872#2318721Answer by Joe Basirico for How do I Monitor Text File Changes with C++? Difficulty: No .NETJoe Basirico2008-10-23T22:52:53Z2008-10-23T22:52:53Z<p>This sounds a lot like what FileMon, from sysinternals (now MS) does. They do this by creating a virtual device driver that is dynamically loaded. they have a good description of how it works <a href="http://technet.microsoft.com/en-us/sysinternals/bb896642.aspx" rel="nofollow">here</a>:</p>
<blockquote>
<p>How FileMon Works</p>
<p>For the Windows 9x driver, the heart
of FileMon is in the virtual device
driver, Filevxd.vxd. It is dynamically
loaded, and in its initialization it
installs a file system filter via the
VxD service,
IFSMGR_InstallFileSystemApiHook, to
insert itself onto the call chain of
all file system requests. On Windows
NT the heart of FileMon is a file
system driver that creates and
attaches filter device objects to
target file system device objects so
that FileMon will see all IRPs and
FastIO requests directed at drives.
When FileMon sees an open, create or
close call, it updates an internal
hash table that serves as the mapping
between internal file handles and file
path names. Whenever it sees calls
that are handle based, it looks up the
handle in the hash table to obtain the
full name for display. If a
handle-based access references a file
opened before FileMon started, FileMon
will fail to find the mapping in its
hash table and will simply present the
handle's value instead.</p>
</blockquote>
http://stackoverflow.com/questions/226905/does-the-internet-explorer-web-developer-toolbar-work-with-popups/227047#2270470Answer by Joe Basirico for Does the Internet explorer web developer toolbar work with popups?Joe Basirico2008-10-22T18:38:28Z2008-10-23T22:40:17Z<p>I just tried this on my machine, and it seems to be working. Make sure you're using the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=e59c3964-672d-4511-bb3e-2d5e1db91038&displaylang=en" rel="nofollow">latest version</a></p>
<p>Otherwise update your question and I'll try to help out again.</p>
<p>update: Make sure the toolbar is docked to your parent window before the popup fires. When I have the toolbar docked (using the little dock icon at the top right of the window) it seems to follow to the new popup.</p>
http://stackoverflow.com/questions/231773/better-to-develop-cross-browser-code-up-front-or-develop-for-one-browser-and-go-b/231802#2318028Answer by Joe Basirico for Better to develop cross-browser code up front or develop for one browser and go back and make it work in the others later?Joe Basirico2008-10-23T22:28:59Z2008-10-23T22:28:59Z<p>I’ve found that if you get too deep into developing a website without looking at other browsers you’ll quickly get to a place that is too much of a headache to debug. I consistently open my web pages in all the browsers I care about. </p>
<p>I strongly suggest you verify all browsers each time you make a large change to the site.</p>
http://stackoverflow.com/questions/230584/where-are-variables-in-c-stored/230604#2306040Answer by Joe Basirico for Where are variables in C++ stored?Joe Basirico2008-10-23T17:21:07Z2008-10-23T17:21:07Z<p>depending on how they are declared, they will either be stored in the "<a href="http://en.wikipedia.org/wiki/Heap_(data_structure)" rel="nofollow">heap</a>" or the "<a href="http://en.wikipedia.org/wiki/Stack_(data_structure)" rel="nofollow">stack</a>" </p>
<p>The heap is a <a href="http://en.wikipedia.org/wiki/Dynamic_memory_allocation" rel="nofollow">dynamic</a> data structure that the application can use. </p>
<p>When the application uses data it has to be moved to the CPU's registers right before they are consumed, however this is very volatile and temporary storage.</p>
http://stackoverflow.com/questions/228673/spell-checker-icon/228692#2286921Answer by Joe Basirico for Spell Checker IconJoe Basirico2008-10-23T06:04:07Z2008-10-23T06:04:07Z<p>It's likely in one of the common libraries. Start looking through the dlls found in C:\Program Files\Microsoft Office\Office12, I'd start with something tell-tale like MSOSTYLE.dll</p>
<p>Be careful though, many of those icons are copyrighted, so be sure to verify you can use them.</p>
<p>There are lots of icon sets out there, so there may be another option that is not copyrighted that you can use.</p>
http://stackoverflow.com/questions/227731/int128-in-net/227793#2277931Answer by Joe Basirico for Int128 in .Net?Joe Basirico2008-10-22T22:38:54Z2008-10-22T22:38:54Z<p>Here's an implementation of big integer from .net matters.</p>
<p><a href="http://msdn.microsoft.com/en-us/magazine/cc163696.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc163696.aspx</a></p>
http://stackoverflow.com/questions/226353/best-website-payment-processor/226782#2267820Answer by Joe Basirico for Best website payment processor?Joe Basirico2008-10-22T17:30:37Z2008-10-22T17:30:37Z<p>On <a href="http://teammentor.securityinnovation.com" rel="nofollow">TeamMentor</a> we use <a href="https://www.paypal.com/us/cgi-bin/webscr?cmd=_payflow-pro-overview-outside" rel="nofollow">Payflow Pro</a> and have had a good experience with it. The SDK is straightforward and easy to use especially if all you need is a quick "buy now" option. They support international processing, although no paypal processing outside of the US.</p>
http://stackoverflow.com/questions/226695/need-a-good-way-to-share-iphone-source-code-on-the-web/226738#2267380Answer by Joe Basirico for Need a good way to share iPhone source code on the Web.Joe Basirico2008-10-22T17:12:30Z2008-10-22T17:12:30Z<p>There’s a good article about this on CodeProject here: <a href="http://www.codeproject.com/KB/scripting/highlight.aspx" rel="nofollow">http://www.codeproject.com/KB/scripting/highlight.aspx</a></p>
<p>But you may want to build your own simple solution since you’ll have to modify the CodeProject Project to support ObjectiveC instead of JSCript, VBScript, C, XML and C#. For that I’d model my solution after Notepad++ where they simply understand basic commenting structure and highlight the keywords of a source file. I’ve found that for 90% of programming having keywords highlighted, proper tabbing and commenting is enough to get the point across.</p>
http://stackoverflow.com/questions/199692/inherit-css-properties/199724#1997240Answer by Joe Basirico for Inherit css propertiesJoe Basirico2008-10-14T01:34:43Z2008-10-14T01:34:43Z<p>CSS will automatically inherit from the parent style. For example, if you say in your body style that all text should be #EEE and your background should be #000 then all text, whether it’s in a div or a span will always be #EEE. </p>
<p>There has been quite a bit of talk about adding inheritance the way you describe in CSS3, but that spec isn’t out yet, so right now we’re stuck repeating ourselves quite a bit.</p>
http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199698#1996981Answer by Joe Basirico for Most Influential CS Class You've TakenJoe Basirico2008-10-14T01:20:14Z2008-10-14T01:20:14Z<p>Interestingly I think CS 101 was the most influential for me. Before then I thought I liked Computer Science, but after that I absolutely knew that it was what I wanted to do. My professor “Rocky Ross” as an absolute pleasure to have around, he was one of the more established professors at my university, yet loved teaching 101 and inspiring his students. I think the difference between an average and a great 101 class can be life changing for a lot of younger students.</p>
<p>After that, I had Rocky for my compilers class, which was the first time I had to develop a large application over an extended period of time with a team. It also brought together all the little pieces of computer science that I had learned until then. </p>
http://stackoverflow.com/questions/196608/harder-better-faster-stronger-techniques-for-an-image-based-captcha/196623#1966230Answer by Joe Basirico for Harder, Better, Faster, Stronger... Techniques for an image-based CAPTCHA?Joe Basirico2008-10-13T03:15:17Z2008-10-13T03:15:17Z<p>Algorithms that try to break captcha are pattern matchers that work by a few different ways: scaling and skewing the symbols that they already know about, finding and tracing edges, and counting interior holes to help. If you can break the letter up into pieces, vary the letter quality, or add strong lines or “scratches” along the letters these techniques will help. However all of this is fairly moot considering we have <a href="http://recaptcha.net/" rel="nofollow">recaptcha</a> for this purpose and it’s a wonderful third party app for this. Additionally captcha will help the security of your site, but will not stop those who are truly enticed.</p>
http://stackoverflow.com/questions/196567/how-do-i-make-li-with-block-elements-sit-beside-each-other/196571#1965713Answer by Joe Basirico for How do I make <li> with block elements sit beside each other?Joe Basirico2008-10-13T02:39:25Z2008-10-13T03:05:49Z<p>In your <code><UL></code> tag use the css attribute "list-style:none;" and in the <code><li></code> tag use the css attribute "display:inline;" you'll have to play around with the padding and margin to make it look good, but those two attributes will get you on your way. For a better example see my Non-Profit website: <a href="http://technicallylearning.org" rel="nofollow">Technically Learning</a></p>
http://stackoverflow.com/questions/1844807/what-does-mean/1844863#1844863Comment by Joe Basirico on What does /([^.]*)\.(.*)/ mean?Joe Basirico2009-12-04T06:18:00Z2009-12-04T06:18:00Zis this a JavaScript specific syntax? What's the difference between ^. and \. ?http://stackoverflow.com/questions/1768663/in-asp-net-i-just-want-to-position-an-adrotator-in-the-right-top-corner-of-my-we/1768703#1768703Comment by Joe Basirico on In ASP.NET, I just want to position an Adrotator in the right top corner of my webpage.how?Joe Basirico2009-11-20T06:50:21Z2009-11-20T06:50:21Zno problem, don't forget to upvote or select as the answer if it works for you :)http://stackoverflow.com/questions/1768633/how-can-i-add-mouse-click-event-to-web-textbox-in-c/1768671#1768671Comment by Joe Basirico on How can I add mouse click event to Web TextBox in c#Joe Basirico2009-11-20T06:35:19Z2009-11-20T06:35:19Zthanks cxfx, I've updated my answer, you're right.http://stackoverflow.com/questions/196512/is-there-a-sorted-collection-type-in-net/196549#196549Comment by Joe Basirico on Is there a sorted collection type in .NET?Joe Basirico2009-02-27T21:23:22Z2009-02-27T21:23:22ZCool! Thanks for the tip.http://stackoverflow.com/questions/507471/cool-idea-for-weekend-projectComment by Joe Basirico on Cool Idea for Weekend Project.Joe Basirico2009-02-03T16:06:47Z2009-02-03T16:06:47ZI wouldn't say this is "blatantly offensive" but it's not in the spirit of SO. I like the question, but in general SO is all about getting the answers you need for questions directly related to programming.