User Kobi - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T22:25:22Zhttp://stackoverflow.com/feeds/user/7586http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1935020/how-to-overcome-fear-of-user-input-web-development/1935032#19350321Answer by Kobi for How to overcome fear of user-input (web development)Kobi2009-12-20T06:25:16Z2009-12-20T06:25:16Z<ul>
<li>You don't get over it.</li>
<li>Check everything at server side - validate input again, check permissions, etc.</li>
<li>Sanitize all data.</li>
</ul>
<p>That's very easy to write in bold letter and a little harder to do in practice.</p>
http://stackoverflow.com/questions/1920838/jquery-matching-pattern/1921001#19210010Answer by Kobi for jQuery matching patternKobi2009-12-17T11:05:02Z2009-12-17T11:05:02Z<p>You may benefit the <a href="http://james.padolsey.com/javascript/regex-selector-for-jquery/" rel="nofollow">Regex Selector for jQuery Plugin</a>. It allows code like:</p>
<pre><code>$('div:regex(input,^input_(\d+|)+_?$)'); //just an example regex
</code></pre>
<p>Also, note that you can combine multiple attribute selectors, ie:</p>
<pre><code>$("input[name^='input_'][name$='_']")
</code></pre>
http://stackoverflow.com/questions/1920013/delete-multiple-nodes-from-a-binary-search-tree/1920026#19200261Answer by Kobi for Delete multiple nodes from a binary search treeKobi2009-12-17T07:22:59Z2009-12-17T07:22:59Z<p>Did you try postorder?<br>
Delete the node after its children.</p>
http://stackoverflow.com/questions/1919591/how-can-i-assigned-onclick-for-a-tag-with-jquery/1919599#19195994Answer by Kobi for How can I assigned onclick for a tag with jqueryKobi2009-12-17T05:12:43Z2009-12-17T05:30:51Z<pre><code>$(document).ready(function(){ // all jQuery code should run from this event
$('div').click(function(){
// find the div that was clicked on:
$(this).css('color', 'red');
}); //click
}); //doc.ready
</code></pre>
<p>Source: <a href="http://docs.jquery.com/Events/click" rel="nofollow">http://docs.jquery.com/Events/click</a></p>
<p>For your update request, as ecounysis said, you can bind the function, bu make sure it returns false, to prevent the real link from working (if you have a <code>href</code>):</p>
<pre><code>function test(){
alert("Hello");
return false;
}
$(function(){
$('#abc').click(test);
});
</code></pre>
<p>if you can't change <code>test</code>, you can also do:</p>
<pre><code>$('#abc').click(function(){
test();
return false;
});
</code></pre>
<p>Example: <a href="http://jsbin.com/aseku" rel="nofollow">http://jsbin.com/aseku</a></p>
http://stackoverflow.com/questions/1913636/number-grouping-using-regexps/1914008#19140082Answer by Kobi for Number grouping using regexpsKobi2009-12-16T11:16:10Z2009-12-16T11:16:10Z<pre><code>n.toString().replace(/(\d)(?=(\d{3})+\b)/g,"$1 ")
</code></pre>
<p>Add a space after every digit that is followed by 3i digits. For example, in <code>123456789</code>, these digits will be matched: <code>2</code>, <code>6</code>.<br>
Working demo: <a href="http://jsbin.com/iruzu" rel="nofollow">http://jsbin.com/iruzu</a></p>
http://stackoverflow.com/questions/1899569/extended-function-jquery/1899596#18995960Answer by Kobi for Extended function jqueryKobi2009-12-14T08:13:41Z2009-12-14T08:13:41Z<pre><code>myObject:[] // empty JavaScript object
,
myOtherObject: { // JavaScript object notation
name: "Bob",
age: 17
}
</code></pre>
http://stackoverflow.com/questions/1899099/how-to-select-an-object-if-it-contains-a-number-with-jquery/1899232#18992321Answer by Kobi for How to select an object if it contains a number with jquery?Kobi2009-12-14T06:24:44Z2009-12-14T06:24:44Z<p>While <code>filter</code> is an easy option, you could do a little preprocessed to select more quickly.<br>
This code created an array of tickets, for easy access. This is good if they don't change often, and have small numbers (otherwise the array would be too big, but you can easily switch to an associative array):</p>
<pre><code>var tickets = [];
$(function(){
$('div').each(function(){
var div = $(this);
var n = parseInt(div.text(), 10);
tickets[n] = div;
}); //div.each
tickets[12].css('color', 'red');
}); //doc.ready
</code></pre>
<p>The next option is less popular, but works well. jQuery does similar things internally, by the way. Here, we use <code>attr</code> to add a custom attribute and select by it (if it bothers you, you can add a class like <code>ticket12</code>, or use a standard attribute). This is easier to maintain than an array if you make a lot of changes to your page:</p>
<pre><code>$(function(){
$('div').each(function(){
var div = $(this);
var n = div.text();
div.attr('ticket', n);
}); //div.each
$('[ticket=3]').css('color', 'blue');
}); //doc.ready
</code></pre>
<p>See both examples in action here: <a href="http://jsbin.com/etapu3" rel="nofollow">http://jsbin.com/etapu3</a></p>
http://stackoverflow.com/questions/1896080/select-first-element-that-doesnt-have-a-specific-class/1896115#18961154Answer by Kobi for Select first element that doesn't have a specific classKobi2009-12-13T10:32:01Z2009-12-13T11:50:06Z<pre><code>$('li:not(.someClass):first')
</code></pre>
<p>Here's a working demo: <a href="http://jsbin.com/arosa" rel="nofollow">http://jsbin.com/arosa</a></p>
http://stackoverflow.com/questions/1896230/does-search-engine-read-css-file/1896250#18962500Answer by Kobi for Does search engine read css file?Kobi2009-12-13T11:36:15Z2009-12-13T11:36:15Z<p>Yes, search engines read CSS, to prevent people from hiding portions of their pages using css, ans skewing the results (for example, keywords on a hidden <code><h1></code>).<br>
However, why do you assume that has something to do with it? It looks like a signature and documentation, not like something SEO oriented.</p>
http://stackoverflow.com/questions/1896015/invert-a-section-of-an-image-in-javascript/1896028#18960283Answer by Kobi for Invert a section of an image in javascriptKobi2009-12-13T09:42:13Z2009-12-13T09:42:13Z<p>Take a look at <a href="http://davidlynch.org/js/maphilight/docs/" rel="nofollow">jQuery MapHilight</a>.<br>
I'm not sure it does exactly what you need, but you can achieve that with minor tweaking.</p>
http://stackoverflow.com/questions/1895876/orderedlist-li-selector/1895883#18958834Answer by Kobi for "#orderedlist > li" selectorKobi2009-12-13T07:57:22Z2009-12-13T07:57:22Z<p>The JavaScript is OK, the CSS isn't. The CSS rule only applies to links.</p>
<p>To see the effect, change the CSS to:</p>
<pre><code>.test { font-weight: bold; background: #fc0 }
</code></pre>
http://stackoverflow.com/questions/1879780/why-is-short-project-lifetime-and-other-situation-specific-reasons-used-to-excuse/1879837#18798371Answer by Kobi for Why is short project lifetime and other situation-specific reasons used to excuse crappy code?Kobi2009-12-10T09:35:54Z2009-12-10T09:35:54Z<p>Joel Spolsky on bug fixing - <a href="http://www.joelonsoftware.com/articles/fog0000000014.html" rel="nofollow">Hard-assed Bug Fixin'</a>:</p>
<blockquote>
<p>As a software developer, fixing bugs is a good thing. Right? Isn't it always a good thing?</p>
<p>No!</p>
<p>Fixing bugs is only important when the value of having the bug fixed exceeds the cost of the fixing it.</p>
</blockquote>
<p>In addition, consider <a href="http://en.wikipedia.org/wiki/You%5Fain%27t%5Fgonna%5Fneed%5Fit" rel="nofollow">YAGNI</a> - when you find a bug or write hacky code, document it. Only when you need reuse this code you really have to fix it.</p>
http://stackoverflow.com/questions/1879018/regex-for-capturing-digits-and-digit-ranges/1879185#18791850Answer by Kobi for regex for capturing digits and digit rangesKobi2009-12-10T07:16:33Z2009-12-10T07:27:00Z<p>I came out with something like this atrocity:</p>
<pre><code>-?\d(?:,?\d)*(?:\.(?:\d(?:,?\d)*\d|\d))?(?:[–-]-?\d(?:,?\d)*(?:\.(?:\d(?:,?\d)*\d|\d))?)?
</code></pre>
<p>Out of witch <code>-?\d(?:,?\d)*(?:\.(?:\d(?:,?\d)*\d|\d))?</code> is repeated twice, with <code>–</code> in the middle (note that this is a long hyphen).<br>
This should take care of dots and commas outside of numbers, eg: <em><code>hello,23,45.2-7world</code></em> - will capture <em><code>23,45.2-7</code></em>.</p>
http://stackoverflow.com/questions/1872299/what-are-some-good-programming-snacks/1872320#18723203Answer by Kobi for What are some good programming snacks?Kobi2009-12-09T08:01:58Z2009-12-09T08:01:58Z<p><a href="http://en.wikipedia.org/wiki/Bamba%5F%28snack%29" rel="nofollow">Bamba</a></p>
http://stackoverflow.com/questions/1872200/html5-css3-support/1872228#18722283Answer by Kobi for HTML5 & CSS3 SupportKobi2009-12-09T07:37:48Z2009-12-09T07:37:48Z<ul>
<li><a href="http://www.quirksmode.org/compatibility.html" rel="nofollow">Cross Browser Support from Quirks Mode</a> - you can drill down to the feature you like, it gets very detailed.</li>
<li><a href="http://a.deveria.com/caniuse/" rel="nofollow">When can I use</a> - An interactive table that shows when features are (and will be) ready for public use. There's also a handy option to accept JavaScript replacements, like <code><Canvas></code> for IE6.</li>
</ul>
http://stackoverflow.com/questions/1872171/updating-image-runat-server-src-using-jquery-asp-net/1872216#18722161Answer by Kobi for Updating Image (runat server) Src using jQuery/ASP.NETKobi2009-12-09T07:34:27Z2009-12-09T07:34:27Z<p>This should work, besides two points:</p>
<ol>
<li>The <code>src</code> of the image can be changed at client side, but don't expect to see that on the server side after a postback. Images aren't posted, only input fields.</li>
<li><p>Your <code>img</code> is <code>runat="server"</code> - this means its <code>id</code> changes on the page (unless it's on the root level, eg, no master page, panels, repeaters, etc). You need to use</p>
<pre><code>$('#<%=largeImg.ClientID%>')
</code></pre>
<p>Which is quite ugly, or simply add a class and use that in your selector:</p>
<pre><code><img id="largeImg" runat="server" width="320" alt="Large Image"
CssClass="LargeImage" />
$(".LargeImage").attr({ src: largePath, alt: largeAlt });
</code></pre></li>
</ol>
http://stackoverflow.com/questions/1872111/jquery-clone-is-conling-final-rows-data/1872165#18721651Answer by Kobi for JQuery Clone is Conling final row's dataKobi2009-12-09T07:21:20Z2009-12-09T07:21:20Z<p>It seems to be doing exactly what you've told it to do... cloning the last row, with or without data.<br>
The solution is simple - don't do it.</p>
<ol>
<li>Clone a last invisible row (so you have 13 rows), or</li>
<li><p>Clone the row from a template you keep on the side, eg: </p>
<pre><code>$('#RowTemplate tr').clone(true).show()
</code></pre></li>
<li><p>Another option is to copy the row when the page is loaded, and then recloning it:</p>
<pre><code>var rowTemplate = $('#picTableDisplay tbody>tr:last').clone(true)
$('#picTableDisplay tr').click(function(){
$(this).closest('tr').remove();
var row = rowTemplate.clone(true) //...
});
</code></pre></li>
</ol>
<p>Please also note there's a known bug with cloning the last element on IE, as detailed here: <a href="http://stackoverflow.com/questions/1560889/problem-using-jquery-clone-function-in-form/1592831#1592831">Problem using jQuery clone function in form</a>.</p>
http://stackoverflow.com/questions/1866907/ways-to-hide-first-column-of-table-through-css/1866933#18669331Answer by Kobi for Ways to hide first column of table through CSS.Kobi2009-12-08T13:21:34Z2009-12-08T13:21:34Z<p>Sadly, very little can be done. <a href="http://www.w3schools.com/tags/tag%5Fcolgroup.asp" rel="nofollow"><code><colgroup></code></a> seems tempting, but browsers treat it differently.<br>
You may have to manually add a class for each cell, or use <a href="http://code.google.com/p/ie7-js/" rel="nofollow">JavaScript</a>.</p>
http://stackoverflow.com/questions/1866469/removing-javascript-created-content/1866508#18665080Answer by Kobi for Removing javascript created content...Kobi2009-12-08T11:58:12Z2009-12-08T11:58:12Z<pre><code>$("#accordion").append(
$("<div class='AJAXContend' />").append(html)
);
</code></pre>
<p>And then you can easily do <code>$('.AJAXContend').remove();</code>.</p>
<p>Another option is to do <code>$('#accordion :last-child').remove();</code>, but this is a little hacky.</p>
http://stackoverflow.com/questions/1866356/does-an-exception-inside-a-try-block-break-its-execution/1866384#18663843Answer by Kobi for Does an exception inside a TRY block break its execution?Kobi2009-12-08T11:29:59Z2009-12-08T11:29:59Z<p>Yes, an exception does break the try block - that is the way to handle them.<br>
If you want to keep going, you need try/catch for every field. This doesn't mean writing it 20 times, far from it, refactor your code:</p>
<ul>
<li>Add a function that gets the field (as string?) and tries to return a value.</li>
<li>Create a new class and define every field as an object.</li>
<li>Don't throw an exeption at all - if this is a common scenario, don't throw an exception! Add a check before you read the value. Again, moving this to a function will help.</li>
</ul>
http://stackoverflow.com/questions/1865806/jquery-fadeto-causing-pixelated-text-in-ie8-when-font-weight-bold/1865857#18658570Answer by Kobi for jQuery FadeTo causing pixelated text in IE8 when font-weight: boldKobi2009-12-08T09:44:56Z2009-12-08T09:44:56Z<p>A common solution is to define a background color, if you don't already have an image:<br>
<a href="http://jsbin.com/axapa" rel="nofollow">http://jsbin.com/axapa</a></p>
<pre><code>.formErrors {background-color:white;}
</code></pre>
<p>Another option is to use <code>fadeIn</code> and <code>fadeOut</code>: the animation is till ugly, but at least it ends up nicely: <a href="http://jsbin.com/aboxa" rel="nofollow">http://jsbin.com/aboxa</a></p>
http://stackoverflow.com/questions/1864795/what-does-my-other-car-is-a-cdr-mean/1864808#18648088Answer by Kobi for What does "my other car is a cdr" mean?Kobi2009-12-08T05:30:30Z2009-12-08T06:04:40Z<p>//Coming from Scheme<br>
Scheme has very few data structures, one of them is a tuple: <code>'(first . second)</code>. In this case, <code>car</code> is the first element, and <code>cdr</code> is the second. This construct can be extended to create lists, trees, and other structures.<br>
The joke isn't very funny.</p>
http://stackoverflow.com/questions/1858980/javascript-scope-issue/1858995#18589953Answer by Kobi for javascript scope issueKobi2009-12-07T09:58:57Z2009-12-07T09:58:57Z<p><code>this</code> is the function. Try:</p>
<pre><code>var listener = function(element){
$(element).parents('td:first').next().find('option').customizeMenu('myMenu2');
};
listener(this);
</code></pre>
http://stackoverflow.com/questions/1839071/regular-expression-for-a-string-with-a-max-length-that-contains-a-required-part/1839379#18393792Answer by Kobi for Regular expression for a string with a max length that contains a required part?Kobi2009-12-03T11:35:15Z2009-12-03T11:49:50Z<p>Since you have to use a regex, as you've explained, here's an option:</p>
<pre><code>^(?!.{21,})(.*?)\$rolename\$(.*?)$
</code></pre>
<p>This is similar to Joachim's answer, but with a negative lookahead at the beginning. That is: before the regex is matched, we check the string does not have 21 or more characters.</p>
http://stackoverflow.com/questions/1838886/using-a-goto-to-enhance-the-dry-principle-and-code-clarity-a-good-idea/1838904#18389042Answer by Kobi for Using a Goto to enhance the DRY principle and code clarity: a good idea?Kobi2009-12-03T10:00:53Z2009-12-03T10:00:53Z<p>Yes, but only if by <code>goto</code> you mean "create a function and call it multiple times".</p>
http://stackoverflow.com/questions/1719217/invoke-workflow-through-custom-sequential-workflow-in-sharepoint/1832952#18329520Answer by Kobi for Invoke Workflow through Custom Sequential Workflow in SharePointKobi2009-12-02T13:36:50Z2009-12-02T13:36:50Z<p>I use <a href="http://spdactivities.codeplex.com/" rel="nofollow">Useful Sharepoint Designer Custom Workflow Activities</a> to start another workflow.<br>
If you can't use it as-is, have a look at its source code. It doesn't look like they manually set the task and history lists:
<a href="http://spdactivities.codeplex.com/SourceControl/changeset/view/22637#201408" rel="nofollow">http://spdactivities.codeplex.com/SourceControl/changeset/view/22637#201408</a></p>
http://stackoverflow.com/questions/1814956/what-kind-of-recursion-can-be-resolved-without-stack/1814960#18149600Answer by Kobi for What kind of recursion can be resolved without stack?Kobi2009-11-29T08:01:23Z2009-11-29T08:01:23Z<p>A <a href="http://en.wikipedia.org/wiki/Tail%5Frecursion" rel="nofollow">tail recursion</a>, if you have the right optimization.</p>
http://stackoverflow.com/questions/1814608/how-to-wrap-a-group-of-words-with-tags-javascript-replace-regular-expressions/1814925#18149253Answer by Kobi for How to wrap a group of words with tags, JavaScript Replace Regular ExpressionsKobi2009-11-29T07:39:43Z2009-11-29T07:59:04Z<p>JavaScript doesn't support lookbehind. This is a shame, as we could have done: </p>
<pre><code>// doesn't work in JavaScript:
/((apple|banana|cherry|orange)\b\s?)+(?<!\s)/gi
</code></pre>
<p>What we can do, however, is to move the white-space to the beginning, and add a negative lookahead (so the catch must not start with a white-space):</p>
<pre><code>/(?!\s)(\s?\b(apple|banana|cherry|orange)\b)+/gi
</code></pre>
<p>A slight difference from your code is that I also added <code>\b</code> to the beginning of the pattern, so it wouldn't catch <code>apple</code> from <code>Snapple</code>.</p>
http://stackoverflow.com/questions/1417531/sharepoint-workflow-wait-for-field-change-not-firing-when-another-workflow-chan1Sharepoint Workflow - Wait for field change not firing when another workflow changes statusKobi2009-09-13T11:34:20Z2009-11-28T07:42:03Z
<p>I'm trying to create a workflow on the Sharepoint Designer. The workflow should wait until an Out-Of-The-Box approval workflow is complete. This is done by starting my workflow with the item's creation, and usign the <code>wait</code> activity: </p>
<blockquote>
<p>Wait for field change in current item:<br />
Wait for <em>InternalApproval to equal 16</em> </p>
</blockquote>
<p>The problem: the rule is correct, but the event doesn't fire unless an edit is made on the item. Normally, every edit triggers the workflow check, but my tests show <strong>approving a workflow doesn't trigger this event on the item</strong>. </p>
<p>Is there an easy way around this issue? I though about implementing a busy wait, but how (there's a <code>wait 5 minutes</code> activity, but no <code>goto</code>)? Is there an activity I can download that can wait for another workflow to complete, or busy wait until a condition is met?<br />
Another way to solve my problem is if the InternalApproval workflow changed a field, but I cannot achieve that either... </p>
http://stackoverflow.com/questions/1810172/md5-for-emails-too/1810194#18101942Answer by Kobi for md5 for emails too?Kobi2009-11-27T18:46:45Z2009-11-27T18:46:45Z<p>MD5 is one sided - it cannot be revered. For passwords, this is desireable - no one can figure out the password.<br>
For emails, not so much - <strong>you will not be able to send emails to your users</strong>, only confirm it is the same as previously entered.</p>
http://stackoverflow.com/questions/1935619/can-i-do-this-better-using-linq/1935647#1935647Comment by Kobi on Can I do this better using LINQKobi2009-12-20T12:18:49Z2009-12-20T12:18:49Z<code>The type arguments for method 'System.Linq.Enumerable.Select<TSource,TResult>(System.Collections.Generic.IEnumerable<TSource>, System.Func<TSource,TResult>)' cannot be inferred from the usage. Try specifying the type arguments explicitly.</code>. This works better: <code>.Select(token => Convert.ToByte(token))</code>, but is not different enough from your answer to justify another answer :P
http://stackoverflow.com/questions/1935619/can-i-do-this-better-using-linqComment by Kobi on Can I do this better using LINQKobi2009-12-20T11:57:16Z2009-12-20T11:57:16Zbetter how? faster? bigger? more readable?http://stackoverflow.com/questions/1935413/how-to-move-a-windows-xp-mysql-database-to-linuxComment by Kobi on How to move a Windows XP MySQL database to Linux?Kobi2009-12-20T09:59:05Z2009-12-20T09:59:05ZWould you like to migrate your question to <a href="http://serverfault.com/" rel="nofollow">serverfault.com</a> ? Seems more fitting.http://stackoverflow.com/questions/1920108/c-write-multi-lines-to-cs-fileComment by Kobi on C# write multi lines to cs file.Kobi2009-12-17T07:55:15Z2009-12-17T07:55:15Zyou want to read the cs file and write it into a file? or just write hardcoded code?http://stackoverflow.com/questions/1920013/delete-multiple-nodes-from-a-binary-search-tree/1920070#1920070Comment by Kobi on Delete multiple nodes from a binary search treeKobi2009-12-17T07:37:51Z2009-12-17T07:37:51Zit does say <i>"binary search tree"</i>.http://stackoverflow.com/questions/1919692/how-to-style-first-paragraph-p-of-the-content-differently-without-using-css-cla/1919812#1919812Comment by Kobi on How to style first paragraph <p> of the content differently without using css class , ID or javascript, with IE6 compatibility ? Kobi2009-12-17T06:47:51Z2009-12-17T06:47:51ZThat doesn't work on my IE6... and listed as <code>no</code> on <a href="http://www.quirksmode.org/css/contents.html" rel="nofollow">quirksmode.org/css/contents.html</a>http://stackoverflow.com/questions/1919787/how-do-i-fix-this-stack-overflow-errorComment by Kobi on How do I fix this stack overflow error?Kobi2009-12-17T06:14:08Z2009-12-17T06:14:08Zyou should tell people it's Java. That's a lot of code, by the way, think about breaking it down to functions. Are you sure solving a sudoku fits on the stack?http://stackoverflow.com/questions/1919692/how-to-style-first-paragraph-p-of-the-content-differently-without-using-css-claComment by Kobi on How to style first paragraph <p> of the content differently without using css class , ID or javascript, with IE6 compatibility ? Kobi2009-12-17T06:02:38Z2009-12-17T06:02:38ZWhat exactly do you need? You can toy with negative margins, for example.http://stackoverflow.com/questions/1919401/php-regex-i-need-more-filehosters-patternsComment by Kobi on PHP Regex I Need More Filehosters PatternsKobi2009-12-17T05:58:26Z2009-12-17T05:58:26Z...and the regexes to match them. Maybe someone have a similar list, or an open source list? Who knows. Don't be easy on that trigger :) . also: <a href="http://meta.stackoverflow.com/questions/10216/can-we-disallow-the-use-of-belongs-on-xxxxxxx-and-not-programming-related-tag" rel="nofollow" title="can we disallow the use of belongs on xxxxxxx and not programming related tag">meta.stackoverflow.com/questions/10216/…</a>http://stackoverflow.com/questions/1919591/how-can-i-assigned-onclick-for-a-tag-with-jquery/1919633#1919633Comment by Kobi on How can I assigned onclick for a tag with jqueryKobi2009-12-17T05:23:50Z2009-12-17T05:23:50ZNope, should be <code>.click(test);</code> - or you start the function instead on binding it. Unless somehow <code>test()</code> returns a function, of course...http://stackoverflow.com/questions/1919401/php-regex-i-need-more-filehosters-patternsComment by Kobi on PHP Regex I Need More Filehosters PatternsKobi2009-12-17T05:21:51Z2009-12-17T05:21:51Z@Saxtor - welcome to Stack Overflow. It is considered <i>best-practice</i> to accept the answer that helped you. More details: <a href="http://meta.stackoverflow.com/questions/5234/accepting-answers-what-is-it-all-about" rel="nofollow" title="accepting answers what is it all about">meta.stackoverflow.com/questions/5234/…</a> . Thakns.http://stackoverflow.com/questions/1919401/php-regex-i-need-more-filehosters-patternsComment by Kobi on PHP Regex I Need More Filehosters PatternsKobi2009-12-17T05:17:38Z2009-12-17T05:17:38ZPeople, the OP only asks 4 questions. Downvoting is inappropriate, and wth is up with the close vote!?http://stackoverflow.com/questions/1913636/number-grouping-using-regexps/1914008#1914008Comment by Kobi on Number grouping using regexpsKobi2009-12-16T11:54:14Z2009-12-16T11:54:14ZA quick twitter confirms: it's bug in jsbin. <a href="https://twitter.com/rem/status/6727791738" rel="nofollow">twitter.com/rem/status/6727791738</a>http://stackoverflow.com/questions/1913636/number-grouping-using-regexps/1914008#1914008Comment by Kobi on Number grouping using regexpsKobi2009-12-16T11:40:33Z2009-12-16T11:40:33ZThat is very strange, it works well on <a href="http://jsbin.com/iruzu/edit" rel="nofollow">jsbin.com/iruzu/edit</a> ...http://stackoverflow.com/questions/1913636/number-grouping-using-regexps/1914001#1914001Comment by Kobi on Number grouping using regexpsKobi2009-12-16T11:21:27Z2009-12-16T11:21:27Z+1 for beating me by a minute with the same idea.