User Linulin - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T07:34:36Zhttp://stackoverflow.com/feeds/user/12481http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/117422/how-can-i-resolve-the-drifting-clock-for-my-virtual-machine/225608#2256080Answer by Linulin for How can I resolve the drifting clock for my Virtual Machine?Linulin2008-10-22T12:52:55Z2008-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#1025530Answer by Linulin for How do you generate passwords?Linulin2008-09-19T15:00:36Z2008-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#873418Answer by Linulin for What is the most convincing command in Vim.Linulin2008-09-17T20:33:53Z2008-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#862732Answer by Linulin for What are your favourite ZX Spectrum development tools?Linulin2008-09-17T18:45:00Z2008-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#8147619Answer by Linulin for What do you use to keep notes as a developer?Linulin2008-09-17T09:32:06Z2008-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#813569Answer by Linulin for What are the best programming and development related Blogs?Linulin2008-09-17T09:11:42Z2008-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#747391Answer by Linulin for how do you search for files containing dos line endings (CRLF) with grep under linux?Linulin2008-09-16T17:20:10Z2008-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#733629Answer by Linulin for Duplicate a whole line in VimLinulin2008-09-16T15:07:10Z2008-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#732210Answer by Linulin for X/Gnome: How to measure the geometry of an open windowLinulin2008-09-16T14:54:29Z2008-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-cComment by Linulin on Does anyone know how to write an Apple Push Notification Provider in C#?Linulin2009-08-17T20:19:28Z2009-08-17T20:19:28ZIn 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/…</a>http://stackoverflow.com/questions/454808/standard-diff-format-in-svn/454815#454815Comment by Linulin on Standard diff format in SVNLinulin2009-07-28T13:32:54Z2009-07-28T13:32:54Zsvn 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. "svn diff --diff-cmd diff -x -b" works for mehttp://stackoverflow.com/questions/289347/using-strtok-with-a-string-argument-instead-of-char/289372#289372Comment by Linulin on Using strtok with a string argument (instead of char*)?Linulin2009-01-29T14:07:26Z2009-01-29T14:07:26ZJust 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.)