User ejunker - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T04:33:27Zhttp://stackoverflow.com/feeds/user/796http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1018078/testing-html-email-rendering4Testing HTML email renderingejunker2009-06-19T13:53:12Z2009-11-25T04:32:11Z
<p>Are there any good tools to easily test how HTML email will look across different email clients? I prefer something with instant feed back rather than a submit and wait service like <a href="http://litmusapp.com" rel="nofollow">http://litmusapp.com</a> Or at the very least a way to test the Outlook 2007/MS Word rendering?</p>
<p>I found this related question but it doesn't specifically address testing. <a href="http://stackoverflow.com/questions/127498/what-guidelines-for-html-email-design-are-there">What guidelines for HTML email design are there?</a></p>
http://stackoverflow.com/questions/1499544/linkto-create-and-destroy-a-resource-from-a-different-resource0link_to create and destroy a resource from a different resourceejunker2009-09-30T17:25:40Z2009-11-15T23:00:02Z
<p>The code below is working but I want to know if there is a better way to do it. Is this the correct RESTful way to do this? Any suggestions would be helpful. The basic requirement is that I need a way to create and destroy a membership from places/show.html.erb</p>
<pre><code>class Place < ActiveRecord::Base
has_many :memberships
has_many :members, :through => :memberships, :source => :user
def membership_for_user(user)
self.memberships.select{|m| m.user_id == user.id}
end
end
class User < ActiveRecord::Base
has_many :memberships
end
class Membership < ActiveRecord::Base
belongs_to :user
belongs_to :place
end
class MembershipsController < ApplicationController
def create
@membership = Membership.new({:user_id => current_user.id, :place_id => params[:place_id]})
unless @membership.save
flash[:notice] = "Unable to become member."
end
redirect_to place_path(params[:place_id])
end
def destroy
@membership = Membership.find(params[:id])
place_id = @membership.place_id
@membership.destroy
redirect_to place_path(place_id)
end
end
</code></pre>
<p>places/show.html.erb</p>
<pre><code><%= link_to 'Join', memberships_path(:place_id => @place.id), :method => :post %>
<%= link_to 'Cancel', @place.membership_for_user(current_user), :method => :delete %>
</code></pre>
http://stackoverflow.com/questions/96867/what-causes-tables-to-need-to-be-repaired2What causes tables to need to be repaired?ejunker2008-09-18T20:56:47Z2009-11-03T15:18:26Z
<p>Every so often I get an error saying one of my tables "is marked as crashed and should be repaired". I then do a REPAIR TABLE and repair it. What causes them to be marked as crashed and how can I prevent it? I am using MyISAM tables with MySQL 5.0.45.</p>
http://stackoverflow.com/questions/1324972/ajax-phpmyadmin-alternative/1663139#16631390Answer by ejunker for Ajax phpmyadmin alternative?ejunker2009-11-02T19:21:55Z2009-11-02T19:39:30Z<p>These aren't necessarily AJAX but thought I'd list them as they may be useful to other people:</p>
<ul>
<li><a href="http://www.adminer.org/en/" rel="nofollow">Adminer</a></li>
<li><a href="http://www.mysqlquickadmin.com/" rel="nofollow">MySQL Quick Admin</a></li>
<li><a href="http://phpminiadmin.sourceforge.net/" rel="nofollow">phpminiadmin</a></li>
</ul>
http://stackoverflow.com/questions/1460769/dry-form-partial-for-create-and-update1DRY form partial for create and updateejunker2009-09-22T15:27:30Z2009-09-25T16:04:41Z
<p>I have a _form.html.erb form partial which helps to DRY up my code but I need the form to have different labels depending on if I am creating a new user or updating an existing user.</p>
<p>Here is my form partial. I don't need to show the eula checkbox during update and I also need to replace the "Create my account" submit button text to something more appropriate when doing an update.</p>
<pre><code><% form_for @user do |f| %>
<%= f.error_messages %>
<p>
<%= f.label :name, 'Full name' %><br />
<%= f.text_field :name %>
</p>
<p>
<%= f.label :username %><br />
<%= f.text_field :username %>
</p>
<p>
<%= f.label :email, 'Email address' %><br />
<%= f.text_field :email %>
</p>
<p>
<%= f.label :password %><br />
<%= f.password_field :password %>
</p>
<p>
<%= f.label :password_confirmation %><br />
<%= f.password_field :password_confirmation %>
</p>
<p>
<%= f.check_box :eula %>
<%= f.label :eula, 'I agree to the terms and conditions' %>
</p>
<p><%= f.submit "Create my account" %></p>
<% end %>
</code></pre>
<p>Which one of the following is the best way to do this?</p>
<ul>
<li>have 2 separate form partials, one for create and one for update</li>
<li>have 1 form partial but have conditional labels based on the action (is this possible?)</li>
<li>factor the common part into a partial and reuse that in the create and update forms</li>
</ul>
<p>If I were to do conditional form how would I check which action is being performed?</p>
http://stackoverflow.com/questions/61451/does-django-have-html-helpers11Does Django have HTML helpers?ejunker2008-09-14T16:37:32Z2009-09-19T17:24:21Z
<p>Does Django have any template tags to generate common HTML markup? For example, I know that I can get a url using</p>
<pre><code>{% url mapper.views.foo %}
</code></pre>
<p>But that only gives me the URL and not the HTML code to create the link. Does Django have anything similar to Rails' link_to helper? I found <a href="http://code.google.com/p/django-helpers/" rel="nofollow">django-helpers</a> but since this is a common thing I thought Django would have something built-in.</p>
http://stackoverflow.com/questions/110043/how-do-i-determine-if-i-should-install-drupal-5-x-or-6-x4How do I determine if I should install Drupal 5.x or 6.x?ejunker2008-09-21T02:24:27Z2009-09-18T15:36:28Z
<p>I'm planning to install Drupal. Is there any reason not to install the latest 6.x version as opposed to the 5.x branch? Are there any really good modules that are 5.x only?</p>
http://stackoverflow.com/questions/1150339/rails-2-3-2-trying-to-render-erb-instead-of-haml/1382501#13825010Answer by ejunker for Rails 2.3.2 trying to render ERB instead of HAMLejunker2009-09-05T04:56:29Z2009-09-05T04:56:29Z<p>I ran into the same problem and I had to restart my server after installing Haml before my rails app recognized the changes.</p>
http://stackoverflow.com/questions/7301/higher-pay-for-advanced-degrees13Higher pay for advanced degrees?ejunker2008-08-10T19:37:12Z2009-07-07T18:11:42Z
<p>Are advanced degrees such as Master's degrees or PhDs beneficial for software engineers? Should they be compensated for their advanced degree? There are plenty of programmers that don't have a degree that are better then programmers with advanced degrees so by which metric do you rate programmers? KLOC is not a good metric. For many areas of the hard sciences there is a vast difference in salary between the people with a B.S. and those with a Master's degree and a PhD. Should it be the same for software engineers? Why or why not?</p>
http://stackoverflow.com/questions/1007066/how-do-i-attach-a-stream-filter-to-echo2How do I attach a stream filter to echo?ejunker2009-06-17T13:35:31Z2009-06-19T20:49:27Z
<p>Is there a way to attach a stream filter to echo so that any data that is echoed goes through the stream filter? My idea is to write an output escaping filter to protect against XSS.</p>
<p>I found this bug report <a href="http://bugs.php.net/bug.php?id=30583" rel="nofollow">http://bugs.php.net/bug.php?id=30583</a> but it is from 2004 and I didn't know if this is now possible or not.</p>
<pre><code>class strtoupper_filter extends php_user_filter
{
function filter($in, $out, &$consumed, $closing)
{
while ($bucket = stream_bucket_make_writeable($in)) {
$bucket->data = strtoupper($bucket->data);
$consumed += $bucket->datalen;
stream_bucket_append($out, $bucket);
}
return PSFS_PASS_ON;
}
}
stream_filter_register("strtoupper", "strtoupper_filter");
$fp = fopen("php://output", "w");
stream_filter_append($fp, "strtoupper");
echo "echo: testing 123<br>";
print("print: testing 123<br>");
fwrite($fp, "fwrite: testing 123<br>");
</code></pre>
http://stackoverflow.com/questions/163092/setting-default-values-conditional-assignment3Setting default values (conditional assignment)ejunker2008-10-02T15:42:48Z2009-06-03T13:31:12Z
<p>In Ruby you can easily set a default value for a variable </p>
<pre><code>x ||= "default"
</code></pre>
<p>The above statement will set the value of x to "default" if x is nil or false</p>
<p>Is there a similar shortcut in PHP or do I have to use the longer form:</p>
<pre><code>$x = (isset($x))? $x : "default";
</code></pre>
<p>Are there any easier ways to handle this in PHP?</p>
http://stackoverflow.com/questions/527638/getting-the-client-ip-address-remoteaddr-httpxforwardedfor-what-else-could/916157#9161572Answer by ejunker for Getting the client IP address: REMOTE_ADDR, HTTP_X_FORWARDED_FOR, what else could be useful?ejunker2009-05-27T14:47:55Z2009-05-27T14:47:55Z<p>In addition to <code>REMOTE_ADDR</code> and <code>HTTP_X_FORWARDED_FOR</code> there are some other headers that can be set such as:</p>
<ul>
<li><code>HTTP_CLIENT_IP</code></li>
<li><code>HTTP_X_FORWARDED_FOR</code> can be comma delimited list of IPs</li>
<li><code>HTTP_X_FORWARDED</code></li>
<li><code>HTTP_X_CLUSTER_CLIENT_IP</code></li>
<li><code>HTTP_FORWARDED_FOR</code></li>
<li><code>HTTP_FORWARDED</code></li>
</ul>
<p>I found the code on the following site useful:
<a href="http://www.grantburton.com/tag/http%5Fx%5Fforwarded%5Ffor/" rel="nofollow">http://www.grantburton.com/tag/http_x_forwarded_for/</a></p>
http://stackoverflow.com/questions/290581/handling-mysql-full-text-special-characters3Handling MySQL Full Text Special Charactersejunker2008-11-14T16:10:39Z2009-05-14T00:25:09Z
<p>When using MySQL full text search in boolean mode there are certain characters like + and - that are used as operators. If I do a search for something like "C++" it interprets the + as an operator. What is the best practice for dealing with these special characters?</p>
<p>The current method I am using is to convert all + characters in the data to _plus. It also converts &,@,/ and # characters to a textual representation.</p>
http://stackoverflow.com/questions/591936/mysqliuseresult-and-concurrency0mysqli_use_result() and concurrencyejunker2009-02-26T18:57:12Z2009-02-26T21:24:37Z
<p>According to the documentation at <a href="http://us3.php.net/mysqli%5Fuse%5Fresult" rel="nofollow">mysqli_use_result</a></p>
<blockquote>
<p>One should not use mysqli_use_result() if a lot of processing on the client side is performed, since this will tie up the server and prevent other threads from updating any tables from which the data is being fetched. </p>
</blockquote>
<p>Does this only pertain to myISAM tables or also for InnoDB? </p>
http://stackoverflow.com/questions/507593/what-is-the-best-way-to-escape-user-output-with-the-zend-framework/512773#5127730Answer by ejunker for What is the best way to escape user output with the Zend Framework?ejunker2009-02-04T18:55:39Z2009-02-04T18:55:39Z<p>If you are concerned about security and want to automatically escape all variables similar to how Django does then you might be interested in this article.</p>
<p><a href="http://codeutopia.net/blog/2007/11/10/how-to-automatically-escape-template-variables-in-zend_view/" rel="nofollow">How to automatically escape template variables in Zend_View</a></p>
http://stackoverflow.com/questions/486143/a-generic-catch-all-action-in-zend-framework-can-it-be-done/496786#4967861Answer by ejunker for A Generic, catch-all action in Zend Framework... can it be done?ejunker2009-01-30T19:08:52Z2009-01-30T19:08:52Z<p>If you want to use gabriel1836's _call() method you should be able to disable the layout and view and then render whatever you want.</p>
<pre><code>$this->_helper->layout()->disableLayout();
$this->_helper->viewRenderer->setNoRender(true);
</code></pre>
http://stackoverflow.com/questions/385837/simple-web-page-layout-and-templating-in-php/402329#4023294Answer by ejunker for Simple web page layout and templating in PHPejunker2008-12-31T04:49:53Z2008-12-31T04:49:53Z<p><a href="http://framework.zend.com/manual/en/zend.view.html" rel="nofollow">Zend_View</a> supports layouts, partials and placeholders. Also checkout a new templating language called <a href="http://dwoo.org" rel="nofollow">Dwoo</a> which is similar to Smarty but also takes some ideas from Django templating. And finally, <a href="http://www.beberlei.de/calypso/" rel="nofollow">Calypso</a> which is a Django template language clone for PHP</p>
http://stackoverflow.com/questions/395375/honor-a-cookie-in-all-open-tabs/402312#4023121Answer by ejunker for Honor a cookie in all open tabsejunker2008-12-31T04:38:25Z2008-12-31T04:38:25Z<p>I would use the Firefox extension LiveHTTPHeaders to view the headers and verify that the cookie is being sent. </p>
http://stackoverflow.com/questions/395650/url-mapping-in-php/402304#4023041Answer by ejunker for URL mapping in PHP?ejunker2008-12-31T04:28:03Z2008-12-31T04:28:03Z<p>As others have mentioned you can use mod_rewrite to do this but also you could use a front controller design pattern which is what many of the web frameworks use. Take a look at <a href="http://dev.horde.org/routes/" rel="nofollow">Horde routes</a> or <a href="http://zendframework.com/manual/en/zend.controller.router.html" rel="nofollow">Zend_Controller_Router_Rewrite</a> which can be used for MVC,</p>
http://stackoverflow.com/questions/392088/call-a-function-before-outputting-headers-in-php/392436#3924361Answer by ejunker for Call a function before outputting headers in PHP?ejunker2008-12-25T02:14:18Z2008-12-25T02:14:18Z<p>I don't know if it is what you are looking for but you might want to investigate using auto_prepend_file in your php.ini or setting it in an .htaccess file. If you set an auto_prepend_file it will automatically include that file before running each script.</p>
<p><a href="http://www.askapache.com/php/use-phpini-to-add-http-headers-to-output.html" rel="nofollow">auto_prepend_file</a></p>
http://stackoverflow.com/questions/388080/fast-eclipse-mode-for-php/389302#3893021Answer by ejunker for Fast eclipse mode for PHPejunker2008-12-23T16:12:09Z2008-12-23T16:12:09Z<p>Is Eclipse running from the network drive or is the file you are editing on the network drive. I run Eclipse with PHPEclipse all the time and the files I edit are on a network drive which mounts a Samba share on a Linux virtual machine and I have no problems. Eclipse depends on Java and it also takes a lot of memory. You may want to check that Java is working properly and that you aren't running out of memory. Or do an experiment and edit a file that is not on a network drive and see if it is any faster.</p>
http://stackoverflow.com/questions/364989/smarty-benchmark-anyone/384192#3841923Answer by ejunker for Smarty benchmark, anyone?ejunker2008-12-21T06:29:24Z2008-12-21T06:29:24Z<p>You might also want to take at a new template library that is similar to Smarty called <a href="http://dwoo.org" rel="nofollow">Dwoo</a></p>
http://stackoverflow.com/questions/366364/what-do-you-think-about-this-weird-idea-about-how-to-configure-development-stagin/384187#3841870Answer by ejunker for What do you think about this weird idea about how to configure development/staging/production instances?ejunker2008-12-21T06:25:07Z2008-12-21T06:25:07Z<p>If you want to set the environment in the vhost you can do something like</p>
<pre><code>php_value ENV "development"
</code></pre>
<p>And then read it from the <code>$_SERVER</code> array</p>
http://stackoverflow.com/questions/377776/named-parameters-caching-and-pdo/384153#3841530Answer by ejunker for Named parameters, caching and PDOejunker2008-12-21T05:53:28Z2008-12-21T05:53:28Z<p>I'm not sure how PDO handles named parameters but if it uses MySQL prepared statements then you will need to use MySQL 5.1.17 or later if you want it to use the query cache.</p>
<p><a href="http://dev.mysql.com/doc/refman/5.1/en/query-cache-how.html" rel="nofollow">MySQL Query Cache</a></p>
<blockquote>
<p>Before MySQL 5.1.17, prepared statements do not use the query cache. Beginning with 5.1.17, prepared statements use the query cache under certain conditions, which differ depending on the preparation method: </p>
</blockquote>
http://stackoverflow.com/questions/50303/persistent-db-connections-yea-or-nay/278828#2788280Answer by ejunker for Persistent DB Connections - Yea or Nay?ejunker2008-11-10T19:06:22Z2008-11-10T19:06:22Z<p>I was going to ask this same question but rather than ask the same question again I'll just add some information that I've found.</p>
<ul>
<li><a href="http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/" rel="nofollow">Are PHP persistent connections evil ?</a></li>
<li><a href="http://us2.php.net/manual/en/features.persistent-connections.php" rel="nofollow">Persistent Database Connections</a></li>
</ul>
<p>It is also worth noting that the newer mysqli extension does not even include the option to use persistent database connections.</p>
<p>I'm still using persitent connections at the moment but plan to switch to non-persistent in the near future.</p>
http://stackoverflow.com/questions/244208/mysql-countdistinct-unexpected-results1MySQL COUNT(DISTINCT()) unexpected resultsejunker2008-10-28T17:59:20Z2008-11-10T18:52:17Z
<p>I'm using MySQL 5.0.45 on CentOS 5.1.</p>
<p><code>SELECT DISTINCT(email) FROM newsletter</code></p>
<p>Returns 217259 rows</p>
<p><code>SELECT COUNT(DISTINCT(email)) FROM newsletter</code></p>
<p>Returns 180698 for the count.</p>
<p><code>SELECT COUNT(*) FROM (SELECT DISTINCT(email) FROM newsletter) AS foo</code></p>
<p>Returns 180698 for the count.</p>
<p>Shouldn't all 3 queries return the same value?</p>
<p>Here is the schema of the newsletter table</p>
<pre>
CREATE TABLE `newsletter` (
`newsID` int(11) NOT NULL auto_increment,
`email` varchar(128) NOT NULL default '',
`newsletter` varchar(8) NOT NULL default '',
PRIMARY KEY (`newsID`)
) ENGINE=MyISAM;
</pre>
<p><strong>Update:</strong> I've found that if I add a <codE>WHERE</code> clause to the first query then I get the correct results. The <codE>WHERE</code> clause is such that it will not effect the results.</p>
<p><code>SELECT DISTINCT(email) FROM newsletter WHERE newsID > 0</code></p>
http://stackoverflow.com/questions/842/best-way-to-implement-unit-testing-in-php/6563#65631Answer by ejunker for Best way to implement unit testing in PHPejunker2008-08-09T02:44:09Z2008-11-03T18:10:11Z<p>You could always use a post-commit hook of CVS or Subversion to automatically run your tests. Or use a continuous integration tool such as
phpUnderControl http://www.phpundercontrol.org
Xinc http://code.google.com/p/xinc/</p>http://stackoverflow.com/questions/66922/what-are-some-search-servers-out-there/252430#2524301Answer by ejunker for What are some Search Servers out there?ejunker2008-10-31T02:10:13Z2008-10-31T02:10:13Z<p>Here are some more open source search engines</p>
<ul>
<li><a href="http://www.sphinxsearch.com/" rel="nofollow">Sphinx</a></li>
<li><a href="http://xapian.org/" rel="nofollow">Xapian</a></li>
<li><a href="http://framework.zend.com/manual/en/zend.search.lucene.html" rel="nofollow">Zend_Search_Lucene</a></li>
</ul>
<p>Here are some search related tools</p>
<ul>
<li><p><a href="http://code.google.com/p/forage/" rel="nofollow">Forage</a> The Forage PHP5 library is an easy to use interface to
multiple back end search libraries. It provides a common interface while
supporting unique features in each library by allowing back-ends to support
specific features or not.</p></li>
<li><p><a href="http://code.google.com/p/marjory/" rel="nofollow">Marjory</a> Marjory is a webservice for indexing and searching for
documents, utilizing a full-text search engine.</p></li>
</ul>
http://stackoverflow.com/questions/231211/using-git-how-do-i-find-modified-files-betwen-local-and-remote8Using Git how do I find modified files betwen local and remoteejunker2008-10-23T19:52:30Z2008-10-23T20:31:36Z
<p>Here are 2 different questions but I think they are related.</p>
<ol>
<li><p>When using git how do I find which changes I have committed locally but haven't yet pushed to a remote branch? I'm looking for something similar to the Mercurial command "hg outgoing"</p></li>
<li><p>When using git how do I find what changes a remote branch has prior to doing a pull? I'm looking for something similar to the Mercurial command "hg incoming"</p></li>
</ol>
<p>Also for 2. is there a way to see what is available and then cherry-pick the changes I want to pull?</p>
http://stackoverflow.com/questions/227557/is-it-dumb-to-develop-for-lamp-on-wamp/227576#2275761Answer by ejunker for Is it dumb to develop for LAMP on WAMP?ejunker2008-10-22T21:17:10Z2008-10-22T21:17:10Z<p>Yes I would recommend developing on an environment as close to your production environment as possible. There are differences between how PHP works on Windows as compared to Linux. And other differences like how Linux handles file permissions as compared to Windows. I run the free VMWare server with a Linux virtual machine. I have a Samba share on the Linux VM that I mount as a networked drive in Windows. Then I use Eclipse on Windows as my code editor. </p>
http://stackoverflow.com/questions/493634/rails-should-i-use-boolean-fields-or-relational-table/495287#495287Comment by ejunker on Rails - Should I use boolean fields or relational table?ejunker2009-11-06T21:37:01Z2009-11-06T21:37:01ZSince you are using Rails I assume you might be using MySQL. To my knowledge MySQL does not support bitmap indexes. Thus if you want to find all users with a given flag then you might do a query like SELECT * FROM users WHERE (flags&1 = 1) which will not use an index and do a full table scan.http://stackoverflow.com/questions/277224/how-do-i-catch-a-php-fatal-error/277230#277230Comment by ejunker on How do I catch a PHP Fatal Errorejunker2009-08-19T17:55:32Z2009-08-19T17:55:32ZWon't that only work if display_errors is on?http://stackoverflow.com/questions/1018078/testing-html-email-rendering/1019214#1019214Comment by ejunker on Testing HTML email renderingejunker2009-06-19T20:25:19Z2009-06-19T20:25:19ZBy "instant feedback" I mean something where I don't have to actually send the email to see my changes. Something similar to web browsers where I can make a change, hit refresh and see the results. Anything similar for Outlook?http://stackoverflow.com/questions/1007066/how-do-i-attach-a-stream-filter-to-echo/1007125#1007125Comment by ejunker on How do I attach a stream filter to echo?ejunker2009-06-17T14:20:40Z2009-06-17T14:20:40ZGood idea except that would filter everything. If I have a PHP script that includes PHP code and HTML I would only want the stuff that PHP outputs to go through the filter and not have the HTML code filtered.http://stackoverflow.com/questions/526438/do-you-only-run-htmlspecialchars-on-output-or-is-there-other-functionality-you/530076#530076Comment by ejunker on Do you only run htmlspecialchars() on output or is there other functionality you also do?ejunker2009-06-17T13:53:41Z2009-06-17T13:53:41Z1. Filter input 2. Escape output <a href="http://shiflett.org/blog/2005/feb/my-top-two-php-security-practices" rel="nofollow">shiflett.org/blog/2005/…</a>http://stackoverflow.com/questions/341993/is-django-development-faster-than-asp-net-for-small-medium-size-apps/342020#342020Comment by ejunker on Is Django Development faster than ASP.NET for small/medium-size apps?ejunker2008-12-30T23:29:06Z2008-12-30T23:29:06ZI agree with Jake. If you are working on a team and you need to meet a deadline then you don't have time to retrain the whole team to learn the new web framework. You will also not have all the knowledge that you learned by mistake and will make those same mistakes with the new web framework. http://stackoverflow.com/questions/368981/php-get-rid-of-slashes-full-path/368989#368989Comment by ejunker on PHP get rid of slashes full path ejunker2008-12-21T06:07:40Z2008-12-21T06:07:40ZInstead of using / it may be best to use the more portable PATH_SEPARATOR constant