User voyager - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T01:30:42Zhttp://stackoverflow.com/feeds/user/34813http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1850790/capture-a-part-of-a-string-that-does-not-match-another-group-c-regex/1850817#18508170Answer by voyager for Capture a part of a string that does not match another group (C# Regex)voyager2009-12-05T01:51:05Z2009-12-05T01:51:05Z<p><a href="http://stackoverflow.com/questions/1736706/regex-to-get-value-within-tag/1736756#1736756">Why don't you use an HTML parser for this</a>?</p>
<blockquote>
<p><strong>You should be using an <a href="http://forums.macrumors.com/showthread.php?t=244288" rel="nofollow">XML parser</a>, <a href="http://stackoverflow.com/questions/542455/regex-to-indent-an-xml-file/542708#542708">not regexes</a>. <a href="http://stackoverflow.com/questions/1357357/regexp-to-add-attribute-in-any-xml-tags/1357393#1357393">XML is not a regular language</a>, <a href="http://stackoverflow.com/questions/968919/when-not-to-use-regex-in-c-or-java-c-etc">hence not easely parseable</a> by <a href="http://stackoverflow.com/questions/701166/can-you-provide-some-examples-of-why-it-is-hard-to-parse-xml-and-html-with-a-rege">a regular expression</a>. <a href="http://stackoverflow.com/questions/590747/using-regular-expressions-to-parse-html-why-not">Don't do it</a>.</strong></p>
<blockquote>
<p><a href="http://stackoverflow.com/questions/357814/when-is-it-best-to-use-regular-expressions-over-basic-string-spliting-substring/357847#357847">Never use regular expressions or basic string parsing to process XML</a>. Every language in common usage right now has perfectly good XML support. XML is a deceptively complex standard and it's unlikely your code will be correct in the sense that it will properly parse all well-formed XML input, and even it if does, you're wasting your time because (as just mentioned) every language in common usage has XML support. It is unprofessional to use regular expressions to parse XML.</p>
</blockquote>
</blockquote>
http://stackoverflow.com/questions/1819220/whats-the-most-json-you-can-reasonably-expect-to-decode-on-the-client-side/1819289#18192891Answer by voyager for What's the most JSON you can reasonably expect to decode on the client sidevoyager2009-11-30T11:32:50Z2009-11-30T11:32:50Z<p>This depends largely on the client browser, as Chrome would have no problem with something that large, while IE6 would most likely stop to a halt on the spot.</p>
<p>I'd recommend that instead of a large 750 KB JSON transmission that you'd have to decode at once, try to send smaller (100 KB) messages on the background and requesting/showing the part of the data that the client needs first. That way your page will feel faster. Always try to load on demand large datasets.</p>
<p>My gut feeling is that the problem wasn't with the size of the JSON message anyway, but rather with ExtJS' JSON implementation in FF. </p>
<p>Have you tried this in other browsers? If this happens only on FF, I'd recommend try and use <a href="https://developer.mozilla.org/En/JSON" rel="nofollow">Firefox's own JSON interface</a> to do the decoding and see if that works.</p>
<p>Also, have you checked that the JSON response is actually correct? It could be crashing the JSON parser.</p>
http://stackoverflow.com/questions/1801658/database-synchronization-ms-access/1801795#18017952Answer by voyager for database synchronization - MS Accessvoyager2009-11-26T06:00:24Z2009-11-26T06:00:24Z<p>You should read into <a href="http://office.microsoft.com/en-us/access/CH062526841033.aspx" rel="nofollow">Access</a> <a href="http://www.blueclaw-db.com/broad%5Finterest/database-replication.htm" rel="nofollow">Database</a> <a href="http://www.supinfo-projects.com/en/2005/replication%5Faccess%5F2003%5Fen/" rel="nofollow">Replication</a>, as there is some information out there. </p>
<p>But I think that in order for it to work correctly with your application, you will have to roll out a custom made solution using the <a href="http://office.microsoft.com/en-us/access/HP030698321033.aspx" rel="nofollow">methods and properties available</a> for that end.</p>
<blockquote>
<p>Use Jet and Replication Objects (JRO) if you require programmatic control over the exchange of data and design information among members of the replica set in Microsoft Access databases (.mdb files only). For example, you can use JRO to write a procedure that automatically synchronizes a user's replica with the rest of the set when the user opens the database. To replicate a database programmatically, the database must be closed.</p>
<p>If your database was created with Microsoft Access 97 or earlier, you must use Data Access Objects (DAO) to programmatically replicate and synchronize it.</p>
<p>You can create and maintain a replicated database in previous versions of Microsoft Access by using DAO methods and properties. Use DAO if you require programmatic control over the exchange of data and design information among members of the replica set. For example, you can use DAO to write a procedure that automatically synchronizes a user's replica with the rest of the set when the user opens the database.</p>
<p>You can use the following methods and properties to create and maintain a replicated database:</p>
<ul>
<li><code>MakeReplica</code> method</li>
<li><code>Synchronize</code> method</li>
<li><code>ConflictTable</code> property</li>
<li><code>DesignMasterID</code> property</li>
<li><code>KeepLocal</code> property</li>
<li><code>Replicable</code> property</li>
<li><code>ReplicaID</code> property</li>
<li><code>ReplicationConflictFunction</code> property</li>
</ul>
<p>Microsoft Jet provides these additional methods and properties for creating and maintaining partial replicas (replicas that contain a subset of the records in a full replica):</p>
<ul>
<li><code>ReplicaFilter</code> property</li>
<li><code>PartialReplica</code> property</li>
<li><code>PopulatePartial</code> method</li>
</ul>
</blockquote>
<p>You should definitely read <a href="http://office.microsoft.com/en-us/access/CH062526871033.aspx" rel="nofollow">the Synchronizing Data</a> part of the documentation.</p>
http://stackoverflow.com/questions/1799462/python-print-doesnt-work-script-hangs-endlessly/1799534#17995341Answer by voyager for Python: print doesn't work, script hangs endlessly...voyager2009-11-25T19:53:17Z2009-11-25T19:53:17Z<p>Have you tried doing</p>
<pre><code>entities = StringIO()
for answer in results:
entities.write('''<Entity Type="IPAddress"><Value>{0}</Value></Entity>'''.format(answer))
entities.flush()
maltego_transform(entities.getvalue())
entities.close()
</code></pre>
http://stackoverflow.com/questions/1737773/tooltips-in-the-era-of-touch/1738121#17381213Answer by voyager for Tooltips in the era of touchvoyager2009-11-15T17:12:29Z2009-11-20T04:39:04Z<p>Reading here got me thinking. Tooltips are generally used for giving a <em>label</em> to textless buttons, but are also a great way of giving more information in the reduced space available in an interface. Sometimes, it's used to provide context sensitive help, or a detailed explanation of a single widget.</p>
<p><a href="http://stackoverflow.com/users/69993/tchalvak">Tchalvak</a><a href="http://stackoverflow.com/questions/1737773/tooltips-in-the-era-of-touch/1737803#1737803">'s idea</a> of giving all GUI elements a single click common behaviour, and providing a tooltip on double click has its merits, and can even be somewhat discoverable, as many people are used to double clicking on <em>everything</em> they see, regardless of the element.</p>
<p>But I recalled the old <kbd>?</kbd> button that was so popular years back, wich once clicked would transform the cursor into a question mark. Once you clicked a widget, you would see a small tooltip or information balloon. I believe that something like that could be easely used on a touch interface. Because of the lack of a cursor, another visual cue should be given to the user telling him that he is in <em>provide help</em> mode. May be change the tint of the screen and give a small text. It could be also done through multitouch by requiring the <kbd>?</kbd> button to be pressed while pressing another widget to get the tooltip (which should be shown in a slightly separated place in order not to be too obscured by the finger).</p>
<p><img src="http://img142.imageshack.us/img142/4910/tooltipcursor.png" alt="Those ? buttons were popular in the Win 95 days, but have largely dissapeared now."></p>
<p>But even if it's possible to keep the same technical functionality for us programmers to have tooltips, we should be thinking about the <em>intent</em>, what we'll be using it for.</p>
<p>I would use it only to give extended help when you are faced with a small screen, otherwise, make a help area visible at all times on the bottom of the "window" (refferring to any kind of square-shaped-io-interface), that changes its contents to provide a detailes explanation and/or help for the selected widget, as is done in some preferences windows on hover.</p>
<p>In conclusion, even if we are <em>able</em> to provide easy to use tooltips, we should be thinking of what would you put in it. In a touch interface, I would <strong>not</strong> put a labeless ambiguous button that <em>needs</em> a tooltip to be understood, but would use it to give context sensitive advanced help and troubleshooting.</p>
http://stackoverflow.com/questions/1234246/random-querystring-to-avoid-ie-caching1Random Querystring to avoid IE cachingvoyager2009-08-05T16:13:34Z2009-11-20T02:00:40Z
<p>It is a well known problem that IE caches too much of html, even when giving a <code>Cache-Control: no-cache</code> or <code>Last-Modified</code> header to everypage. </p>
<p>This behaiviour is really troubling when working with querystrings to get dynamic information, as IE considers it to be the <em>same page</em> (i.e.: <code>http://example.com/?id=10</code>) and serves the cached version.</p>
<p>I've solved it adding either a random number or a timestring to the querystring (<a href="http://stackoverflow.com/questions/1233904/howto-attach-or-update-a-timestamp-querystring-parameter">as others have done</a>) like this <code>http://example.com/?id=10&t=2009-08-06_13:12:56</code> that I just ignore serverside. </p>
<p>Is there a better option? Is there another, cleaner way to acomplish this? I'm aware that <code>POST</code> isn't cached, but it is semanticaly correct to use <code>GET</code> here.</p>
http://stackoverflow.com/questions/288867/how-to-code-a-javascript-modal-popup-to-replace-ajax/288995#2889950Answer by voyager for How to code a JavaScript modal popup (to replace Ajax)?voyager2008-11-14T01:42:45Z2009-11-19T21:57:07Z<p>Maybe you are looking for something like <a href="http://ui.jquery.com/repository/latest/demos/functional/#ui.dialog" rel="nofollow">this</a>? [ui.jquery.com]</p>
<p>It's the simplest one, and can come bundled with a lot of other eye candy. Of course you could also look around the rest of the <a href="http://plugins.jquery.com/" rel="nofollow">jQuery plug-ins page</a>, specially the <a href="http://plugins.jquery.com/project/Plugins/category/43" rel="nofollow">Windows and Overlays section</a>.</p>
http://stackoverflow.com/questions/1745410/see-what-content-is-not-sent-over-https/1745416#17454164Answer by voyager for See what content is not sent over HTTPSvoyager2009-11-16T22:59:54Z2009-11-16T22:59:54Z<p>I guess you could use the <a href="http://getfirebug.com/net.html" rel="nofollow">Net tab</a> of <a href="http://getfirebug.com" rel="nofollow">Firebug</a> to see that.</p>
<p><img src="http://www.ibm.com/developerworks/web/library/wa-aj-perform/firebug-net.jpg" alt="alt text"></p>
http://stackoverflow.com/questions/1741700/how-to-write-good-alt-text-for-images-to-help-screen-reader-and-blind-user-to-und/1741752#17417523Answer by voyager for How to write good alt text for images to help screen reader and blind user to understand what is picture about ?voyager2009-11-16T11:59:44Z2009-11-16T21:51:35Z<p>You should <em>not</em> make the visually impaired user understand what the image is all about. For the blind, the image effectively <strong>doesn't exist</strong>, all that there is is the text.</p>
<p>The <a href="http://www.w3.org/TR/html4/struct/objects.html#adef-alt" rel="nofollow"><code>alt</code></a> text should work as a single sentence/paragraph that can be replaced for the image, convey the same content and still make sense in the context of the adjacent content.</p>
<p>If the image is something that is part of the GUI, then the <code>alt</code> text should convey an action (a verb), line <em>upvote</em>, <em>answer this</em> or <em>log out</em>.</p>
<p>You should visit your site with <a href="http://en.wikipedia.org/wiki/Links%5F%28web%5Fbrowser%29" rel="nofollow"><code>links</code></a> and try to understand your site. If there is for example a pie chart, its <code>alt</code> text should be a small summary of the percentages. If you just have a pretty flower next to a blog post, don't give it an innane <code>alt</code> text like <em>flower image companion of blogpost #324</em> or even worse <em>flower.jpg</em>.</p>
<p>If the image is important to the navigation or to get information, try to give it an <code>alt</code> text that makes the site work without the image. If the image is only presentational, give it an empty <code>alt</code> text.</p>
<p><a href="http://www.w3.org/TR/html4/struct/global.html#h-7.4.3" rel="nofollow"><code>title</code></a>, as far as I know, should only displayed when hovered, so they should give extra information to the image, so <a href="http://accessibilitytips.com/2008/04/14/avoiding-redundant-title-attributes/" rel="nofollow">useless duplication of information</a> should be avoided. For screen readers, this is a bit trickier, as support and configuration can be very different between users.</p>
<p>Some <a href="http://www.paciellogroup.com/resources/articles/WE05/survey.html" rel="nofollow">empirical data</a> shows <code>title</code> as useless:</p>
<blockquote>
<ul>
<li>Most users of screen reading software do not change their default settings to access the TITLE attribute information on links.</li>
<li>Most screen reading software can access TITLE attribute content on form controls by default.</li>
<li>Some screen reading software cannot access TITLE attribute information.</li>
<li>Users of screen magnifiers can read TITLE attribute text at lower magnification levels.</li>
<li>Users of screen magnifiers cannot read TITLE attribute text, that contains more than 1 or 2 words, at higher magnification levels.</li>
</ul>
</blockquote>
<p><a href="http://www.456bereastreet.com/archive/200412/the%5Falt%5Fand%5Ftitle%5Fattributes/" rel="nofollow">Here's good piece of advice</a>, better put than I could</p>
<blockquote>
<p>Use this to provide additional information that is not essential. Most visual browsers display title text as a tool tip when the element is hovered over, however it is up to the browser manufacturer to decide how the title text is rendered. Some will display the text in the status bar instead. Early versions of Safari did this, for instance.</p>
<p>One good use of the title attribute is to add descriptive text to links, especially if the link text itself doesn’t clearly describe the link’s destination. This way you can help visitors know where the link will take them, possible saving them from loading a page only to find out it wasn’t anything they’re interested in. Another potential use is to provide additional information for an image, like maybe a date or other information that is likely not essential.</p>
</blockquote>
<p>Remember that the <a href="http://www.w3.org/TR/html4/struct/objects.html#adef-longdesc-IMG" rel="nofollow"><code>longdesc</code></a> attribute is supposed to be a <em>link</em> to further information, not <em>text</em> as some people missuse it.</p>
http://stackoverflow.com/questions/1741597/which-is-better-to-initialize-html-control-values-javascript-or-inline-server-ta/1741702#17417021Answer by voyager for Which is better to initialize HTML control values: Javascript or inline server tags?voyager2009-11-16T11:48:23Z2009-11-16T11:54:10Z<p>You are going to have the same problem regardless of the method: maintainability.</p>
<p>I have some legacy forms that need to remember some fields between calls, so I have a lot of code that might be a little ugly, but if you stick to a standard, doesn't get <em>too</em> messy. </p>
<pre><code><label for="email<%=i%>">E-Mail<% if required then %> (*)<% end if %>:</label>
<input name="email<%=i%>" id="email<%=i%>" type="text" value="<%=Trim(request.form("email"&i))%>" />
</code></pre>
<p>The problem is that it involves a lot of copy paste when having to add a new control. You <em>could</em> make a function to build it and keep the code duplication to a minimum.</p>
<pre><code><%= BuildHTMLInputControl("email"&i, "text", "E-Mail", true) %>
' Response: <label for="email1">E-Mail (*):</label><input name="email1" id="email1" type="text" value="Previous Value" />
</code></pre>
<p>I haven't done something like this, because it hasn't been a concern yet in the small forms that I've done this.</p>
<p>The advantage of this is that the fields are populated onload, there is <em>no</em> flashing of content and you are really friendly to non-Javascript users, something that you <em>should</em> be.</p>
<p>The only difference would be that with javascript youd have a lot of <code>document.getElementById()</code> at the beggining (or rather end) of the document, that increases the HTML file size (which might be a concern) and could not populate the fields instantly.</p>
http://stackoverflow.com/questions/1739624/automated-web-browser/1739648#17396481Answer by voyager for Automated web browser?voyager2009-11-16T01:51:03Z2009-11-16T01:51:03Z<p>You can use of course simple javascript that you include in your page, or better yet, using <a href="https://addons.mozilla.org/en-US/firefox/addon/748" rel="nofollow">Greasemonkey </a><img src="http://youngpup.net/z%5Fdropbox/greasespot%5Ffavicon.ico" alt="" title="">, so you don't modify the "client" code.</p>
<p>But greasemonkey would only be an option for Firefox, if you really need a full blown cross browser automation test suite, you could use <a href="http://seleniumhq.org/projects/ide" rel="nofollow">Sellenium IDE</a><img src="http://seleniumhq.org/selenium-favicon.ico" alt="" title="">, that allows to record or script a series of interactions with a web page, that can be automatically run in any of its <a href="http://seleniumhq.org/about/platforms.html" rel="nofollow">supported browsers</a>.</p>
http://stackoverflow.com/questions/1739133/storing-and-accessing-large-amounts-of-data/1739152#17391520Answer by voyager for Storing and accessing large amounts of datavoyager2009-11-15T22:49:03Z2009-11-15T22:49:03Z<p>You should deffinetely have several resourses per XML file, but only if you are expected to have all the resources toguether at the same time. If you need to send only a handfull of resourses to anybody, then keep making the individual XML.</p>
<p>Even in that situation, you could keep the large XML file, and generate on demand the smaller ones from the original dataset.</p>
<p>Using a database like SQLite3 would allow you to have faster seek times and easier manipulation of the data, using SQL syntax.</p>
http://stackoverflow.com/questions/1737726/how-to-perform-rgb-yuv-conversion-in-c-c/1737741#17377412Answer by voyager for How to perform RGB->YUV conversion in C/C++?voyager2009-11-15T14:59:23Z2009-11-15T14:59:23Z<blockquote>
<p>Check this article: <a href="http://www.fourcc.org/fccyvrgb.php" rel="nofollow">http://www.fourcc.org/fccyvrgb.php</a> Conversion is quite easy so you probably could write your own function based on this</p>
</blockquote>
<pre><code>Y = (0.257 * R) + (0.504 * G) + (0.098 * B) + 16
Cr = V = (0.439 * R) - (0.368 * G) - (0.071 * B) + 128
Cb = U = -(0.148 * R) - (0.291 * G) + (0.439 * B) + 128
</code></pre>
<p><a href="http://stackoverflow.com/questions/1737712/how-to-perform-rgb-yuv-conversion-with-actionscript/1737728#1737728">Answered 4 mins ago</a><br>
<a href="http://stackoverflow.com/users/211416/santod">santod</a><br>
46●1</p>
http://stackoverflow.com/questions/1737665/how-to-apply-picture-for-submit-button/1737678#17376782Answer by voyager for How to apply picture for submit buttonvoyager2009-11-15T14:41:33Z2009-11-15T14:54:34Z<p>If you want to keep using a standard submit button, that I personally agree with, you have to change your CSS to</p>
<pre><code>.search_icon
{
background-image:url(../images/search_ic.png);
background-color: transparent;
width:32px;
height:32px;
border-style: none;
}
</code></pre>
<p>There are other ways of doing the same thing: </p>
<ul>
<li><p>instead of setting <code>border-style: none;</code> you could set <code>border-width: 0;</code> (I think that even <code>border: none;</code> works across all browsers).</p></li>
<li><p>using <code><input type='image'src='path_to_image.png' value='alt text' /></code>, most likely to be better handled cross browser all the way back to Netscape 2. This will work the same as <code><input type='submit'></code>, only it also submits an <code>x</code> and <code>y</code> value of where the user clicked the button.</p></li>
<li><p>using a <code><button></code> with the same style as the <code><input></code></p></li>
<li><p>using an image and javascript like <code><img src='path_to_img.png alt='alt text' onclick="window.getElementById('form_name').submit()"/></code>. </p></li>
</ul>
<p>I personally dislike the last two. They are not <em>wrong</em>, but a user with javascript disabled might have problem. As a general rule, don't try to reimplement existing HTML semantics with javascript.</p>
http://stackoverflow.com/questions/1736698/whats-the-best-method-to-do-paging-in-my-asp-page/1736821#17368210Answer by voyager for Whats the best method to do paging in my ASP page voyager2009-11-15T06:49:40Z2009-11-15T06:54:57Z<p>Youd need to use <a href="http://msdn.microsoft.com/en-us/library/ms186734.aspx" rel="nofollow"><code>ROW_NUMBER</code></a> (SQL Server 2005+) </p>
<pre><code> SELECT * FROM
(SELECT a.*, ROW_NUMBER() OVER (ORDER BY hire_date) rn
FROM hr.employees AS OF TIMESTAMP (TIMESTAMP '2009-01-29 10:30:00') a)
WHERE rn BETWEEN 10 AND 19
</code></pre>
<p><sub><a href="http://stackoverflow.com/questions/488108/paging-with-oracle-and-sql-server-and-generic-paging-method/489941#489941">Related answer</a></sub></p>
<p>Using <code>ROW_NUMBER</code>, you are numering and sorting the inherently unsorted group (the table). Once you have an <a href="http://en.wikipedia.org/wiki/Set%5F%28computer%5Fscience%29" rel="nofollow">ordered set</a> instead of just a <a href="http://en.wikipedia.org/wiki/Set%5F%28mathematics%29" rel="nofollow">set</a>, you can now the sentence "<em>I want all the rows from 10 to 19</em>" makes sense.</p>
<p>You will have to use ASP code to keep both the upper and lower elements, so you can ask for the next or previous subset of rows to show.</p>
http://stackoverflow.com/questions/1736706/regex-to-get-value-within-tag/1736756#17367563Answer by voyager for Regex to get value within tagvoyager2009-11-15T06:10:39Z2009-11-15T06:18:08Z<p><sub><code><disclaimer></code>I don't use Objective-C<code></disclaimer></code></sub></p>
<p><strong>You should be using an <a href="http://forums.macrumors.com/showthread.php?t=244288" rel="nofollow">XML parser</a>, <a href="http://stackoverflow.com/questions/542455/regex-to-indent-an-xml-file/542708#542708">not regexes</a>. <a href="http://stackoverflow.com/questions/1357357/regexp-to-add-attribute-in-any-xml-tags/1357393#1357393">XML is not a regular language</a>, <a href="http://stackoverflow.com/questions/968919/when-not-to-use-regex-in-c-or-java-c-etc">hence not easely parseable</a> by <a href="http://stackoverflow.com/questions/701166/can-you-provide-some-examples-of-why-it-is-hard-to-parse-xml-and-html-with-a-rege">a regular expression</a>. <a href="http://stackoverflow.com/questions/590747/using-regular-expressions-to-parse-html-why-not">Don't do it</a>.</strong></p>
<blockquote>
<p><a href="http://stackoverflow.com/questions/357814/when-is-it-best-to-use-regular-expressions-over-basic-string-spliting-substring/357847#357847">Never use regular expressions or basic string parsing to process XML</a>. Every language in common usage right now has perfectly good XML support. XML is a deceptively complex standard and it's unlikely your code will be correct in the sense that it will properly parse all well-formed XML input, and even it if does, you're wasting your time because (as just mentioned) every language in common usage has XML support. It is unprofessional to use regular expressions to parse XML.</p>
</blockquote>
<p>You could use <a href="http://expat.sourceforge.net/" rel="nofollow">Expat</a>, with has <a href="http://unix.freshmeat.net/projects/expatobjc/" rel="nofollow">Objective C bindings</a>.</p>
<blockquote>
<p><a href="http://developer.apple.com/documentation/Cocoa/Conceptual/NSXML%5FConcepts/NSXML.html" rel="nofollow">Apple's options are</a>:</p>
<ol>
<li>The <a href="http://developer.apple.com/documentation/CoreFoundation/Conceptual/CFXML/index.html" rel="nofollow">CF xml parser</a></li>
<li>The <a href="http://developer.apple.com/documentation/CoreFoundation/Conceptual/CFXML/index.html" rel="nofollow">tree based Cocoa parser (10.4 only)</a></li>
</ol>
</blockquote>
http://stackoverflow.com/questions/1133922/what-do-you-use-python-for5What do you use Python for?voyager2009-07-15T20:43:05Z2009-11-13T10:42:38Z
<p>What do you use Python every day for?</p>
<p>If you don't use Python every day, please include any answers with your usage on a non-daily basis.</p>
http://stackoverflow.com/questions/1717344/string-replacement-in-javascript/1717411#17174110Answer by voyager for String replacement in JavaScriptvoyager2009-11-11T19:12:04Z2009-11-11T19:18:13Z<pre><code>highlight_string = function(str, mask){
var result='';
str1 = mask.split("");
str2 = str.split("");
for(int i = 0; i < str2.length; i++) {
if((str1[i] == "*") || (str2[i] == str1[i])) {
result+='<b>' + str1[i] + '</b>';
}
else { result+=str2[i]; }
}
return result;
}
</code></pre>
<p>Expanding on <a href="http://stackoverflow.com/questions/1717344/string-replacement-in-javascript/1717366#1717366">Soufiane Hassou's answer</a>, I think this is closer to what you are looking for.</p>
http://stackoverflow.com/questions/1685489/get-ip-address-of-web-user/1685496#16854961Answer by voyager for get ip address of web uservoyager2009-11-06T04:58:41Z2009-11-06T04:58:41Z<p><code>Request.ServerVariables["REMOTE_ADDR"]</code> to get the IP?</p>
<p>I believe you can use <a href="http://www.ip2location.com/" rel="nofollow">http://www.ip2location.com/</a></p>
http://stackoverflow.com/questions/1659620/why-is-python-a-favourite-among-people-working-in-animation-industry/1659654#16596543Answer by voyager for Why is Python a favourite among people working in animation industry?voyager2009-11-02T06:06:09Z2009-11-02T06:06:09Z<p>Because Python is what Basic should have been ;)</p>
<p>Its a language designed from the beginning to be used by non-programmers, but with the power to be truly used as a general purpose programming language.</p>
http://stackoverflow.com/questions/1659137/html-elements-for-javascript-hooks/1659162#16591620Answer by voyager for HTML elements for JavaScript hooksvoyager2009-11-02T02:23:57Z2009-11-02T02:23:57Z<p>You can link to any object in the page if you provide the <code>id</code> or the <code>name</code> of the element.</p>
<p>For example: </p>
<pre><code>http://stackoverflow.com/questions/1659137/html-elements-for-javascript-hooks#comments-1659137
</code></pre>
<p><a href="http://stackoverflow.com/questions/1659137/html-elements-for-javascript-hooks#comments-1659137">http://stackoverflow.com/questions/1659137/html-elements-for-javascript-hooks#comments-1659137</a></p>
http://stackoverflow.com/questions/1658931/why-browser-sometimes-render-site-bad-and-sometimes-good-without-change-browser/1658966#16589663Answer by voyager for Why browser sometimes render site bad and sometimes good? (without change browser, no dynamic data only refresh) voyager2009-11-02T00:58:25Z2009-11-02T00:58:25Z<p>Looking at your screenshots I believe the most likely reason is a difference in the default margin of divs in IE and FF.</p>
<p>When dealing with firefox problems, use <a href="http://getfirebug.com" rel="nofollow">Firebug</a> to edit the CSS live and see the changes when you do them.</p>
<p>Try setting <code>div {margin:0;padding:0;}</code> for a minute to see if that changes things for the better.</p>
http://stackoverflow.com/questions/1640806/android-java-v-python/1640829#16408291Answer by voyager for Android: Java v. Pythonvoyager2009-10-28T23:35:13Z2009-10-28T23:35:13Z<p>With Java you have access to the full OS API.</p>
<p><del><a href="http://stackoverflow.com/questions/101754/is-there-any-way-to-run-python-on-android/101813#101813">Python on Android, last time I checked, was kind of a hack. You couldn't create a GUI app, for example</a>.</del> </p>
<p><a href="http://stackoverflow.com/questions/101754/is-there-any-way-to-run-python-on-android/973786#973786">There seems to some progress on the Python front on the last few months</a>.</p>
http://stackoverflow.com/questions/832142/good-examples-of-gui-design-for-business-oriented-heavy-data-entry-crud-applic/1633831#16338310Answer by voyager for Good examples of GUI design for business-oriented, heavy data-entry (CRUD) applicationsvoyager2009-10-27T21:40:26Z2009-10-27T21:40:26Z<p>You should really visit the <a href="http://homepage.mac.com/bradster/iarchitect/shame.htm" rel="nofollow">Interface Hall of Shame</a>, where you'll find not only the most bizarre GUIs ever conceived, but also possible solutions to the usability problems they generate.</p>
http://stackoverflow.com/questions/1454874/allowing-user-to-rollback-from-db-audit-trail-with-sqlalchemy0Allowing user to rollback from db audit trail with SQLAlchemyvoyager2009-09-21T14:42:21Z2009-10-25T06:00:03Z
<p>I'm starting to use SQLAlchemy for a new project where I was planning to implement an audit trail similar to the one proposed on this quiestions:<sub></p>
<ul>
<li><a href="http://stackoverflow.com/questions/328898/implementing-audit-trail-for-objects-in-c">http://stackoverflow.com/questions/328898/implementing-audit-trail-for-objects-in-c</a></li>
<li><a href="http://stackoverflow.com/questions/315240/audit-trails-and-implementing-sox-hipaa-etc-best-practices-for-sensitive-data">http://stackoverflow.com/questions/315240/audit-trails-and-implementing-sox-hipaa-etc-best-practices-for-sensitive-data</a></li>
<li><a href="http://stackoverflow.com/questions/1051449/ideas-on-database-design-for-capturing-audit-trails">http://stackoverflow.com/questions/1051449/ideas-on-database-design-for-capturing-audit-trails</a></li>
<li><a href="http://stackoverflow.com/questions/60920/what-is-the-best-implementation-for-db-audit-trail">http://stackoverflow.com/questions/60920/what-is-the-best-implementation-for-db-audit-trail</a></li>
<li><a href="http://stackoverflow.com/questions/711597/is-this-the-best-approach-to-creating-an-audit-trail">http://stackoverflow.com/questions/711597/is-this-the-best-approach-to-creating-an-audit-trail</a></li>
<li><a href="http://stackoverflow.com/questions/23770/good-strategy-for-leaving-an-audit-trail-change-history-for-db-applications">http://stackoverflow.com/questions/23770/good-strategy-for-leaving-an-audit-trail-change-history-for-db-applications</a></li>
<li><a href="http://stackoverflow.com/questions/15917/data-auditing-in-nhibernate-and-sqlserver">http://stackoverflow.com/questions/15917/data-auditing-in-nhibernate-and-sqlserver</a>.</li>
<li><a href="http://stackoverflow.com/questions/1051449/ideas-on-database-design-for-capturing-audit-trails">http://stackoverflow.com/questions/1051449/ideas-on-database-design-for-capturing-audit-trails</a></sub></li>
</ul>
<p>As I will already have the full history of the "interesting" objects, I was thinking in allowing users to rollback to a given version, giving them the possibility to have unlimited <code>undo</code>.</p>
<p>Would this be possible to be done in a clean way with SQLAlchemy?</p>
<p>What would be the <em>correct</em> way to expose this feature in the internal API (business logic and ORM)?</p>
<p>I was something along the ways of <code>user.rollback(ver=42)</code>.</p>
http://stackoverflow.com/questions/1610860/screen-reader-with-a-non-breaking-space-in-alt-attrib/1610873#16108730Answer by voyager for Screen reader with a non breaking space in alt attribvoyager2009-10-23T00:52:35Z2009-10-23T00:52:35Z<p>If you are not using an alt text, you can go without the <code>alt</code> attribute. It won't validate, but it won't change a thing, it will work exactly the same. You are just pleasing the validator.</p>
<p>Using a space <em>shouldn't</em> bring any problems.</p>
http://stackoverflow.com/questions/1610822/when-to-use-an-alternative-python-distribution/1610844#16108446Answer by voyager for when to use an alternative Python distribution?voyager2009-10-23T00:40:53Z2009-10-23T00:46:01Z<p>If you need native interfacing with the JVM, use <a href="http://www.jython.org/" rel="nofollow">Jython</a>.</p>
<p>When you need native interfacing with the .Net platform, or want to use Winforms, use <a href="http://www.codeplex.com/IronPython" rel="nofollow">IronPython</a>.</p>
<p>If you need the latest version, cross-OS support, make use of existing C-based modules existing only for <a href="http://www.python.org" rel="nofollow">CPython</a>, the use it.</p>
<p>If you are thinking into proposing a functional PEP, going the Pypy route could be useful.</p>
<p>If you need to do something that Python makes hard (i.e. microthreading), you could go the <a href="http://www.stackless.com/" rel="nofollow" title="Stackless Python: programming. the way. Guido. prevented it.">Stackless</a> way, or any other language (Haskel, etc.).</p>
<p><hr /></p>
<p>The alternative implementations are <em>always</em> behind CPython, most now target 2.5.</p>
<p>Both Jython and IronPython are good ways to <em>sneak in</em> Python into MS-only or Java-only shops, generally through their use for unittests.</p>
http://stackoverflow.com/questions/1594985/why-do-simple-math-operations-on-floating-point-return-unexpected-inacurate-res/1595044#15950449Answer by voyager for Why do simple math operations on floating point return unexpected (inacurate) results in VB.Net and Python?voyager2009-10-20T14:32:07Z2009-10-21T16:56:07Z<pre><code>>>> x = 4.2 - 0.1
>>> x
4.1000000000000005
>>>>print(x)
4.1
</code></pre>
<p>This happens because of <a href="http://en.wikipedia.org/wiki/Floating%5Fpoint" rel="nofollow">how numbers are stored internally</a>.</p>
<p>Computers represent numbers in binary, instad of decimal, as us humans are used to. With floating point numbers, computers have to make an <em>aproximation</em> to the closest binary floating point value.</p>
<blockquote>
<p><a href="http://docs.python.org/tutorial/floatingpoint.html#representation-error" rel="nofollow">Almost all machines today</a> (November 2000) use IEEE-754 floating point arithmetic, and almost all platforms map Python floats to IEEE-754 “double precision”. 754 doubles contain 53 bits of precision, so on input the computer strives to convert 0.1 to the closest fraction it can of the form <code>J/2***N*</code> where <code>J</code> is an integer containing exactly 53 bits.</p>
</blockquote>
<p>If you <code>print</code> the number, <a href="http://docs.python.org/tutorial/floatingpoint.html" rel="nofollow">it will show the aproximation</a>, truncated to a <em>normal</em> value. For example, the <strong>real</strong> value of <code>0.1</code> is <code>0.1000000000000000055511151231257827021181583404541015625</code>.</p>
<p>If you <em>really</em> need a base 10 based number (if you don't know the answer to this question, <strong>you don't</strong>), you could use (in Python) <a href="http://docs.python.org/library/decimal.html" rel="nofollow"><code>decimal.Decimal</code></a>:</p>
<pre><code>>>> from decimal import Decimal
>>> Decimal("4.2") - Decimal("0.1")
Decimal("4.1")
</code></pre>
<blockquote>
<p>Binary floating-point arithmetic holds many surprises like this. The problem with “0.1” is explained in precise detail below, in the “<a href="http://docs.python.org/tutorial/floatingpoint.html#representation-error" rel="nofollow">Representation Error</a>” section. <strong>See <a href="http://www.lahey.com/float.htm" rel="nofollow">The Perils of Floating Point</a> for a more complete account of other common surprises.</strong></p>
<p>As that says near the end, “there are no easy answers.” Still, don’t be unduly wary of floating-point! The errors in Python float operations are inherited from the floating-point hardware, and on most machines are on the order of no more than 1 part in <code>2**53</code> per operation. That’s more than adequate for most tasks, but you do need to keep in mind that it’s not decimal arithmetic, and that every float operation can suffer a new rounding error.</p>
<p>While pathological cases do exist, for most casual use of floating-point arithmetic you’ll see the result you expect in the end if you simply round the display of your final results to the number of decimal digits you expect. <a href="http://docs.python.org/library/functions.html#str" rel="nofollow"><code>str()</code></a> usually suffices, and for finer control see the <a href="http://docs.python.org/library/stdtypes.html#str.format" rel="nofollow"><code>str.format()</code></a> method’s format specifiers in <a href="http://docs.python.org/library/string.html#formatstrings" rel="nofollow"><em>Format String Syntax</em></a>.</p>
</blockquote>
http://stackoverflow.com/questions/1597548/form-post-in-iframe-without-affecting-history/1597598#15975983Answer by voyager for form POST in iframe without affecting historyvoyager2009-10-20T22:06:17Z2009-10-20T22:06:17Z<p><a href="http://stackoverflow.com/questions/473038/post-versus-ajax-call">You should</a> <a href="http://stackoverflow.com/questions/163704/ajax-versus-frames">use an</a> <a href="http://w3schools.com/ajax/ajax%5Fxmlhttprequest.asp" rel="nofollow">AJAX</a> <a href="http://www.openjs.com/articles/ajax%5Fxmlhttp%5Fusing%5Fpost.php" rel="nofollow">POST</a>.</p>
<blockquote>
<p><a href="http://www.openjs.com/articles/ajax%5Fxmlhttp%5Fusing%5Fpost.php" rel="nofollow">Usually</a> only the GET method is used while creating Ajax apps. But there are several occasions when POST is necessary when creating a ajax request. This could be for several reasons. For example, POST request are considered more secure than GET request as creating a POST request is relatively harder than creating a GET request.</p>
</blockquote>
<p>AJAX calls aren't stored into the browsing history.</p>
http://stackoverflow.com/questions/1590076/which-apis-can-be-used-to-display-different-desktop-wallpapers-on-a-multi-monitor/1590133#15901332Answer by voyager for Which APIs can be used to display different desktop wallpapers on a multi-monitor system?voyager2009-10-19T17:53:49Z2009-10-19T17:53:49Z<p>You could also try to programaticaly create an image the size of the virtual desktop joining several images making the divide fall where each monitor ends and then set that image as a wallpaper.</p>
<p>Simple and low tech.</p>
http://stackoverflow.com/questions/1871418/filtering-user-input-in-phpComment by voyager on filtering user input in phpvoyager2009-12-09T03:33:55Z2009-12-09T03:33:55ZIt depends on what you are doing with your GET and POST values.http://stackoverflow.com/questions/1743497/are-i-and-b-tags-actually-deprecatedComment by voyager on Are "<i>" and "<b>" tags actually deprecated?voyager2009-12-06T11:27:21Z2009-12-06T11:27:21ZDuplicate of <a href="http://stackoverflow.com/questions/1348683/will-the-b-and-i-tags-ever-become-deprecated" rel="nofollow" title="will the b and i tags ever become deprecated">stackoverflow.com/questions/1348683/…</a>http://stackoverflow.com/questions/1850790/capture-a-part-of-a-string-that-does-not-match-another-group-c-regexComment by voyager on Capture a part of a string that does not match another group (C# Regex)voyager2009-12-05T01:59:07Z2009-12-05T01:59:07ZYou say it's inefficient. Does it really affect the process? Have you profiled it?http://stackoverflow.com/questions/1850790/capture-a-part-of-a-string-that-does-not-match-another-group-c-regex/1850817#1850817Comment by voyager on Capture a part of a string that does not match another group (C# Regex)voyager2009-12-05T01:57:58Z2009-12-05T01:57:58ZThere are HTML parsers that can handle invalid input.http://stackoverflow.com/questions/1823924/where-can-i-find-information-about-nosql-implementation-patternsComment by voyager on Where can I find information about NOSQL implementation patterns?voyager2009-12-01T04:09:38Z2009-12-01T04:09:38ZIsn't NOSQL a fancy way of saying that you are using either a flat file or a hashed table implemented maybe with a binary tree or any other type of classic data structures?
The concept of NOSQL is just: you don't need the functionality that comes with SQL (sumarization, selection, ordering, stored procedures, locking, etc.), so you can go without the overhead. You just use an old fashioned data structure that is optimized for your domain: insert speed, read speed, concurrency, etc.
If I'm not mistaken, you could call Python's Pickle NOSQL.http://stackoverflow.com/questions/1819220/whats-the-most-json-you-can-reasonably-expect-to-decode-on-the-client-side/1819289#1819289Comment by voyager on What's the most JSON you can reasonably expect to decode on the client sidevoyager2009-12-01T00:56:37Z2009-12-01T00:56:37Z@bmoeskau: I thought so, as most javascript frameworks tend to use the native implementation when possible. Nonetheless, you should not discard a problem with Ext wrapper on FF. If you can use FF's native implementation directly without problems, then you can be certain were the bug lies.http://stackoverflow.com/questions/1819220/whats-the-most-json-you-can-reasonably-expect-to-decode-on-the-client-side/1819263#1819263Comment by voyager on What's the most JSON you can reasonably expect to decode on the client sidevoyager2009-11-30T11:33:51Z2009-11-30T11:33:51Z@George: sending smaller chunks of data will be faster because of wire transmission time too.http://stackoverflow.com/questions/1817656/compiling-time-of-first-page-load/1817661#1817661Comment by voyager on Compiling time of first page loadvoyager2009-11-30T03:13:22Z2009-11-30T03:13:22ZAn 8 second seek time for a file on the disk is quite unlikely.http://stackoverflow.com/questions/1528799/using-a-variable-to-represent-a-function-in-c/1528954#1528954Comment by voyager on Using a variable to represent a function in Cvoyager2009-11-28T17:38:51Z2009-11-28T17:38:51ZAnd <code><<</code> is not part of C, but rather C++http://stackoverflow.com/questions/1660106/block-controlaltdelete/1668927#1668927Comment by voyager on Block Control+Alt+Deletevoyager2009-11-28T16:26:29Z2009-11-28T16:26:29ZIt's a working solution, but nothing stops a student that has renamed <code>taskmgr.exe</code> to <code>1337taskmgr.exe</code> and executes that before the app :) If this for computer science students, then the OP will have a hard time hardening his app either way.http://stackoverflow.com/questions/1801589/how-do-i-remove-extra-margin-space-generated-by-inline-blocksComment by voyager on How do I remove extra margin space generated by inline blocks?voyager2009-11-27T11:43:17Z2009-11-27T11:43:17Z@Pavel: but you can select an accepted answer by clicking the green checkmark.http://stackoverflow.com/questions/1801589/how-do-i-remove-extra-margin-space-generated-by-inline-blocksComment by voyager on How do I remove extra margin space generated by inline blocks?voyager2009-11-26T06:05:39Z2009-11-26T06:05:39Z@Pavel: this site works a little different to other forums. When you find a helpful answer, you are supposed to upvote it by clicking in the up arrow next to it. If that question solved your problem, you should click on the bog checkmark next to it and the question will be marked as resolved. No need to add the [Resolved] to the title of the question. Welcome to <a href="http://stackoverflow.com/" rel="nofollow">stackoverflow.com</a>http://stackoverflow.com/questions/1525670/javascript-vs/1525693#1525693Comment by voyager on Javascript == vs ===voyager2009-11-25T20:32:53Z2009-11-25T20:32:53ZI believe he is referring to <code>0 == ''</code>http://stackoverflow.com/questions/615933/what-is-the-best-variable-function-name-you-have-ever-encountered/615962#615962Comment by voyager on What is the best variable/function name you have ever encountered?voyager2009-11-25T20:04:09Z2009-11-25T20:04:09ZThat_is_why_I_always_use_underscores_to_separate_words_in_variable_names.http://stackoverflow.com/questions/131571/recommended-books-for-software-engineering/1791644#1791644Comment by voyager on Recommended Books for Software Engineeringvoyager2009-11-24T17:37:51Z2009-11-24T17:37:51Z@Robert Harvey: and again, we are still regurgitating the same knowledge that was gained half a century ago. There is a reason for that: <b>They are still relevant today</b>.