User Linulin - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T07:34:36Z http://stackoverflow.com/feeds/user/12481 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/117422/how-can-i-resolve-the-drifting-clock-for-my-virtual-machine/225608#225608 0 Answer by Linulin for How can I resolve the drifting clock for my Virtual Machine? Linulin 2008-10-22T12:52:55Z 2008-10-22T12:52:55Z <p>There is no definitive answer because several methods exist, each having its pros and cons. What one to chose depends on your tasks, server load, operating system, etc.</p> <p>Read <a href="http://www.vmware.com/pdf/vmware_timekeeping.pdf" rel="nofollow">vmware_timekeeping.pdf</a> for thorough understanding of the issue.</p> <p>Quick recipes for Linux could be found in a separate <a href="http://kb.vmware.com/kb/1006427" rel="nofollow">KB article</a></p> http://stackoverflow.com/questions/101362/how-do-you-generate-passwords/102553#102553 0 Answer by Linulin for How do you generate passwords? Linulin 2008-09-19T15:00:36Z 2008-09-19T15:00:36Z <p><strong>makepasswd</strong> generates true random passwords by using the /dev/random feature of Linux, with the emphasis on security over pronounceability. It can also encrypt plaintext passwords given on the command line.</p> <p>Most notable options are</p> <pre> --crypt-md5 Produce encrypted passwords using the MD5 digest algorithm --string STRING Use the characters in STRING to generate random passwords </pre> <p>The former could be used to automatically generate /etc/passwd, /etc/cvspasswd, etc. entries. The latter is useful to add punctuation characters into your passwords, (by default generated password contains alphanumeric chars only).</p> <p>makepasswd was originally part of the mkircconf program used to centrally administer the Linux Internet Support Cooperative IRC network.</p> http://stackoverflow.com/questions/87299/what-is-the-most-convincing-command-in-vim/87341#87341 8 Answer by Linulin for What is the most convincing command in Vim. Linulin 2008-09-17T20:33:53Z 2008-09-17T20:33:53Z <p><strong>.</strong> (dot) - repeats the last editing action. Really handy when you need to perform a few similar edits.</p> http://stackoverflow.com/questions/77507/what-are-your-favourite-zx-spectrum-development-tools/86273#86273 2 Answer by Linulin for What are your favourite ZX Spectrum development tools? Linulin 2008-09-17T18:45:00Z 2008-09-17T18:45:00Z <p><strong>ZX ASM 3.0</strong></p> <p>It had the best user interface and good feature set compared to other assemblers at the end of the twentieth century.</p> http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/81476#81476 19 Answer by Linulin for What do you use to keep notes as a developer? Linulin 2008-09-17T09:32:06Z 2008-09-17T15:50:04Z <p><strong><a href="http://www.dokuwiki.org" rel="nofollow">DokuWiki</a></strong></p> <p>DokuWiki is is targeted at developer teams and mainly aimed at creating documentation of any kind. It has simple but powerful syntax which makes sure the data files remain readable outside the Wiki. (All data is stored in plain text files – no database is required.) Optional syntax highlighting of code blocks is another neat feature most programmers find useful.</p> http://stackoverflow.com/questions/78955/what-are-the-best-programming-and-development-related-blogs/81356#81356 9 Answer by Linulin for What are the best programming and development related Blogs? Linulin 2008-09-17T09:11:42Z 2008-09-17T09:11:42Z <p><a href="http://www.joelonsoftware.com" rel="nofollow" title="Joel on Software">Joel on Software</a></p> <p>(I'm really curious to see it's position among other blogs in the vote.)</p> http://stackoverflow.com/questions/73833/how-do-you-search-for-files-containing-dos-line-endings-crlf-with-grep-under-li/74739#74739 1 Answer by Linulin for how do you search for files containing dos line endings (CRLF) with grep under linux? Linulin 2008-09-16T17:20:10Z 2008-09-16T17:20:10Z <p>If your version of grep supports <strong>-P (--perl-regexp)</strong> option, then</p> <pre><code>grep -P '\r\n' </code></pre> <p>could be used.</p> http://stackoverflow.com/questions/73319/duplicate-a-whole-line-in-vim/73362#73362 9 Answer by Linulin for Duplicate a whole line in Vim Linulin 2008-09-16T15:07:10Z 2008-09-16T15:07:10Z <p>YP or Yp or yyp</p> http://stackoverflow.com/questions/73087/x-gnome-how-to-measure-the-geometry-of-an-open-window/73221#73221 0 Answer by Linulin for X/Gnome: How to measure the geometry of an open window Linulin 2008-09-16T14:54:29Z 2008-09-16T14:54:29Z <pre><code>$ xwininfo xwininfo: Please select the window about which you would like information by clicking the mouse in that window. xwininfo: Window id: 0x1200007 "xeyes" Absolute upper-left X: 1130 Absolute upper-left Y: 0 Relative upper-left X: 0 Relative upper-left Y: 0 Width: 150 Height: 100 Depth: 24 Visual Class: TrueColor Border width: 0 Class: InputOutput Colormap: 0x20 (installed) Bit Gravity State: NorthWestGravity Window Gravity State: NorthWestGravity Backing Store State: NotUseful Save Under State: no Map State: IsViewable Override Redirect State: no Corners: +1130+0 -0+0 -0-924 +1130-924 -geometry 150x100-0+0 </code></pre> http://stackoverflow.com/questions/1020762/does-anyone-know-how-to-write-an-apple-push-notification-provider-in-c Comment by Linulin on Does anyone know how to write an Apple Push Notification Provider in C#? Linulin 2009-08-17T20:19:28Z 2009-08-17T20:19:28Z In my opinion, Apple's documentation is pretty clear: <a href="http://developer.apple.com/iphone/library/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/CommunicatingWIthAPS/CommunicatingWIthAPS.html#//apple_ref/doc/uid/TP40008194-CH101-SW1" rel="nofollow">developer.apple.com/iphone/library/&hellip;</a> http://stackoverflow.com/questions/454808/standard-diff-format-in-svn/454815#454815 Comment by Linulin on Standard diff format in SVN Linulin 2009-07-28T13:32:54Z 2009-07-28T13:32:54Z svn adds -u argument by default, (at least in version 1.5.1). So, you need to specify some diff arguments via -x to override unified format. E.g. &quot;svn diff --diff-cmd diff -x -b&quot; works for me http://stackoverflow.com/questions/289347/using-strtok-with-a-string-argument-instead-of-char/289372#289372 Comment by Linulin on Using strtok with a string argument (instead of char*)? Linulin 2009-01-29T14:07:26Z 2009-01-29T14:07:26Z Just in case, if someone decides to add namespace prefix to getline() call (or find it in some docs), this will be std::getline(), not istream::getline(). (The latter will not compile actually.)