User ceejayoz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T11:36:17Z http://stackoverflow.com/feeds/user/2297 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1931605/does-a-programming-framework-make-you-less-of-a-programmer/1931621#1931621 2 Answer by ceejayoz for Does a programming framework make you less of a programmer ceejayoz 2009-12-19T01:28:32Z 2009-12-19T01:28:32Z <p>No more than using a language instead of raw binary does.</p> http://stackoverflow.com/questions/1930104/jquery-load-doesnt-work-in-webkit-and-opera/1930356#1930356 1 Answer by ceejayoz for jQuery, $.load doesn't work in webkit and opera? ceejayoz 2009-12-18T19:56:10Z 2009-12-18T19:56:10Z <p>Looks like you're not waiting for<code> $(document).ready()</code> to me, unless I'm missing something.</p> <pre><code>$(document).ready(function(){ var basedir = $("meta[name=basedir]").attr("content"); function loadslides() { $("#presentation").load(basedir+"/slides.html .slide"); }; loadslides(); }); </code></pre> http://stackoverflow.com/questions/1930297/html-to-plain-text-for-email/1930336#1930336 0 Answer by ceejayoz for HTML to plain text (for email) ceejayoz 2009-12-18T19:51:52Z 2009-12-18T19:51:52Z <p>I'd suggest using a HTML to Markdown converter.</p> <ul> <li><a href="http://milianw.de/projects/markdownify/" rel="nofollow">http://milianw.de/projects/markdownify/</a></li> <li><a href="http://code.google.com/p/pandoc/source/browse/trunk/html2markdown" rel="nofollow">http://code.google.com/p/pandoc/source/browse/trunk/html2markdown</a></li> </ul> http://stackoverflow.com/questions/1924031/stop-javascript-onclick-page-jumping/1924042#1924042 3 Answer by ceejayoz for Stop javascript onclick 'page jumping' ceejayoz 2009-12-17T19:34:04Z 2009-12-17T19:34:04Z <p>If returning false in the onclick attribute isn't working, there's something else going on. The solutions posted there <em>do</em> work in a normal situation, so we'll need to see your code.</p> http://stackoverflow.com/questions/1923679/wordpress-hiding-post-div/1923900#1923900 0 Answer by ceejayoz for Wordpress hiding Post Div ceejayoz 2009-12-17T19:07:57Z 2009-12-17T19:07:57Z <p>You can use the <code>have_posts()</code> function to detect whether there are any posts in the loop, and do conditionals based on that.</p> http://stackoverflow.com/questions/1922797/jquery-onload-prettyphoto/1922825#1922825 0 Answer by ceejayoz for jquery onload prettyphoto ceejayoz 2009-12-17T16:11:00Z 2009-12-17T16:11:00Z <p>You could try:</p> <pre><code>$("a[rel^='prettyPhoto']").prettyPhoto().click(); </code></pre> <p>That should trigger a click event on the link after attaching the prettyPhoto events to it. I imagine it'll break if you have more than one prettyPhoto link on the page, though.</p> http://stackoverflow.com/questions/1917131/iphone-is-it-possible-to-override-silent-mode-or-have-a-recursive-alert-sound-w/1917372#1917372 4 Answer by ceejayoz for iPhone - Is it possible to override silent mode or have a recursive alert sound with push notification? ceejayoz 2009-12-16T20:16:02Z 2009-12-16T20:16:02Z <p>Apple tends not to permit activities that could be so easily used to abuse the user. If I enable silent mode, there's a reason.</p> http://stackoverflow.com/questions/1917215/forcing-headings-to-wrap-in-html/1917334#1917334 1 Answer by ceejayoz for Forcing headings to wrap in html ceejayoz 2009-12-16T20:08:45Z 2009-12-16T20:08:45Z <p><code>h1</code> tags wrap by default. If they're not, something in your CSS is overriding that default behaviour. If you can post a link to the site, we can quickly help you out. You might want to consider installing Firebug for Firefox - it'll let you right-click on the <code>h1</code> and view what styles are being applied to it, and from where they come.</p> http://stackoverflow.com/questions/1915864/all-in-one-php-bundle-for-ubuntu/1916065#1916065 2 Answer by ceejayoz for All-in-one PHP bundle for Ubuntu ceejayoz 2009-12-16T16:57:51Z 2009-12-16T16:57:51Z <p>One of the downsides of package management is that you're at the mercy of the package maintainers. <a href="http://www.brandonsavage.net/php-5-3-not-in-next-version-of-ubuntu/" rel="nofollow">Ubuntu has opted not to update to PHP 5.3 in this version</a>, so you'll have to either wait until 2010 for it or compile PHP yourself.</p> http://stackoverflow.com/questions/1915563/drupal-modifying-a-user-at-registration/1915734#1915734 0 Answer by ceejayoz for Drupal: Modifying a User at Registration ceejayoz 2009-12-16T16:13:05Z 2009-12-16T16:13:05Z <p>Have you checked Drupal's logs? It should be throwing errors, as this is not a valid query.</p> <pre><code>$sql = "UPDATE users SET account = \'value\' WHERE uid = \'29\'"; </code></pre> <p>Should be:</p> <pre><code>$sql = "UPDATE users SET account = 'value' WHERE uid = '29'"; </code></pre> <p>Additionally, in:</p> <pre><code>function accountselect_submit(&amp;$form, &amp;$form_state) { if($form_id == 'user-register') drupal_execute('accountselect_submitaccount'); } </code></pre> <p><code>$form_id</code> is never defined.</p> <p>You say you've created the field in the database, but it must match the name of the Drupal field to be automatically handled. You've got two different names for it - <code>account_name</code> in the Drupal field, but <code>account</code> in the database. Make them consistent and it should be automatically handled, no submit functions required.</p> http://stackoverflow.com/questions/1915083/computer-architecture/1915147#1915147 2 Answer by ceejayoz for computer architecture ceejayoz 2009-12-16T14:54:17Z 2009-12-16T14:54:17Z <p>If you're required to take the course, usually they'll require that you receive credit for it from an accredited educational institution. I can't think of many masters' programs that would accept "I watched a webcast" for a degree requirement...</p> http://stackoverflow.com/questions/1914854/drupal6-auto-creation-of-node/1914922#1914922 0 Answer by ceejayoz for Drupal6 auto creation of node ceejayoz 2009-12-16T14:17:59Z 2009-12-16T14:17:59Z <p>This is certainly possible with a custom module. You'd want to use <code>hook_user</code> to tie into the registration process (via the 'insert' operation) and add your steps to it.</p> http://stackoverflow.com/questions/1911055/track-a-short-url-generated-for-a-long-url/1911134#1911134 1 Answer by ceejayoz for Track a short URL generated for a long URL ceejayoz 2009-12-15T23:11:11Z 2009-12-15T23:11:11Z <p>They store the URLs in their database, associated with the short URL(s). How else would it be done?</p> http://stackoverflow.com/questions/1910623/drupal-6-getting-custom-fields-into-the-database/1910762#1910762 0 Answer by ceejayoz for Drupal 6: Getting custom fields into the database ceejayoz 2009-12-15T22:09:12Z 2009-12-15T22:09:12Z <p>To my knowledge, new fields are only added to the <code>data</code> column if there's no column matching the field name. You should be able to just create a column of <code>account</code> into the user table and it'll get populated with that data.</p> <p>As for the code you've posted, your submission function has a number of issues:</p> <ul> <li>Submit functions take functions that include the submitted values. <code>submit_function($form, &amp;$form_state)</code> gives you access to the <code>$form_state['values']</code> array.</li> <li>An <code>INSERT</code> will never work. You need an <code>UPDATE</code> query.</li> <li>You can't do <code>{account_name}</code> in the query. You need to actually use the value from <code>$form_state['values']</code>.</li> </ul> http://stackoverflow.com/questions/1904152/how-to-offer-code-for-others-to-embed-your-content-into-their-html-pages/1904172#1904172 2 Answer by ceejayoz for How to offer code for others to embed your content into their html pages? ceejayoz 2009-12-14T23:09:39Z 2009-12-14T23:15:45Z <p>At its very simplest:</p> <p>Create a .js file with:</p> <pre><code>document.write("&lt;ul&gt;"); document.write(" &lt;li&gt;Item 1&lt;/li&gt;"); document.write(" &lt;li&gt;Item 2&lt;/li&gt;"); document.write("&lt;/ul&gt;"); </code></pre> <p>Your users would then include this code wherever they wanted your embedded code to appear:</p> <pre><code>&lt;script type="text/javascript" src="http://example.com/path/to/file.js"&gt;&lt;/script&gt; </code></pre> <p>This approach allows them to style content. They wouldn't be able to style an IFRAME, but some sites providing IFRAMEable widgets solve this by allowing the user to pick colours, background images, etc. on a setup page.</p> http://stackoverflow.com/questions/1904168/how-do-i-submit-a-file-input-without-submit-button-with-javascript/1904189#1904189 -1 Answer by ceejayoz for How do I submit a "file" input without submit button with JavaScript? ceejayoz 2009-12-14T23:13:12Z 2009-12-14T23:13:12Z <p>I don't believe you can do this. Browsers are very, very strict about what you can do to file upload fields, because of the potential for abuse. If the user accidentally selects a private file, they wouldn't want it to immediately start uploading that file to a random server.</p> http://stackoverflow.com/questions/1904116/drupal-general-means-for-finding-templates/1904144#1904144 2 Answer by ceejayoz for Drupal - General means for finding templates? ceejayoz 2009-12-14T23:04:20Z 2009-12-14T23:04:20Z <p>The <a href="http://drupal.org/project/devel" rel="nofollow">devel</a> module includes a theme developer function that'll let you click anywhere in the page and determine what templates, theme functions, etc. are used (or can be used) to generate an element.</p> <p><img src="http://drupal.org/files/devel%5Fthemer%5Fpopup.jpg" alt="alt text"></p> <p>You can use PHP's <code>get_defined_vars()</code> function to get the variables available in a particular template or function.</p> http://stackoverflow.com/questions/1903841/imagemagick-pdf-to-jpeg-conversion-results-in-green-square-where-image-should-be 1 ImageMagick PDF to JPEG conversion results in green square where image should be ceejayoz 2009-12-14T22:06:34Z 2009-12-14T22:06:34Z <p>I'm attempting to convert a PDF to a JPEG using ImageMagick.</p> <p>The PDF: <a href="http://classifieds.democratandchronicle.com/bab/baby%5FaRCWTU.pdf" rel="nofollow"><code>baby_aRCWTU.pdf</code></a></p> <p>The command: <code>convert -density 260 -profile 'SWOP.icc' -profile 'sRGB.icm' 'baby_aRCWTU.pdf' 'baby_aRCWTU.jpg'</code></p> <p>The resulting JPEG: <a href="http://classifieds.democratandchronicle.com/bab/baby%5FaRCWTU.jpg" rel="nofollow"><code>baby_aRCWTU.jpg</code></a></p> <p>As you can see, the text is rendered nicely, but the embedded image shows up as a green square. Any ideas? This occurs with and without the colour profiles.</p> <p><strong>edit:</strong> reposted due to broken links</p> http://stackoverflow.com/questions/1903577/add-analytics-to-account-of-someone-other-than-the-one-who-set-it-up/1903674#1903674 1 Answer by ceejayoz for Add Analytics to account of someone other than the one who set it up? ceejayoz 2009-12-14T21:36:53Z 2009-12-14T21:36:53Z <p>I've put two Google Analytics tracking codes from different accounts on the same site without issues. It may cause the site to be a tiny bit slower (as it communicates twice with Google) but it'll do nothing that would delete old data or impede collection of new data.</p> <p>In short, what you're doing sounds like a good first step.</p> <p>You will <em>not</em>, however, be able to access past data by doing this. You will be able to compare their numbers with the numbers you're getting, though, which should be valuable.</p> http://stackoverflow.com/questions/1902260/will-google-index-https-pages/1902274#1902274 3 Answer by ceejayoz for Will google index https pages? ceejayoz 2009-12-14T17:24:50Z 2009-12-14T17:24:50Z <p>Yes, they will.</p> <p>Example search: <code>http://www.google.com/search?q=%22SSL+Certificates+-+Secure+Your+Data+%26+Transactions%22+site%3Agodaddy.com</code></p> <p>You should see a result indicating the URL is "<code>https://www.godaddy.com/gdshop/ssl/ssl.asp</code>".</p> http://stackoverflow.com/questions/1898293/optional-function-inputs-in-php/1898442#1898442 0 Answer by ceejayoz for optional function inputs in PHP ceejayoz 2009-12-14T01:00:21Z 2009-12-14T01:00:21Z <p>An additional option that allows arbitrary ordering of arguments:</p> <pre><code>function my_function($arguments) { if($arguments['argument1']) { // do something } if($arguments['argument2'] == 'LOLCAT') { // do something else } } my_function(array('argument1' =&gt; 1, 'argument2' =&gt; 'LOLCAT')); </code></pre> http://stackoverflow.com/questions/1868491/html-text-does-not-disappear-both-is-visible/1868582#1868582 0 Answer by ceejayoz for HTML text does not disappear... both is visible!?!?! ceejayoz 2009-12-08T17:36:47Z 2009-12-08T17:36:47Z <p>sIFR includes CSS files. You'll need them - sIFR puts a class on the old HTML text, which the CSS file instructs the browser to hide.</p> http://stackoverflow.com/questions/1868102/order-by-rand-alternative/1868543#1868543 0 Answer by ceejayoz for ORDER BY RAND() alternative ceejayoz 2009-12-08T17:30:48Z 2009-12-08T17:30:48Z <p>If you only need a new set of random data once an hour, don't hit the database - save the results to your application's caching layer (or, if it doesn't have one, just put it out into a temporary file of some sort). Query cache is handy, but if you never need to even execute a query, even better...</p> http://stackoverflow.com/questions/1343463/how-powerful-is-drupal-really/1343467#1343467 12 Answer by ceejayoz for How powerful is Drupal really? ceejayoz 2009-08-27T20:01:59Z 2009-12-08T13:27:04Z <p><a href="http://www.theonion.com/content/index" rel="nofollow">The Onion</a> and <a href="http://www.whitehouse.gov/" rel="nofollow">WhiteHouse.gov</a> are Drupal-powered, and I'd say they're fairly huge sites. The founder of the Drupal project keeps <a href="http://buytaert.net/tag/drupal-sites" rel="nofollow">a list</a> of some prominent Drupal-powered sites.</p> http://stackoverflow.com/questions/1853250/real-time-twitter-status/1853271#1853271 1 Answer by ceejayoz for Real Time Twitter Status ceejayoz 2009-12-05T19:57:22Z 2009-12-05T19:57:22Z <p>Twitter provides <a href="http://apiwiki.twitter.com/Streaming-API-Documentation" rel="nofollow">a streaming API</a> for this sort of usage (statuses/filter). Some levels of access require approval.</p> http://stackoverflow.com/questions/1852729/hows-the-latest-ruby-on-rails-code/1853127#1853127 -1 Answer by ceejayoz for How's the latest Ruby on Rails code? ceejayoz 2009-12-05T19:12:13Z 2009-12-05T19:12:13Z <p>Are you planning on having a site as heavily trafficked as Twitter?</p> <p>If not, why are you worrying about issues that only came up under massive load?</p> http://stackoverflow.com/questions/1853020/amazon-affiliate-links-on-a-website-written-by-users/1853104#1853104 0 Answer by ceejayoz for Amazon Affiliate links on a website written by users ceejayoz 2009-12-05T19:03:47Z 2009-12-05T19:03:47Z <p>You'll need an affiliate account. You will then need to write code that takes users' posts, detects links to Amazon.com in them, and adds your affiliate code to those links.</p> http://stackoverflow.com/questions/1850354/ie8-breaks-google-cdn-in-intranet-app/1850381#1850381 6 Answer by ceejayoz for IE8 breaks Google CDN in Intranet app? ceejayoz 2009-12-04T23:35:00Z 2009-12-04T23:35:00Z <p>Presumably, the "Local Intranet" zone doesn't permit script files from outside the zone.</p> <p>This may be one of the situations in which it makes more sense to just host jQuery locally - after all, an intranet is (hopefully!) the one situation in which hosting it yourself is likely to be faster than letting Google handle it.</p> http://stackoverflow.com/questions/1850357/extreme-ajax-implementation-in-web-service/1850372#1850372 2 Answer by ceejayoz for extreme ajax implementation in web service? ceejayoz 2009-12-04T23:32:59Z 2009-12-04T23:32:59Z <p>That's how Meebo, Gmail, etc. do it, so there are clearly legitimate use cases. Do note that they have versions that work without JavaScript, to avoid losing audience...</p> http://stackoverflow.com/questions/1847815/how-can-web-developers-take-advantage-of-googles-public-dns/1847831#1847831 9 Answer by ceejayoz for How can Web Developers take advantage of Google's Public DNS ceejayoz 2009-12-04T15:49:31Z 2009-12-04T15:49:31Z <p>Which DNS server a visitor uses makes no difference to the web developer.</p> http://stackoverflow.com/questions/1931768/html-customize-select/1931818#1931818 Comment by ceejayoz on HTML Customize Select ceejayoz 2009-12-19T03:25:18Z 2009-12-19T03:25:18Z jQuery is just a JavaScript library - a damned good one, too, that'd likely make your life easier if you used it. http://stackoverflow.com/questions/1931413/i-have-about-two-months-to-learn-as-much-about-joomla-as-possible Comment by ceejayoz on I have about two months to learn as much about Joomla as possible. ceejayoz 2009-12-19T01:32:26Z 2009-12-19T01:32:26Z Joomla was a requirement for my current position. I wound up pitching Drupal instead shortly after learning all I could about Joomla. They immediately signed on. http://stackoverflow.com/questions/1931519/what-are-the-best-strategies-and-examples-for-teaching-c-memory-management-to-e Comment by ceejayoz on What are the best strategies and examples for teaching C++ memory management to early college students? ceejayoz 2009-12-19T01:30:40Z 2009-12-19T01:30:40Z Put your slides at the bottom of a beer glass! http://stackoverflow.com/questions/1931562/java-jquery-that-detects-ie6-and-lower-and-slides-prompts-message Comment by ceejayoz on Java/jQuery that detects IE6 and lower and slides/prompts message ceejayoz 2009-12-19T01:30:08Z 2009-12-19T01:30:08Z Please note: You're talking about JavaScript, not Java. The two are entirely different. http://stackoverflow.com/questions/1930297/html-to-plain-text-for-email/1930336#1930336 Comment by ceejayoz on HTML to plain text (for email) ceejayoz 2009-12-18T23:55:08Z 2009-12-18T23:55:08Z Uh, have you used or read anything about Markdown? &quot;The overriding design goal for Markdown’s formatting syntax is to make it as readable as possible. **The idea is that a Markdown-formatted document should be publishable as-is, as plain text, without looking like it’s been marked up with tags or formatting instructions.**&quot; http://stackoverflow.com/questions/1930297/html-to-plain-text-for-email/1930366#1930366 Comment by ceejayoz on HTML to plain text (for email) ceejayoz 2009-12-18T20:11:20Z 2009-12-18T20:11:20Z Neat idea, I like it. http://stackoverflow.com/questions/1924939/php-request-vs-get-and-post/1924945#1924945 Comment by ceejayoz on Php $_REQUEST vs $_GET and $_POST ceejayoz 2009-12-17T22:11:11Z 2009-12-17T22:11:11Z Good answer, with the caveat that in many situations a GET or a POST should be picked based on the situation instead of using either one. http://stackoverflow.com/questions/1923681/iphone-accessibility-using-red-on-black-for-images Comment by ceejayoz on iPhone Accessibility using "Red on Black" for images ceejayoz 2009-12-17T19:08:49Z 2009-12-17T19:08:49Z What kind of images? Are these line diagrams or something? Normal photos, logos, etc. would be pretty horrible if turned to green-on-black...kkkkkkk http://stackoverflow.com/questions/1923115/how-do-you-remove-illegal-characters-from-an-xml-file/1923163#1923163 Comment by ceejayoz on How do you remove illegal characters from an xml file? ceejayoz 2009-12-17T17:10:46Z 2009-12-17T17:10:46Z The question is how to handle such an invalid XML file when it's not under your control. http://stackoverflow.com/questions/1923086/pure-javascript-equivalent-of-jquery-largebox2link-click Comment by ceejayoz on pure javascript equivalent of jquery $("#large_box2_link").click(); ceejayoz 2009-12-17T16:56:53Z 2009-12-17T16:56:53Z There's no reason that code shouldn't work in IE6. There's likely something else going on. http://stackoverflow.com/questions/1910623/drupal-6-getting-custom-fields-into-the-database/1910762#1910762 Comment by ceejayoz on Drupal 6: Getting custom fields into the database ceejayoz 2009-12-16T23:28:25Z 2009-12-16T23:28:25Z Indeed it is - it's highly handy. :-D http://stackoverflow.com/questions/1910623/drupal-6-getting-custom-fields-into-the-database/1910762#1910762 Comment by ceejayoz on Drupal 6: Getting custom fields into the database ceejayoz 2009-12-16T22:52:29Z 2009-12-16T22:52:29Z Additionally, Drupal provides schema functions that are for altering other modules' tables, including core ones. <a href="http://api.lullabot.com/hook_schema_alter/7" rel="nofollow">api.lullabot.com/hook_schema_alter/7</a> http://stackoverflow.com/questions/1910623/drupal-6-getting-custom-fields-into-the-database/1910762#1910762 Comment by ceejayoz on Drupal 6: Getting custom fields into the database ceejayoz 2009-12-16T22:44:05Z 2009-12-16T22:44:05Z @mac - <code>user&#95;save</code> specifically seeks out columns in the <code>user</code> table that are not in core. See <a href="http://api.drupal.org/api/function/user_fields/6" rel="nofollow">api.drupal.org/api/function/user_fields/6</a>. It's built to accept arbitrary additions. If it wasn't, this technique could never work. http://stackoverflow.com/questions/1910623/drupal-6-getting-custom-fields-into-the-database/1910762#1910762 Comment by ceejayoz on Drupal 6: Getting custom fields into the database ceejayoz 2009-12-16T19:09:36Z 2009-12-16T19:09:36Z IIRC, you can use <code>drupal&#95;map&#95;assoc()</code> on your options array - <a href="http://api.drupal.org/api/function/drupal_map_assoc/6" rel="nofollow">api.drupal.org/api/function/&hellip;</a> - to store the <code>OPTION</code>'s value instead of the selectedIndex. http://stackoverflow.com/questions/1910623/drupal-6-getting-custom-fields-into-the-database/1910762#1910762 Comment by ceejayoz on Drupal 6: Getting custom fields into the database ceejayoz 2009-12-16T18:02:58Z 2009-12-16T18:02:58Z Drupal's user module is core, and it's specifically set up to work in this manner, so the functionality is extremely unlikely to change without lots of advance warning.