User Brian C - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T15:07:43Z http://stackoverflow.com/feeds/user/22982 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1585744/is-regular-expressions-the-best-way-to-go-about-matching-and-replacing-text/1585784#1585784 2 Answer by Brian C for Is Regular Expressions the best way to go about matching and replacing text? Brian C 2009-10-18T19:24:00Z 2009-10-18T19:24:00Z <blockquote> <p>Also, does anybody know any good regex plugins for the Eclipse IDE(Galileo preferably).</p> </blockquote> <p>I like the <a href="http://www.eclipse-plugins.info/eclipse/plugin%5Fdetails.jsp?id=964" rel="nofollow">Quickrex plugin for Eclipse</a> - it's easy to integrate it into your favorite view.</p> http://stackoverflow.com/questions/1584761/web-development-what-page-load-times-do-you-aim-for/1584926#1584926 0 Answer by Brian C for Web Development: What page load times do you aim for? Brian C 2009-10-18T13:46:11Z 2009-10-18T13:46:11Z <p>Tricky question.</p> <p>For a regular web app, you don't want you page load time to exceed 5 seconds. But let's not forget that:</p> <ul> <li>the 20%-80% rule applies here; if it takes 1 sec to load the HTML code, total rendering/loading time is probably 5-ish seconds (like <a href="http://stackoverflow.com/questions/1584761/web-development-what-page-load-times-do-you-aim-for/1584766#1584766">fiXedd</a> stated).</li> <li>on a dev server, you're often not dealing with the real deal (traffic, DB load <strong>and</strong> size - number of entries can make a huge difference)</li> <li>you want to take into account the way users want your app to behave. 5 seconds load time may be good enough to display preferences, but your basic or killer features should take less.</li> </ul> <p>So in my opinion, here's a simple method to get a rough figures for a simple web app (using for example, Spring/Tapestry):</p> <ol> <li>Sort the pages/actions given you app profile (which pages should be lightning fast?) and give them a rough figure for production environment</li> <li>Then take into account the browser loading/rendering stuff. Dividing by 5 is a good start, although you can use <a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">best practices</a> to reduce that time.</li> <li>Think about your production environment (DB load, number of entries, traffic...) and take an additional margin.</li> <li>You've got your target load time on your production server; now it's up to you and your dev server to think about your target load time on your dev platform :-D</li> </ol> http://stackoverflow.com/questions/1524221/monitoring-and-logging-strategy-for-a-facade-webservice 1 Monitoring and logging strategy for a "facade webservice"? Brian C 2009-10-06T08:09:04Z 2009-10-09T09:33:42Z <p>I'm working on a "facade webservice" and I need to rethink part of it.</p> <p>The context - my webservice (let's call it "FacadeWebservice") is an internal webservice developed to hide other webservices complexity from my system:</p> <ul> <li>My <strong>FacadeWebservice</strong> calls <strong>ExternalWebserviceA</strong>, <strong>ExternalWebserviceB</strong> and will soon need to call <strong>ExternalWebserviceC</strong>.</li> <li><strong>ExternalWebserviceA</strong>, <strong>ExternalWebserviceB</strong> and <strong>ExternalWebserviceC</strong> are external webservices; they're subject to change and downtime.</li> </ul> <p>Complexity is getting higher and higher, and I need to rethink the way I'm monitoring my FacadeWebservice and the external webservices. I need:</p> <ul> <li>a complete view of my application status (number of calls, error codes sent)</li> <li>a good idea of what's going on with external webservices (external webservices downtime, reponse codes received by my webservice - for example, one of them often go "technical error / readonly" for some time)</li> <li>basically, a simple view/tool that shows the overall status.</li> <li>service availability is pretty much covered (so I don't need apps like Nagios), I want to know what's going on at application level.</li> </ul> <p>I was thinking about using <a href="http://en.wikipedia.org/wiki/JMX" rel="nofollow">JMX</a> within my FacadeWebservice - this could provide me some ineresting graphs and statisics.</p> <p>Is it the way to go? Or a good logging strategy is plenty enough for this task (even if external changes is a big part of my problem)?</p> <p>Any advice or experience on the subject?</p> http://stackoverflow.com/questions/1519114/javascript-memory-management-pitfalls/1519189#1519189 3 Answer by Brian C for Javascript memory management pitfalls ? Brian C 2009-10-05T10:05:04Z 2009-10-05T10:05:04Z <p>From my experience, Garbage Collectors are well/poorly implemented depending on the browser. Applying good Object Oriented programming practices is a good start.</p> <p>My only advice: <strong>do not create memory leaks by connecting DOM &amp; javascript objects</strong> (circular references that won't be cleared by DOM and JS GCs). These mistakes will eat far more memory than any object you will instantiate within your application.</p> <p>More details on DOM/JS memory leaks. <a href="http://msdn.microsoft.com/en-us/library/bb250448%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb250448%28VS.85%29.aspx</a></p> http://stackoverflow.com/questions/1222297/rapid-web-application-development-with-a-web-toolkit/1362171#1362171 0 Answer by Brian C for Rapid web application development with a Web Toolkit Brian C 2009-09-01T12:15:46Z 2009-09-01T12:15:46Z <p>I think <a href="http://www.symfony-project.org" rel="nofollow">Symfony</a> may be the way to go because, like your apps:</p> <ul> <li>it's written in PHP</li> <li>ORM based on Propel/doctrine (so you can use MySQL, Postgres or SQLite)</li> <li>Architecture and patterns used will help you with complex applicatons</li> <li>You'll find tools helping you to debug, document, and test your application</li> <li>Forms creation, validation, l10n &amp; i18n, testing, AJAX is <strong>easy</strong> (<a href="http://www.symfony-project.org/forms/1%5F2/en/" rel="nofollow">forms within symfony explained here, check it out</a>)</li> <li>prototyping you webpages while developing your application is easy</li> </ul> <p>Other tools/practices implemented in the symfony framework that will make your life easy:</p> <ul> <li>full configuration using YAML syntax (easy to read and understand)</li> <li>the scaffolding feature generates for you a simple CRUD interface for editing your data.</li> <li>you don't have to worry about coding form sanitization, security, caching, ACL; configuration is needed, but no heavy coding. </li> </ul> <p>The only downside, you need to read some documentation to understand "the symfony way of doing things". But hey, <em>a good framework is 20% code and 80% good practices</em>.</p> <p><strong>My point is, even if you don't want to use Symfony for your project</strong>, you should check its features and built-in tools, because that's the kind of tools you want for your project.</p> http://stackoverflow.com/questions/800693/clientwidth-performance-in-ie8/1154360#1154360 0 Answer by Brian C for clientWidth Performance in IE8 Brian C 2009-07-20T15:51:40Z 2009-07-20T15:51:40Z <p>Your problem may be related to something else (and not only the clientwidth call): are your updating/resizing anyhting in your DOM while calling this function?</p> <p>Your browser could be <a href="http://code.google.com/intl/fr/speed/articles/reflow.html" rel="nofollow">busy doing reflow</a> on IE8, thus making clientwidth slower?</p> http://stackoverflow.com/questions/479059/how-to-clean-up-after-using-dojo/1153973#1153973 0 Answer by Brian C for How to clean up after using dojo ? Brian C 2009-07-20T14:36:44Z 2009-07-20T14:36:44Z <p>You're considering using "onunload", so I think you want to free memory when users are leaving the page.</p> <p>Javascript objects are not shared from one page to another, leaving the HTML page should probably cause your browser to clear the associated memory (your browser has a javascript GC).</p> <p><strong>Unless you're creating memory leaks</strong> by connecting DOM &amp; javascript objects (circular references that won't be cleared by DOM and JS GCs). But that's another problem.</p> <p>More <a href="http://msdn.microsoft.com/en-us/library/bb250448%28VS.85%29.aspx" rel="nofollow">details on DOM/JS memory leaks</a>.</p> http://stackoverflow.com/questions/1142580/good-link-or-book-for-basics-and-theory-of-version-control/1142820#1142820 0 Answer by Brian C for Good link or book for basics and theory of version control Brian C 2009-07-17T11:57:49Z 2009-07-17T11:57:49Z <p>A nice Google Tech Talk: <a href="http://www.youtube.com/watch?v=4XpnKHJAok8" rel="nofollow">Linus Torvalds on GIT</a>.</p> <p>Of course Linus states that GIT is the best you can get and everything else is pretty much rubbish. But this talk is informative, especially if you want to get the developer's point of view. </p> http://stackoverflow.com/questions/1078607/creating-mysql-dump-like-phpmyadmin/1078724#1078724 0 Answer by Brian C for creating mysql dump like phpMyAdmin Brian C 2009-07-03T10:10:49Z 2009-07-03T10:10:49Z <p>You definitely should use transactions for huge inserts, if your storage engine supports them (like innoDB):</p> <p>BEGIN;<br/> INSERT INTO tablename VALUES...<br/> INSERT INTO tablename VALUES...<br/> COMMIT;</p> <p>If something goes wrong, you can safely ROLLBACK the last operation, restart you script, etc.</p> http://stackoverflow.com/questions/876974/unable-to-set-chmod-640/877027#877027 1 Answer by Brian C for Unable to set chmod 640? Brian C 2009-05-18T10:12:42Z 2009-05-18T10:12:42Z <p><a href="http://stackoverflow.com/questions/876974/unable-to-set-chmod-640/877004#877004">JimG is right</a> - we don't know your type of hosting or FTP/SSH restrictions.</p> <p>Quickest solution:</p> <pre><code>&lt;?php chmod("/home/youruser/yourwebsite/config.php", 0640); ?&gt; </code></pre> <p>Hope you won't run into owner/group permission problems; in that case, you'll have to handle it with more chown and chgrp function calls.</p> http://stackoverflow.com/questions/504631/determining-the-health-validity-of-an-email-address/504734#504734 3 Answer by Brian C for Determining the health/validity of an email address Brian C 2009-02-02T20:25:12Z 2009-05-17T08:55:19Z <p>Agree with <a href="http://stackoverflow.com/questions/504631/determining-the-health-validity-of-an-email-address/504674#504674">Jay</a>: All the nifty features built to do this particular job are generally turned off...</p> <p>The only way is sending an email to that address; and even then, you're not 100% sure. </p> <ul> <li>That address can be garbage; nobody's checking it.</li> <li>Mailbox is full (temporarily?) and you get a DSN</li> <li>SMTP server glitches/outages</li> </ul> <p>IMHO, keep checking the domain (go easy on connections if you don't want to get blacklisted) and antispam tools like akismet/spamhaus to filter user subsmissions.</p> http://stackoverflow.com/questions/857795/what-are-the-main-tools-frameworks-used-nowadays-in-java/857889#857889 0 Answer by Brian C for What are the main tools/frameworks used nowadays in Java? Brian C 2009-05-13T13:16:39Z 2009-05-13T13:16:39Z <p>The Apache Foundation has done some great things:</p> <ul> <li>Web service development made easy - <a href="http://cxf.apache.org/" rel="nofollow">Apache CXF</a></li> <li>For java web applications, you can take JSP to the next level with <a href="http://tapestry.apache.org/" rel="nofollow">Apache Tapestry</a></li> <li>For project management (build process, quality control, migration...), <a href="http://maven.apache.org/" rel="nofollow">Maven</a> will do the work</li> <li><a href="http://activemq.apache.org/" rel="nofollow">ActiveMQ</a> is a good choince if you need to implement a <a href="http://en.wikipedia.org/wiki/Java%5FMessage%5FService" rel="nofollow">JMS</a> service.</li> </ul> <p>No need to rush and read tons of books about these, they pretty much use common concepts you probably encoutered in your previous experiences.</p> http://stackoverflow.com/questions/805887/splitting-requests-across-domainsthwarting-overzealous-security/806162#806162 0 Answer by Brian C for Splitting requests across domains—thwarting overzealous security Brian C 2009-04-30T09:45:22Z 2009-04-30T09:45:22Z <p>Do you have a specific user-agents list that present this behaviour? Maybe Apache conf could solve this problem? (or create a new problem for you to solve :-) ).</p> <p>Watch out for the cookie frenzy - the more you add cookies (moreover, on the main domain), the more your clients will have to send it along their requests.</p> <p>Souders talked about it too, but it's always good to check your clients browsers sent/received ratio for requests.</p> http://stackoverflow.com/questions/741265/dns-and-domain-pointing/746761#746761 0 Answer by Brian C for DNS and Domain Pointing Brian C 2009-04-14T08:35:23Z 2009-04-14T08:35:23Z <p>I had the same experience using domain names (registered with 1and1) with dreamhost hosting.</p> <p>You can easily achieve what you want with the following steps:</p> <ol> <li>configure your hosting plan for your domain. Even if this domain is not available in your domain pool, you should be able to host it.</li> <li>Look for the IP associated with this domain in your hosting web panel.</li> <li>Edit your DNS configuration in 1and1 web panel and set the "A" entry to the IP you just looked up.</li> <li>Wait for DNS propagation and test.</li> </ol> <p>This solution may not work all the time; if you don't have a static IP in your hosting package, your hosting company <em>could</em> move this domain from one server to another (thus changing the IP).</p> <p>I never faced this situation, but still, it is possible.</p> http://stackoverflow.com/questions/606794/debugging-ajax-code-with-firebug/606995#606995 0 Answer by Brian C for Debugging Ajax code with Firebug Brian C 2009-03-03T16:04:06Z 2009-03-03T16:04:06Z <p>You probably want to use <a href="http://getfirebug.com/net.html" rel="nofollow">the Net tab</a> and filter the requests for XMLHttpRequests (XHR) only.</p> <p>Additional tips:</p> <ul> <li>don't hesitate to <a href="http://getfirebug.com/console.html" rel="nofollow">console.dir(yourObject)</a> in your code or directly in the console panel. This will give you the complete state and properties of your object.</li> <li>check your request/response HTTP headers; sometimes it's just a matter of encoding.</li> <li>if you don't know what event/user action triggered this XHR call, you can add <a href="http://getfirebug.com/console.html" rel="nofollow">console.trace()</a> right before your AJAX call. This way you'll get the complete call stack.</li> </ul> http://stackoverflow.com/questions/318527/gui-framework-patterns/587493#587493 1 Answer by Brian C for GUI Framework patterns? Brian C 2009-02-25T19:41:10Z 2009-02-25T19:41:10Z <p>Just a few pointers on classic design patterns; I think these are related to GUI building:</p> <ul> <li><a href="http://en.wikipedia.org/wiki/Model-view-controller" rel="nofollow">MVC pattern</a> obvisously.</li> <li><a href="http://en.wikipedia.org/wiki/Observer%5Fpattern" rel="nofollow">Observer pattern</a>; for example, View needs to observe Model (to know when its state changes) and Controller needs to observe View (to know when a button is clicked).</li> <li><a href="http://en.wikipedia.org/wiki/Strategy%5Fpattern" rel="nofollow">Strategy pattern</a>; in a way, using a controller as a glue between View and Model is choosing a Strategy. In theory, you should be able to switch Controller transparently.</li> <li><a href="http://en.wikipedia.org/wiki/Composite%5Fpattern" rel="nofollow">Composite pattern</a>; Your view is like a tree of panes, widgets and so on. Having a common interface and a way to iterate over this collection is useful when you need to call something like "view.paint()".</li> </ul> <p>I know you asked about <strong>patterns for frameworks</strong>, but still you should rely on these patterns since developers will probably use your framework with these concepts in mind.</p> <p>Do you have requirements/specific needs for your framework? You'll probably want to loose a couple of "good principles" if your target platform is limited in memory/CPU.</p> http://stackoverflow.com/questions/568107/facing-problem-in-setting-expire-time-for-custom-build-dojo-script/585231#585231 0 Answer by Brian C for Facing problem in setting Expire Time for custom build Dojo script Brian C 2009-02-25T09:04:07Z 2009-02-25T09:04:07Z <p>I don't really get your question.</p> <p>People usually create custom dojo builds because they want to include only the packages they need. By creating your build, you're not working on caching issues, nor minifying code - it's about <strong>downloading and interpreting less code</strong> (you can use the great "Xdomain loading" feature, but that's another question).</p> <p>I think you want to tweak your httpd.conf file (if you're using apache server) and set an Expire Header with the following:</p> <pre><code>&lt;IfModule mod_expires.c&gt; ExpiresActive On ExpiresByType application/x-javascript A8640000 &lt;/IfModule&gt; </code></pre> <p>(Here, you'll be setting the Expire date to "client Access date + 100 days" for all javascript files)</p> <p>Some additional advices:</p> <ul> <li>do not forget to add the "FileETag none" line to your configuration, especially if your files are hosted on multiple servers.</li> <li>do not forget to change URLs when a new version of your app is out. Adding a version number or a delivery date in URLs is a good idea. Otherwise your agressive caching directives will be a problem.</li> </ul> http://stackoverflow.com/questions/327382/what-is-a-good-css-strategy/330162#330162 0 Answer by Brian C for What is a good CSS strategy? Brian C 2008-12-01T06:32:33Z 2008-12-01T06:32:33Z <p>Whatever your choice is, <strong>avoid using the @import directive</strong>.</p> <p>Makes the browser load stylesheets sequentially, hence slowing down loading and rendering for your page.</p> http://stackoverflow.com/questions/159926/is-there-any-reasonable-way-to-migrate-from-subversion-to-cvs/160037#160037 2 Answer by Brian C for Is there any reasonable way to migrate from subversion to cvs? Brian C 2008-10-01T22:24:56Z 2008-10-01T22:24:56Z <p>Agree with Corporal Touchy.</p> <p>SVN is better than CVS, because it was designed to be - it's roughly the same thing, with some simplications and new features.</p> <p>With Svn, you can move/rename a file without losing its history; you get safer commits (commits are atomic operations) and global revisions.</p> <p>Anyway, try to get to know it better before swithing back to CVS and even better, try to really understand your needs as a team for a repository.</p> <p>PS: I think Corporal was talking about <a href="http://www.selenic.com/mercurial/wiki/" rel="nofollow">Mercurial</a></p> http://stackoverflow.com/questions/1524221/monitoring-and-logging-strategy-for-a-facade-webservice/1539425#1539425 Comment by Brian C on Monitoring and logging strategy for a "facade webservice"? Brian C 2009-10-19T08:07:09Z 2009-10-19T08:07:09Z Accepted! JavaMelody looks good. Seems like you're the main contributor on this project. http://stackoverflow.com/questions/1524221/monitoring-and-logging-strategy-for-a-facade-webservice/1539543#1539543 Comment by Brian C on Monitoring and logging strategy for a "facade webservice"? Brian C 2009-10-19T08:05:31Z 2009-10-19T08:05:31Z @Pascal ESBs look great, but I think it's a bit heavy regarding my requirements. http://stackoverflow.com/questions/1524221/monitoring-and-logging-strategy-for-a-facade-webservice/1524271#1524271 Comment by Brian C on Monitoring and logging strategy for a "facade webservice"? Brian C 2009-10-19T08:04:43Z 2009-10-19T08:04:43Z @Aaron I didn't consider the &quot;no memory&quot; disadvantage of JMX. So creating a simple HTML page is a good way to go. http://stackoverflow.com/questions/1524221/monitoring-and-logging-strategy-for-a-facade-webservice/1524271#1524271 Comment by Brian C on Monitoring and logging strategy for a "facade webservice"? Brian C 2009-10-08T10:04:51Z 2009-10-08T10:04:51Z Thanks for your anwser (upvoted!). Displaying complex data and trends is a big part of my requirements though. http://stackoverflow.com/questions/1516960/anatomy-of-a-distributed-system-in-php Comment by Brian C on Anatomy of a Distributed System in PHP Brian C 2009-10-05T14:41:50Z 2009-10-05T14:41:50Z good question! Not related to your database question: watch out for long jobs that take longer than the configured interval. A lock mechanism is a must have in this case. http://stackoverflow.com/questions/477085/dojo-xd-js-not-recognizing-dojox-data-csvstore/477190#477190 Comment by Brian C on dojo.xd.js not recognizing dojox.data.CsvStore Brian C 2009-07-20T14:21:36Z 2009-07-20T14:21:36Z Your problem: you're tying to instantiate a class that is not loaded yet. It works when you're loading your files locally because they're loaded before your javascript is executed. (loading files locally is faster than using a CDN, for sure). Anyway, using dojo.addOnLoad <i>is the only way to go</i> with XD loading. http://stackoverflow.com/questions/1078332/should-i-upgrade-to-php-5-3 Comment by Brian C on Should I upgrade to PHP 5.3? Brian C 2009-07-03T09:59:01Z 2009-07-03T09:59:01Z <i>Funny comment</i> You really should. The new &quot;jump label&quot; operator looks great: GOTO :-D http://stackoverflow.com/questions/876887/i-need-to-record-a-demo-of-our-application-can-anyone-recommend-a-good-screen-re/876910#876910 Comment by Brian C on I need to record a demo of our application. Can anyone recommend a good screen recorder? Brian C 2009-05-18T10:26:18Z 2009-05-18T10:26:18Z screentoaster is exactly what I was looking for. Thanks! http://stackoverflow.com/questions/130067/best-server-performance-monitoring-tool-for-java-servers/388583#388583 Comment by Brian C on Best server Performance Monitoring Tool for Java Servers Brian C 2009-05-14T08:24:30Z 2009-05-14T08:24:30Z Glassbox looks great - the google tech talk about glassbox is very informative. http://stackoverflow.com/questions/857795/what-are-the-main-tools-frameworks-used-nowadays-in-java/857804#857804 Comment by Brian C on What are the main tools/frameworks used nowadays in Java? Brian C 2009-05-13T13:20:45Z 2009-05-13T13:20:45Z people complain all the time about Eclipse, but it's still a strong reference. If you want to hack some Google Android or Blackberry Apps, SDKs are available for the Eclipse platform. http://stackoverflow.com/questions/33643/diagramming-software-for-a-developer-designer/81992#81992 Comment by Brian C on Diagramming Software for a Developer/Designer Brian C 2009-05-06T13:09:41Z 2009-05-06T13:09:41Z Tried it. Loved it. Thanks for the advice. http://stackoverflow.com/questions/805887/splitting-requests-across-domainsthwarting-overzealous-security/806273#806273 Comment by Brian C on Splitting requests across domains—thwarting overzealous security Brian C 2009-04-30T12:16:14Z 2009-04-30T12:16:14Z Let's say LibraryThingTim uses only one domain to &quot;solve&quot; his problem. If he tries to use a cross-domain loader for his JS (Dojo and other frameworks give you this possibility, even with ONE domain - and trust me, it speeds up things anyway) - then same problem again. Security policies can also apply because of the way you're loading your JS. http://stackoverflow.com/questions/777607/the-remote-certificate-is-invalid-according-to-the-validation-procedure-plea Comment by Brian C on "The remote certificate is invalid according to the validation procedure." - Please help Brian C 2009-04-27T12:15:52Z 2009-04-27T12:15:52Z Can you tell us more about your config for using Gmail SMTP servers? My lucky guess: Can you tell us more about your security policies for SSL (like using a valid/invalid SSL certificate?). http://stackoverflow.com/questions/95635/what-does-a-just-in-time-jit-compiler-do/95679#95679 Comment by Brian C on What does a just-in-time (JIT) compiler do? Brian C 2009-04-16T09:36:19Z 2009-04-16T09:36:19Z Good example: the TraceMonkey engine. A JIT compiler for javascript now included in Firefox. <a href="https://wiki.mozilla.org/JavaScript:TraceMonkey" rel="nofollow">wiki.mozilla.org/JavaScript:TraceMonkey</a> http://stackoverflow.com/questions/755246/how-to-get-user-mails-in-my-free-gmail-inbox-through-contact-us-form-on-my-websit Comment by Brian C on How to get user mails in my free gmail inbox through contact us form on my website. Brian C 2009-04-16T09:25:05Z 2009-04-16T09:25:05Z Could you provide some info on your hosting solution (provate server? shared hosting? PHP? only static HTML?). What kind of script did you try?