User Sard - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T13:25:40Z http://stackoverflow.com/feeds/user/9831 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/154630/recommended-gcc-warning-options-for-c 15 Recommended gcc warning options for C Sard 2008-09-30T19:42:35Z 2009-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-yy10p 3 Emacs equivalent of Vim's yy10p ? Sard 2008-09-16T13:06:39Z 2009-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-5 0 Report on individual password expiration intervals in Sybase ASE 12.5 Sard 2009-07-21T08:34:56Z 2009-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-e 0 PHP's file_get_contents not returning until remote servers' keep-alive limit is exceeded Sard 2008-10-09T09:23:28Z 2009-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-coding 13 Recommended Vim plugins for C coding? Sard 2008-09-29T16:44:14Z 2009-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#158641 2 Answer by Sard for What's in your .emacs? Sard 2008-10-01T17:00:08Z 2008-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#154666 Comment by Sard on Recommended gcc warning options for C Sard 2008-09-30T19:52:35Z 2008-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#154642 Comment by Sard on Recommended gcc warning options for C Sard 2008-09-30T19:45:44Z 2008-09-30T19:45:44Z just a note -ansi overrides -std=c99