User Ates Goral - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T03:53:43Z http://stackoverflow.com/feeds/user/23501 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1841531/including-information-in-html-for-javascript-to-consume/1841933#1841933 0 Answer by Ates Goral for Including Information in HTML for Javascript to Consume? Ates Goral 2009-12-03T18:33:11Z 2009-12-03T18:33:11Z <p>If the data that you'd like to embed is restricted to menu items, why not directly generate lightweight HTML out of simple <code>&lt;ol&gt;</code> and <code>&lt;li&gt;</code> elements? You can still keep HTML out of your Java code by using a template engine. The menu markup could just be styled with CSS or if you need something fancier than mere <code>&lt;ol&gt;</code> and <code>&lt;li&gt;</code> elements, you can massage the DOM with JavaScript once the page loads (read: <a href="http://en.wikipedia.org/wiki/Progressive%5Fenhancement" rel="nofollow">progressive enhancement</a>).</p> <p>If you're looking for a more generic solution, beyond the menu case, then you could embed a JSON block in your page, to be consumed when the page loads for the dynamic generation of your menu.</p> <p>Or, you could look into using a <a href="http://microformats.org/wiki/xoxo" rel="nofollow">microformat that is suitable for menu data</a>.</p> http://stackoverflow.com/questions/1723199/how-to-unit-test-an-email-rule/1723277#1723277 3 Answer by Ates Goral for how to unit test an email rule Ates Goral 2009-11-12T15:57:57Z 2009-11-12T15:57:57Z <p>How you can test a piece of software largely depends how you've broken it down into different components. There's really no testing of a "process". You should be focusing on individual components instead. For example, with a process like the one you described, the software could be broken down into different components as follows:</p> <ul> <li>E-mail downloader</li> <li>E-mail parser</li> <li>Rule engine</li> <li>E-mail router</li> </ul> <p>You would essentially be testing each component individually, running tests that exercise every aspect (as much as possible) of each component.</p> http://stackoverflow.com/questions/1717937/ext-js-getting-child-editorgrid-types-in-a-formpanel/1718022#1718022 0 Answer by Ates Goral for ext js - Getting child editorGrid types in a FormPanel Ates Goral 2009-11-11T20:57:58Z 2009-11-12T05:33:19Z <p>You could filter the <code>items</code> collection of the FormPanel by the type of each item by using <code>isXType</code>:</p> <pre><code>var grids = formPanel.items.filterBy(function (item) { return item.isXType("editorgrid"); }); </code></pre> <p><code>grids</code> will be a new collection of all the <code>EditorGridPanel</code> items.</p> <p><strong>Update:</strong> A more concise way:</p> <pre><code>var grids = formPanel.findByType("editorgrid", true); </code></pre> http://stackoverflow.com/questions/1702954/which-would-you-prefer-svg-html5-or-regend-png-for-graphs-charts/1702991#1702991 0 Answer by Ates Goral for Which would you prefer? SVG, HTML5 or regen'd-PNG for graphs & charts? Ates Goral 2009-11-09T18:53:47Z 2009-11-09T18:53:47Z <p><a href="http://excanvas.sourceforge.net/" rel="nofollow">ExplorerCanvas</a> brings <code>&lt;canvas&gt;</code> support to IE. So, it would be an amalgamation of 1 &amp; 2. The benefit would be that (a) as more browsers add support for <code>&lt;canvas&gt;</code>, you would automatically get the benefits of already supporting it and (b) you would get scaling with browser size.</p> http://stackoverflow.com/questions/1689253/jquery-going-through-all-visible-rows-of-a-table/1689334#1689334 1 Answer by Ates Goral for jQuery: going through all visible rows of a table... Ates Goral 2009-11-06T18:10:33Z 2009-11-06T18:10:33Z <p>When you simply hide an element, it is not taken out of the document flow. Therefore, it will continue to get located by your DOM queries.</p> <p>Without seeing your actual HTML, I can only speculate that what you're trying to accomplish can be done in a simpler way with the following jQuery loop:</p> <pre><code>$("tr input[value=" + mid + "]").each(function () { this.hide(); }); </code></pre> http://stackoverflow.com/questions/1688941/reading-javascript-cookies-from-a-subdomain/1689058#1689058 1 Answer by Ates Goral for Reading Javascript Cookies from a subdomain... Ates Goral 2009-11-06T17:21:51Z 2009-11-06T17:21:51Z <p>While setting the cookies at test.com, make sure that you specify the cookie domain as ".test.com".</p> <p>For example:</p> <pre>your_key_name=your_key_value;domain=.test.com;expires=...</pre> http://stackoverflow.com/questions/1681395/image-shows-only-when-debugging/1681407#1681407 0 Answer by Ates Goral for image shows only when debugging Ates Goral 2009-11-05T15:47:50Z 2009-11-05T15:47:50Z <p>When are you running you script? You should run it when the DOM is ready for manipulation. Try:</p> <pre><code>$(function () { // do your stuff here }); </code></pre> http://stackoverflow.com/questions/1677804/need-to-include-anchor-after-querystring-list/1678000#1678000 0 Answer by Ates Goral for Need to include #anchor after querystring list Ates Goral 2009-11-05T02:45:37Z 2009-11-05T02:52:24Z <p>You can't <em>dynamically</em> append an anchor by using a regular form submit.</p> <p>You could intercept the submit event and change the target attribute of the form to a URL that includes the anchor. At least in Firefox, the browser will insert the query string in the right place (before the anchor.)</p> <p>For example:</p> <pre><code>&lt;form action="test.htm" method="get" onsubmit="this.action += '#anchor'"&gt; &lt;input type="hidden" name="foo" value="bar"&gt; &lt;input type="submit"&gt; &lt;/form&gt; </code></pre> <p><em>(Note: This is for illustration purposes. I wouldn't include the submit event handler inline with my HTML.)</em></p> <p>Alternatively, you could try constructing your very own URL (including the query string and the anchor) and then setting <code>document.location</code> to that.</p> http://stackoverflow.com/questions/1663242/calling-a-function-inside-an-iframe-from-outside-the-iframe/1663271#1663271 0 Answer by Ates Goral for Calling a function inside an iframe from outside the iframe Ates Goral 2009-11-02T19:46:57Z 2009-11-02T19:46:57Z <p>You can access the iframe with it's name:</p> <pre><code>foo.putme(); </code></pre> <p>Functions declared globally inside the iframe page will become members of the window object for that iframe. You can access the window object of the iframe with the iframe's name.</p> <p>For this to work, your iframe needs to have a name attribute:</p> <pre><code>&lt;iframe name="foo" ...&gt; </code></pre> <p>Also, the main page and the iframe page should be from the same domain.</p> http://stackoverflow.com/questions/1651575/simple-javascript-search-and-replace/1651854#1651854 2 Answer by Ates Goral for Simple javascript search-and-replace Ates Goral 2009-10-30T19:30:44Z 2009-10-30T19:36:45Z <p>Assuming you already have the HTML source in a variable called <code>html</code>, you can do something like this:</p> <pre><code>var converted = html.replace(/\[\[(.+?)\]\]/g, function (s, token) { return '&lt;img src="foo.com/' + token.split(" ").join("_") + '.jpg"/&gt;'; }); </code></pre> <p>To get or set the entire HTML inside <code>&lt;body&gt;</code>, you can use <code>document.body.innerHTML</code>. However, I would recommend specifically targeting elements of a certain id or class, if that string pattern doesn't really appear in random places in the page. I would also recommend that you use jQuery for locating these elements and changing their content:</p> <pre><code>$(".replacable").each(function () { this.html(imagize(this.html())); }); function imagize(html) { return html.replace(/\[\[(.+?)\]\]/g, ...); } </code></pre> http://stackoverflow.com/questions/1650236/problem-with-saving-data-like-12-5/1650245#1650245 0 Answer by Ates Goral for problem with saving data like 12 ÷ 5 Ates Goral 2009-10-30T14:48:24Z 2009-10-30T15:02:21Z <p>Make sure the content encoding of your input HTML page is UTF-8. That way, PHP will know that the content that it is receiving is in UTF-8.</p> <p>You can do this by embedding the following in the head of your document:</p> <pre><code>&lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"&gt; </code></pre> <p><strong>Update:</strong> Also make sure that the HTML that you're generating (echo'ing from) also reports UTF-8 as the content encoding. Once you get the echo working, the next step is to ensure that you're DB is also expecting/storing UTF-8.</p> http://stackoverflow.com/questions/1650265/why-the-height-difference-between-a-textbox-and-a-surronding-span/1650285#1650285 1 Answer by Ates Goral for Why the height difference between a textbox and a surronding span? Ates Goral 2009-10-30T14:53:19Z 2009-10-30T14:53:19Z <p>The input element will have a default border and padding, that may differ from browser to brower. Try removing that:</p> <pre><code>&lt;input type="text" style="padding: 0; border: 0" /&gt; </code></pre> <p>Try inspecting the element with Firebug in Firefox to see the effective padding/margin/border of elements. With your example, you'll see that the text field has a 2px border and a 1px padding at the top and at the bottom.</p> http://stackoverflow.com/questions/1641156/which-is-better-coding-style/1641241#1641241 1 Answer by Ates Goral for Which is better coding style? Ates Goral 2009-10-29T02:03:08Z 2009-10-29T15:42:27Z <p>If the language supports exception handling, I'd go with the following:</p> <pre><code>try { if (!condition1) { throw "condition1 failed"; } if (!condition2) { throw "condition2 failed"; } if (!condition3) { throw "condition3 failed"; } return true; } catch (e) { log(e); return false; } </code></pre> <p>EDIT From charles bretana: Please see <a href="http://www.google.com/search?source=ig&amp;hl=en&amp;rlz=&amp;q=using+exceptions+for+control+flow&amp;aq=f&amp;oq=&amp;aqi=" rel="nofollow">Using Exceptions for control flow</a></p> http://stackoverflow.com/questions/1387691/javascript-acting-differently-on-different-hosts/1641724#1641724 1 Answer by Ates Goral for Javascript acting differently on different hosts Ates Goral 2009-10-29T05:07:31Z 2009-10-29T05:07:31Z <p>Due to loading time differences between your local WAMP server and your remote server, the page rendering may be happening at different speeds. Your overlay may be getting rendered prematurely, before the browser fully renders the page to its maximum height.</p> <p>Are you rendering the modal window as soon as the page loads? If so, can you try adding some delay to see if that helps?</p> http://stackoverflow.com/questions/1641530/jquery-url-replace/1641551#1641551 1 Answer by Ates Goral for Jquery url replace Ates Goral 2009-10-29T04:01:29Z 2009-10-29T04:01:29Z <p>Try:</p> <pre><code>linkUrl = "/ajax" + $(this).attr("href").replace("/type", "") + "development"; </code></pre> http://stackoverflow.com/questions/1640723/standard-way-to-include-javascript-library-from-javascript/1641438#1641438 0 Answer by Ates Goral for Standard way to include javascript library from javascript. Ates Goral 2009-10-29T03:20:30Z 2009-10-29T03:20:30Z <p>If you're looking for <strong>a standard</strong> way, instead of coming up with your own implementation, you could perhaps consider:</p> <ul> <li>Google's <a href="http://code.google.com/apis/ajaxlibs/documentation/#googleDotLoad" rel="nofollow">google.load()</a> for loading popular libraries</li> <li>The <a href="http://wiki.commonjs.org" rel="nofollow">CommonJS</a> SecurableModules - see Kris Kowal's <a href="http://github.com/kriskowal/chiron/" rel="nofollow">Chiron</a> for a browser implementation.</li> </ul> http://stackoverflow.com/questions/1640004/javascript-running-a-function-under-another-function/1640118#1640118 0 Answer by Ates Goral for javascript Running a function under another function Ates Goral 2009-10-28T21:07:47Z 2009-10-28T21:07:47Z <p>Leaving aside all the "why would you want to do this?" questions, and assuming you need to do this for a legitimate reason like accessing a "private" function inside some existing code that you don't own, <strong>here's a hack</strong>:</p> <p><code>first.toString()</code> will give you the entire source of the function. You can inject a bit of code into that function to return you a reference to the third function:</p> <pre><code>var prober = new Function( first.toString().replace("{", "{ return third;") + "return first()"); var third = prober(); third(); // yay! </code></pre> <p>But, please <strong>don't do this</strong> if you really don't need to. It's a big hack that I just wanted to mention for educational purposes.</p> http://stackoverflow.com/questions/1639743/testing-xml-site/1639777#1639777 0 Answer by Ates Goral for testing xml site? Ates Goral 2009-10-28T20:07:09Z 2009-10-28T20:07:09Z <p>An active connection refusal could mean either you're using the wrong port, or you don't have a route to the target IP (or the target is not up and running in the first place.)</p> <p>Is your browser running on the same machine as IIS? If not, can you try the connection from the same machine? You should first eliminate the possibility of a routing problem.</p> http://stackoverflow.com/questions/1637821/tdd-mocking-dependency-injection-and-the-dry-principle/1638235#1638235 5 Answer by Ates Goral for TDD, Mocking, dependency injection and the DRY principle Ates Goral 2009-10-28T16:03:46Z 2009-10-28T16:18:45Z <p>If your test framework supports setup/teardown functions that will be called before and after each test, create and destroy some "default" mock objects in those functions. Your tests can simply use those, and for special cases where the default mock objects don't work for you, you can simply ignore them and create local mock objects within those tests.</p> http://stackoverflow.com/questions/1638105/cancel-a-timed-loop-in-javascript/1638319#1638319 0 Answer by Ates Goral for Cancel a timed loop in JavaScript? Ates Goral 2009-10-28T16:17:43Z 2009-10-28T16:17:43Z <p>To start with, it's not a good idea to fire many many timers in a loop. You should instead use <code>setInterval</code> or fire off a new timer from your <code>setTimeout</code> handler.</p> <p>Another approach is to have a single timer which fires off at fixed intervals and manages all pending effects. You can decide on a frame rate and let your timer (a "timer stack") run indefinitely, "ticking" at every frame -- you can optionally start/stop the ticking when there are no pending effects.</p> http://stackoverflow.com/questions/1627266/detect-image-load-cancelation-in-javascript/1627351#1627351 3 Answer by Ates Goral for Detect Image Load Cancelation in Javascript Ates Goral 2009-10-26T21:07:41Z 2009-10-26T21:07:41Z <p>An AJAX call shouldn't cancel the loading of images. There could be something else going on here...</p> <p>I don't think that you can readily detect the load failure of an image. You could fire off a timer with a certain timeout threshold to deem an image as failed if your timeout timer expires before you get the load event from the image.</p> http://stackoverflow.com/questions/1611427/reversing-a-string-in-jquery/1611449#1611449 3 Answer by Ates Goral for Reversing a string in jquery Ates Goral 2009-10-23T04:58:02Z 2009-10-23T04:58:02Z <p><code>reverse()</code> is a method of array instances. It won't directly work on a string. You should first split the characters of the string into an array, reverse the array and then join back into a string:</p> <pre><code>var backway = oneway.split("").reverse().join(""); </code></pre> http://stackoverflow.com/questions/1611420/ifstream-position-in-c/1611437#1611437 1 Answer by Ates Goral for ifstream position in c++ Ates Goral 2009-10-23T04:54:22Z 2009-10-23T04:54:22Z <p>Why do you have to seek back? Can't you simply read the rest of the UTF-8 sequence, after knowing how many more octets you're expecting?</p> http://stackoverflow.com/questions/1610703/how-do-you-default-an-images-right-edge-in-a-css-overflow-div/1611404#1611404 1 Answer by Ates Goral for How do you default an image's right edge in a CSS Overflow DIV? Ates Goral 2009-10-23T04:43:37Z 2009-10-23T04:43:37Z <p>Try adding an anchor to the right of the image. Something like:</p> <pre><code>&lt;img src="foo.jpg"&gt;&lt;a name="right_of_image"&gt;&lt;/a&gt; </code></pre> <p>When or after navigating to the page, if you append the <code>#right_of_image</code> anchor to the document URL, the browser will try to focus on the anchor, effectively scrolling to the right edge of the image. This probably won't work if you're using a scrolling container like the one you have, but should work if the image is directly embedded in your page. Does this work for you?</p> http://stackoverflow.com/questions/1611363/css-left-help-jquery/1611390#1611390 0 Answer by Ates Goral for css left help jquery Ates Goral 2009-10-23T04:37:02Z 2009-10-23T04:37:02Z <p>Instead of using offsets, you can hide/show the tabs with the <code>display</code> property. Add the "tab" class to the tab containers:</p> <pre><code>&lt;div id="tabs"&gt; &lt;div id="tab_one" class="tab"&gt; Something here &lt;/div&gt; &lt;div id="tab_two" class="tab"&gt; Something else here &lt;/div&gt; &lt;div id="tab_three" class="tab"&gt; Another thing here &lt;/div&gt; &lt;/div&gt; </code></pre> <p>And the stylesheet is:</p> <pre><code>.tab { display: none } /* Don't render by default */ .show_tab_one #tab_one, .show_tab_two #tab_two, .show_tab_three #tab_three { display: block } /* Selectively render */ </code></pre> <p>All you have to do is to set the class of the <code>#tabs</code> element to one of "show_tab_one", "show_tab_two" or "show_tab_three". Of course, if you have a dynamic number of tabs with dynamic ids, this solution won't work for you.</p> http://stackoverflow.com/questions/1611333/how-many-1s-in-an-n-bit-integer/1611336#1611336 16 Answer by Ates Goral for How many 1s in an n-bit integer? Ates Goral 2009-10-23T04:13:02Z 2009-10-23T04:13:02Z <p>See the fabulous <a href="http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetNaive" rel="nofollow">Bit Twiddling Hacks article</a>.</p> http://stackoverflow.com/questions/537577/where-do-you-keep-your-code/1595066#1595066 0 Answer by Ates Goral for Where do you keep your code? Ates Goral 2009-10-20T14:35:04Z 2009-10-20T14:35:04Z <p>Certainly not: <code>C:\Documents and Settings\Administrator\Desktop\New Folder (3)\test</code></p> http://stackoverflow.com/questions/1573961/facebook-connect-api-not-populating-user-data-when-facebook-logotrue-option-is/1590222#1590222 1 Answer by Ates Goral for Facebook Connect API not populating user data when facebook-logo="true" option is used Ates Goral 2009-10-19T18:11:59Z 2009-10-19T18:11:59Z <p>The exact markup that you have works fine under <a href="http://www.somethingtoputhere.com/demo/xfbml%5Fconsole/index.html" rel="nofollow">this test console</a>. Are you sure you're not getting any JavaScript errors?</p> <p>Also, can you test with the uid of a relatively old user. There seems to be <a href="http://bugs.developers.facebook.com/show%5Fbug.cgi?id=7157" rel="nofollow">a bug with displaying pictures for new users</a>. My uid doesn't seem to have this problem, if you want to test it out with mine: <code>685184151</code></p> http://stackoverflow.com/questions/1569168/if-you-change-code-that-has-a-unit-test-against-it-which-do-you-change-first/1569179#1569179 13 Answer by Ates Goral for If you change code that has a unit test against it, which do you change first? Ates Goral 2009-10-14T21:42:39Z 2009-10-14T21:42:39Z <p>If you're to follow <a href="http://en.wikipedia.org/wiki/Test-driven%5Fdevelopment" rel="nofollow">TDD</a> practices, you should update your tests first. You'll have broken test cases that should hopefully get fixed when you fix your code.</p> http://stackoverflow.com/questions/1510029/how-do-i-replace-an-asterisk-in-javascript-using-replace/1510061#1510061 1 Answer by Ates Goral for How do I replace an asterisk in Javascript using replace()? Ates Goral 2009-10-02T14:58:16Z 2009-10-02T14:58:16Z <p>Splitting a string into an array and then joining it back into a string is faster than regular expression replacements:</p> <pre><code>queryString = inputText.split("*").join("%"); </code></pre> http://stackoverflow.com/questions/1908492/unsigned-integer-in-javascript Comment by Ates Goral on Unsigned Integer in Javascript Ates Goral 2009-12-15T16:43:01Z 2009-12-15T16:43:01Z Simple language? http://stackoverflow.com/questions/1858246/java-script-to-retrive-value-from-grid Comment by Ates Goral on Java script to retrive value from grid Ates Goral 2009-12-07T06:56:09Z 2009-12-07T06:56:09Z hai. pls take the time to compose proper sentences k? http://stackoverflow.com/questions/1841916/how-to-avoid-global-variables-in-javascript/1841946#1841946 Comment by Ates Goral on How to Avoid Global Variables in Javascript Ates Goral 2009-12-03T18:57:45Z 2009-12-03T18:57:45Z <a href="http://stackoverflow.com/questions/726685/yeah-i-know-im-a-simpleton-so-whats-a-singleton/761399#761399" rel="nofollow" title="yeah i know im a simpleton so whats a singleton">stackoverflow.com/questions/726685/&hellip;</a> http://stackoverflow.com/questions/1841452/new-line-in-javascript-alert-box/1841458#1841458 Comment by Ates Goral on New line in JavaScript alert box Ates Goral 2009-12-03T18:22:23Z 2009-12-03T18:22:23Z Any ideas on how cross-browser this is? http://stackoverflow.com/questions/1723872/jquery-javascript-does-not-do-what-i-tell-it-to Comment by Ates Goral on jQuery: JavaScript does not do what I tell it to Ates Goral 2009-11-12T17:33:45Z 2009-11-12T17:33:45Z Ouch. You may want to store the outcome of jQuery('div#drag_container img[alt=&quot;background&quot;]') in a local variable. http://stackoverflow.com/questions/1702954/which-would-you-prefer-svg-html5-or-regend-png-for-graphs-charts Comment by Ates Goral on Which would you prefer? SVG, HTML5 or regen'd-PNG for graphs & charts? Ates Goral 2009-11-09T18:57:14Z 2009-11-09T18:57:14Z 4. Flash. Would be cross-browser and be very fast/responsive. Plus you can code some fancy effects/interactions. http://stackoverflow.com/questions/1689253/jquery-going-through-all-visible-rows-of-a-table Comment by Ates Goral on jQuery: going through all visible rows of a table... Ates Goral 2009-11-06T18:02:57Z 2009-11-06T18:02:57Z It would be helpful if you can include a sample of your HTML. http://stackoverflow.com/questions/1688941/reading-javascript-cookies-from-a-subdomain Comment by Ates Goral on Reading Javascript Cookies from a subdomain... Ates Goral 2009-11-06T17:59:22Z 2009-11-06T17:59:22Z Yay for example.com. http://stackoverflow.com/questions/1688941/reading-javascript-cookies-from-a-subdomain/1689058#1689058 Comment by Ates Goral on Reading Javascript Cookies from a subdomain... Ates Goral 2009-11-06T17:58:49Z 2009-11-06T17:58:49Z Thanks Gareth for chiming in and elaborating on my rather terse answer. http://stackoverflow.com/questions/1681395/image-shows-only-when-debugging/1681412#1681412 Comment by Ates Goral on image shows only when debugging Ates Goral 2009-11-05T15:51:06Z 2009-11-05T15:51:06Z Well, it apparently is just a timing issue. Clearing style seems to help, according to the OP. http://stackoverflow.com/questions/1677924/ordering-in-javascript Comment by Ates Goral on Ordering in javascript Ates Goral 2009-11-05T02:53:53Z 2009-11-05T02:53:53Z Let's not confuse JavaScript object literals with JSON. http://stackoverflow.com/questions/1669349/how-can-i-use-a-javascript-file-in-my-asp-net-project/1669375#1669375 Comment by Ates Goral on How can I use a JavaScript file in my ASP.NET project? Ates Goral 2009-11-03T18:53:56Z 2009-11-03T18:53:56Z The standard way is to use type=&quot;text/javascript&quot; instead of the language attribute. http://stackoverflow.com/questions/1669349/how-can-i-use-a-javascript-file-in-my-asp-net-project Comment by Ates Goral on How can I use a JavaScript file in my ASP.NET project? Ates Goral 2009-11-03T18:52:29Z 2009-11-03T18:52:29Z Or even &quot;JS&quot; would do. And JScript is another story... http://stackoverflow.com/questions/1669190/javascript-min-max-array-values/1669218#1669218 Comment by Ates Goral on JavaScript: min & max Array values? Ates Goral 2009-11-03T18:48:42Z 2009-11-03T18:48:42Z The question is about min/max, not sorting. http://stackoverflow.com/questions/1669190/javascript-min-max-array-values/1669222#1669222 Comment by Ates Goral on JavaScript: min & max Array values? Ates Goral 2009-11-03T18:44:14Z 2009-11-03T18:44:14Z The OP doesn't seem to have a requirement on being able to handle non-numbers.