User pbreitenbach - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T12:44:54Zhttp://stackoverflow.com/feeds/user/42048http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/746603/does-the-frontier-kernel-have-a-future0Does the Frontier Kernel have a future?pbreitenbach2009-04-14T06:57:33Z2009-12-12T15:00:03Z
<p>Whatever you think about Dave Winer, Frontier is an incredible piece of software. It includes quite a few advances that have yet to be surpassed: the object database, the database viewer, the scripting environment, the hierarchical-including website generation scheme, the elegant scripting language, the mixing of scripts and compilation, rapid prototyping, built in web server, simple debugger, cross-platform, simple UI, etc.</p>
<p>My question: Dave turned Frontier over to open source and there is a Frontier Kernel project. However it is fairly quiet. Does Frontier have a future from here?</p>
http://stackoverflow.com/questions/1549767/please-help-with-table-layout/1550297#15502970Answer by pbreitenbach for Please help with table layoutpbreitenbach2009-10-11T09:50:18Z2009-10-11T09:50:18Z<p>Can we see your code with images included? I would suggest taking out the heights and widths, putting the images in, and then playing around with heights/widths to get the to your liking. Your layout looks overly complicated. Could you go with a simpler 3 column layout and treat the whole header as one element?</p>
http://stackoverflow.com/questions/1347306/has-anyone-succeeded-at-downloading-orders-from-amazon-seller-central-using-php/1523917#15239170Answer by pbreitenbach for Has anyone succeeded at downloading orders from Amazon Seller Central using PHP?pbreitenbach2009-10-06T06:32:31Z2009-10-06T06:32:31Z<p>Forget SOAP and use the fairly simple Amazon Inventory Management API:
<a href="http://www.amazonsellercommunity.com/forums/ann.jspa?annID=18" rel="nofollow">http://www.amazonsellercommunity.com/forums/ann.jspa?annID=18</a></p>
<p>Not sure what environment you are using but most have simple HTTP GET/POST capabilities. </p>
http://stackoverflow.com/questions/962915/how-do-i-make-an-asynchronous-get-request-in-php/1516139#15161390Answer by pbreitenbach for How do I make an asynchronous GET request in PHP?pbreitenbach2009-10-04T10:50:53Z2009-10-04T10:50:53Z<p>Also consider fsockpen.</p>
http://stackoverflow.com/questions/959063/how-to-send-a-get-request-from-php/1516128#15161280Answer by pbreitenbach for How to send a GET request from PHP?pbreitenbach2009-10-04T10:45:19Z2009-10-04T10:45:19Z<p>I like using fsockopen open for this.</p>
http://stackoverflow.com/questions/1514707/what-are-the-best-freely-available-university-courses-on-data-structures-and-algo/1515514#15155140Answer by pbreitenbach for What are the best freely available university courses on Data Structures and Algorithms?pbreitenbach2009-10-04T03:23:13Z2009-10-04T03:23:13Z<p>iTunes U has some great free lectures available from MIT, Berkeley, Stanford and Harvard Extension.</p>
http://stackoverflow.com/questions/1502175/php-vs-python-worth-the-investment-in-python/1502290#15022900Answer by pbreitenbach for PHP vs Python, worth the investment in Python?pbreitenbach2009-10-01T06:50:54Z2009-10-01T06:50:54Z<p>Python has a very good chance at replacing PHP as the 'P' in LAMP. While PHP is fine and it's problems are way overblown by critics, Python is a very solid language and just generally better than PHP. Major sites like YouTube and Yelp are mostly Python. And Google's App Engine hosts Python apps.</p>
http://stackoverflow.com/questions/1454372/content-management-system/1454552#14545520Answer by pbreitenbach for Content Management Systempbreitenbach2009-09-21T13:38:50Z2009-09-21T13:38:50Z<p>Here are a couple nice options:
Gallery: <a href="http://gallery.menalto.com" rel="nofollow">http://gallery.menalto.com</a>
Singapore: <a href="http://www.sgal.org" rel="nofollow">http://www.sgal.org</a>
Coppermine: <a href="http://coppermine-gallery.net" rel="nofollow">http://coppermine-gallery.net</a></p>
http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454511#14545111Answer by pbreitenbach for Should I accept IE 5.0 (!) as a browser requirement for a project?pbreitenbach2009-09-21T13:28:59Z2009-09-21T13:28:59Z<p>Depending on what they mean by "Web 2.0 enabled", I'd take the project. The main thing you lose is Ajax and some/most/all CSS. But that will actually make the project <em>much</em> easier and you'll be able to focus on core functionality rather than little UI hacks. Many of the biggest, most successful web sites are fairly "low tech" such as Craigslist, Google (search), Ebay, PayPal, Etrade, Amazon, Wikipedia, IMDB, Walmart, Evite.</p>
http://stackoverflow.com/questions/1452491/api-general-questions-and-choices/1453151#1453151-1Answer by pbreitenbach for API General Questions and Choicespbreitenbach2009-09-21T06:53:20Z2009-09-21T06:53:20Z<p>I'd suggest making it easy on yourself and go with Flash. It's by far the most widely used platform for games. It would allow you to focus more on the gameplay than the programming intricacies. Kongregate is a nice distribution channel and has some tutorials on getting started: <a href="http://www.kongregate.com/labs" rel="nofollow">http://www.kongregate.com/labs</a></p>
http://stackoverflow.com/questions/1453040/cron-email-performace/1453092#14530921Answer by pbreitenbach for Cron, Email, Performacepbreitenbach2009-09-21T06:29:21Z2009-09-21T06:29:21Z<p>That is a <em>lot</em> of email. First of all, it's unlikely you will ever be sending out that many emails so I wouldn't architect your system for that kind of volume. You should consider configuring your service so that fewer emails are necessary (daily summary, more selective targeting, rss feeds). But even if you're sending out 500,000 emails per day, you're going to need a heavy duty infrastructure or pay an ESP like VerticalResponse a <em>lot</em> of money. Free mail transfer agents (MTAs) include Postfix and SendMail. Commercial options include Strongmail and PowerMTA. With that much email, you'll probably need to watch out for spam complaints (depending on how your project review process). ReturnPath is useful for that.</p>
http://stackoverflow.com/questions/1209525/good-authorize-net-php-libraries/1360988#13609880Answer by pbreitenbach for Good authorize.net PHP librariespbreitenbach2009-09-01T07:16:32Z2009-09-01T07:16:32Z<p>Not free but not too expensive: <a href="http://www.authnetscripts.com/" rel="nofollow">http://www.authnetscripts.com/</a></p>
http://stackoverflow.com/questions/691942/speed-of-code-execution-asp-net-mvc-versus-php/1353369#13533690Answer by pbreitenbach for Speed of code execution: ASP.NET-MVC versus PHPpbreitenbach2009-08-30T07:44:03Z2009-08-30T07:44:03Z<p>Without any optimizations, a .net compiled app would of course run "faster" than php. But you are correct that it's a stupid and irrelevant argument because it has no bearing on the real world beyond bragging rights.</p>
http://stackoverflow.com/questions/993184/is-restful-faster-than-soap-and-when-to-use-one-of-them/1157686#11576860Answer by pbreitenbach for Is RESTful faster than SOAP? and when to use one of them?pbreitenbach2009-07-21T07:15:25Z2009-08-27T15:03:58Z<p>REST will almost always be faster since there's less processing and smaller envelopes.</p>
http://stackoverflow.com/questions/412141/best-engineered-rest-apis/1297920#1297920-1Answer by pbreitenbach for Best Engineered REST APIs?pbreitenbach2009-08-19T05:20:10Z2009-08-19T05:20:10Z<p><a href="https://www.yammer.com/company/api" rel="nofollow">Yammer</a></p>
http://stackoverflow.com/questions/1297790/what-is-more-costly-2-updates-or-a-delete-and-an-insert/1297882#12978820Answer by pbreitenbach for what is more costly, 2 updates, or a delete and an insert?pbreitenbach2009-08-19T05:01:31Z2009-08-19T05:01:31Z<p>Updating will typically be faster than deleting/inserting. <a href="http://stackoverflow.com/questions/824936/mysql-performance-delete-or-update">http://stackoverflow.com/questions/824936/mysql-performance-delete-or-update</a></p>
http://stackoverflow.com/questions/1294604/what-is-the-most-suitable-ria-programming-language-to-construct-a-rest-api/1297858#1297858-1Answer by pbreitenbach for What is the most suitable RIA programming language to construct a REST API?pbreitenbach2009-08-19T04:50:31Z2009-08-19T04:50:31Z<p>If not PHP, then Ruby or Python.</p>
http://stackoverflow.com/questions/1092723/how-do-you-build-a-web-based-email-client-using-php/1172606#11726060Answer by pbreitenbach for How do you build a web based email client using PHP?pbreitenbach2009-07-23T15:30:29Z2009-07-23T15:30:29Z<p>Set up an email account that can be accessed via POP (example: gmail). Then use the PHP IMAP functions to retrieve email via the POP protocol (POP is probably easier than IMAP) (<a href="http://us2.php.net/imap" rel="nofollow">http://us2.php.net/imap</a>). For sending mail, use the PHP Mail functions (<a href="http://us2.php.net/mail" rel="nofollow">http://us2.php.net/mail</a>).</p>
http://stackoverflow.com/questions/1160511/would-you-hire-a-developer-who-doesnt-know-how-to-use-regular-expressions/1163345#11633452Answer by pbreitenbach for Would you hire a developer who doesn't know how to use regular expressions?pbreitenbach2009-07-22T06:17:32Z2009-07-22T06:17:32Z<p>I think many answers are missing the point. It's not that RegEx is necessary for the immediate job. It's that it demonstrates well-rounded knowledge and curiosity of a powerful and broadly useful tool.</p>
http://stackoverflow.com/questions/1151432/why-to-download-a-entire-javascript-framework-when-we-do-not-need-all-features-of/1151459#11514592Answer by pbreitenbach for Why to download a ENTIRE JavaScript framework when we do not need all features of them? What could we suggest? (JavaScript)pbreitenbach2009-07-20T01:55:32Z2009-07-20T01:55:32Z<p>I don't think it would be worth it to add the complexity of selected inclusion. jQuery is 57k and loads very fast. Your energy is much better spent worrying about other things that might actually matter.</p>
http://stackoverflow.com/questions/1142028/what-should-developers-have-access-to/1142223#11422230Answer by pbreitenbach for what should developers have access to?pbreitenbach2009-07-17T09:19:17Z2009-07-17T09:19:17Z<p>Even in a small company, engineers shouldn't need much access to the dev environment beyond code. The core environment should remain fairly static. What types of things on the web server would you like to change at a rapid pace?</p>
http://stackoverflow.com/questions/388109/round-robin-assignment-implementation-database/1141763#11417631Answer by pbreitenbach for Round Robin Assignment implementation (database)pbreitenbach2009-07-17T07:02:17Z2009-07-17T07:02:17Z<p>Check out how Salesforce does it:
<a href="http://forums.sforce.com/sforce/board/message?board.id=custom_formula&message.id=533" rel="nofollow">http://forums.sforce.com/sforce/board/message?board.id=custom_formula&message.id=533</a></p>
<p>MOD an ID by the number of salespeople + 1 and then assign 1 to Joe, 2, to Tom, etc.</p>
http://stackoverflow.com/questions/1052620/checking-if-number-is-even-by-looking-at-the-last-bit-are-there-any-other-tric/1098860#10988601Answer by pbreitenbach for Checking if number is even by looking at the last bit - are there any other "tricks" like this one?pbreitenbach2009-07-08T15:34:01Z2009-07-08T15:34:01Z<p>I thought "bitwise flags" were kinda neat the first time I saw them:
<a href="http://www.infernodevelopment.com/bitwise-and-flags" rel="nofollow">http://www.infernodevelopment.com/bitwise-and-flags</a></p>
http://stackoverflow.com/questions/29821/a-good-scalable-webhost-for-php/1096386#10963860Answer by pbreitenbach for A Good, Scalable Webhost For PHPpbreitenbach2009-07-08T06:24:32Z2009-07-08T06:24:32Z<p>Mediatemple and Mosso.</p>
http://stackoverflow.com/questions/1095801/fluxbb-vs-punbb0FluxBB vs PunBBpbreitenbach2009-07-08T02:02:36Z2009-07-08T02:25:53Z
<p>It's a bit of a soap opera but apparently FluxBB forked from PunBB after PunBB was acquired by a commercial entity. Does anyone have any solid opinions on which is currently better and which has a brighter outlook? I generally prefer leaner software with only the core features.</p>
http://stackoverflow.com/questions/123539/how-can-a-team-or-can-a-team-develop-a-crm-system-in-two-months/1095815#10958150Answer by pbreitenbach for How can a team or can a team develop a CRM system in two months?pbreitenbach2009-07-08T02:07:17Z2009-07-08T02:07:17Z<p>I would see if Java is truly a requirement and if not, go with SugarCRM. SugarCRM is a full-featured, Salesforce.com-style CRM system. The "Community Edition" is very capable out-of-the-box. Any customization is likely to be doable without programming. If you truly need deeper customization, the source is open and free.</p>
http://stackoverflow.com/questions/853620/secure-web-services-rest-over-https-vs-soap-ws-security-which-is-better/1081743#10817431Answer by pbreitenbach for Secure Web Services: REST over HTTPS vs SOAP + WS-Security. Which is better?pbreitenbach2009-07-04T07:39:53Z2009-07-04T07:46:03Z<p>As you say, REST is good enough for banks so should be good enough for you.</p>
<p>There are two main aspects to security: 1) encryption and 2) identity.</p>
<p>Transmitting in SSL/HTTPS provides encryption over the wire. But you'll also need to make sure that both servers can confirm that they know who they are speaking to. This can be via SSL client certificates, shares secrets, etc.</p>
<p>I'm sure one could make the case that SOAP is "more secure" but probably not in any significant way. The nude motorcyclist analogy is cute but if accurate would imply that the whole internet is insecure.</p>
http://stackoverflow.com/questions/256349/what-are-the-best-common-restful-url-verbs-and-actions/1081730#10817300Answer by pbreitenbach for What are the best/common RESTful url verbs and actions?pbreitenbach2009-07-04T07:32:46Z2009-07-04T07:32:46Z<p>Your four examples could be:</p>
<pre><code>GET /questions/123
POST (or PUT) /questions/123 q=What+is+the+meaning+of+life
POST (or PUT) /questions/123 q=What+is+the+meaning+of+life
GET /questions
</code></pre>
<p>To add a question:</p>
<pre><code>POST /questions q=What+is+the+meaning+of+life
</code></pre>
<p>The server would respond:</p>
<pre><code>200 OK (or 201 Created)
Location: /questions/456
</code></pre>
http://stackoverflow.com/questions/551933/can-you-explain-the-web-concept-of-restful/1081725#10817250Answer by pbreitenbach for Can you explain the Web concept of RESTful?pbreitenbach2009-07-04T07:22:01Z2009-07-04T07:22:01Z<p>REST by way of an example:</p>
<pre><code>POST /user
fname=John&lname=Doe&age=25
</code></pre>
<p>The server responds:</p>
<pre><code>200 OK
Location: /user/123
</code></pre>
<p>In the future, you can then retrieve the user information:</p>
<pre><code>GET /user/123
</code></pre>
<p>The server responds:</p>
<pre><code>200 OK
<fname>John</fname><lname>Doe</lname><age>25</age>
</code></pre>
<p>To update:</p>
<pre><code>PUT /user/123
fname=Johnny
</code></pre>
http://stackoverflow.com/questions/207477/restful-url-design-for-search/1081720#10817201Answer by pbreitenbach for RESTful URL design for searchpbreitenbach2009-07-04T07:13:55Z2009-07-04T07:13:55Z<p>For the searching, go ahead and use a regular old search:</p>
<pre><code>/car-search?color=blue&type=sedan&doors=4
</code></pre>
<p>An advantage to regular querystrings is that they are standard and widely understood and that they can be generated from form-get.</p>
http://stackoverflow.com/questions/1549767/please-help-with-table-layout/1549781#1549781Comment by pbreitenbach on Please help with table layoutpbreitenbach2009-10-11T09:43:40Z2009-10-11T09:43:40ZTables are fine.http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454216#1454216Comment by pbreitenbach on Should I accept IE 5.0 (!) as a browser requirement for a project?pbreitenbach2009-09-23T04:21:22Z2009-09-23T04:21:22ZNot helpful without further elaboration.http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454232#1454232Comment by pbreitenbach on Should I accept IE 5.0 (!) as a browser requirement for a project?pbreitenbach2009-09-23T04:20:39Z2009-09-23T04:20:39ZOnly tries to address one aspect of the question and poorly.http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454462#1454462Comment by pbreitenbach on Should I accept IE 5.0 (!) as a browser requirement for a project?pbreitenbach2009-09-21T21:04:09Z2009-09-21T21:04:09ZBad advice for web design, business and life.http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454479#1454479Comment by pbreitenbach on Should I accept IE 5.0 (!) as a browser requirement for a project?pbreitenbach2009-09-21T14:47:21Z2009-09-21T14:47:21ZRestates the question and complains about questioner whining.http://stackoverflow.com/questions/1454213/should-i-accept-ie-5-0-as-a-browser-requirement-for-a-project/1454220#1454220Comment by pbreitenbach on Should I accept IE 5.0 (!) as a browser requirement for a project?pbreitenbach2009-09-21T13:15:02Z2009-09-21T13:15:02ZThe question was whether or not to accept the job at all.http://stackoverflow.com/questions/1452652/how-to-rapidly-build-a-web-application/1452670#1452670Comment by pbreitenbach on How to rapidly build a Web Application?pbreitenbach2009-09-21T07:09:40Z2009-09-21T07:09:40ZSome good answers here and PHP is fine. Mine, in order of prefernce, would be PHP/CodeIgniter, Python/Django and Ruby/Rails. For user interface and widgets, YUI and Jquery.http://stackoverflow.com/questions/1452509/what-kind-of-applications-are-built-using-python/1452532#1452532Comment by pbreitenbach on What kind of applications are built using Python?pbreitenbach2009-09-21T07:01:12Z2009-09-21T07:01:12ZGood summary. For pretty much any web application, Python is an excellent choice.http://stackoverflow.com/questions/1450618/is-it-better-to-go-live-with-a-site-that-isnt-fully-developed-or-wait-untill-it/1450647#1450647Comment by pbreitenbach on Is it better to go live with a site that isn't fully developed, or wait untill it's fully functional?pbreitenbach2009-09-21T06:40:24Z2009-09-21T06:40:24ZAgree. Develop the minimum functionality and get it live. You've gotta get your product live and see if it resonates with users. You will learn very quickly where to spend your resources.http://stackoverflow.com/questions/1391613/best-way-to-encode-passwords-in-php/1391620#1391620Comment by pbreitenbach on Best way to encode passwords in PHPpbreitenbach2009-09-08T03:04:21Z2009-09-08T03:04:21ZAgree with d03boy, obscurity can play a role but I wouldn't rely on it exclusively. The key is not to store passwords in the DB in reversible format. Sending a temp password in email is probably fine for most services. Better if it expires. Better if you send an expiring link to choose a new password. Never send a user-generated password in email. A lot of the security "experts" are way to extreme in my opinion, which really compromises usability.http://stackoverflow.com/questions/1297837/is-it-possible-to-find-users-location-by-ip-address/1297841#1297841Comment by pbreitenbach on Is it possible to find user's location by IP address?pbreitenbach2009-08-19T05:21:29Z2009-08-19T05:21:29ZNo and no. It's quite reliable and is not an invasion.http://stackoverflow.com/questions/198462/get-versus-post-in-terms-of-security/198844#198844Comment by pbreitenbach on GET versus POST in terms of security?pbreitenbach2009-08-19T05:16:46Z2009-08-19T05:16:46ZI agree with this. The question is not security, it's what POST and GET are designed to do.http://stackoverflow.com/questions/198462/get-versus-post-in-terms-of-security/198480#198480Comment by pbreitenbach on GET versus POST in terms of security?pbreitenbach2009-08-19T05:10:20Z2009-08-19T05:10:20ZBut it <i>is</i> harder to do a POST than a GET. A GET is just a URL in the address box. A POST requires a <form> in an HTML page or cURL.http://stackoverflow.com/questions/198462/get-versus-post-in-terms-of-security/198473#198473Comment by pbreitenbach on GET versus POST in terms of security?pbreitenbach2009-08-19T05:06:15Z2009-08-19T05:06:15ZThe visibility (and caching) of querystrings in the URL and thus the address box is <i>clearly</i> less secure. There's no such thing as absolute security so degrees of security are relevant.http://stackoverflow.com/questions/1297812/how-to-implement-a-login-system-under-php/1297832#1297832Comment by pbreitenbach on how to implement a login system under php?pbreitenbach2009-08-19T04:51:11Z2009-08-19T04:51:11ZI don't think OpenID is a good answer to the question.