User Ben Shelock - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T13:57:20Z http://stackoverflow.com/feeds/user/111669 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1938876/using-functions-from-within-the-same-class 0 Using functions from within the same class Ben Shelock 2009-12-21T08:31:12Z 2009-12-21T08:36:51Z <p>This is probably a really simple question however Google isn't my friend today.</p> <p>I have something like this but it says call to undefined function</p> <pre><code>&lt;?php class myClass{ function doSomething($str){ //Something is done here } function doAnother($str){ return doSomething($str); } } </code></pre> <p>?></p> http://stackoverflow.com/questions/1933050/check-if-function-has-been-called-yet 1 Check if function has been called yet Ben Shelock 2009-12-19T14:34:20Z 2009-12-19T17:24:12Z <p><em>New to OOP in PHP</em></p> <p>One of my functions requires another function to be executed before running. Is there a way I can check this?</p> http://stackoverflow.com/questions/1933065/ajax-request-to-different-host/1933075#1933075 1 Answer by Ben Shelock for ajax request to different host Ben Shelock 2009-12-19T14:46:27Z 2009-12-19T14:46:27Z <p>You can't do cross-domain requests with javascript. The best way round this is to use your server as a proxy.</p> http://stackoverflow.com/questions/1889881/using-processing-on-a-server-to-create-images-behind-the-scenes/1889914#1889914 2 Answer by Ben Shelock for Using Processing on a server to create images behind the scenes Ben Shelock 2009-12-11T18:15:00Z 2009-12-11T18:15:00Z <p>Processing was originally written for Java if I remember correctly. It was then ported to Javascript. You could use Java to create the image.</p> http://stackoverflow.com/questions/1190909/pi-infinite-numbers 7 Pi/Infinite Numbers Ben Shelock 2009-07-27T22:04:22Z 2009-12-07T23:09:08Z <p>I'm curious about infinite numbers in computing, in particular pi.</p> <p>For a computer to render a circle it would have to understand pi. But how can it if it is infinite?</p> <p>Am I looking too much into this? Would it just use a rounded value?</p> http://stackoverflow.com/questions/1815865/is-there-a-mysql-equivalent-of-phps-pregreplace/1815878#1815878 0 Answer by Ben Shelock for Is there a MySQL equivalent of php's Preg_Replace? Ben Shelock 2009-11-29T15:56:45Z 2009-11-29T15:56:45Z <p>Theres a <a href="http://dev.mysql.com/doc/refman/5.0/en/replace.html" rel="nofollow">replace</a> function which uses regular expressions</p> http://stackoverflow.com/questions/1813845/upload-to-imgur-java/1813877#1813877 0 Answer by Ben Shelock for Upload to imgur java Ben Shelock 2009-11-28T21:53:08Z 2009-11-28T21:53:08Z <p>You could try cURL. <a href="http://curl.haxx.se/libcurl/java/" rel="nofollow">http://curl.haxx.se/libcurl/java/</a></p> http://stackoverflow.com/questions/1791895/converting-date-and-time-to-unix-timestamp 1 Converting Date and Time To Unix Timestamp Ben Shelock 2009-11-24T18:10:37Z 2009-11-24T18:54:25Z <p>I'm displaying the date and time like this</p> <blockquote> <p>24-Nov-2009 17:57:35</p> </blockquote> <p>I'd like to convert it to a unix timestamp so I can manipulate it easily. I'd need to use regex to match each part of the string then work out the unix timestamp from that.</p> <p>I'm awful with regex but I came up with this. Please suggest improvements ^.^</p> <pre><code>/((\d){2}+)-((Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)+)-((\d){4}+) ((\d){2}+):((\d){2}+):((\d){2}+)/gi </code></pre> <p>How can I do this?</p> http://stackoverflow.com/questions/1790455/whats-the-best-way-to-name-id-classes-in-css-and-html/1790468#1790468 1 Answer by Ben Shelock for Whats the best way to name id & classes in CSS and HTML Ben Shelock 2009-11-24T14:37:20Z 2009-11-24T14:37:20Z <ul> <li>#header</li> <li>#footer</li> <li>#container</li> <li>.post</li> <li>.title</li> </ul> <p>Those are the ones which come up in most of my projects but obviously it depends what you're doing. Just try to keep it logical.</p> http://stackoverflow.com/questions/1785675/how-to-add-non-standard-attributes-in-a-valid-way/1785696#1785696 1 Answer by Ben Shelock for How to add non-standard attributes in a valid way Ben Shelock 2009-11-23T20:22:38Z 2009-11-23T20:22:38Z <p>No, you would have to change the doctype.</p> <pre><code>&lt;!DOCTYPE HTML&gt; </code></pre> <p>That doctype will allow you to use your own attributes. Heres <a href="http://www.javascriptkit.com/dhtmltutors/customattributes.shtml" rel="nofollow">a good article</a> on the matter</p> http://stackoverflow.com/questions/1779888/canvas-element-and-ie 1 Canvas Element and IE Ben Shelock 2009-11-22T20:30:02Z 2009-11-22T21:23:46Z <p><sub>Well not just IE, any browser that doesn't currently support it</sub></p> <p>I want to start using the <a href="http://processingjs.org/" rel="nofollow">processing.js</a> framework. It's used for making images with the canvas element. However I'm reluctant to use it due to the fact that it's not widely supported.</p> <p>So what's the best way for me to give the user an alternative image if they do not support the canvas element?</p> <p>I'd need something like...</p> <pre><code>if(!canvas){ element.style.backgroundColor = 'red'; } </code></pre> <p>Is there a standardised way of doing this yet? If not what's the best thing I could do?</p> http://stackoverflow.com/questions/1777497/what-javascript-frameworks-should-i-become-familiar-with 2 What javascript frameworks should I become familiar with? Ben Shelock 2009-11-22T01:43:30Z 2009-11-22T17:18:30Z <p>jQuery has served me well, it has given me an excellent introduction to Javascript but now I want to move onto something else. A good developer has a good knowlege of lots of different technologies.</p> <p>So what frameworks should I move onto? I just want something good to put on my CV. There are so many out there and they all more or less achive the same thing. But because people have their own preferences I want to be as versitile as possible for other peoples sake.</p> http://stackoverflow.com/questions/1777678/php-if-statement-using-post-variable-doesnt-seem-to-work-why/1777733#1777733 1 Answer by Ben Shelock for PHP if-statement using $_POST variable doesn't seem to work. Why? Ben Shelock 2009-11-22T03:41:27Z 2009-11-22T03:41:27Z <p>pass.php needs to look like this</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;Secon Page&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;?php if ($_POST['fname'] =="Jack") echo "You are Jack!"; else echo "You are not Jack!"; ?&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1776950/change-background-position-with-jquery/1776952#1776952 3 Answer by Ben Shelock for Change background position with jQuery Ben Shelock 2009-11-21T22:11:45Z 2009-11-21T22:11:45Z <pre><code>$('#submenu li').hover(function(){ $('#carousel').css('backgroundPosition', newValue); }); </code></pre> http://stackoverflow.com/questions/1776915/how-to-center-absolute-element-in-div/1776936#1776936 1 Answer by Ben Shelock for How to center absolute element in div? Ben Shelock 2009-11-21T22:05:35Z 2009-11-21T22:05:35Z <p>Heres a useful jQuery plugin to do this. Found <a href="http://markmail.org/message/3jeuh2bj2wnzpvq7" rel="nofollow">here</a>. I don't think it's possible purely with CSS</p> <pre><code>/** * @author: Suissa * @name: Absolute Center * @date: 2007-10-09 */ jQuery.fn.center = function() { return this.each(function(){ var el = $(this); var h = el.height(); var w = el.width(); var w_box = $(window).width(); var h_box = $(window).height(); var w_total = (w_box - w)/2; //400 var h_total = (h_box - h)/2; var css = {"position": 'absolute', "left": w_total+"px", "top": h_total+"px"}; el.css(css) }); }; </code></pre> http://stackoverflow.com/questions/1776628/php-strreplace-issue-or-bug/1776637#1776637 2 Answer by Ben Shelock for php str_replace issue or bug? Ben Shelock 2009-11-21T20:15:59Z 2009-11-21T20:15:59Z <p>You left a space</p> <pre><code>$q_string = str_replace('javascript:l("','',$row['1']); </code></pre> http://stackoverflow.com/questions/1775959/change-attribute-every-second 0 Change Attribute Every Second Ben Shelock 2009-11-21T16:37:44Z 2009-11-21T17:04:59Z <p>I want an image to change every second. I'm having trouble with setInterval. Could someone post a quick snippet on how to do this</p> <p>This is what I came up with.</p> <pre><code>var images = 'images/image_*.png'; for(var i = 1; i &lt;= 5; i++){ function changeImg(){ var path = images.replace('*', i); $('img').attr('src', path); } setInterval('changeImg()', 1000); } </code></pre> http://stackoverflow.com/questions/1775842/is-w3c-invalid-html-and-css-code-harmful-for-seo-and-problematic-for-screen-reade/1775888#1775888 0 Answer by Ben Shelock for Is W3C invalid HTML and CSS code harmful for SEO and problematic for screen reader users? Ben Shelock 2009-11-21T16:07:58Z 2009-11-21T16:07:58Z <p>Lets use Google for an example...</p> <p>Firstly, Googles homepage <a href="http://validator.w3.org/check?verbose=1&amp;uri=http%3A%2F%2Fwww.google.co.uk%2F" rel="nofollow">isn't even valid</a> they purposely don't close quite a few of their tags to save on bandwidth. There are also lots of custom attributes. </p> <p>Secondly, they don't read CSS for SEO. The only time they do is for the caching feature alot of the popular ones have. Google doesn't read the CSS file it just links to it however Yahoo caches everything (CSS, Images, ect...) but that's not going to effect SEO.</p> <p>And there are lots of good reasons why you shouldn't worry about validating your site. Its good to check to get rid of any huge errors however as long as it works in most browsers you are find. Search engines just care about your content not the way it looks. </p> http://stackoverflow.com/questions/1774629/making-a-web-chat-with-jquery/1774650#1774650 3 Answer by Ben Shelock for Making a Web Chat with jQuery Ben Shelock 2009-11-21T05:53:54Z 2009-11-21T05:53:54Z <p>I'm not sure what you're missing here.</p> <pre><code>$(selector).append('&lt;div class="message"&gt;sometext&lt;/div&gt;'); </code></pre> <p>And how to <a href="http://radio.javaranch.com/pascarello/2005/12/14/1134573598403.html" rel="nofollow">scroll to the bottom of a div</a></p> http://stackoverflow.com/questions/1773378/generate-random-string-check-it-against-database-then-use-it 0 Generate random string, check it against database, then use it. Ben Shelock 2009-11-20T21:33:32Z 2009-11-20T22:12:21Z <p>This is an issue which keeps coming up for me when using random strings.</p> <p>This is basically the process.</p> <ol> <li>Generate random string</li> <li>Check if it already exists in the database</li> <li>If it doesn't use it, else generate another one</li> </ol> <p>So how would I do this using PHP?</p> http://stackoverflow.com/questions/1757865/find-hover-css-attribute 1 Find Hover CSS Attribute Ben Shelock 2009-11-18T17:54:09Z 2009-11-18T22:15:24Z <p>Lets say I had an element with multiple classes, one of these classes has a hover pseudo-class. Lets say this will change the colour.</p> <p>So what I want to do is find out what colour the element will change to when hovered over. Then I want to override this with Javascript/jQuery.</p> http://stackoverflow.com/questions/1740218/error-handling-in-getjson-calls/1740228#1740228 0 Answer by Ben Shelock for Error handling in getJSON calls Ben Shelock 2009-11-16T05:23:38Z 2009-11-16T05:23:38Z <p>Seems there is no error method from what I have read <a href="http://stackoverflow.com/questions/309953/how-do-i-catch-jquery-getjson-or-ajax-with-datatype-set-to-jsonp-error-wh">here</a>. <a href="http://stackoverflow.com/questions/309953/how-do-i-catch-jquery-getjson-or-ajax-with-datatype-set-to-jsonp-error-wh/310084#310084">This answer</a> offers a good explanation</p> http://stackoverflow.com/questions/1740194/css-change-button-appearance-on-hover/1740213#1740213 1 Answer by Ben Shelock for CSS: Change Button appearance on Hover Ben Shelock 2009-11-16T05:20:22Z 2009-11-16T05:20:22Z <p>Have a look at <a href="http://www.w3schools.com/CSS/css%5Fpseudo%5Fclasses.asp" rel="nofollow">pseudo-classes</a></p> <pre><code>.btnNewL1:hover{ background: url(../images/different.png); } </code></pre> http://stackoverflow.com/questions/1739692/limiting-file-upload-type/1739846#1739846 2 Answer by Ben Shelock for Limiting file upload type Ben Shelock 2009-11-16T03:04:58Z 2009-11-16T03:04:58Z <p>When you upload a file with PHP its stored in the $_FILES array. Within this there is a key called "type" which has the mime type of the file EG <code>$_FILES['file']['type']</code></p> <p>So to check it is a txt file you do</p> <pre><code>if($_FILES['file']['type'] == 'text/plain'){ //Do stuff with it. } </code></pre> <p>It's explained very well <a href="http://www.w3schools.com/PHP/php%5Ffile%5Fupload.asp" rel="nofollow">here</a>. Also, don't rely on file extentions it's very unreliable.</p> http://stackoverflow.com/questions/1739221/what-is-a-good-javascript-debugging-tool/1739228#1739228 1 Answer by Ben Shelock for What is a good Javascript debugging tool? Ben Shelock 2009-11-15T23:11:34Z 2009-11-15T23:11:34Z <p>Dreamweaver as I write it and Firebug for more indepth debugging. alert()s are pretty useful too.</p> http://stackoverflow.com/questions/1736862/any-good-php-ide-text-editor-with-ftp-support/1739171#1739171 0 Answer by Ben Shelock for Any good PHP IDE/text editor with FTP support? Ben Shelock 2009-11-15T22:53:31Z 2009-11-15T22:53:31Z <p>Dreamweaver - People hate it because of the WYSIWYG editor but the code tab is really good. It has FTP, code suggestions, javascript debugging and probably more I'm yet to discover.</p> http://stackoverflow.com/questions/1738573/easiest-way-to-execute-local-file-from-firefox/1738597#1738597 2 Answer by Ben Shelock for Easiest way to execute local file from Firefox? Ben Shelock 2009-11-15T19:50:15Z 2009-11-15T19:50:15Z <p>There's not a way to do this with javascript. But it looks possible with a firefox addon. Have a <a href="http://www.captain.at/programming/xul/" rel="nofollow">look at this</a>.</p> http://stackoverflow.com/questions/1738561/javascript-or-xul-windows-without-iframe/1738585#1738585 0 Answer by Ben Shelock for Javascript or XUL windows WITHOUT iframe Ben Shelock 2009-11-15T19:46:38Z 2009-11-15T19:46:38Z <p>There is nothing you can do efficiently here. You would essentially be making a proxy if you fetch all of the data of a page then display it on your site using your server. And that can be tough on the server. Iframes are the best approach here if you want to display a working website in their place. Perhaps thumbnails are a better option.</p> http://stackoverflow.com/questions/1738518/php-framework-ebay-like-site/1738544#1738544 3 Answer by Ben Shelock for PHP Framework: Ebay Like Site Ben Shelock 2009-11-15T19:36:22Z 2009-11-15T19:36:22Z <p>I'd really recommend Codeigniter for speed. I've made a few things with it and it was great. </p> <p>If you need some help learning Codeigniter Nettuts has been doing some <a href="http://net.tutsplus.com/videos/screencasts/codeigniter-from-scratch-day-1/" rel="nofollow">really good screencasts</a></p> http://stackoverflow.com/questions/1717721/examples-of-php-in-c 0 Examples of PHP In C++ Ben Shelock 2009-11-11T20:06:58Z 2009-11-11T20:47:17Z <p>Well I want to learn C++ and at the moment I'm only familiar with PHP and Javascript. And I thought a good way to start learning would be to transfer methods in PHP to C++.</p> <p>So basically I want the code snippets below in C++</p> <p>The post with the best comments will get a big green tick.</p> <p>Also, if you know of a good beginners tutorial please leave a comment.</p> <p>So here are the bits of code I want in C++</p> <p><strong>First</strong></p> <pre><code>$array = array('I\'m', 'learning', 'C++'); foreach($array as $word){ echo $word.' '; } </code></pre> <p><strong>Second</strong></p> <pre><code>function foo($num,$ber, $add = true){ if(is_numeric($num) &amp;&amp; is_numeric($ber)){ if(!$add){ echo $num*$ber; } else{ echo $num + $ber; } } else{ echo 'They aren\'t numbers!'; } } foo(2,4, false); </code></pre> http://stackoverflow.com/questions/1940026/custom-ul-image-bullets-not-showing-up-in-internet-explorer Comment by Ben Shelock on Custom <ul> image bullets not showing up in Internet Explorer? Ben Shelock 2009-12-21T13:11:58Z 2009-12-21T13:11:58Z Make sure it's set to the ul not the li http://stackoverflow.com/questions/1938876/using-functions-from-within-the-same-class/1938899#1938899 Comment by Ben Shelock on Using functions from within the same class Ben Shelock 2009-12-21T08:38:02Z 2009-12-21T08:38:02Z Of course. Sorry, it's early :( http://stackoverflow.com/questions/1933451/why-should-exec-and-eval-be-avoided/1933463#1933463 Comment by Ben Shelock on Why should exec() and eval() be avoided? Ben Shelock 2009-12-19T17:09:21Z 2009-12-19T17:09:21Z You can assume anything http://stackoverflow.com/questions/1929956/sha1-or-md5-for-web-applications Comment by Ben Shelock on SHA1 or MD5 for web applications Ben Shelock 2009-12-18T18:42:23Z 2009-12-18T18:42:23Z I'm far from an expert but doesn't using a salt get rid of the flaws? http://stackoverflow.com/questions/1824048/pulling-images-from-rss-feed Comment by Ben Shelock on Pulling Images from RSS Feed Ben Shelock 2009-12-01T04:48:42Z 2009-12-01T04:48:42Z Couldn't you use whatever you are using to read the RSS feed to read images too? http://stackoverflow.com/questions/1816392/how-to-search-in-google Comment by Ben Shelock on how to search in google ? Ben Shelock 2009-11-29T18:53:46Z 2009-11-29T18:53:46Z You can't specify which part of the page to search. With exception to the title (intitle: keyword) http://stackoverflow.com/questions/1803237/centering-all-html-form-elements-using-css/1803250#1803250 Comment by Ben Shelock on Centering all HTML form elements using CSS Ben Shelock 2009-11-26T11:52:42Z 2009-11-26T11:52:42Z All inline elements are effected by text-align. Just block elements that wont be centered. http://stackoverflow.com/questions/111407/how-do-you-fix-the-flickering-that-occurs-when-you-use-slidetoggle-in-jquery Comment by Ben Shelock on How do you fix the flickering that occurs when you use slideToggle in jQuery? Ben Shelock 2009-11-24T20:22:55Z 2009-11-24T20:22:55Z People should stop supporting IE6 now http://stackoverflow.com/questions/1791895/converting-date-and-time-to-unix-timestamp Comment by Ben Shelock on Converting Date and Time To Unix Timestamp Ben Shelock 2009-11-24T18:18:18Z 2009-11-24T18:18:18Z My evil twin brother, we don't talk about him. http://stackoverflow.com/questions/1790472/extreme-programming-metaphors Comment by Ben Shelock on Extreme Programming Metaphors Ben Shelock 2009-11-24T14:40:15Z 2009-11-24T14:40:15Z I hate it when people try to explain a concept to you with metaphors. It just makes it so complicated. http://stackoverflow.com/questions/1785675/how-to-add-non-standard-attributes-in-a-valid-way/1785696#1785696 Comment by Ben Shelock on How to add non-standard attributes in a valid way Ben Shelock 2009-11-23T20:27:03Z 2009-11-23T20:27:03Z Which is why I began the question with no but specified an alternative. http://stackoverflow.com/questions/1777801/why-do-i-get-resource-id-4-when-i-apply-printr-to-an-array-in-php Comment by Ben Shelock on Why do I get "Resource id #4" when I apply print_r() to an array in PHP? Ben Shelock 2009-11-22T04:33:22Z 2009-11-22T04:33:22Z print_r will only accept arrays and objects. If you use var_dump() it will give you information on whatever you give it. http://stackoverflow.com/questions/1776950/change-background-position-with-jquery/1776952#1776952 Comment by Ben Shelock on Change background position with jQuery Ben Shelock 2009-11-21T23:33:10Z 2009-11-21T23:33:10Z Well thats all he asked for Jitter. http://stackoverflow.com/questions/1775959/change-attribute-every-second/1775971#1775971 Comment by Ben Shelock on Change Attribute Every Second Ben Shelock 2009-11-21T16:50:38Z 2009-11-21T16:50:38Z I didn't know you could call anonymous functions to setInterval, thanks :) http://stackoverflow.com/questions/1775842/is-w3c-invalid-html-and-css-code-harmful-for-seo-and-problematic-for-screen-reade/1775888#1775888 Comment by Ben Shelock on Is W3C invalid HTML and CSS code harmful for SEO and problematic for screen reader users? Ben Shelock 2009-11-21T16:40:15Z 2009-11-21T16:40:15Z @EFraim: Basic levels of validation are good however things like closing &lt;inputs /&gt;'s correctly or adding alt attributes to images are not likely to cause big issues. Not in my experience anyway. I'm sure I'll be proved wrong lol.