User Sard - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T13:25:40Zhttp://stackoverflow.com/feeds/user/9831http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/154630/recommended-gcc-warning-options-for-c15Recommended gcc warning options for CSard2008-09-30T19:42:35Z2009-11-03T12:43:30Z
<p>Other than -Wall what other warnings have people found useful?</p>
<p><a href="http://gcc.gnu.org/onlinedocs/gcc-4.3.2/gcc/Warning-Options.html" rel="nofollow">http://gcc.gnu.org/onlinedocs/gcc-4.3.2/gcc/Warning-Options.html</a></p>
http://stackoverflow.com/questions/71985/emacs-equivalent-of-vims-yy10p3Emacs equivalent of Vim's yy10p ?Sard2008-09-16T13:06:39Z2009-10-29T03:12:41Z
<p>How can I copy a line 10 times easily in Emacs? I can't find a copy-line shortcut or function. I can use C-aC-spcC-eM-w to laboriously copy the line but how can I then paste it more than once?</p>
<p>Any ideas before I go and write my own functions.</p>
http://stackoverflow.com/questions/1157959/report-on-individual-password-expiration-intervals-in-sybase-ase-12-50Report on individual password expiration intervals in Sybase ASE 12.5Sard2009-07-21T08:34:56Z2009-08-03T20:10:17Z
<p>I want to run a report to make sure the password of every user is set to expire every 30 days, but the expiration interval doesn't seem to be stored in syslogins?</p>
http://stackoverflow.com/questions/186520/phps-filegetcontents-not-returning-until-remote-servers-keep-alive-limit-is-e0PHP's file_get_contents not returning until remote servers' keep-alive limit is exceededSard2008-10-09T09:23:28Z2009-04-14T07:25:50Z
<p>From one apache server file_get_contents returns the contents of a url straight away. On another apache server file_get contents won't return the contents of the same url until the keep-alive limit of the server hosting that url has been expired. The 2 php servers are retrieving the same url but through different network routes. What could be causing one php installation to wait for the remote keep-alive limit before returning? </p>
http://stackoverflow.com/questions/149558/recommended-vim-plugins-for-c-coding13Recommended Vim plugins for C coding?Sard2008-09-29T16:44:14Z2009-01-21T00:21:39Z
<p>What are the essential addons to help with editing C?</p>
http://stackoverflow.com/questions/154097/whats-in-your-emacs/158641#1586412Answer by Sard for What's in your .emacs?Sard2008-10-01T17:00:08Z2008-10-01T17:00:08Z<p>To refresh the webpage you're editing from within Emacs</p>
<pre><code>(defun moz-connect()
(interactive)
(make-comint "moz-buffer" (cons "127.0.0.1" "4242"))
(global-set-key "\C-x\C-g" '(lambda ()
(interactive)
(save-buffer)
(comint-send-string "*moz-buffer*" "this.BrowserReload()\n"))))
</code></pre>
<p>Used in combination with <a href="http://hyperstruct.net/projects/mozlab" rel="nofollow">http://hyperstruct.net/projects/mozlab</a></p>
http://stackoverflow.com/questions/154630/recommended-gcc-warning-options-for-c/154666#154666Comment by Sard on Recommended gcc warning options for CSard2008-09-30T19:52:35Z2008-09-30T19:52:35Z-Wextra seems to be the new name for -W (Which is also still supported)http://stackoverflow.com/questions/154630/recommended-gcc-warning-options-for-c/154642#154642Comment by Sard on Recommended gcc warning options for CSard2008-09-30T19:45:44Z2008-09-30T19:45:44Zjust a note -ansi overrides -std=c99