User Robert Greiner - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T14:53:42Z http://stackoverflow.com/feeds/user/110088 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1799175/do-any-java-gui-builders-exist-that-do-not-require-external-jars 0 Do any Java GUI builders exist that do not require external JAR's? Robert Greiner 2009-11-25T18:53:53Z 2009-11-25T22:37:01Z <p>I am looking for a Java GUI building tool that generates the Java Swing code for me. I'm planning on using it to get all of the Frame/Panel code created quickly and then customize everything by hand after that.</p> <p>It would be nice to be able to choose between different layout managers, but it's not necessarily required.</p> <p>The most important part, the tool can't require any .jar files to be placed in my project (this isn't allowed for the project I'm working on.)</p> http://stackoverflow.com/questions/1798543/from-a-usage-standpoint-whats-the-difference-between-a-private-and-protection-c/1798577#1798577 1 Answer by Robert Greiner for From a usage standpoint, what's the difference between a private and protection class function? Robert Greiner 2009-11-25T17:26:51Z 2009-11-25T17:26:51Z <p><strong>EDIT:</strong> use protected methods when you want a child class (one that extends your current (or parent) class) to be able to access methods or variables within the parent.</p> <p>Here is the <a href="http://us.php.net/manual/en/language.oop5.visibility.php" rel="nofollow">PHP Visibility Manual</a></p> <p><strong>private</strong> can be seen by no other classes except the one the variable/method is contained in.</p> <p><strong>protected</strong> can be seen by any class that is in the same package/namespace.</p> <p>Code from the manual.</p> <pre><code>&lt;?php /** * Define MyClass */ class MyClass { public $public = 'Public'; protected $protected = 'Protected'; private $private = 'Private'; function printHello() { echo $this-&gt;public; echo $this-&gt;protected; echo $this-&gt;private; } } $obj = new MyClass(); echo $obj-&gt;public; // Works echo $obj-&gt;protected; // Fatal Error echo $obj-&gt;private; // Fatal Error $obj-&gt;printHello(); // Shows Public, Protected and Private /** * Define MyClass2 */ class MyClass2 extends MyClass { // We can redeclare the public and protected method, but not private protected $protected = 'Protected2'; function printHello() { echo $this-&gt;public; echo $this-&gt;protected; echo $this-&gt;private; } } $obj2 = new MyClass2(); echo $obj2-&gt;public; // Works echo $obj2-&gt;private; // Undefined echo $obj2-&gt;protected; // Fatal Error $obj2-&gt;printHello(); // Shows Public, Protected2, Undefined ?&gt; </code></pre> http://stackoverflow.com/questions/1798523/c-http-library/1798556#1798556 0 Answer by Robert Greiner for C++ HTTP Library Robert Greiner 2009-11-25T17:25:26Z 2009-11-25T17:25:26Z <p>you can use <strong><a href="http://www.phpfreaks.com/forums/index.php?topic=255539.0" rel="nofollow">cURL</a></strong> with C++</p> http://stackoverflow.com/questions/1798491/query-strings-use-row-ids-or-human-readable-values/1798516#1798516 0 Answer by Robert Greiner for query strings - use row ids or human readable values? Robert Greiner 2009-11-25T17:20:56Z 2009-11-25T17:20:56Z <p>A good rule of thumb is to store data as id's and display it as human readable text etc.</p> http://stackoverflow.com/questions/1798468/svn-not-working-in-eclipse/1798497#1798497 0 Answer by Robert Greiner for SVN not working in Eclipse Robert Greiner 2009-11-25T17:18:24Z 2009-11-25T17:18:24Z <p>If you want to completely start over with eclipse, you need to delete your workspace as well (the path you see when you first start eclipse). Just re-installing the eclipse files and pointing to the same default workspace will not change anything for you.</p> <p>Your best bet is to remove eclipse and your workspace and start over because you probably inadvertently broke some other parts of the plug in while you were trying to fix your initial problem.</p> http://stackoverflow.com/questions/1675116/regex-help-simple-pattern/1675143#1675143 0 Answer by Robert Greiner for Regex Help Simple Pattern Robert Greiner 2009-11-04T16:50:07Z 2009-11-04T17:02:22Z <p>Here's a good place to start. Using others code is fine at first, but if you don't learn this stuff you're going to be eternally doomed to asking questions every time you need a new regex.</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0596528124" rel="nofollow">Mastering Regular Expressions</a></p> <p><a href="http://rads.stackoverflow.com/amzn/click/0596520689" rel="nofollow">Regular Expressions Cookbook</a></p> <p><a href="http://www.regular-expressions.info/tutorialcnt.html" rel="nofollow">Online tutorial</a></p> <p>spend some time, learn the basics, and pretty soon you'll be helping us with our regex problems.</p> http://stackoverflow.com/questions/1674915/how-to-teach-someone-that-less-is-more/1675041#1675041 2 Answer by Robert Greiner for How to teach someone that less is more? Robert Greiner 2009-11-04T16:37:30Z 2009-11-04T16:37:30Z <p>There's an interesting article on this topic from Jason Fried of 37signals where he discusses this very concept (as well as other topics on running a successful business).</p> <p>It's a good read.</p> <p><a href="http://37signals.com/svn/posts/1998-link-jason-fried-the-way-i-work" rel="nofollow">http://37signals.com/svn/posts/1998-link-jason-fried-the-way-i-work</a></p> http://stackoverflow.com/questions/1652374/writing-html-and-css/1652388#1652388 2 Answer by Robert Greiner for Writing HTML and CSS Robert Greiner 2009-10-30T21:21:21Z 2009-10-30T21:21:21Z <p>A certain amount of CSS and HTML can be auto-generated, but for the most part, these CSS/HTML for most sites is done manually.</p> <p>CSS is all about presentation, and it takes a good amount of tweaking to get things looking right across different browsers.</p> http://stackoverflow.com/questions/1652344/how-to-use-css-to-position-divs/1652365#1652365 1 Answer by Robert Greiner for How to use CSS to position divs? Robert Greiner 2009-10-30T21:16:27Z 2009-10-30T21:16:27Z <p><a href="http://rads.stackoverflow.com/amzn/click/0975240277" rel="nofollow">http://www.amazon.com/HTML-Utopia-Designing-Without-Tables/dp/0975240277/ref=sr%5F1%5F3?ie=UTF8&amp;s=books&amp;qid=1256937368&amp;sr=8-3</a></p> <p>is a good place to start with CSS.</p> <p>Let me get you started off on the right foot, but the best way to learn this stuff is <strong>by doing.</strong></p> <p>I absolutely <em>sucked</em> at CSS when I first started, and now I'm fairly comfortable with it because I practice alot.</p> <p>CSS</p> <pre><code>#header { width: 100%; height: 100px; } </code></pre> <p>HTML</p> <pre><code>&lt;div id="header"&gt;&lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1651225/how-to-choose-the-jvm-heap-size/1651237#1651237 1 Answer by Robert Greiner for how to choose the jvm heap size ? Robert Greiner 2009-10-30T17:29:31Z 2009-10-30T17:29:31Z <p>The right answer is: <strong>there is no right answer</strong> each project is different and you will have to fine-tune your heap size configuration on a per-project basis. I would start small and gradually increase the heap size until your application is running as intended.</p> <p>You are right, setting a huge max value is not a good idea.</p> http://stackoverflow.com/questions/1644273/what-is-the-difference-between-aggregation-composition-and-dependency/1644302#1644302 3 Answer by Robert Greiner for What is the difference between aggregation, composition and dependency? Robert Greiner 2009-10-29T14:56:10Z 2009-10-29T14:56:10Z <p>aggregation and composition are almost completely identical except that <strong>composition</strong> is used when the life of the child is completely controlled by the parent.</p> <p><strong>Aggregation</strong> </p> <p>Car->Tires</p> <p>The tires can be taken off of the car object and installed on a different one. Also, if the car gets totaled, the tires do not necessarily have to be destroyed.</p> <p><strong>Composition</strong> </p> <p>Body->Blood Cell</p> <p>When the Body object is destroyed the BloodCells get destroyed with it.</p> <p><strong>Dependency</strong></p> <p>A relationship between two objects where changing one may affect the other. </p> http://stackoverflow.com/questions/1638244/mvc-pattern-what-other-pattern-to-use-with-it/1638267#1638267 1 Answer by Robert Greiner for MVC Pattern: What other Pattern to use with it? Robert Greiner 2009-10-28T16:08:45Z 2009-10-28T16:08:45Z <p>None, It's not a good idea to use a pattern for the sake of using a pattern. Design patterns solve a specific problem, and if you don't have that problem, don't use the pattern.</p> http://stackoverflow.com/questions/1602776/what-is-password-hashing/1602780#1602780 8 Answer by Robert Greiner for What is password hashing? Robert Greiner 2009-10-21T18:43:37Z 2009-10-21T18:43:37Z <p>takes a block of data and returns a string such that you can't get your original block of data back.</p> <p><a href="http://en.wikipedia.org/wiki/Cryptographic_hash_function" rel="nofollow">Wikipedia Article</a></p> <p>Hashing a password will take a clear text string and perform an algorithm on it (depending on the hash type) to get a completely different value. This value will be the same every time, so you can store the hashed password in a database and check the user's entered password against the hash.</p> <p>This <strong>prevents</strong> you from storing the <strong>cleartext</strong> passwords in the database (bad idea).</p> <p>Here is a <a href="http://en.wikipedia.org/wiki/List_of_hash_functions" rel="nofollow">list of hash functions</a>.</p> http://stackoverflow.com/questions/895165/what-undergraduate-computer-science-course-best-prepares-programmers-for-the-work 4 What undergraduate computer science course best prepares programmers for the workplace? Robert Greiner 2009-05-21T21:07:24Z 2009-10-18T21:11:59Z <p>The idea here is to get better programmers right out of college.</p> <p>I think I would have to go with Algorithms, it's not exactly something you can pick up on your own very easily and I think it enables you to look at efficiency and correctness of software on a deeper level.</p> <p>I also believe that teaching actual programming can be helpful, but I learned most of what I learned about programming at work, which makes me think some of those programming course blocks (not all) could have gone to better use.</p> <p>These results will be part of a letter I want to write to the CS dept at my old school, I think there are tons of classes I took that didn't help at all, and others that I think would have been invaluable.</p> http://stackoverflow.com/questions/1575323/how-to-deal-with-seniors-bad-coding-style-practices/1575344#1575344 25 Answer by Robert Greiner for How to deal with seniors' bad coding style/practices? Robert Greiner 2009-10-15T21:58:09Z 2009-10-15T22:33:46Z <p>The best and most important thing you can do is <strong>lead by example</strong>. Do things the right way and try to improve things slowly. You aren't going to fix anything overnight.</p> <p>Make sure <em>every piece of code</em> that you are responsible for is better after you are done with it. Over time, the system will tangibly be better because of your efforts.</p> <p>After you build a strong reputation with your co-workers, try go start some code reviews or lunch-training sessions to get everyone up to speed on better ways to do things.</p> <p>In a nutshell: it will be difficult and frustrating, but it's possible. Good luck.</p> http://stackoverflow.com/questions/1574236/should-i-find-another-job-instead-of-programmer/1574249#1574249 3 Answer by Robert Greiner for Should I find another job instead of programmer? Robert Greiner 2009-10-15T18:38:02Z 2009-10-15T18:38:02Z <p>Most of us have been there, I think you're just un-motivated because of your working conditions.</p> <p>it sounds like you need a change of scenery, find a new programming language and use it for a while. If you still hate programming after that, I'm sure you're smart enough to pick something else up (accounting, management, etc...) fairly quickly (the benefit of being a programmer).</p> <p>At the end of the day, you have to do what makes you happy, and I hope you find it.</p> http://stackoverflow.com/questions/1349048/is-it-acceptable-to-make-external-links-targetblank 2 Is it acceptable to make external links target="_blank"? Robert Greiner 2009-08-28T20:00:24Z 2009-10-12T04:51:03Z <p>I'm a bit confused whether or not I should make the links on my website that point externally target="_blank". Does this practice negatively affect the usability of your site (i.e. breaking the "back button trail")? Is it commonly found annoying by most users? Is it acceptable in some situations but not others?</p> <p>I want to make an enjoyable user experience for all of my sites and would hate to do something that annoys my users. What is your experience/advice on the matter?</p> http://stackoverflow.com/questions/1539347/what-are-ways-of-improving-build-compile-time/1539364#1539364 2 Answer by Robert Greiner for What are ways of improving build/compile time? Robert Greiner 2009-10-08T17:36:51Z 2009-10-08T17:36:51Z <p>Fixing your compiler warnings should help quite a bit.</p> http://stackoverflow.com/questions/1533588/im-a-developer-how-do-i-become-a-technical-manager/1533617#1533617 3 Answer by Robert Greiner for I'm a developer. How do I become a technical manager? Robert Greiner 2009-10-07T19:19:06Z 2009-10-07T19:19:06Z <p>The key here is to simply get started on something (anything really) that gets you any kind of management experience you can use to get a different job at another company or get promoted in your current company.</p> <p>Landing a manager job at another company might be tricky with no management experience. I'd try to gain some experience at my current job before moving on.</p> <p>You can also check on your company's tuition reimbursement plan and see if they'll pay for you to get a MBA.</p> <p><strong>If you want to stay at your <em>current</em> company.</strong></p> <p>you have to start small, gain confidence of your managers and gradually increase your responsibilities.</p> <p>See if you can be a task lead on a small (quick turnaround) project.</p> http://stackoverflow.com/questions/1455257/learning-anything-really/1455267#1455267 2 Answer by Robert Greiner for Learning... anything really Robert Greiner 2009-09-21T15:56:33Z 2009-09-21T15:56:33Z <p>I like this one</p> <p><a href="http://arstechnica.com/business/news/2005/10/msh.ars/2" rel="nofollow">http://arstechnica.com/business/news/2005/10/msh.ars/2</a></p> <p>I wouldn't consider doing research on a programming language a failure, even if it takes you forever to find that "gem" you are looking for. Searching for awesome material is an art and the more you do it, the better you get at it. The community won't always be able (or willing) to answer all of your questions for you, especially if they know you haven't done your due diligence to look something up.</p> http://stackoverflow.com/questions/1455119/visual-studio-express-versus-vs-2008-for-my-partner/1455134#1455134 4 Answer by Robert Greiner for visual studio express versus vs 2008 for my partner Robert Greiner 2009-09-21T15:31:58Z 2009-09-21T15:37:33Z <p>I would recommend VS express until you need one of the features that requires you to buy 2008. No sense spending the money on something you may never use.</p> <p>VS Express is a perfectly capable IDE.</p> <p>Also, you can work in VS express and 2008 interchangeably. </p> <p>Here is a short <a href="http://news.softpedia.com/news/Visual-Studio-2008-Web-Developer-vs-Basic-Standard-vs-Professional-77540.shtml" rel="nofollow">Description</a> of the differences of VS IDE versions.</p> http://stackoverflow.com/questions/1435015/how-can-i-make-the-browser-wait-to-display-the-page-until-its-fully-loaded/1435022#1435022 10 Answer by Robert Greiner for How can I make the browser wait to display the page until it's fully loaded? Robert Greiner 2009-09-16T19:33:59Z 2009-09-16T19:33:59Z <p>I think this is a really bad idea. Users like to see progress, plain and simple. Keeping the page at one state for a few seconds and then instantly displaying the loaded page will make the user feel like nothing is happening and you are likely to lose visits.</p> <p>One option is to show a loading status on your page while stuff processes in the background, but this is normally reserved for when the site is actually doing processing on user input.</p> <p><a href="http://www.webdeveloper.com/forum/showthread.php?t=180958" rel="nofollow">http://www.webdeveloper.com/forum/showthread.php?t=180958</a></p> <p>The bottom line, you at least need to show some visual activity while the page is loading, and I think having the page load in little pieces at a time is not all that bad (assuming you aren't doing something that seriously slows down page load time).</p> http://stackoverflow.com/questions/1428734/where-can-i-find-one-of-these-devigners-or-developer-designers/1428757#1428757 10 Answer by Robert Greiner for Where can I find one of these "devigners" or "developer designers"? Robert Greiner 2009-09-15T18:03:57Z 2009-09-15T19:04:11Z <p>In my experience, it's pretty tough to find these guys. Posting on job boards that are known to attract exceptional talent (such as 37signals and StackOverflow) is probably your best bet. You will probably end up finding someone who is a developer first and has a hobby-level passion for graphics design. These guys might not do the best work, but they will at least have both of the (mostly mutually exclusive) skills you are looking for.</p> <p>A second option could be to hire a run-of-the-mill graphics designer and assign one of your developers to work with him and make all of the graphics stuff work in your application. This, of course, requires two people working on a project when you originally planned on having one but I think it's still a viable option.</p> <p><strong>EDIT:</strong> graphic design job postings/information </p> <p><a href="http://www.youthedesigner.com/graphic-design-jobs/" rel="nofollow">http://www.youthedesigner.com/graphic-design-jobs/</a><br /> <a href="http://www.allgraphicdesign.com/jobs.html" rel="nofollow">http://www.allgraphicdesign.com/jobs.html</a><br /> <a href="http://www.coroflot.com/public/jobs%5Fbrowse.asp" rel="nofollow">http://www.coroflot.com/public/jobs%5Fbrowse.asp</a></p> http://stackoverflow.com/questions/1386469/best-ruby-and-ruby-on-rails-books/1386478#1386478 1 Answer by Robert Greiner for Best Ruby (and Ruby On Rails) Books Robert Greiner 2009-09-06T19:27:08Z 2009-09-06T19:27:08Z <p><strong>Ruby</strong></p> <p><a href="http://www.robbyonrails.com/articles/2005/09/13/why%E2%80%99s-poignant-guide-to-ruby-in-pdf-form" rel="nofollow">why's (poignant) guide to Ruby</a></p> <p>best book i've ever read on a programming language and it's free!</p> <p><strong>Rails</strong></p> <p><a href="http://rads.stackoverflow.com/amzn/click/0980455200" rel="nofollow">Simply Rails 2</a></p> http://stackoverflow.com/questions/1370425/how-to-compete-on-a-scarce-specd-project-to-avoid-team-death-march/1370438#1370438 4 Answer by Robert Greiner for How to compete on a scarce spec'd project to avoid team death-march Robert Greiner 2009-09-02T22:15:12Z 2009-09-02T22:22:15Z <p><strong>EDIT</strong>:</p> <p>Addressing the middle-men situation. I think the best course of action would be to submit a list of <em>risks</em> along with your bid as a courtesy to the customer. Kind of like giving them a heads-up on what their project limitations are. This will cost you some work up front but I think it could help you win the project.</p> <p><hr /></p> <p>you have two options</p> <p><strong>make a best-guess</strong> and double or triple your estimate (your competition is probably doing the same thing.)</p> <p><strong>explain</strong> to the customer that you can't bid work like this, and tell him that everyone else that gives him a fixed estimate is probably not being completely truthful.</p> <p>At the end of the day, if you can't make money on the work, the there is not point in trying for it.</p> <p>Personally, I prefer the latter, up-front and honest communication with your customers will take you farther than any bid tricks ever will.</p> http://stackoverflow.com/questions/1359080/reversing-django-contrib-auth-models-user-password-sha1-to-readable-string/1359089#1359089 7 Answer by Robert Greiner for Reversing django.contrib.auth.models.User password, sha1 to readable string Robert Greiner 2009-08-31T19:46:04Z 2009-08-31T19:46:04Z <p>No, that's the point. </p> <p>If your user forgot their password, you'll have to reset it.</p> http://stackoverflow.com/questions/1359008/html-basic-standards-document-for-peer-review/1359015#1359015 1 Answer by Robert Greiner for html basic standards document for peer review. Robert Greiner 2009-08-31T19:28:35Z 2009-08-31T19:28:35Z <p><strong>HTML 4</strong><br /> <a href="http://www.w3.org/TR/html4/" rel="nofollow">http://www.w3.org/TR/html4/</a></p> <p>This link has all of the recommendations:<br /> <a href="http://www.w3.org/MarkUp/#recommendations" rel="nofollow">http://www.w3.org/MarkUp/#recommendations</a></p> http://stackoverflow.com/questions/1358823/are-they-still-doing-c/1358828#1358828 7 Answer by Robert Greiner for are they still doing c++ ? Robert Greiner 2009-08-31T18:45:12Z 2009-08-31T18:45:12Z <p><strong>yes</strong></p> <p>alot of hardware programmers and electrical engineers still use C++ not to mention all of the legacy apps written in C++ that need maintained.</p> <p>I think alot of games are still written in C++ as well.</p> <p>Not to mention, several programmers study up on C++ to get a good handle on how programming languages in general work at the lower-level. </p> <p>I think if you want to learn C++ and get good at it (and you like it) then go for it.</p> http://stackoverflow.com/questions/1358804/how-to-handle-images-during-software-development/1358817#1358817 1 Answer by Robert Greiner for How to handle images during software development Robert Greiner 2009-08-31T18:42:14Z 2009-08-31T18:42:14Z <p>We typically have the image title and resolution appended together in the name.</p> <pre><code>myimage_800_600.png </code></pre> <p>this way all of the like images are grouped together in the folder view and you can easily select the size you want without having to wander what "medium" means.</p> http://stackoverflow.com/questions/1256081/why-do-you-still-use-php 6 Why do you still use PHP? [closed] Robert Greiner 2009-08-10T17:15:15Z 2009-08-28T21:08:38Z <p>I have a couple of years as a PHP developer under my belt now, and I have to admit other web languages/frameworks (ASP .Net and Ruby on Rails especially) are looking much more tempting than PHP. It just seems like PHP is being left in the dust by the competition. I'm even seriously considering abandoning PHP altogether and going with Ruby on Rails.</p> <p>So, my question is, why the heck should I continue to use PHP when it looks like other languages are taking giant leaps and PHP is just staying stagnant (more or less)?</p> <p>Edit:</p> <p>There are some things I really like about PHP. Like some of you have already said, it's ease of use and $0 cost are chief among reasons why people <b>start</b> developing in PHP, but i'm asking why I should <b>continue</b> developing in PHP.</p> <p>I really believe that in the attempt to make PHP easy to use, it has some built in features that can give you some really bad programming habits. For instance, I see alot of duplicate code that is peppered across multiple files because each page needed the same behavior.</p> http://stackoverflow.com/questions/1799175/do-any-java-gui-builders-exist-that-do-not-require-external-jars/1799313#1799313 Comment by Robert Greiner on Do any Java GUI builders exist that do not require external JAR's? Robert Greiner 2009-11-25T19:21:50Z 2009-11-25T19:21:50Z +1 thanks for the info http://stackoverflow.com/questions/1799175/do-any-java-gui-builders-exist-that-do-not-require-external-jars/1799242#1799242 Comment by Robert Greiner on Do any Java GUI builders exist that do not require external JAR's? Robert Greiner 2009-11-25T19:09:58Z 2009-11-25T19:09:58Z @Steve, ok, I'll try that. You can convert your comment into an answer if you want and I'll upvote it. http://stackoverflow.com/questions/1799175/do-any-java-gui-builders-exist-that-do-not-require-external-jars/1799242#1799242 Comment by Robert Greiner on Do any Java GUI builders exist that do not require external JAR's? Robert Greiner 2009-11-25T19:09:12Z 2009-11-25T19:09:12Z cool, thanks. I'm trying NetBeans right now. http://stackoverflow.com/questions/1798543/from-a-usage-standpoint-whats-the-difference-between-a-private-and-protection-c/1798577#1798577 Comment by Robert Greiner on From a usage standpoint, what's the difference between a private and protection class function? Robert Greiner 2009-11-25T18:55:25Z 2009-11-25T18:55:25Z cool, I'm glad you got your question answered. http://stackoverflow.com/questions/1798468/svn-not-working-in-eclipse/1798497#1798497 Comment by Robert Greiner on SVN not working in Eclipse Robert Greiner 2009-11-25T18:54:50Z 2009-11-25T18:54:50Z eclipse remembers the <i>default</i> workspace location, did you try moving the location of your workspace folder? http://stackoverflow.com/questions/1798543/from-a-usage-standpoint-whats-the-difference-between-a-private-and-protection-c/1798577#1798577 Comment by Robert Greiner on From a usage standpoint, what's the difference between a private and protection class function? Robert Greiner 2009-11-25T17:30:18Z 2009-11-25T17:30:18Z @Citizen, see edits http://stackoverflow.com/questions/1798285/parsing-quantifier-x-y-following-nothing Comment by Robert Greiner on parsing "*" - Quantifier {x,y} following nothing Robert Greiner 2009-11-25T16:52:41Z 2009-11-25T16:52:41Z sample code please http://stackoverflow.com/questions/1695347/does-ie8-have-rendering-bugs-like-6-or-7 Comment by Robert Greiner on Does IE8 have rendering bugs like 6 or 7? Robert Greiner 2009-11-08T04:14:38Z 2009-11-08T04:14:38Z should be on superuser? http://stackoverflow.com/questions/1681788/how-is-the-google-promote-restore-animation-implemented Comment by Robert Greiner on How is the "Google-Promote/Restore"-animation implemented? Robert Greiner 2009-11-05T16:33:38Z 2009-11-05T16:33:38Z also, when you remove a result it disappears into a cloud that breaks open. http://stackoverflow.com/questions/1675116/regex-help-simple-pattern/1675143#1675143 Comment by Robert Greiner on Regex Help Simple Pattern Robert Greiner 2009-11-04T18:05:46Z 2009-11-04T18:05:46Z @Andomar yeah, I feel alot more comfortable with regular expressions after reading that book. http://stackoverflow.com/questions/1675116/regex-help-simple-pattern/1675143#1675143 Comment by Robert Greiner on Regex Help Simple Pattern Robert Greiner 2009-11-04T18:05:08Z 2009-11-04T18:05:08Z @CAbbott no problem, you aren't wrong about that by any means. I still think it needs to be addressed regardless. Thanks for your comment. http://stackoverflow.com/questions/1675116/regex-help-simple-pattern/1675143#1675143 Comment by Robert Greiner on Regex Help Simple Pattern Robert Greiner 2009-11-04T18:04:04Z 2009-11-04T18:04:04Z @Jeremy, thanks for adding the link. http://stackoverflow.com/questions/1675116/regex-help-simple-pattern/1675143#1675143 Comment by Robert Greiner on Regex Help Simple Pattern Robert Greiner 2009-11-04T16:53:19Z 2009-11-04T16:53:19Z that's cool, read this answer again when you have some free time :P http://stackoverflow.com/questions/1644273/what-is-the-difference-between-aggregation-composition-and-dependency/1644302#1644302 Comment by Robert Greiner on What is the difference between aggregation, composition and dependency? Robert Greiner 2009-11-04T16:39:54Z 2009-11-04T16:39:54Z interesting, I guess it depends on how you look at it. I don't see how destroying the car object also mandates that the tires be destroyed as well. Also, you can take the tires off of a car and put them on a different car. That's the problem with analogies though I suppose. http://stackoverflow.com/questions/1652344/how-to-use-css-to-position-divs/1652365#1652365 Comment by Robert Greiner on How to use CSS to position divs? Robert Greiner 2009-10-31T16:23:17Z 2009-10-31T16:23:17Z I agree with Frank. At the very least you should go over some CSS tutorials and play around with it until you get the hang of it. Otherwise, I think things will just get frustrating and you'll never realize the full potential of CSS. Just my $0.02 though.