User Jian Lin - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T03:16:16Z http://stackoverflow.com/feeds/user/104097 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1811206/on-win32-how-to-detect-whether-a-left-shift-or-right-alt-is-pressed-using-perl 0 On Win32, how to detect whether a Left Shift or Right ALT is pressed using Perl, Python, or Ruby (or C)? Jian Lin 2009-11-28T01:02:43Z 2009-11-28T06:25:36Z <p>On Win32, I wonder how to detect whether Left Shift or Right ALT is pressed using Perl, Python, or Ruby (or even in C)? </p> <p>Not just for the current window, but the global environment overall. Example: when I am typing a document, I can press Right ALT to start the music player written in Ruby, and then press Right ALT again and it can pause or stop the program. thanks.</p> http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/900989#900989 18 Answer by Jian Lin for What's your favorite "programmer" cartoon? Jian Lin 2009-05-23T06:10:07Z 2009-11-27T04:59:34Z <p><img src="http://img33.imageshack.us/img33/8632/computingstress.jpg" alt="alt text"></p> <p>which language is he using? (or which company is he working for?)</p> http://stackoverflow.com/questions/1794411/how-to-move-all-source-code-over-when-it-was-on-visualsvn-server-on-vista-and-mig 1 How to move all source code over when it was on VisualSVN Server on Vista and migrating to Windows 7? Jian Lin 2009-11-25T03:15:32Z 2009-11-27T04:49:55Z <p>I had VisualSVN Server running perfectly on a Windows Vista machine, and then now it is to run Windows 7 on that same machine (installed on a new partition).</p> <p>So now all the source code are in the repository on D: drive (it used to be on C:)</p> <p>(Windows 7 will be C:, and the Vista will now become D:)</p> <p>Can we just copy the D:\Repositories over as C:\Repositories, and then install VisualSVN Server on Windows 7 again and let it use C:\Repositories, and then all source code, all history (the diff and comment) will be available again? </p> http://stackoverflow.com/questions/1794411/how-to-move-all-source-code-over-when-it-was-on-visualsvn-server-on-vista-and-mig/1806800#1806800 0 Answer by Jian Lin for How to move all source code over when it was on VisualSVN Server on Vista and migrating to Windows 7? Jian Lin 2009-11-27T04:49:55Z 2009-11-27T04:49:55Z <p>Yes, I tried it finally and it worked perfectly. A good thing is, I don't even need to add the project using TortoiseSVN on the new Windows 7 clients. It is added automatically from before (I think from the hidden .svn folders).</p> http://stackoverflow.com/questions/900875/is-ab-or-httperf-better-for-checking-performance-of-a-website 2 is "ab" or "httperf" better for checking performance of a website? Jian Lin 2009-05-23T04:52:22Z 2009-11-26T15:39:38Z <p>so far i know of "ab" and "httperf", both can check the performance of a website. is one better than the other?</p> http://stackoverflow.com/questions/913869/how-to-change-the-default-encoding-to-utf-8-for-server 2 how to change the default encoding to UTF-8 for server Jian Lin 2009-05-27T04:04:02Z 2009-11-26T15:39:30Z <p>i am using a hosting company and it will list the files in a directory if an index.html is not there. However, it will use iso-8859-1 as the default encoding. if the server is apache, is there a way to change it to use UTF-8 as a default instead?</p> <p>Update: actually, i found that it is actually using a DOCTYPE of HTML 3.2 and then there is not charset at all... so it is not setting any encoding. But is there a way to change it to use UTF-8?</p> http://stackoverflow.com/questions/1802756/must-the-keys-and-values-in-a-berkeley-db-on-ruby-be-strings-not-int-float-or 0 Must the keys and values in a Berkeley DB on Ruby be strings, not int, float, or any other type? Jian Lin 2009-11-26T10:05:12Z 2009-11-26T11:24:49Z <p>It seems that if I use Berkeley DB (DBM) on Ruby, the hash's keys and values must be strings? Can they be other data type?</p> <pre><code>require 'dbm' d = DBM.open('test1') d[1] = 2 d[123] = 456 d[2] = 2.34 d['wa'] = Time.now.to_f p d.keys p d.values </code></pre> <p>Result:</p> <pre><code>C:\&gt;ruby test_dbm.rb ["wa", "2", "1", "123"] ["1259229787.686", "2.34", "2", "456"] </code></pre> http://stackoverflow.com/questions/1794600/how-atomic-is-the-berkeley-db-usage 1 How atomic is the Berkeley DB usage? Jian Lin 2009-11-25T04:22:05Z 2009-11-25T05:50:06Z <p>I am writing a simple app with 24 items in a hash to be persistent across program executions, so Berkeley DB (DBM) should be well suited for this task.</p> <p>And it is just for fun. </p> <p>But I wonder if using it (with Ruby), then when the user presses CTRL-C, then the execution is stopped. In this case, can't the data be all messed up?</p> <p>For example, if the value in DB is 63, and I increment it by 1 (to be 64)</p> <pre><code>63 = 111111 (in binary) 64 = 1000000 (in binary) </code></pre> <p>so, could the CTRL-C occur right when the "Most Significant" 1 is written and but the 0s have not been written? In that case, the value in the DB will be 127 instead of 63 or 64. What if it is not Ruby but in C, and the user uses "close window" or "kill" to kill the process? Come to think about it, the hard drive probably write this byte (or 4-byte) to the hard disk surface all at once, so this shouldn't happen.</p> <p>if CTRL-C won't cause this to happen, then a power outage or myself kicking the power plug could cause this to happen? For example, when the value is first cached in RAM, and while it is written to the hard disk, I kick the power plug, and the hard drive loses power before the 0s are written. I know one in a million times, this won't happen, but this is just a question of curiosity.</p> <p>On the other hand, if my script is to </p> <ol> <li>Decrement the coin value</li> <li>Give the user a "hamburger" in his inventory</li> </ol> <p>then when the user presses CTRL-C, and it happens right in between (1) and (2) above, then the user will have less coin, and get no hamburger.</p> <p>To prevent all these from happening, it'd be to use the transactional method using SleepyCat, SQLite, or MySQL, and none of these will happen?</p> http://stackoverflow.com/questions/1776396/how-to-program-a-mouse-click-on-mac-os-x-and-on-linux 0 How to program a mouse click on Mac OS X and on Linux? Jian Lin 2009-11-21T19:02:32Z 2009-11-23T14:39:04Z <p>I know how to program a click on Win32 (click on the screen programmatically) using C or Ruby. Does anyone know how to do it on Mac OS X and Linux just as a comparison? thanks.</p> http://stackoverflow.com/questions/1781550/tortoisediff-to-diff-source-code-but-it-seems-to-have-become-an-image-diffing-to 0 TortoiseDiff to diff source code but it seems to have become an image diff'ing tool? Jian Lin 2009-11-23T07:16:08Z 2009-11-23T11:27:54Z <p>I just downloaded and installed the newest Tortoise 64 bit on Win 7, and then start up TortoiseDiff from </p> <pre><code>START -&gt; All Programs -&gt; TortoiseSVN -&gt; TortoiseDiff </code></pre> <p>It used to be able to diff two source code file, but now it seems like it is an image diff'ing tool. Anybody knows how to get the tool to diff source code files?</p> <p><strong>Update:</strong></p> <p>If the two source files are in different folder, seems like the TortoiseSVN context menu by right click won't show the "Diff" option. After copying the other file to the same folder, if both files are highlighted, then there is a "Diff" option, and TortoiseMerge is the program that comes out to diff the file. So how to use TortoiseDiff from the START menu to diff 2 files? It seems like it is for merging file if it is invoked from the START menu.</p> http://stackoverflow.com/questions/970352/can-we-keep-a-list-of-functionalities-inside-the-decorator-pattern-instead-of-usi 0 Can we keep a list of functionalities inside the Decorator Pattern instead of using nesting? Jian Lin 2009-06-09T14:20:22Z 2009-11-17T21:00:02Z <p>Is the Decorator Pattern mainly to get an object with dynamically chosen extra functionalities?</p> <p>Can we do something like</p> <pre><code>window = Window.new(widht, height, x, y, [UseScrollBar.new, DrawBorder.new]) </code></pre> <p>so that when we call draw(), we also loop through the additional functionalities?</p> <p>For example, if our purpose is to write_line to a file, with nesting, we have to write multiple times (multiple lines to the file), but with the loop, we can be more flexible about what we do: have the line of text, but loop through the list of extra functionalities, so if it is empty, we write the plain line, but if there is AddLineNumber, or AddTimeStamp, then the line is modified, and then a single line is written to the file.</p> <p>I hope I understand the pattern enough to give an accurate question. Do some people implement the Decorator Pattern using a list of extra functionalities instead of nesting?</p> http://stackoverflow.com/questions/1710237/when-our-source-code-is-used-again-on-windows-7-and-was-on-vista-using-tortoise 0 When our source code is used again on Windows 7 (and was on Vista) using Tortoise SVN, will there be any problem? Jian Lin 2009-11-10T18:43:37Z 2009-11-11T01:04:56Z <p>If our source code was on </p> <pre><code>C:\code </code></pre> <p>when on Windows Vista, and now the machine is made into dual boot Vista and Windows 7.</p> <p>So when booting to Win7, the folder is now</p> <pre><code>D:\code </code></pre> <p>and there are hidden folders ".svn" that was there from the Tortoise on Vista.</p> <p>So now if Tortoise is installed again on Win 7 (as well as VisualSVN Server) and using D:\code, will there be any problem that the hidden folder will interfere with the new Tortoise? Will all the .svn be better removed?</p> <p>Then, when occasionally we boot to Vista, can we use the Tortoise there too?</p> <p><strong>Update:</strong></p> <p>Originally, I thought I would set up a brand new SVN repository on the Win 7 partition and then SVN check in all the source code again, but then all the previous commit comment and versioning will be lost that way. So I think I will some how relocate the repository from the Vista VisualSVN Server to the Win7 VisualSVN Server. The problem is that I cannot have both of them running at the same time (it is a dual boot machine), so I may need to relocate to another machine first and relocate back? Or can I install VisualSVN Server on top of the old folders and have the new VisualSVN resume serving the old repository? thanks.</p> http://stackoverflow.com/questions/1695392/does-favicon-ico-need-to-reside-in-that-same-directory-of-index-html 0 Does favicon.ico need to reside in that same directory of index.html? Jian Lin 2009-11-08T04:48:22Z 2009-11-08T13:44:54Z <p>I am already using the standard way of adding a favicon:</p> <pre><code>&lt;link rel="icon" type="image/gif" href="/graphics_card/favicon.gif"&gt; &lt;link rel="shortcut icon" href="/graphics_card/favicon.ico"&gt; </code></pre> <p>so the favicon.gif and .ico are both supposed to reside on </p> <pre><code>/graphics_card </code></pre> <p>However, I found that IE 8 (or maybe other IE) cannot show it, <strong>(update: no matter how many times I pressed CTRL-F5, or clear the browser cache)</strong>, but as soon as the .ico file is present in that directory where the index.html is, then it will show.</p> <p>So if it is </p> <pre><code>http://www.example.com/graphics_card/nvidia/index.html </code></pre> <p>there needs to be a favicon.ico in </p> <pre><code>/graphics_card/nvidia/ </code></pre> <p>too. I ended up specifying it as</p> <pre><code>&lt;link rel="icon" type="image/gif" href="/graphics_card/favicon.gif"&gt; &lt;link rel="shortcut icon" href="favicon.ico"&gt; </code></pre> <p>and just put a favicon.ico in that directory. Is this the standard way?</p> http://stackoverflow.com/questions/1678890/how-to-capture-a-part-of-a-screen-using-ruby-on-windows 1 How to capture a part of a screen using Ruby on Windows? Jian Lin 2009-11-05T07:23:13Z 2009-11-05T16:38:12Z <p>Instead of using some third party app, I'd like to write an app in Ruby that when invoked, will capture the full screen and save it in c:\screenshot\snap000001.png</p> <p>The graphic package is readily there, but how can you capture a region from the full screen so as to save it?</p> <p>This program is to be invoked by some hot-key, such as setting it to be running when CTRL-PrtScn is pressed, or CTRL-CTRL (both control on left and right), or ALT-ALT.</p> http://stackoverflow.com/questions/1679266/can-ruby-print-out-time-difference-duration-readily 0 Can Ruby print out time difference (duration) readily? Jian Lin 2009-11-05T09:06:50Z 2009-11-05T16:03:24Z <p>Can Ruby do something like this?</p> <pre><code>irb(main):001:0&gt; start = Time.now =&gt; Thu Nov 05 01:02:54 -0800 2009 irb(main):002:0&gt; Time.now - start =&gt; 25.239 irb(main):003:0&gt; (Time.now - start).duration =&gt; "25 seconds" </code></pre> <p>(the duration method doesn't exist now)... and similarly, report </p> <pre><code>23 minutes and 35 seconds 1 hour and 33 minutes 2 days and 3 hours </code></pre> <p>(either report the whole duration, up to how many seconds, or report up to 2 numbers and units (if day and hour is reported, then no need to tell how many minutes))</p> http://stackoverflow.com/questions/1678869/how-to-do-a-getpixel-in-ruby-on-win32 0 How to do a getPixel() in Ruby on Win32? Jian Lin 2009-11-05T07:19:04Z 2009-11-05T07:24:26Z <p>How can you do a getPixel() in Ruby on Win32? It is either to get a pixel in a window or on the screen (dc == null).</p> http://stackoverflow.com/questions/848703/can-ruby-get-the-filenames-in-a-folder-if-they-have-unicode-characters-on-window 0 can Ruby get the filenames in a folder if they have Unicode characters (on Windows Vista)? Jian Lin 2009-05-11T15:38:54Z 2009-11-04T15:00:03Z <p>i was writing a script on Windows Vista to move the files in a folder to another hard drive, but found that Ruby 1.8.6 or 1.9 both would get back filenames with Unicode characters in it replaced by "??????"</p> <p>so for example, the filename "Chart for ???????.doc" is returned</p> <p>so the file cannot be moved at all...</p> <p>i used </p> <pre><code>filename.each_byte {|x| p x} </code></pre> <p>to make sure it is internally really "?" characters inside the string, not just when it is printed out.</p> http://stackoverflow.com/questions/908216/if-ie8-is-installed-how-can-i-test-ie6-and-ie7-compatibility 6 If IE8 is installed, how can I test IE6 and IE7 compatibility? Jian Lin 2009-05-25T22:06:58Z 2009-11-04T13:26:52Z <p>if IE 8 is installed "by accident" (by the Windows Update program), now the machine has IE 8. Does that mean it is safest to run 2 Virtual PCs, one with IE 6, and one with IE 7 to test our web app?</p> http://stackoverflow.com/questions/1672338/how-to-sleep-for-5-seconds-in-windowss-command-prompt-or-dos 1 How to sleep for 5 seconds in Windows's Command Prompt? (or DOS) Jian Lin 2009-11-04T08:13:31Z 2009-11-04T08:29:11Z <p>Windows's Snipping tool can capture the screen, but sometimes I want to capture the screen after 5 seconds, such as taking an image being displayed by the webcam. (run the script and smile at the camera, for example).</p> <p>So in Ruby, I could do something like</p> <pre><code>sleep 3 system('c:/windows/system32/SnippingTool.exe') </code></pre> <p>but not all computer has Ruby, so how do I do that in a .bat file? (something that is runnable on most PC with Snipping tool).</p> <p>The problem is that there is no "sleep" usable in a .bat file.</p> http://stackoverflow.com/questions/943967/how-view-count-is-best-implemented 3 How "View Count" is best implemented? Jian Lin 2009-06-03T10:09:57Z 2009-11-03T22:28:51Z <p>On any website, such as on StackOverflow, each question has a view count, and user reading a question but has previous read it won't count twice.</p> <p>I have some ideas about how it is implemented and using what tables to do it.</p> <p>What do you think is the best way to implement this?</p> http://stackoverflow.com/questions/1660379/how-to-relocate-our-source-code-from-vista-running-visualsvn-server-to-windows-7 0 How to relocate our source code from Vista running VisualSVN Server to Windows 7 running VisualSVN Server? Jian Lin 2009-11-02T10:07:26Z 2009-11-03T17:44:18Z <p>[i meant to ask this question on StackOverflow...]</p> <p>I have been using VisualSVN Server without any problem on Vista.</p> <p>When it is time to change everything to Windows 7, I wonder what's the best way to do that?</p> <p>Is it best to "check in" all the code from all machines onto the Vista, and do an SVN Update for one machine, and then reinstall VisualSVN on Windows 7 and create another project. Is that the best way?</p> <p>Has anybody run VisualSVN Server (as well as TortoiseSVN) on Windows 7 machine and found that it is stable ?</p> <p>thanks.</p> http://stackoverflow.com/questions/1660183/how-to-programmatically-program-a-wheel-scroll-using-ruby-on-windows 0 How to programmatically program a "Wheel Scroll" using Ruby on Windows? Jian Lin 2009-11-02T09:19:40Z 2009-11-02T09:30:01Z <p>Is there a way to program a "Scroll wheel" turn on the Windows platform using Ruby?</p> <p>Kind of similar to programming a click on Windows, or a keyboard key press, but this is to program a scroll wheel turn. thanks.</p> http://stackoverflow.com/questions/1658996/how-to-use-ruby-to-detect-whether-on-windows-platform-the-shift-or-alt-key-is-be 0 How to use Ruby to detect whether on Windows Platform, the SHIFT or ALT key is being pressed? Jian Lin 2009-11-02T01:11:25Z 2009-11-02T01:11:25Z <p>I wrote a script using Ruby to click on the screen automatically on Windows's apps. All is fine except there are situations where the program will keep on clicking and I have no opportunity to click on the Shell and click CTRL-C.</p> <p>So some "sleep" statement need to be placed somewhere in the loop, such as "sleep 3", so that there are 3 seconds to allow the user to switch to the Shell and press CTRL-C.</p> <p>But is there a way to detect whether the SHIFT or ALT (or BOTH) is pressed on the Windows Platform while the Ruby program is running, so that when that is detected, then do a "sleep 10", so that the automatic clicking is stopped, and then there are 10 seconds to stop the Ruby program? </p> http://stackoverflow.com/questions/1619273/how-to-run-my-ruby-programs-without-installing-20-000-file 1 How to run my Ruby programs without installing 20,000 file? Jian Lin 2009-10-24T22:00:49Z 2009-10-27T11:43:51Z <p>I have written quite a few Ruby programs, but if I need to show my friend one of the program, I need to install Ruby 1.8.6 on that computer, and that is 20,000 files. For running of my Ruby programs, is there a way besides this?</p> http://stackoverflow.com/questions/978489/how-important-are-design-patterns-really 12 How important are Design Patterns really? Jian Lin 2009-06-10T22:40:11Z 2009-10-26T06:02:53Z <p>How important are Design Patterns really? </p> <p>I think the earlier generation of programmers didn't use Design Patterns that much (people who graduated in the 80s and before mid 90s). Do the recent graduate know it in general and use it a lot more?</p> <p>If you are interested, I also made a survery and you can view it here:</p> <p><a href="http://www.surveymonkey.com/s.aspx?sm=kJOdGX0RPx5FGrfPVm_2bmIw_3d_3d" rel="nofollow">http://www.surveymonkey.com/s.aspx?sm=kJOdGX0RPx5FGrfPVm_2bmIw_3d_3d</a></p> <p><strong>Update: Here are the initial survey results:</strong></p> <p><a href="http://img192.imageshack.us/img192/7107/surveyresults.png" rel="nofollow">http://img192.imageshack.us/img192/7107/surveyresults.png</a></p> http://stackoverflow.com/questions/1619373/are-the-ruby-previews-stable-versions-or-beta-versions 0 Are the Ruby "Previews" stable versions or Beta versions? Jian Lin 2009-10-24T22:34:42Z 2009-10-24T23:02:02Z <p>On the page:</p> <blockquote> <p><a href="http://rubyforge.org/frs/?group%5Fid=167" rel="nofollow">http://rubyforge.org/frs/?group%5Fid=167</a></p> </blockquote> <p>There are stable versions (1.8.6 p26 being the latest), and there are some "Previews" for 1.9.1. Are the "Previews" stable versions or are they Beta?</p> <p>It seems that otherwise, the most recent stable version you can get is 1.8.6?</p> <p>On page</p> <blockquote> <p><a href="http://www.ruby-lang.org/en/downloads/" rel="nofollow">http://www.ruby-lang.org/en/downloads/</a></p> </blockquote> <p>the "Ruby 1.8.6 One-Click Installer" actually points to</p> <pre><code>http://rubyforge.org/frs/download.php/47082/ruby186-27_rc2.exe </code></pre> <p>which is a release candidate instead of a stable version?</p> http://stackoverflow.com/questions/990718/how-does-collective-intelligence-beat-experts-view 4 How does Collective Intelligence beat Experts' view? Jian Lin 2009-06-13T13:57:23Z 2009-10-21T21:28:16Z <p>I am interested in doing some Collective Intelligence programming, but wonder how it can work? </p> <p>It is said to be able to give accurate predictions: the O'Reilly Programming Collective Intelligence book, for example, says a collection of traders' action actually can predict future prices (such as corn) better than an expert can.</p> <p>Now we also know in statistics class that, if it is a room of 40 students taking exam, there will be 3 to 5 students who will get an "A" grade. There might be 8 that get "B", and 17 that got "C", and so on. That is, basically, a bell curve.</p> <p>So from these two standpoints, how can a collection of "B" and "C" answers give a better prediction than the answer that got an "A"?</p> <p>Note that the corn price, for example, is the accurate price factoring in weather, demand of food companies using corn, etc, rather than "self fulfilling prophecy" (more people buy the corn futures and price goes up and more people buy the futures again). It is actually predicting the supply and demand accurately to give out an accurate price in the future.</p> <p>How is it possible?</p> <p><strong>Update:</strong> can we say Collective Intelligence won't work in stock market euphoria and panic?</p> http://stackoverflow.com/questions/876859/can-i-easily-write-a-program-to-make-use-of-intels-quad-core-or-i7-chip-if-only 1 can i easily write a program to make use of Intel's Quad core or i7 chip if only 1 thread is used? Jian Lin 2009-05-18T09:25:36Z 2009-10-17T17:48:52Z <p>I wonder if in my program I have only 1 thread, can I write it so that the Quad core or i7 can actually make use of the different cores? Usually when i write programs on a Quad core computer, the CPU usage will only go to about 25%, and the work seems to be divided among the 4 cores, as the Task Manager shows. (the programs i wrote usually is Ruby, Python, or PHP, so they may not be so much optimized).</p> <p><strong>Update:</strong> what if i write it in C or C++ instead, and</p> <pre><code>for (i = 0; i &lt; 100000000; i++) { a = i * 2; b = i + 1; if (a == ... || b == ...) { ... } } </code></pre> <p>and then use the highest level of optimization with the compiler. can the compiler make the multiplication happen on one core, and the addition happen on a different core, and therefore make 2 cores work at the same time? isn't that a fairly easy optimization to use 2 cores?</p> http://stackoverflow.com/questions/1009280/how-do-i-perform-vector-addition-in-ruby 0 How do I perform vector addition in Ruby? Jian Lin 2009-06-17T20:10:37Z 2009-10-09T17:26:38Z <p>How do I perform vector addition in Ruby so that</p> <pre><code>[100, 100] + [2, 3] </code></pre> <p>yields</p> <pre><code>[102, 103] </code></pre> <p>(instead of joining two arrays)?</p> <p>Or it can be another operator too, such as </p> <pre><code>[100, 100] @ [2, 3] </code></pre> <p>or </p> <pre><code>[100, 100] &amp; [2, 3] </code></pre> http://stackoverflow.com/questions/1013828/how-to-write-a-perl-python-or-ruby-program-to-change-the-memory-of-another-proc 5 How to write a Perl, Python, or Ruby program to change the memory of another process on Windows? Jian Lin 2009-06-18T16:45:46Z 2009-10-05T11:14:36Z <p>I wonder if Perl, Python, or Ruby can be used to write a program so that it will look for 0x12345678 in the memory of another process (probably the heap, for both data and code data) and then if it is found, change it to 0x00000000? It is something similar to <a href="http://www.cheatengine.org/" rel="nofollow">Cheat Engine</a>, which can do something like that on Windows.</p> http://stackoverflow.com/questions/1802756/must-the-keys-and-values-in-a-berkeley-db-on-ruby-be-strings-not-int-float-or/1802945#1802945 Comment by Jian Lin on Must the keys and values in a Berkeley DB on Ruby be strings, not int, float, or any other type? Jian Lin 2009-11-27T04:47:05Z 2009-11-27T04:47:05Z strings... hmm... is it on Linux? On Windows, do you know how the line is? http://stackoverflow.com/questions/1794411/how-to-move-all-source-code-over-when-it-was-on-visualsvn-server-on-vista-and-mig/1794924#1794924 Comment by Jian Lin on How to move all source code over when it was on VisualSVN Server on Vista and migrating to Windows 7? Jian Lin 2009-11-25T09:29:57Z 2009-11-25T09:29:57Z how similar can you write a line or two about it? http://stackoverflow.com/questions/1710237/when-our-source-code-is-used-again-on-windows-7-and-was-on-vista-using-tortoise Comment by Jian Lin on When our source code is used again on Windows 7 (and was on Vista) using Tortoise SVN, will there be any problem? Jian Lin 2009-11-10T18:53:27Z 2009-11-10T18:53:27Z Vista was on a partition. All source code was on that partition. When booting up Vista, they are on C:\. And then a new partition was made and Win7 was installed on it. So when booting to Win7 which is C:, the source code are now in D:\code http://stackoverflow.com/questions/1710237/when-our-source-code-is-used-again-on-windows-7-and-was-on-vista-using-tortoise/1710261#1710261 Comment by Jian Lin on When our source code is used again on Windows 7 (and was on Vista) using Tortoise SVN, will there be any problem? Jian Lin 2009-11-10T18:49:04Z 2009-11-10T18:49:04Z in this case, VisualSVN Server and the source code are both on the same machine (although there is another machine that has the source code and also upgrading to Win 7) http://stackoverflow.com/questions/1695392/does-favicon-ico-need-to-reside-in-that-same-directory-of-index-html/1695402#1695402 Comment by Jian Lin on Does favicon.ico need to reside in that same directory of index.html? Jian Lin 2009-11-08T11:49:13Z 2009-11-08T11:49:13Z @Frank? really? some people say MS is the only one following the standard of W3C in the case of favicon... http://stackoverflow.com/questions/1679266/can-ruby-print-out-time-difference-duration-readily/1679305#1679305 Comment by Jian Lin on Can Ruby print out time difference (duration) readily? Jian Lin 2009-11-05T09:30:45Z 2009-11-05T09:30:45Z how come Date.day_fraction_to_time(25) returns [600, 0, 0, Rational(0, 1)] ? http://stackoverflow.com/questions/1672338/how-to-sleep-for-5-seconds-in-windowss-command-prompt-or-dos/1672375#1672375 Comment by Jian Lin on How to sleep for 5 seconds in Windows's Command Prompt? (or DOS) Jian Lin 2009-11-04T08:34:49Z 2009-11-04T08:34:49Z it works on Win 7, but not on Win XP http://stackoverflow.com/questions/1660379/how-to-relocate-our-source-code-from-vista-running-visualsvn-server-to-windows-7/1660446#1660446 Comment by Jian Lin on How to relocate our source code from Vista running VisualSVN Server to Windows 7 running VisualSVN Server? Jian Lin 2009-11-03T03:10:46Z 2009-11-03T03:10:46Z yes i actually sync to two other machines too. would be good if a friend can sync to it in his house, so the data is double safe. or i can regularly FTP to my website. http://stackoverflow.com/questions/1619273/how-to-run-my-ruby-programs-without-installing-20-000-file Comment by Jian Lin on How to run my Ruby programs without installing 20,000 file? Jian Lin 2009-10-29T10:09:41Z 2009-10-29T10:09:41Z It is a typical One-click installer of Ruby 1.8.6... (ruby 1.8.6 (2007-09-24 patchlevel 111) [i386-mswin32]) On my Win 7, 32 bit machine, it says there are 21,437 files, and 3008 folders. Size is 75.5MB, and size on hard drive is 142MB (even a 6 byte file takes 4kb on hard drive) http://stackoverflow.com/questions/1619273/how-to-run-my-ruby-programs-without-installing-20-000-file/1619381#1619381 Comment by Jian Lin on How to run my Ruby programs without installing 20,000 file? Jian Lin 2009-10-24T22:46:32Z 2009-10-24T22:46:32Z I see, I was hoping that a Ruby program could be runnable by just installing one EXE or maybe 20, 30 files, instead of 20,000 files. But of course if that's the way it is, then so be it! http://stackoverflow.com/questions/1619273/how-to-run-my-ruby-programs-without-installing-20-000-file/1619285#1619285 Comment by Jian Lin on How to run my Ruby programs without installing 20,000 file? Jian Lin 2009-10-24T22:09:16Z 2009-10-24T22:09:16Z that's a good way. how about, what if i need to change a line and show him how the code behaves differently... and not to install all those 20,000 files? http://stackoverflow.com/questions/1175803/how-to-automate-a-keystroke-using-win32-and-ruby Comment by Jian Lin on How to automate a keystroke using Win32 and Ruby? Jian Lin 2009-07-24T05:16:39Z 2009-07-24T05:16:39Z i know how to automate a click and wonder how to do that for a keystroke http://stackoverflow.com/questions/1072613/if-not-using-execls-l-in-php-do-we-need-to-call-stat-to-get-the-file-size/1073857#1073857 Comment by Jian Lin on If not using exec("ls -l") in PHP, do we need to call stat() to get the file sizes 1000 times if there are 1000 files? Jian Lin 2009-07-02T17:20:00Z 2009-07-02T17:20:00Z that looks good except is there a way to sort the filenames alphabetically? thanks. http://stackoverflow.com/questions/1072613/if-not-using-execls-l-in-php-do-we-need-to-call-stat-to-get-the-file-size/1072633#1072633 Comment by Jian Lin on If not using exec("ls -l") in PHP, do we need to call stat() to get the file sizes 1000 times if there are 1000 files? Jian Lin 2009-07-02T05:36:20Z 2009-07-02T05:36:20Z i don't of any other way if it is not done in a loop, haha http://stackoverflow.com/questions/1026763/given-an-angle-and-dimensions-find-a-coordinate-along-the-perimeter-of-a-rectang/1026839#1026839 Comment by Jian Lin on Given an angle and dimensions, find a coordinate along the perimeter of a rectangle Jian Lin 2009-06-22T15:02:23Z 2009-06-22T15:02:23Z i think that will be solving the equation for those 2 lines, and find the x and y... and since it can hit two lines going one way, choose the one that has the smaller distance from origin.