User alexp206 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T22:54:41Zhttp://stackoverflow.com/feeds/user/666http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/4923/wrapping-lists-into-columns4Wrapping lists into columnsalexp2062008-08-07T16:30:45Z2009-12-21T18:49:11Z
<p>I'm using ClodFusion(sic) to populate a template that includes HTML lists (<ul>'s).</p>
<p>Most of these aren't that long, but a few have ridiculously long lengths and could really stand to be in 2-3 columns.</p>
<p>Is there an HTML, ColdFusion or perhaps JavaScript (I have jQuery available) way to do this easily? It's not worth some over-complicated heavy weight solution to save some scrolling.</p>
http://stackoverflow.com/questions/852696/what-is-the-best-cross-browser-html-wysiwyg-editor/852767#8527670Answer by alexp206 for what is the best cross browser html WYSIWYG editor ? alexp2062009-05-12T13:23:30Z2009-05-12T13:23:30Z<p>A few years ago I found <a href="http://www.net2.com/nvu/" rel="nofollow">Nvu</a> to be the best one out there. They stopped updating for a while, but it looks like they might be back.</p>
http://stackoverflow.com/questions/253689/switching-div-background-image-with-jquery/253717#2537175Answer by alexp206 for Switching DIV Background Image With jQueryalexp2062008-10-31T14:32:48Z2008-10-31T14:32:48Z<p>One way to do this is to put both images in the HTML, inside a SPAN or DIV, you can hide the default either with CSS, or with JS on page load. Then you can toggle on click. Here is a similar example I am using to put left/down icons on a list:</p>
<pre><code>$(document).ready(function(){
$(".button").click(function () {
$(this).children(".arrow").toggle();
return false;
});
});
<a href="#" class="button">
<span class="arrow">
<img src="/images/icons/left.png" alt="+" />
</span>
<span class="arrow" style="display: none;">
<img src="/images/down.png" alt="-" />
</span>
</a>
</code></pre>
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/248751#2487516Answer by alexp206 for What real life bad habits has programming given you?alexp2062008-10-29T23:09:19Z2008-10-29T23:09:19Z<p>I never say "oh" when I mean "zero" when I have to say a number, even if it obvious that it couldn't be the letter.</p>
http://stackoverflow.com/questions/247743/evaluate-a-css-expression-only-in-ie7-w-out-using-conditional-comments/247907#2479070Answer by alexp206 for Evaluate a css expression only in IE<7 w/out using conditional comments?alexp2062008-10-29T18:35:18Z2008-10-29T18:35:18Z<p>This answer may be what you are looking for:
<a href="http://stackoverflow.com/questions/213309/in-line-css-ie-hack#213458">http://stackoverflow.com/questions/213309/in-line-css-ie-hack#213458</a></p>
http://stackoverflow.com/questions/218883/html-links-and-usability/219004#2190040Answer by alexp206 for HTML Links and Usabilityalexp2062008-10-20T16:14:37Z2008-10-20T16:14:37Z<p>I agree, I don't think that underline should be used for anything that is not a link.</p>
<p>There are certain things that need not be underlined. Page navigation, items in menus, prev/next links, especially if they have arrows are just some examples. I would still suggest that giving them an underline on hover be mandatory.</p>
http://stackoverflow.com/questions/218219/how-to-change-characters-typed-in-firefox/218734#2187340Answer by alexp206 for How to change characters typed in Firefoxalexp2062008-10-20T15:00:00Z2008-10-20T15:00:00Z<p>Does this really need to be done on the fly? If you are collecting the information to be posted to a form or submitted to a database, would it not be better to modify the data once it was submitted? That way the user never sees the confusing change.</p>
http://stackoverflow.com/questions/213309/in-line-css-ie-hack/213351#2133512Answer by alexp206 for In-line CSS IE hackalexp2062008-10-17T18:44:29Z2008-10-17T18:52:32Z<p>Without arguing for or against CSS hacks, personally if I needed to do something like that, I would prefer to use a conditional comment:</p>
<pre><code><!--[if lt IE 7]>
<style>
#blah {
padding: 5px;
margin: 5px;
width: 30px;
}
</style>
<![endif]-->
</code></pre>
http://stackoverflow.com/questions/212860/usability-hints-for-building-an-adult-web-site/213203#2132032Answer by alexp206 for Usability hints for building an adult web site?alexp2062008-10-17T18:09:17Z2008-10-17T18:09:17Z<p>I would say that keyboard based controls are almost a must. It's much easier to scroll through a slide show with the arrow keys than it is a mouse.</p>
<p>Also, allow the user to choose the size of the pictures. You can try and pick the right size automatically, but allow me to override your decision.</p>
<p>One pet peeve of mine, and it doesn't only apply to adult sites, but they often are guilty of this, is huge images/banners with things that look like they should be buttons but aren't, and vice-versa.</p>
http://stackoverflow.com/questions/167512/pros-and-cons-of-developing-on-a-vm-on-a-pc/168137#1681372Answer by alexp206 for Pros and Cons of Developing on a VM on a PCalexp2062008-10-03T18:06:35Z2008-10-03T18:06:35Z<p>Another advantage of a VM is having a clean installed base. I use my desktop and laptop for lots of things aside from development. You never know when a piece of software you install is going to conflict, or if the little tweaks and what not you play around with are going to trash your OS. Reinstalling/configuring all your tools so they are exactly the way you want them can take quite some time. If you have a backup of your Development VM Image you can mess up your PC as much as you want but still be able to code without downtime. It also allows you to run Win/Visual Studio/Etc on a box that you would otherwise prefer Linux or MacOS on.</p>
<p>You can also make multiple copies of the same Image and use each one for a separate project.</p>
<p>Being able to transition between a laptop/desktop/server/remote connection, and always be in the same environment is also very helpful.</p>
http://stackoverflow.com/questions/132798/what-should-every-programmer-know/137106#13710622Answer by alexp206 for What should every programmer know?alexp2062008-09-26T00:28:24Z2008-09-26T00:28:24Z<ul>
<li>RegEx</li>
</ul>
<p>It was mentioned before but I think it deserves it's own answer.</p>
http://stackoverflow.com/questions/16458/dynamic-alphabetical-navigation2Dynamic Alphabetical Navigationalexp2062008-08-19T15:57:33Z2008-09-26T00:25:36Z
<p>I'm using ColdFusion to return a result set from a SQL database and turn it into a list. I need some way to generate an Alphabetical Navigation bar for that list. I have ColdFusion and the jQuery library available. I'm looking to generate something like this:</p>
<p>A | B | C | ... </p>
<ul>
<li>A</li>
<li>A </li>
<li>B</li>
<li>B</li>
<li>B</li>
<li>C</li>
<li>D</li>
</ul>
<p>Where clicking on one of the letters drops you down the page to the first item for that letter. Not all 26 letters of the alphabet are necessarily in use.</p>
http://stackoverflow.com/questions/16458/dynamic-alphabetical-navigation/137090#1370900Answer by alexp206 for Dynamic Alphabetical Navigationalexp2062008-09-26T00:25:36Z2008-09-26T00:25:36Z<p>So, there were plenty of good suggestions, but none did exactly what I wanted. Fortunately I was able to use them to figure out what I really wanted to do. The only thing the following doesn't do is print the last few unused letters (if there are any). That's why I have that cfif statement checking for 'W' as that's the last letter I use, otherwise it should check for Z.</p>
<pre><code><cfquery datasource="#application.dsn#" name="qTitles">
SELECT title, url, substr(titles,1,1) as indexLetter
FROM list
ORDER BY indexLetter,title
</cfquery>
<cfset linkLetter = "#asc('A')#">
<cfoutput query="titles" group="indexletter">
<cfif chr(linkLetter) eq #qTitles.indexletter#>
<a href="###ucase(qTitles.indexletter)#">#ucase(qTitles.indexletter)#</a>
<cfif asc('W') neq linkLetter>|</cfif>
<cfset linkLetter = ++LinkLetter>
<cfelse>
<cfscript>
while(chr(linkLetter) != qTitles.indexletter)
{
WriteOutput(" " & chr(linkLetter) & " ");
IF(linkLetter != asc('W')){WriteOutput("|");};
++LinkLetter;
}
</cfscript>
<a href="###ucase(qTitles.indexletter)#">#ucase(qTitles.indexletter)#</a>
<cfif asc('W') neq linkLetter>|</cfif>
<cfset linkLetter = ++LinkLetter>
</cfif>
</cfoutput>
<ul>
<cfset currentLetter = "">
<cfoutput query="qTitles" group="title">
<cfif currentLetter neq #qTitles.indexletter#>
<li><a name="#ucase(qTitles.indexletter)#">#ucase(qTitles.indexletter)#</a></li>
</cfif>
<cfset currentLetter = #qTitles.indexletter#>
<li><a href="#url#">#title#</a></li>
</cfoutput>
</ul>
</code></pre>
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/118063#1180630Answer by alexp206 for What was your first home computer?alexp2062008-09-22T22:44:17Z2008-09-22T22:44:17Z<p>Used a TI-99 for years, but in 1990 we made a leap into the future when we got our 12mhz 1MB of RAM 286 from <a href="http://en.wikipedia.org/wiki/DAK_Industries" rel="nofollow">DAK</a>. </p>
http://stackoverflow.com/questions/63454/what-is-the-single-best-javascript-lightbox-script-currently-available/63558#635580Answer by alexp206 for What is the single best javascript lightbox script currently available?alexp2062008-09-15T14:47:26Z2008-09-15T14:47:26Z<p>I'm quite happy with <a href="http://fancy.klade.lv/" rel="nofollow">FancyBox</a>. It's a jQuery plugin, it' works with IE6 if you use the <a href="http://jquery.andreaseberhard.de/pngFix/" rel="nofollow">jQuery.pngFix.js</a> which I believe it includes. It will allow HTML/Embedded content, I can't be sure of the rest of your requirements.</p>
http://stackoverflow.com/questions/60740/which-jquery-plugin-should-be-used-to-fix-the-ie6-png-transparency-issue/60756#607563Answer by alexp206 for Which jQuery plugin should be used to fix the IE6 PNG transparency issue?alexp2062008-09-13T18:33:06Z2008-09-13T18:33:06Z<p>I'm using <a href="http://jquery.andreaseberhard.de/pngFix/" rel="nofollow">jquery.pngFix.js</a>. I don't know if it's officially sanctioned or not, I do know that it works. I chose it because it was the plugin included with FancyBox, no other reason. </p>
http://stackoverflow.com/questions/20107/yui-reset-css-makes-strongemthis-not-work-em-strong/20162#201623Answer by alexp206 for YUI Reset CSS Makes <strong><em>this not work</em></strong>alexp2062008-08-21T14:58:44Z2008-08-21T14:58:44Z<p>I had a similar problem when I added the YUI Reset to the top of my stock CSS file. I found that the best thing for me was to simply remove all of the</p>
<blockquote>
<p>font-weight: normal;</p>
</blockquote>
<p>declarations from the YUI Reset. I haven't noticed that this has affected anything "cross-browser."</p>
<p>All my declarations were after the YUI Reset so I'm not sure why they weren't taking affect.</p>
http://stackoverflow.com/questions/9977/what-do-you-look-for-from-a-user-group/10045#100454Answer by alexp206 for What do you look for from a User Group?alexp2062008-08-13T16:30:28Z2008-08-13T16:30:28Z<p>It's true that some of the talks out there are very rudimentary, unfortunately some times the bulk of your crowd may need that. I consider myself a novice in a lot of fields, but I've attend talks that I thought were beneath me and still people were asking very basic questions. Perhaps it would be worth having a bi-monthly user group, one week for entry level and one week for advanced. It doesn't necessarily have to mean twice the work if you can get someone to help you coordinate a lot of the work will overlap. On the other hand you might just need to feel out the members of the group and see what their average skill level is and play to that.</p>
http://stackoverflow.com/questions/9951/what-color-scheme-do-you-use-for-programming/10031#100311Answer by alexp206 for What color scheme do you use for programming?alexp2062008-08-13T16:23:49Z2008-08-13T16:23:49Z<p>Vibrant Ink is a very nice color scheme. I spend most of my time these days in Notepad++ and the <a href="http://3276.hu/project/port_of_ruby_blue.html" rel="nofollow">Ruby Blue Port</a> was the only one I can find. It's a good thing I'm quite fond of it. There is a similar <a href="http://blowmage.com/2007/10/10/ruby-blue-visual-studio-theme" rel="nofollow">Visual Studio Port</a>.</p>
http://stackoverflow.com/questions/6611/ie6-to-support-or-not-to-support/6653#66530Answer by alexp206 for IE6: To support or not to support.alexp2062008-08-09T06:19:18Z2008-08-09T06:19:18Z<p>I think we're stuck with IE for some time. Looking over my stats, about 80% of our traffic comes from IE, only about 20% of that is IE6, but our stats are heavily biased by our intranet running IE7.</p>
<p>That being said I still test in IE6. I won't jump through hoops if something looks a different than it should but I do make sure that all the core functions of the site work.</p>http://stackoverflow.com/questions/4923/wrapping-lists-into-columns/5156#51564Answer by alexp206 for Wrapping lists into columnsalexp2062008-08-07T18:59:58Z2008-08-09T06:00:06Z<p>So I dug up this article from A List Apart <a href="http://www.alistapart.com/articles/multicolumnlists" rel="nofollow">CSS Swag: Multi-Column Lists</a>. I ended up using the first solution, it's not the best but the others require either using complex HTML that can't be generated dynamically, or creating a lot of custom classes, which could be done but would require loads of in-line styling and possibly a huge page.</p>
<p>Other solutions are still welcome though.</p>http://stackoverflow.com/questions/4923/wrapping-lists-into-columns/6647#66470Answer by alexp206 for Wrapping lists into columnsalexp2062008-08-09T05:49:34Z2008-08-09T05:49:34Z<p>I wish Safari and Firefox were my biggest concern, unfortunately our intranet is all IE but you did bring something to my attention that I was not aware of, thanks!</p>http://stackoverflow.com/questions/4880/is-a-confirm-email-input-good-practice-when-user-changes-email-address/4931#49316Answer by alexp206 for Is a "Confirm Email" input good practice when user changes email address?alexp2062008-08-07T16:36:19Z2008-08-07T16:36:19Z<p>I've seen plenty of people type their email address wrong and I've also looked through user databases full of invalid email address.</p>
<p>The way I see it you've got two options. Use a second box to confirm the input, or send an authentication/activation email.</p>
<p>Both are annoyances so you get to choose which you think will annoy your users less.</p>
<p>Most would argue that having to find an email and click on a link is more annoying, but it avoids the copy/paste a bad address issue, and it allows you to do things like delete or roll back users if they don't activate after say 48 hours.</p>http://stackoverflow.com/questions/391523/what-are-some-good-free-programming-books/4892#489211Answer by alexp206 for What are some good free programming books?alexp2062008-08-07T16:07:47Z2008-08-07T16:07:47Z<p>This may sound silly, but have you tried your local library? I work in a college library and we have access to a lot of ebooks through the Safari service (O'Reilly, Prentice Hall, Addison-Wesley, Microsoft Press, Sams and Que just to name a few). Many college libraries especially community colleges allow members of the community to become patrons, whether or not they allow off-campus access to online resources for these patrons varies school to school.</p>http://stackoverflow.com/questions/687/keyboard-for-programmers/4887#48870Answer by alexp206 for Keyboard for programmersalexp2062008-08-07T16:01:38Z2008-08-07T16:01:38Z<p>I've got a DAS Keyboard and an old IBM (not the really old M, slightly newer but still very tactile) The DAS is much louder than the IBM and the keys aren't quite as heavy on the DAS. That being said, I much prefer typing on DAS, it seems to me that I can get going faster than I can actually type on the DAS, so I guess I need to increase my skill. </p>
<p>That being said I use a crappy Gateway keyboard at work and it treats me ok. One of these days I'll get around to replacing it, but for the time being it gets the job done with out putting me in pain. I steering away from the DAS because it's so noisy I think it might offend my co-workers.</p>
<p>I did have an MX5000 but I found the keys too mushy and every once in a while it would lag behind what I was typing by almost a full second. I think it had something to do with the Bluetooth stack but still, unacceptable.</p>http://stackoverflow.com/questions/391523/what-are-some-good-free-programming-books/4892#4892Comment by alexp206 on What are some good free programming books?alexp2062009-02-24T20:30:03Z2009-02-24T20:30:03ZI think you will find that you have better luck at a University library, especially one that has a decent CS program.http://stackoverflow.com/questions/520640/googles-imageless-buttons/534048#534048Comment by alexp206 on Google's Imageless Buttons...alexp2062009-02-11T19:14:23Z2009-02-11T19:14:23ZI can see this being useful in an interface that you want to be skinable since it may be more flexible. However for most applications I imagine it will be far more trouble than it's worth. At what point does downloading a button once and caching it outweigh adding possibly hundreds of lines of code?http://stackoverflow.com/questions/391523/what-are-some-good-free-programming-books/4892#4892Comment by alexp206 on What are some good free programming books?alexp2062009-01-12T17:08:18Z2009-01-12T17:08:18ZAll of our services require you to be signed in to read the book. It's web-only and cannot be downloaded/stored/cached. The Safari service doesn't care how many people read a book at once, however the NetLibrary service limits it to one viewer at a time.http://stackoverflow.com/questions/264981/is-the-das-keyboard-worth-it/265204#265204Comment by alexp206 on is the das keyboard worth it?alexp2062008-11-10T15:59:02Z2008-11-10T15:59:02ZI love my DAS Keyboard that I use at home, and I'm always very tempted to get one for work but I'm almost certain it would piss off my co-workers. If only I could find something with that feel that didn't make so much noise...http://stackoverflow.com/questions/270152/looking-for-a-simple-html-text-editor-for-windows/270176#270176Comment by alexp206 on Looking for a simple HTML text editor for Windowsalexp2062008-11-06T21:09:45Z2008-11-06T21:09:45ZNotepad++ is where I spend 90% of my professional life...http://stackoverflow.com/questions/259091/how-can-i-scrape-an-html-table-to-csv/259100#259100Comment by alexp206 on How can I scrape an HTML table to CSV?alexp2062008-11-03T16:22:58Z2008-11-03T16:22:58ZThis works with IE, but I don't believe it works with FF, even with Paste Special, I believe it just dumps everything into the first cell.http://stackoverflow.com/questions/240468/worst-muscle-memory-keyboard-shortcut/240479#240479Comment by alexp206 on Worst "muscle memory" keyboard shortcut?alexp2062008-10-27T17:21:11Z2008-10-27T17:21:11Z7GB in the recycle bin and no space left on the HDD! But then again I still usually use Shift-Deletehttp://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187162#187162Comment by alexp206 on What is the single task in your development activity you would like to see automated?alexp2062008-10-09T13:35:04Z2008-10-09T13:35:04ZVirtual Machines!http://stackoverflow.com/questions/53132/mouse-for-programmer/53250#53250Comment by alexp206 on Mouse for programmeralexp2062008-10-09T00:37:34Z2008-10-09T00:37:34ZThat's what I'm using right now, though I have issues with the middle click button.http://stackoverflow.com/questions/132798/what-should-every-programmer-know/137106#137106Comment by alexp206 on What should every programmer know?alexp2062008-09-26T00:29:38Z2008-09-26T00:29:38ZI run into uses for it more and more, and I pick up pieces here and there, but I'm still not even an amateur. http://stackoverflow.com/questions/16458/dynamic-alphabetical-navigation/16555#16555Comment by alexp206 on Dynamic Alphabetical Navigationalexp2062008-09-16T19:00:18Z2008-09-16T19:00:18ZThis was very helpful in finding the ultimate answer, unfortunately it didn't deactivate letters that were not in use. I've posted my ultimate solution, but can't figure out how to make it a community answer.http://stackoverflow.com/questions/16458/dynamic-alphabetical-navigation/67091#67091Comment by alexp206 on Dynamic Alphabetical Navigationalexp2062008-09-16T18:43:32Z2008-09-16T18:43:32ZThe only trouble with this is it doesn't print unused letters. It does only print the letters that are used, which is the other extreme from where I started.