User Dave Webb - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T05:41:32Z http://stackoverflow.com/feeds/user/3171 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1803628/raw-list-of-person-names/1803645#1803645 2 Answer by Dave Webb for Raw list of person names Dave Webb 2009-11-26T13:23:39Z 2009-11-26T13:23:39Z <p>Lots of <a href="http://www.outpost9.com/files/WordLists.html" rel="nofollow">word lists on this page</a>, including several lists of names. </p> http://stackoverflow.com/questions/1803516/replace-the-nan-value-zero-after-an-operation-with-arrays/1803598#1803598 4 Answer by Dave Webb for replace the NaN value zero after an operation with arrays Dave Webb 2009-11-26T13:10:56Z 2009-11-26T13:18:52Z <p>If you have Python 2.6 you have the <a href="http://docs.python.org/library/math.html#math.isnan" rel="nofollow"><code>math.isnan()</code></a> function to find <code>NaN</code> values.</p> <p>With this we can use a list comprehension to replace the <code>NaN</code> values in a list as follows:</p> <pre><code>import math mylist = [0 if math.isnan(x) else x for x in mylist] </code></pre> <p>If you have Python 2.5 we can use the <code>NaN != NaN</code> trick from <a href="http://stackoverflow.com/questions/944700/how-to-check-for-nan-in-python">this question</a> so you do this:</p> <pre><code>mylist = [0 if x != x else x for x in mylist] </code></pre> http://stackoverflow.com/questions/1803365/android-data-storage-file-vs-sqlite/1803492#1803492 2 Answer by Dave Webb for Android data storage - File vs SQLite Dave Webb 2009-11-26T12:47:24Z 2009-11-26T12:47:24Z <p>I have no idea in terms of battery life directly but one criteria would be which is easier to manage? Fewer operations to manage the data would mean fewer CPU cycles and in turn longer battery life.</p> <p>I would say the SQLite option is easier. You can put a date column in the SQLite table which stores your data which makes removing old submissions which you don't need any more very easy - and all handled via the native SQL library. Managing a whole load of file - or worse a single file - with your own Java code would be much more work.</p> <p>Additionally, you can write data the to database and just forget about it until you need to read it again. If you're storing data in files, you'll need to work out when you should be reading and writing files in terms on the <a href="http://developer.android.com/guide/topics/fundamentals.html#lcycles" rel="nofollow">Android application life cycle</a>. If you're worried about battery you probably wouldn't want to write files more often than you should, and cache data in memory, but you'd need to make sure you didn't lose any data when your app is Paused or Destroyed. In my opinion it's much easier to use an SQLite database and not worry about any of this.</p> http://stackoverflow.com/questions/1802899/supporting-multiple-human-languages/1802916#1802916 3 Answer by Dave Webb for Supporting multiple human languages Dave Webb 2009-11-26T10:38:34Z 2009-11-26T10:44:05Z <p>If you wanted to browse on StackOverflow for ideas you could try the <a href="http://stackoverflow.com/questions/tagged/internationalization" title="internationalization Tag at stackoverflow.com"><code>internationalization</code></a>, <a href="http://stackoverflow.com/questions/tagged/i18n" title="i18n Tag at stackoverflow.com"><code>i18n</code></a>, <a href="http://stackoverflow.com/questions/tagged/localization" title="localization Tag at stackoverflow.com"><code>localization</code></a> and <a href="http://stackoverflow.com/questions/tagged/l10n" title="l10n Tag at stackoverflow.com"><code>l10n</code></a> tags.</p> <p>(<code>"i18n" == "internationalisation"</code> because <code>"nternationalizatio"</code> is 18 letters. Same for <code>localization</code> and <code>l10n</code>.)</p> http://stackoverflow.com/questions/1797426/how-to-make-multilingual-login-in-django/1797608#1797608 0 Answer by Dave Webb for How to make multilingual login in django? Dave Webb 2009-11-25T15:15:41Z 2009-11-25T15:15:41Z <p>I may be missing something here but can't <code>/prihlasit/</code> be a login form in Czech which POSTs to <code>/login/</code> when the user presses the submit button?</p> http://stackoverflow.com/questions/1797549/about-page-for-internal-web-application/1797562#1797562 2 Answer by Dave Webb for About Page For Internal Web Application Dave Webb 2009-11-25T15:10:42Z 2009-11-25T15:10:42Z <p>The About page is useful a place to put information about the currently logged user which might be useful for debugging purposes. So username, and user groups they're in, any roles they have and so on. You could also put their IP address, OS and Brower version there if you think you'd need it and your users wouldn't be able to reliably work this out by themselves.</p> http://stackoverflow.com/questions/1795678/append-date-to-filename-in-linux/1795719#1795719 5 Answer by Dave Webb for Append date to filename in linux Dave Webb 2009-11-25T09:30:15Z 2009-11-25T09:58:40Z <p>There's two problems here.</p> <p><strong>1. Get the date as a string</strong></p> <p>This is pretty easy. Just use the <code>date</code> command with the <code>+</code> option. We can use backticks to capture the value in a variable.</p> <pre><code>$ DATE=`date +%d-%m-%y` </code></pre> <p>You can change the date format by using different <code>%</code> options as detailed on the <a href="http://unixhelp.ed.ac.uk/CGI/man-cgi?date" rel="nofollow" title="date man page">date man page</a>.</p> <p><strong>2. Split a file into name and extension.</strong></p> <p>This is a bit trickier. If we think they'll be only one <code>.</code> in the filename we can use <code>cut</code> with <code>.</code> as the delimiter.</p> <pre><code>$ NAME=`echo $FILE | cut -d. -f1 $ EXT=`echo $FILE | cut -d. -f2` </code></pre> <p>However, this won't work with multiple <code>.</code> in the file name. If we're using <code>bash</code> - which you probably are - we can use some <a href="http://www.gnu.org/software/bash/manual/bashref.html#Shell-Parameter-Expansion" rel="nofollow" title="bash Manual">bash magic that allows us to match patterns when we do variable expansion</a>:</p> <pre><code>$ NAME=${FILE%.*} $ EXT=${FILE#*.} </code></pre> <p>Putting them together we get:</p> <pre><code>$ FILE=somefile.txt $ NAME=${FILE%.*} $ EXT=${FILE#*.} $ DATE=`date +%d-%m-%y` $ NEWFILE=${NAME}_${DATE}.${EXT} $ echo $NEWFILE somefile_25-11-09.txt </code></pre> <p>And if we're less worried about readability we do all the work on one line (with a different date format):</p> <pre><code>$ FILE=somefile.txt $ FILE=${FILE%.*}_`date +%d%b%y`.${FILE#*.} $ echo $FILE somefile_25Nov09.txt </code></pre> http://stackoverflow.com/questions/1789911/does-the-cloud-solve-the-hosting-location-dilemma/1789982#1789982 0 Answer by Dave Webb for Does the Cloud solve the hosting location dilemma? Dave Webb 2009-11-24T13:14:14Z 2009-11-24T15:14:15Z <p>The Cloud is just an abstraction. It doesn't affect the underlying physical nature of the servers running your code and hosting your data. If the systems storing your data are a long way from your users there will some latency, no matter how you access them.</p> <p>Most Cloud providers allow you to choose where you want your data - for example, <a href="http://aws.amazon.com/s3/" rel="nofollow">Amazon S3</a> lets you choose to store your data in either the US or Europe - but no provider is going to be able to magically store all your data in multiple locations simultaneously.</p> <p>If you want the benefit of multiple data centres you'd have to allow simultaneous updates at each location and there is no way to synchronise such updates without knowledge of the business logic of the application, so you're going to have to write some code to do this.</p> <p>You're still going to have a look at what each Cloud provider offers and work out how each can help solve your problems, but you're going to have to do some work yourself.</p> http://stackoverflow.com/questions/56124/can-i-run-a-64-bit-vmware-image-on-a-32-bit-machine/56198#56198 17 Answer by Dave Webb for Can I run a 64-bit VMWare image on a 32-bit machine? Dave Webb 2008-09-11T10:10:18Z 2009-11-24T10:55:04Z <p>The easiest way to check your workstation is to download the <a href="http://downloads.vmware.com/d/details/processor%5Fcheck%5Ffor%5F64%5Fbit%5Fcompatibility%5F6%5F0/JWpiQHBqYiVo" rel="nofollow" title="Download Processor Check Utility at vmware.com">VMware Processor Check for 64-Bit Compatibility</a> tool from the VMware website.</p> <p>You can't run a 64-bit VM session on a 32-bit processor. However, you can run a 64-bit VM session if you have a 64-bit processor but have installed a 32-bit host OS and your processor supports the right extensions. The tool about will tell you if yours does.</p> http://stackoverflow.com/questions/1788886/how-do-i-connect-to-a-url-when-clicking-on-an-android-listview/1788916#1788916 4 Answer by Dave Webb for How do I connect to a URL when clicking on an Android ListView? Dave Webb 2009-11-24T09:26:33Z 2009-11-24T09:41:27Z <p>I guess there are two questions here:</p> <p><strong>1.</strong> How do I respond to a click in a <code>ListView</code>?</p> <p>If you're using a <a href="http://developer.android.com/reference/android/app/ListActivity.html" rel="nofollow"><code>ListActivity</code></a> override <a href="http://developer.android.com/reference/android/app/ListActivity.html#setSelection%28int%29" rel="nofollow"><code>onListItemClick()</code></a>. Use the <code>position</code> argument to see what was clicked.</p> <p>For a plain <code>ListView</code> you'll need to call <a href="http://developer.android.com/reference/android/widget/AdapterView.html#setOnItemClickListener%28android.widget.AdapterView.OnItemClickListener%29" rel="nofollow"><code>setOnItemClickListener()</code></a> and pass in your own listener.</p> <p><strong>2.</strong> How do I view a URL?</p> <p>The easiest way to launch a URL is to use the Built in Browser. <a href="http://developer.android.com/guide/topics/fundamentals.html#actcomp" rel="nofollow">You do this via an <code>Intent</code></a>:</p> <pre><code>Intent i = new Intent(); i.setAction(Intent.ACTION_VIEW); i.setData(Uri.parse("http://www.stackoverflow.com")); startActivity(i); </code></pre> http://stackoverflow.com/questions/1739729/word-2007-macro-to-insert-text/1788873#1788873 2 Answer by Dave Webb for Word 2007 Macro to insert text Dave Webb 2009-11-24T09:16:37Z 2009-11-24T09:16:37Z <p>The trick I find helpful when writing Word macros is simply to replicate what I'd be doing if I was using the Word GUI. When I want to paste formatted text but keep my current format, I type a space, paste in the text before the space then delete the space. As the space has my original format that's how I get it back.</p> <p>So, doing this as a macro:</p> <pre><code>'Type a space Selection.TypeText Text:=" " 'Move Cursor back one character Selection.MoveLeft Unit:=wdCharacter, Count:=1 'Insert text with custom font myText = "CUSTOM STRING" Selection.Font.Name = "Comic Sans MS" Selection.Font.Size = 26 Selection.Font.Bold = True Selection.TypeText (myText) 'Move Cursor forward one character Selection.MoveRight Unit:=wdCharacter, Count:=1 'Delete the space Selection.TypeBackspace </code></pre> <p>This will preserve any properties of the text you originally had.</p> http://stackoverflow.com/questions/1784121/looping-code-skipping-rows/1784309#1784309 2 Answer by Dave Webb for Looping Code/Skipping Rows Dave Webb 2009-11-23T16:34:08Z 2009-11-23T16:55:03Z <p>Since the rows you're skipping aren't uniform and, from the sound of it, may change you probably don't want to hard code them in several rows of a <code>Select</code> statement. It might be easier to record them in an <code>Array</code>:</p> <pre><code>'Create an Array of Rows to Skip rowsToSkip = Array(6, 9) 'Loop over all data For i = 1 To 14 skipcount = 0 'For each skip row we have passed add one to the skipcount For Each rownum In rowsToSkip If i &gt;= rownum Then skipcount = skipcount + 1 End If Next rownum myArray(i) = i + skipcount Next i </code></pre> http://stackoverflow.com/questions/1782622/django-charfield-to-string/1782702#1782702 5 Answer by Dave Webb for Django CharField To String Dave Webb 2009-11-23T11:57:12Z 2009-11-23T11:57:12Z <p>You're defining a <code>class</code> there so <code>name</code> is not a string it's a <a href="http://docs.djangoproject.com/en/dev/topics/db/models/#fields" rel="nofollow">Django Field</a>. </p> <p>Additionally, converting <code>name</code> to <code>matchname</code> at the class level doesn't make any sense. You should be doing this on the instance.</p> <p>You could add a method to your class to do this:</p> <pre><code>def get_matchname(self): """Returns the match name for a tag""" return re.sub("\W+" , "", self.name.lower()) </code></pre> http://stackoverflow.com/questions/1782253/how-do-i-order-this-list-in-python/1782354#1782354 7 Answer by Dave Webb for How do I order this list in Python? Dave Webb 2009-11-23T10:48:45Z 2009-11-23T10:48:45Z <p>The <a href="http://docs.python.org/library/stdtypes.html#mutable-sequence-types" rel="nofollow"><code>sort</code> method</a> takes a <code>key</code> argument to extract a comparison key from each argument, i.e. <code>key</code> is a function which transforms the list item into the value you wish to sort on.</p> <p>In this case it's very easy to <a href="http://www.diveintopython.org/power%5Fof%5Fintrospection/lambda%5Ffunctions.html" rel="nofollow">use a <code>lambda</code></a> to extract the second item from each tuple:</p> <pre><code>&gt;&gt;&gt; mylist = [(u'we', 'PRP'), (u'saw', 'VBD'), (u'you', 'PRP'), (u'bruh', 'VBP') , (u'.', '.')] &gt;&gt;&gt; mylist.sort(key = lambda x: x[1]) &gt;&gt;&gt; mylist [(u'.', '.'), (u'we', 'PRP'), (u'you', 'PRP'), (u'saw', 'VBD'), (u'bruh', 'VBP')] </code></pre> http://stackoverflow.com/questions/1779672/android-listview-different-divider-images/1779678#1779678 0 Answer by Dave Webb for Android ListView different divider images. Dave Webb 2009-11-22T19:19:30Z 2009-11-22T19:19:30Z <p>Why not have no divider images and make the divider part of the View for each item?</p> <p>For example, at the top of the view you have a label and an icon and at the bottom you have your divider image.</p> http://stackoverflow.com/questions/818159/what-are-some-bad-programming-habits-to-look-out-for-and-avoid/1771319#1771319 26 Answer by Dave Webb for What are some bad programming habits to look out for and avoid? Dave Webb 2009-11-20T15:39:22Z 2009-11-20T16:59:02Z <p>It's always easy to be wary of anything that's Not Invented Here.</p> <p>I think <a href="http://www.randsinrepose.com/glossary%5Frecent.html#nih" rel="nofollow">Rands summed this up best</a>:</p> <blockquote> <p><strong>NIH ("Not Invented Here")</strong></p> <p>Term to describe behavior where an engineering team will not consider working with anyone's code except their own. It's not that the external code is good or bad, it's just foreign which means it must be reviewed, reformatted... oh, what the hell. LET'S REWRITE THE WHOLE DAMNED THING. Billions of dollars have been lost to NIH. I mean it. Billions.</p> </blockquote> http://stackoverflow.com/questions/1770498/change-font-size-in-emacs-cli/1770517#1770517 5 Answer by Dave Webb for Change font size in Emacs cli Dave Webb 2009-11-20T13:46:20Z 2009-11-20T13:46:20Z <p>If you're running Emacs inside a terminal session isn't the font size determined by the terminal windows rather than by Emacs?</p> http://stackoverflow.com/questions/1769774/confused-when-i-see-self-and-init/1769809#1769809 16 Answer by Dave Webb for Confused when I see 'self' and '__init__' Dave Webb 2009-11-20T11:11:41Z 2009-11-20T11:19:43Z <p><code>self</code> is the object you're calling the method on. It's a bit like <code>this</code> in Java.</p> <p><code>__init__</code> is called on each object when it is created to initialise it. It's like the constructor in Java.</p> <p>So you would use <code>__init__</code> whenever you wanted to set any attributes - member variables in Java - of the object when it was created. If you're happy with an "empty" object you don't need an <code>__init__</code> method but if you want to create an object with arguments you'll need one.</p> <p>An example would be:</p> <pre><code>class StackOverflowUser: def __init__(self, name, userid, rep): self.name = name self.userid = userid self.rep = rep dave = StackOverflowUser("Dave Webb",3171,500) </code></pre> <p>We can then look at the object we've created:</p> <pre><code>&gt;&gt;&gt; dave.rep 500 &gt;&gt;&gt; dave.name 'Dave Webb' </code></pre> <p>So we can see <code>__init__</code> is passed the arguments we gave to the constructor along with <code>self</code>, which is the reference to the object that has been created. We then use <code>self</code> when we process the arguments and update the object appropriately.</p> <p>There is the question of why Python has <code>self</code> when other languages don't need it. According to the <a href="http://www.python.org/doc/faq/general/#why-must-self-be-used-explicitly-in-method-definitions-and-calls" rel="nofollow">Python FAQ</a>:</p> <blockquote> <p><strong>Why must 'self' be used explicitly in method definitions and calls?</strong></p> <p>First, it's more obvious that you are using a method or instance attribute instead of a local variable...</p> <p>Second, it means that no special syntax is necessary if you want to explicitly reference or call the method from a particular class...</p> <p>Finally, for instance variables it solves a syntactic problem with assignment: since local variables in Python are (by definition!) those variables to which a value assigned in a function body (and that aren't explicitly declared global), there has to be some way to tell the interpreter that an assignment was meant to assign to an instance variable instead of to a local variable, and it should preferably be syntactic (for efficiency reasons)... </p> </blockquote> http://stackoverflow.com/questions/1767271/using-java-to-retrieve-the-cpu-usage-for-windows-processes/1767337#1767337 0 Answer by Dave Webb for Using Java to retrieve the CPU Usage for Window's Processes Dave Webb 2009-11-19T23:30:48Z 2009-11-19T23:30:48Z <p>Have a look at these questions:</p> <ul> <li><a href="http://stackoverflow.com/questions/74674/how-to-do-i-check-cpu-and-memory-usage-in-java">How to do I check CPU and Memory Usage in Java?</a></li> <li><a href="http://stackoverflow.com/questions/25552/using-java-to-get-os-level-system-information">Using Java to get OS-level system information</a></li> <li><a href="http://stackoverflow.com/questions/47177/how-to-monitor-the-computers-cpu-memory-and-disk-usage-in-java">How to monitor the computer’s cpu, memory, and disk usage in Java?</a></li> <li><a href="http://stackoverflow.com/questions/634580/cpu-load-from-java">CPU load from Java</a></li> <li><a href="http://stackoverflow.com/questions/971016/efficient-way-of-getting-thread-cpu-time-using-jmx">Efficient way of getting thread CPU time using JMX</a></li> </ul> http://stackoverflow.com/questions/1764309/conditional-counting-in-python/1764347#1764347 0 Answer by Dave Webb for Conditional counting in Python Dave Webb 2009-11-19T15:58:37Z 2009-11-19T16:11:03Z <p>I would prefer the second one as it's only looping over the list once.</p> <p>If you use <code>count()</code> you're looping over the list once to get the <code>b</code> values, and then looping over it again to see how many of them equal 1.</p> <p>A neat way may to use <code>reduce()</code>:</p> <pre><code>reduce(lambda x,y: x + (1 if y.b == 1 else 0),list,0) </code></pre> <p><a href="http://docs.python.org/library/functions.html" rel="nofollow">The documentation</a> tells us that <code>reduce()</code> will:</p> <blockquote> <p>Apply function of two arguments cumulatively to the items of iterable, from left to right, so as to reduce the iterable to a single value.</p> </blockquote> <p>So we define a <code>lambda</code> that adds one the accumulated value only if the list item's <code>b</code> attribute is 1.</p> http://stackoverflow.com/questions/1755860/is-there-any-form-designer-available-for-google-android/1755867#1755867 11 Answer by Dave Webb for Is there any form designer available for Google Android. Dave Webb 2009-11-18T13:12:24Z 2009-11-18T13:52:10Z <p>The form designer is part of the <a href="http://developer.android.com/sdk/eclipse-adt.html" rel="nofollow">Android Development Tools (ADT) Plugin for Eclipse</a> which comes with the Android SDK.</p> <p><a href="http://content.screencast.com/users/davweb/folders/Jing/media/27f6c12b-1a1e-40e5-8f26-36f35a685a51/2009-11-18%5F1337.png" rel="nofollow"><img src="http://content.screencast.com/users/davweb/folders/Jing/media/27f6c12b-1a1e-40e5-8f26-36f35a685a51/2009-11-18%5F1337.png" alt="Eclipse Screenshot"></a></p> http://stackoverflow.com/questions/1754970/how-do-i-find-the-compilation-error-in-this-perl-statement/1755021#1755021 1 Answer by Dave Webb for How do I find the compilation error in this Perl statement? Dave Webb 2009-11-18T10:23:40Z 2009-11-18T10:23:40Z <p>The nothing wrong with that statement. The problem is probably earlier in the file.</p> <p>It's tempting to say the problem is with the previous line but given the difficulty in parsing Perl the problem could be anywhere higher up the file. The first things to look for are strings which haven't been closed properly and lines missing their terminating semicolon.</p> http://stackoverflow.com/questions/1754714/android-and-reflection/1754956#1754956 0 Answer by Dave Webb for Android and reflection Dave Webb 2009-11-18T10:14:22Z 2009-11-18T10:14:22Z <p>I haven't done any benchmarks on Reflection but as it's an extra level of indirection I would avoid it.</p> <p>The <a href="http://developer.android.com/guide/practices/design/performance.html#prefer%5Fvirtual" rel="nofollow">Android Performance Guidelines</a> recommend, for example, that you should declare an object as <code>HashMap</code> rather than <code>Map</code> because of the performance benefit of using a concrete reference. If this the case, I can guess what they'd say about using reflection where you'll be declaring your objects as <code>Object</code> and using <code>Method.invoke()</code> to call methods.</p> http://stackoverflow.com/questions/1754472/how-do-i-append-data-with-oracles-impdp/1754548#1754548 1 Answer by Dave Webb for How do I append data with Oracle's impdp? Dave Webb 2009-11-18T08:50:43Z 2009-11-18T08:56:46Z <p>What <code>impdp</code> does for existing tables is controlled by the <a href="http://download.oracle.com/docs/cd/B19306%5F01/server.102/b14215/dp%5Fimport.htm#sthref364" rel="nofollow"><code>TABLE_EXISTS_ACTION</code> parameter</a>.</p> <pre><code>impdp hr/hr TABLES=employees DIRECTORY=dpump_dir1 DUMPFILE=expfull.dmp TABLE_EXISTS_ACTION=APPEND </code></pre> <p>However, if you're already using <code>CONTENT=DATA_ONLY</code> which it sounds like you are <code>TABLE_EXISTS_ACTION</code> should be defaulting to <code>APPEND</code> so I'm not sure why you're seeing the behaviour you describe.</p> http://stackoverflow.com/questions/1752492/regex-to-check-for-xml-if-it-is-well-formed/1752508#1752508 5 Answer by Dave Webb for Regex to check for XML if it is well formed Dave Webb 2009-11-17T23:07:03Z 2009-11-17T23:12:54Z <p>No. </p> <p>XML syntax is irregular enough to give any regular expression nightmares.</p> <p>You're not the first to ask this, but don't feel bad because the question about parsing HTML and XML with regular expressions will keep being asked because regular expressions look perfect for the job but they aren't sadly.</p> <p>XML syntax is complex enough that you can't safely parse it with a regex. It looks simple and regular but there's plenty of scope for causing problems. One nasty CDATA section and things get very hard. And consider the RSS feeds where you get HTML embedded in the XML.</p> <p>So please use an XML parsing library for this. There are plenty of them.</p> <p>If you want more detail have a look at <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" title="Can you provide some examples of why it is hard to parse XML and HTML with a regex?">this question which gives some examples of the horror syntax you can meet</a> and <a href="http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454" title="RegEx match open tags except XHTML self-contained tags (Cthulhu)">this question which shows what happens if do try to parse these things with Regular Expressions</a>.</p> http://stackoverflow.com/questions/1751581/within-a-windows-batch-file-how-do-i-set-an-environment-variable-with-the-hexade/1751653#1751653 0 Answer by Dave Webb for Within a windows batch file, how do I set an environment variable with the hexadecimal representation of a decimal number? Dave Webb 2009-11-17T20:46:42Z 2009-11-17T20:52:30Z <p><a href="http://channel9.msdn.com/playground/Sandbox/184830/" rel="nofollow">This forum post at channel9.msdn.com</a> has a batch script that will convert from integer to hex.</p> <p>If has a loop using a <code>GOTO</code> and processes the number using the modulo - <code>SET /A</code> &amp; <code>%</code> - and integer division - <code>SET /A</code> &amp; <code>/</code> - operators and some <code>IF</code> statements to build up the hex string.</p> http://stackoverflow.com/questions/1750214/can-i-use-js-encryption-instead-of-ssl-for-credit-card-payments/1750237#1750237 10 Answer by Dave Webb for Can I use JS encryption instead of SSL for credit card payments? Dave Webb 2009-11-17T16:54:59Z 2009-11-17T17:42:21Z <p>You could use JS encryption and chose to ignore the fact that it wasn't secure.</p> <p>The problem you'd have then is that people wouldn't want to enter their credit card details on a page without an SSL connection. It wouldn't just be techies; a lot non-technical users know to look for the padlock before entering their Credit Card number, even if they have no idea what TLS or SSL are.</p> http://stackoverflow.com/questions/1743009/how-can-i-ensure-that-changes-to-a-form-dom-are-complete-before-posting/1743038#1743038 3 Answer by Dave Webb for How can I ensure that changes to a form DOM are complete before POSTing? Dave Webb 2009-11-16T15:49:32Z 2009-11-16T15:49:32Z <p><a href="http://stackoverflow.com/questions/161783/is-javascript-single-threaded-if-not-how-do-i-get-synchronized-access-to-shared">JavaScript always runs single-threaded in the browser</a> so I don't think it can be a race condition.</p> http://stackoverflow.com/questions/1741897/email-using-cron-job/1741974#1741974 2 Answer by Dave Webb for Email using cron job Dave Webb 2009-11-16T12:42:25Z 2009-11-16T12:42:25Z <p>You can schedule the task using the <a href="http://code.google.com/appengine/docs/python/config/cron.html" rel="nofollow">App Engine Scheduled Tasks</a> feature.</p> <p>You'll need to add an entry to the <code>cron.yaml</code> file for your application. Something like:</p> <pre><code>cron: - description: friday mailout url: /mail/weekly schedule: every friday 09:00 </code></pre> <p>You can send email using the <a href="http://code.google.com/appengine/docs/python/mail/sendingmail.html" rel="nofollow">App Engine Mail API</a>.</p> http://stackoverflow.com/questions/1741368/a-language-that-doesnt-use-c/1741394#1741394 0 Answer by Dave Webb for A language that doesn't use 'C' ? Dave Webb 2009-11-16T10:45:35Z 2009-11-16T10:45:35Z <p><a href="http://en.wikipedia.org/wiki/PyPy" rel="nofollow">PyPy</a> is an implementation of Python written in Python.</p> http://stackoverflow.com/questions/1802899/supporting-multiple-human-languages/1802916#1802916 Comment by Dave Webb on Supporting multiple human languages Dave Webb 2009-11-26T10:44:38Z 2009-11-26T10:44:38Z Thanks, have added it although not too many questions there. http://stackoverflow.com/questions/1796410/conversion-deadlock-problem-please-help Comment by Dave Webb on Conversion Deadlock problem, please help! Dave Webb 2009-11-25T12:21:51Z 2009-11-25T12:21:51Z If you select the XML text and click the code button (010101) the editor will add the spaces for you. http://stackoverflow.com/questions/1795678/append-date-to-filename-in-linux/1795719#1795719 Comment by Dave Webb on Append date to filename in linux Dave Webb 2009-11-25T11:00:52Z 2009-11-25T11:00:52Z I'm still not clear on what you want to do. It says the script should update the filename &quot;everytime you want to save the file into a specific folder&quot;. What is saving the file into the folder? Where is it coming from? http://stackoverflow.com/questions/1795678/append-date-to-filename-in-linux/1795719#1795719 Comment by Dave Webb on Append date to filename in linux Dave Webb 2009-11-25T10:47:00Z 2009-11-25T10:47:00Z Can you give some more details on precisely what you want to do. So you have a file in a directory which you want to date stamp in this way. Is it just one file with the same name each time or could it be a number of files with a number of different name? http://stackoverflow.com/questions/1795678/append-date-to-filename-in-linux/1795703#1795703 Comment by Dave Webb on Append date to filename in linux Dave Webb 2009-11-25T09:43:44Z 2009-11-25T09:43:44Z This appends the date to the filename - in the example in the question the date needs to go <i>between</i> the file name and the extension. http://stackoverflow.com/questions/1789911/does-the-cloud-solve-the-hosting-location-dilemma/1789982#1789982 Comment by Dave Webb on Does the Cloud solve the hosting location dilemma? Dave Webb 2009-11-24T14:30:36Z 2009-11-24T14:30:36Z Not that I'm aware of. You can pick which &quot;Geo Location&quot; you want your server to be in but I don't think they synchronise servers between the two locations. I'm not sure they could. http://stackoverflow.com/questions/1789911/does-the-cloud-solve-the-hosting-location-dilemma/1789982#1789982 Comment by Dave Webb on Does the Cloud solve the hosting location dilemma? Dave Webb 2009-11-24T14:06:21Z 2009-11-24T14:06:21Z @Glen - that's very good of you. I'll go and find an answer of yours I like and upvote it. http://stackoverflow.com/questions/1789301/how-to-parse-py-file-with-python/1789314#1789314 Comment by Dave Webb on How to parse *.py file with python? Dave Webb 2009-11-24T11:00:17Z 2009-11-24T11:00:17Z @Dominic - do you know if compiler has been replaced with something else? http://stackoverflow.com/questions/56124/can-i-run-a-64-bit-vmware-image-on-a-32-bit-machine/56198#56198 Comment by Dave Webb on Can I run a 64-bit VMWare image on a 32-bit machine? Dave Webb 2009-11-24T10:55:50Z 2009-11-24T10:55:50Z @Phil Ross - Thanks! I have updated the link in the answer with the URL you posted. http://stackoverflow.com/questions/1782622/django-charfield-to-string/1782702#1782702 Comment by Dave Webb on Django CharField To String Dave Webb 2009-11-23T12:02:24Z 2009-11-23T12:02:24Z @Dominic - Was just editing the answer to add that. &lt;meta&gt;I keep getting server error too; the site keeps logging me in and out which I think is the source of the problem.&lt;/meta&gt; http://stackoverflow.com/questions/1770498/change-font-size-in-emacs-cli/1770517#1770517 Comment by Dave Webb on Change font size in Emacs cli Dave Webb 2009-11-20T14:11:19Z 2009-11-20T14:11:19Z @Mark F - feel free to accept the answer then. :-) http://stackoverflow.com/questions/1770010/how-do-i-measure-time-elapsed-in-java/1770014#1770014 Comment by Dave Webb on How do I measure time elapsed in Java? Dave Webb 2009-11-20T12:04:26Z 2009-11-20T12:04:26Z +1 for linking to the javadocs. http://stackoverflow.com/questions/1764309/conditional-counting-in-python/1764391#1764391 Comment by Dave Webb on Conditional counting in Python Dave Webb 2009-11-19T20:47:01Z 2009-11-19T20:47:01Z Interesting with the timing. I guess since the loops &quot;knows&quot; its length it makes it quicker. sum() I think wraps around reduce() so I guess all those indirect function calls make it slow. http://stackoverflow.com/questions/1764309/conditional-counting-in-python/1764391#1764391 Comment by Dave Webb on Conditional counting in Python Dave Webb 2009-11-19T16:16:22Z 2009-11-19T16:16:22Z Might be worth explaining how this works. It won't be obvious to everyone that you can add up a list of booleans. http://stackoverflow.com/questions/1763310/yahoo-finance-api Comment by Dave Webb on Yahoo Finance API Dave Webb 2009-11-19T13:44:37Z 2009-11-19T13:44:37Z If you don't like - or can't find documentation for - the Yahoo APIs, Google also has a Finance API: <a href="http://code.google.com/apis/finance/" rel="nofollow">code.google.com/apis/finance</a>