User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T16:58:05Zhttp://stackoverflow.com/feeds/user/65465http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/656981/what-software-for-your-own-personal-use-did-you-write/657684#6576842Answer by destrado08 for What software for your own personal use did you write?destrado082009-03-18T10:20:42Z2009-11-11T19:15:25Z<p>I wrote a one-pager web application using PHP and jQuery UI to load batches of images from a subdirectory and display as stacks using CSS on an interface where I can drag, position, and clear them. </p>
<p>I use these images as reference for when I am drawing. I keep it on my local <a href="http://en.wikipedia.org/wiki/XAMPP" rel="nofollow">XAMPP</a> install and bookmarked it with <a href="http://en.wikipedia.org/wiki/Mozilla%5FPrism" rel="nofollow">Prism</a> as an application so it opens in its own window. I call the application Corkboard and find it way more useful than Windows Preview or any other application since they don't allow seeing full-resolution versions of multiple images.</p>
http://stackoverflow.com/questions/278632/what-is-your-preferred-pastime-programming-project3What is your preferred pastime programming project?destrado082008-11-10T17:49:52Z2009-10-23T17:13:17Z
<p>By pastime programming project, I refer to any programming you do that's in your spare time and not work-related per se, although what is learned can be applied to work. I like using <a href="http://processing.org" rel="nofollow">Processing</a> to create generative illustrations. I do front-end web development for my work, and as you may have guessed, find it far less interesting.</p>
<p>I am interested to see how people's own programming agendas differ from their professional ones.</p>
<p>EDIT: not an exact duplication, but see also:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project">http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project</a></li>
<li><a href="http://stackoverflow.com/questions/201189/what-do-you-do-to-keep-learning">http://stackoverflow.com/questions/201189/what-do-you-do-to-keep-learning</a></li>
<li><a href="http://stackoverflow.com/questions/190191/favorite-personal-projects">http://stackoverflow.com/questions/190191/favorite-personal-projects</a></li>
<li><a href="http://stackoverflow.com/questions/15747/what-are-your-favorite-learning-projects-and-why">http://stackoverflow.com/questions/15747/what-are-your-favorite-learning-projects-and-why</a></li>
<li><a href="http://stackoverflow.com/questions/102310/pet-projects-should-we-each-have-one">http://stackoverflow.com/questions/102310/pet-projects-should-we-each-have-one</a></li>
</ul>
http://stackoverflow.com/questions/593449/having-problems-with-grabbing-image-dimensions-with-jquery/694015#6940150Answer by destrado08 for Having problems with grabbing image dimensions with jQuerydestrado082009-03-29T02:29:42Z2009-03-29T02:29:42Z<p><a href="http://stackoverflow.com/questions/318630/get-real-image-width-and-height-with-javascript-in-safari-chrome">http://stackoverflow.com/questions/318630/get-real-image-width-and-height-with-javascript-in-safari-chrome</a></p>
http://stackoverflow.com/questions/327382/what-is-a-good-css-strategy/671481#6714810Answer by destrado08 for What is a good CSS strategy?destrado082009-03-22T19:22:10Z2009-03-22T19:22:10Z<p>My solution, amidst plenty:</p>
<ul>
<li><strong>base.css / reset.css</strong>: your foundation {base layout, type, color} -- 100% reusability</li>
<li><strong>helper.css</strong>: basic layout rules for modules as well as 'utility classes' {grid variations, forms, tables, etc} -- 90+% reusability</li>
<li><strong>module.css</strong>: complex layout rules for modules {semantic modules like .post or .comment} - 75% reusability</li>
<li><strong>layout.css</strong>: template-based rules {#hd, #bd, #ft, #homePage, etc.}- almost no reusability</li>
<li><strong>color.css</strong>: all color rules, combined - 50% reusability</li>
<li><strong>type.css</strong>: all type rules, combined - 75% reusability (text styling has less variations)</li>
<li>this separation also allows mobile and print versions for the layout sheets, all controlled by @import via the stylesheet I link to the html.</li>
</ul>
<p>I am using this for a medium-sized site. For extra organization, I keep each sheet sectioned basically the same {wrapper, general, unique, etc}. I also tag my selectors and properties, as well as indent them in order of dependency inside the same selector group, so I know what rules I am referencing or extending. This framework allows nearly infinite expansion while keeping things organized, understandable, and reusable. I've had to refactor a 7000+ line master.css file a month ago, so this is a new system I am trying out. I've found that 100% content-semantic CSS isn't as scalable and easy to understand as a semantic/layout hybrid, since that's what CSS is used for anyway.</p>
http://stackoverflow.com/questions/315845/should-i-avoid-using-text-align-justify/657528#6575280Answer by destrado08 for Should I avoid using "text-align: justify;"?destrado082009-03-18T09:25:18Z2009-03-18T09:25:18Z<p>Firstly, this is purely a design-related problem and solution. The design of your grid specifies if justifying text is needed. I think justify align alone has no major effect on usability. Bad typography that makes text illegible is what decreases usability. That said, make sure you have solid contrasts and a good balance of spacing in your type. Font-size matters too.</p>
<p><a href="http://rebecamendez.com/" rel="nofollow">This site</a> is a success attempt at justifying text online. Since you can't control the spaces between letters and words nearly as much with CSS as you can with InDesign, it's a lot harder to justify text and not have 'rivers' of whitespace run down your rows, which happens when the spaces between words exceeds the spaces between lines. Things that make justifying text difficult: long words, row widths that don't hold enough words, and too much contrast between the text and the background colors; they make the rivers appear wider and more apparent.</p>
<p>The typographic ideal is to have an even text-block, where if you squint the text block becomes a uniform solid shade. So if you keep text at about 10px and 60% gray on white background, and have rows that fit about 20 words, justify align shouldn't look ugly. But keep in mind this does nothing to improve usability. Small, relatively light text annoys a lot of people, especially the older readers. </p>
http://stackoverflow.com/questions/340923/what-is-the-most-readable-appealing-font/341266#3412667Answer by destrado08 for What is the most readable, appealing font?destrado082008-12-04T16:45:27Z2009-03-18T09:06:22Z<p>Read this if you're looking for a summary of a lot of the linked articles. No plagarism, only regurgitation of info.</p>
<p>For print, there's so many fonts. Helvetica is the most popular and one of the more "readable". However a variety of fonts all look really nice, serifs like Bodoni to sans-serifs like Letter Gothic, Futura, or Knockout.</p>
<p>On the screen, fonts with wider letters and a more generous x-height tend to be easier to read. That said, fonts like Verdana are a bit too plain at larger sizes. Helvetica is a great workhorse font for print, as are Frutiger and Univers, but Windows machines most likely lack this font. At small sizes Arial is a poor substitute for Helvetica because of its seemingly narrow letters (due to pixel restrictions), but kern (letter-spacing) it a little tighter at 16px+ sizes and make it bold, and it suddenly will become very usable, especially for building a strong grid. A font with some quirks is always nice and interesting visually, like Trebuchet MS (see the header of this page). These fonts too, have a low x-height and aren't as visually 'clean' to read through.</p>
<p>The solution is Lucida Grande: functional and quirky enough to look "different." Its Windows counterpart is Lucida Sans and Lucida Sans Unicode, which should be on more Windows machines anyway, more than the new Microsoft fonts like Calibri, etc. You'll find that both Windows fonts are needed, Sans looks right with bold text and some sizes, and Unicode looks right with the rest. I think this is the font to use mainly to make long body text look less boring, since it gets tricky to use at various sizes and weights.</p>
<p>Also, from a developer's standpoint, there is nothing as beautiful and functional as a nice monospace font. So it really depends on your content, since if you have a load of copy to fit into a defined area you're better off with Arial. But sites these days see so much Arial being used. Lucida Grande / Sans Unicode is hands down a better font. It's always a good idea to have a pair of complementary fonts, so use a serif font like Georgia (the web's workhorse) and play around with the upper-casing and letter-spacing too.</p>
http://stackoverflow.com/questions/55363/best-tools-for-creating-website-wireframes/657437#6574370Answer by destrado08 for Best tools for creating website wireframesdestrado082009-03-18T08:55:45Z2009-03-18T08:55:45Z<p><a href="http://jumpchart.com" rel="nofollow">JumpChart</a> for content, HTML and CSS for the grid, and JQuery and JQueryUI and <a href="http://code.new-bamboo.co.uk/polypage" rel="nofollow">PolyPage</a> for the interaction. Add those pieces together. For the CSS, you should already have base stylesheets that get used as the foundation for custom frontend development, so those can be used; I would only use a framework if you are comfortable developing the final product on it. </p>
<p>I would rarely divide the task of building a <strong>website</strong> to have a specific step called 'wireframing'. The process itself, I think, is way more holistic. Although it doesn't require doing designs or the backend, prototyping and final development often require the same tools. The goal and main benefit is the reusability of assets. You can do your wireframes in Photoshop, if you're planning to use Photoshop heavily in the design phase. In general, your prototype evolves into your final product, especially if you keep it under version control with something like Subversion.</p>
http://stackoverflow.com/questions/460352/problems-with-sifr-not-displaying-the-correct-text/540627#5406270Answer by destrado08 for Problems with sIFR not displaying the correct textdestrado082009-02-12T09:38:13Z2009-02-12T09:38:13Z<p>Check your textbox in the .fla file. I think you may have entered text in the wrong one.</p>
http://stackoverflow.com/questions/292682/understanding-dijkstras-mozart-programming-style13Understanding Dijkstra's Mozart programming style destrado082008-11-15T15:41:28Z2008-11-24T14:35:36Z
<p>I came across <a href="http://www.catonmat.net/blog/edsger-dijkstra-discipline-in-thought/" rel="nofollow">this article</a> about programming styles, seen by Edsger Dijsktra. To quickly paraphrase, the main difference is Mozart attempted to figure everything out in his head before writing anything, while Beethoven made his decisions as he wrote the notes out on paper, creating many revisions along the way. With Mozart programming, version 1.0 would be the only version for software that should aim to work with no errors and maximum efficiency. Also, Dijkstra says software not at that level of refinement and stability should not be released to the public.</p>
<p>Based on his views, two questions. Is Mozart programming even possible? Would the software we write today really benefit if we adopted the Mozart style instead? </p>
<p>My thoughts. It seems, to address the increasing complexity of software, we've moved on from this method to things like agile development, public beta testing, and constant revisions, methods that define web development, where speed matters most. But when I think of all the revisions web software can go through, especially during maintenance, when often patches are applied over patches, to then be refined through a tedious refactoring process—the Mozart way seems very attractive. It would at least lessen those annoying software updates, e.g. Digsby, Windows, iTunes, etc., many the result of unforeseen vulnerabilities that require a new and immediate release.</p>
<p>Edit: Refer to <a href="http://stackoverflow.com/questions/292682/understanding-dijkstras-mozart-programming-style#292955">the response below</a> for a more accurate explanation of Dijsktra's views.</p>
http://stackoverflow.com/questions/279996/what-is-the-worst-software-idea-youve-had/280051#2800510Answer by destrado08 for What is the worst software idea you've had?destrado082008-11-11T04:59:13Z2008-11-11T04:59:13Z<p>Mine is rewriting the XML parser in Actionscript 3 using a lot of recursion to copy XML objects into standard Objects, without really considering the existing methods of reading XML data, which were already a big improvement from Actionscript 2. The code got so complex so fast I ended up not being able to follow my own logic and had to put the thing on hold. In general my experience with Actionscript 3 has not been a pleasant one. Simple tasks take a long time to figure out.</p>
http://stackoverflow.com/questions/260321/recovering-symfony-staging-server2recovering symfony staging serverdestrado082008-11-03T23:24:52Z2008-11-05T20:03:09Z
<p>This is a very specific question, but I hope there are some folks familiar with this setup using multiple installs of symfony. It's an urgent issue, and I am pretty desperate and just a lowly frontend developer with little knowledge of the inner workings of symfony. I'm hoping an answer here can prevent me from reading all the documentation, for now.</p>
<p>All I know about this development environment for this project I inherited is linked to the live site via the staging site, there are multiple dev sites, one for each team member. Each dev server is linked to a central svn repository. Developers check out from the repository and then update the server to test separately before committing to the repo again. Once the dev server has been updated by running 'svn update', I am suppose to type in the commands 'symfony sync staging' and 'symfony sync staging go' in the www directory of my dev server to sync files with the staging server. Then I run some commands to clear the cache and rebuild the model on the staging server and run some similar commands to go live with the changes.</p>
<p>What I did wrong was type 'symfony sync staging' and 'symfony sync staging go' while accessing the app directory on the staging server. I got some error messages while the second command was being processed, things along the lines of 'file not found.' I tried contacting the original dev team that set up all this, but our communication with them is limited. With their help I was able to replenish missing files and directories in the app/web and public-html/ directories like frontend-dev.php, frontend.php, admin-dev.php, backend.php, backend-dev.php, screen.css, .htaccess, /sf, etc. etc, while having to comment out the relative-url the settings.yml in app/apps/frontend/config/, since the staging site does not use a relative url.</p>
<p>The site currently has areas that strangely don't work, where pages show up as empty even though I have checked the respective actions.php function and template file for the module. The code for the modules look up to date, although I haven't inspected all of them, since there are a lot of modules. I am guessing there are some settings that aren't correct. I tried using frontend-dev.php but somehow .css aren't loading, so I can't see any info to help me debug.</p>
<p>Any suggestions would be helpful. I am very lost with how to fix this issue and do not have time to read all the documentation. Most importantly, I don't understand the nature (or scope) of my problem, besides that some files were overwritten, though I can't pinpoint which ones.</p>
http://stackoverflow.com/questions/260321/recovering-symfony-staging-server/266429#2664291Answer by destrado08 for recovering symfony staging serverdestrado082008-11-05T20:03:09Z2008-11-05T20:03:09Z<p>After some consulting, I replaced all the missing files in app/web (I missed some in the first run, specifically the /sf folder with all the javascript) and public_html. I also found my dev was overwriting my custom frontend config/settings.yml file to enable the relative url only it was using. I wrote a short php condition testing the $_SERVER['HTTP_HOST'] and added it to the svn repo to solve this issue. These two changes solved the rest of the issues.</p>
http://stackoverflow.com/questions/259742/what-is-the-difference-between-using-html-or-dreamweaver-to-make-a-website-whic/259846#2598461Answer by destrado08 for What is the difference between using HTML or Dreamweaver to make a website? Which is Better?destrado082008-11-03T20:30:55Z2008-11-03T20:30:55Z<p>If you are just starting designing web pages and HTML and know little about writing your own CSS, Dreamweaver is a logical choice. It's more intuitive for designers and has some useful shortcuts courtesy of its GUI: editing fonts, colors; adding and linking images, media; managing global content via a library; premade components and behaviors, etc. It is also excellent if you just need to bang out some html mockups, are nervous about writing code, and could care less about pages with clean markup and code that fit standards (at least amongst the developer community).</p>
<p>That said, Dreamweaver is not a real tool for making websites. I've stopped using it at version 9 (CS3), and to my knowledge it has yet to support previewing PHP in it's Design View, making it useless than just previewing in the browser for working on dynamic sites (most of the web today). Despite auto-completion, its Coding View lacks a lot of the powerful editing features that software like TextMate and Eclipse offer. It does offer a built-in FTP Client for working with remote files, but based on my experience it isn't stable. </p>
<p>The most important reason to only use Dreamweaver if you have to: it isn't built to teach you web design. Unless you're only producing Photoshop layouts, you have to write code to learn web design; you have to write the XHTML and CSS to understand standards and structure. And if you need something that is more than just a text editor like TextMate, try Coda; it's Dreamweaver minus the Design View (making it faster) and unnecessary fluff that generate bad markup, and has some other pros to boot.</p>
http://stackoverflow.com/questions/203543/is-it-necessary-in-any-circumstance-to-modify-wordpress-other-than-writing-plugin2Is it necessary in any circumstance to modify Wordpress other than writing plugins and themes?destrado082008-10-15T02:34:18Z2008-10-16T01:16:45Z
<p>I recently had to work on a project where the previous developer modified the wp-admin directory. It seems like a bad idea to me, since Wordpress is constantly updated. Am I just not at that level of expertise with modifying Wordpress?</p>
http://stackoverflow.com/questions/203781/is-wireframing-overplanning2Is Wireframing Overplanning?destrado082008-10-15T05:11:24Z2008-10-15T15:04:14Z
<p>37 Signal's <em>Getting Real</em> convinced me that wireframing and writing functional specification documents are a middleman steps unnecessary for building web applications and dynamic websites. </p>
<p>Is the overhead for these steps worth its weight? Is prototyping in HTML/CSS or even PhotoShop documents (so designers can work on them directly) a better option than using software like Visio? Personally, I am swaying towards the latter but am not sure.</p>
http://stackoverflow.com/questions/203755/what-is-googles-language-of-choice3What is Google's language of choice?destrado082008-10-15T04:53:34Z2008-10-15T05:41:00Z
<p>What is Google's language of choice for backend development on their webapps? For the longest time I have thought it was Python. Is there a definitive source on this?</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203789#2037890Answer by destrado08 for What things didn't you know you needed but are now very glad you have?destrado082008-10-15T05:16:40Z2008-10-15T05:16:40Z<p>Textmate bundles. E uses them now too, so I can develop on Mac and PC using relatively light-weight and easy-to-understand IDEs that are very versatile.</p>
http://stackoverflow.com/questions/203069/what-is-the-best-css-framework-and-are-they-worth-the-effort/203692#2036921Answer by destrado08 for What is the best CSS Framework and are they worth the effort?destrado082008-10-15T04:06:56Z2008-10-15T04:06:56Z<p>I believe CSS is about simplicity. The goal is to have one or two places to check when you're referencing between the HTML and your stylesheet. Adding more lines, and especially lines that you did not write and are probably not that familiar with, will exponentially increase the complexity thereby volatility of the CSS code.</p>
<p>I would suggest your layouts as you write them and develop a generic template system from that. While I love making CSS more modular, often and depending on the design, your CSS may be very case-specific and not modular at all.</p>
http://stackoverflow.com/questions/203618/how-to-name-variables/203682#2036820Answer by destrado08 for How to name variables.destrado082008-10-15T03:56:37Z2008-10-15T03:56:37Z<p>I have always used under_scores for my delimiters between words in a variable name, but have found camelCasing to be a lot faster.</p>
http://stackoverflow.com/questions/1065989/need-a-good-ie6-7-8-standalone/1066028#1066028Comment by on Need a good IE6,7,8 standalone.2009-07-04T22:14:43Z2009-07-04T22:14:43ZThis is the coolest thing ever. Where is the buzz?http://stackoverflow.com/questions/318630/get-real-image-width-and-height-with-javascript-in-safari-chrome/670433#670433Comment by on Get real image width and height with Javascript in Safari/Chrome?2009-03-29T02:24:16Z2009-03-29T02:24:16ZI'm testing on Firefox 3 and $(document).ready() also doesn't work as well.http://stackoverflow.com/questions/292682/understanding-dijkstras-mozart-programming-style/292955#292955Comment by on Understanding Dijkstra's Mozart programming style 2008-11-15T19:46:08Z2008-11-15T19:46:08Zagreed. case in point: Digsbyhttp://stackoverflow.com/questions/292682/understanding-dijkstras-mozart-programming-style/292700#292700Comment by on Understanding Dijkstra's Mozart programming style 2008-11-15T16:08:01Z2008-11-15T16:08:01ZAgreed on the Microsoft.http://stackoverflow.com/questions/203781/is-wireframing-overplanning/203785#203785Comment by on Is Wireframing Overplanning?2008-10-19T05:10:00Z2008-10-19T05:10:00ZI agree to skipping Photoshop. But I think its common (however not ideal) for the industry these days to have designers who can only use Photoshop or don't know CSS.