User Paggas - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T22:44:56Zhttp://stackoverflow.com/feeds/user/35324http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1665549/ignore-non-matching-lines1Ignore non-matching linesPaggas2009-11-03T06:14:19Z2009-11-03T06:56:13Z
<p>How can I make <code>sed</code> filter matching lines according to some expression, but ignore non-matching lines, instead of letting them slip?</p>
<p>As a real example, I want to run <code>scalac</code> (the Scala compiler) on a set of files, and read from its <code>-verbose</code> output the <code>.class</code> files created. <code>scalac -verbose</code> outputs a bunch of messages, but we're only interested in those of the form <code>[wrote some-class-name.class]</code>.
What I'm currently doing is this (<code>|&</code> is bash 4.0's way to pipe stderr to the next program):</p>
<pre><code>$ scalac -verbose some-file.scala ... |& sed 's/^\[wrote \(.*\.class\)\]$/\1/'
</code></pre>
<p>This will extract the file names from the messages we're interested in, but will also let all other messages pass through unchanged! Of course we could do instead this:</p>
<pre><code>$ scalac -verbose some-file.scala ... |& grep '^\[wrote .*\.class\]$' |
sed 's/^\[wrote \(.*\.class\)\]$/\1/'
</code></pre>
<p>which works but looks very much like going around the real problem, which is how to instruct <code>sed</code> to ignore non-matching lines from the input. So how do we do that?</p>
http://stackoverflow.com/questions/1551310/what-exactly-does-ar-utility-do/1551378#15513783Answer by Paggas for What exactly does "ar" utility do?Paggas2009-10-11T18:27:37Z2009-10-11T18:27:37Z<p><code>ar</code> is a general purpose archiver, just like <code>tar</code>. It just "happens" to be used mostly for creating static library archives, one of its traditional uses, but you can still use it for general purpose archiving, though <code>tar</code> would probably be a better choice. <code>ar</code> is also used for Debian <code>.deb</code> packages.</p>
http://stackoverflow.com/questions/1527234/finding-a-branch-point-with-git/1528716#15287160Answer by Paggas for Finding a branch point with Git?Paggas2009-10-06T23:42:46Z2009-10-06T23:42:46Z<p>You can examine the reflog of branch A to find from which commit it was created, as well as the full history of which commits that branch pointed to. Reflogs are in <code>.git/logs</code>.</p>
http://stackoverflow.com/questions/276386/how-to-structure-includes-in-c4How to structure #includes in CPaggas2008-11-09T19:58:29Z2009-08-28T08:50:54Z
<p>Say I have a C program which is broken to a set of *.c and *.h files. If code from one file uses functions from another file, where should I include the header file? Inside the *.c file that used the function, or inside the header of that file?</p>
<p>E.g. file <code>foo.c</code> includes <code>foo.h</code>, which contains all declarations for <code>foo.c</code>; same for <code>bar.c</code> and <code>bar.h</code>. Function <code>foo1()</code> inside <code>foo.c</code> calls <code>bar1()</code>, which is declared in <code>bar.h</code> and defined in <code>bar.c</code>. Now the question is, should I include <code>bar.h</code> inside <code>foo.h</code>, or inside <code>foo.c</code>?</p>
<p>What would be a good set of rules-of-thumb for such issues?</p>
http://stackoverflow.com/questions/1162592/iterate-over-a-string-2-or-n-characters-at-a-time-in-python/1162624#11626243Answer by Paggas for Iterate over a string 2 (or n) characters at a time in PythonPaggas2009-07-22T01:35:35Z2009-07-22T01:35:35Z<p>Maybe this would be cleaner?</p>
<pre><code>s = "+c-R+D-e"
for i in xrange(0, len(s), 2):
op, code = s[i:i+2]
print op, code
</code></pre>
<p>You could perhaps write a generator to do what you want, maybe that would be more pythonic :)</p>
http://stackoverflow.com/questions/1128068/how-do-windows-nt-acls-work0How do Windows NT ACLs work?Paggas2009-07-14T21:12:16Z2009-07-14T21:17:00Z
<p>How do Windows NT (especially XP, Vista and Server 2008) ACLs (access control lists) work? What is the basic philosophy underlying them, that is, exactly what is stored, conceptually, in the ACLs, and how are access permissions evaluated based on the stored information?</p>
<p>What are the basic, command line and otherwise, utilities for managing them?</p>
<p>Perhaps also include links to related documentation or tutorials in the answer!</p>
<p>PS. Perhaps I should be asking this in Serverfault?</p>
http://stackoverflow.com/questions/1086886/html-5-video-tag-vs-flash-video-what-are-the-pros-and-cons/1089407#10894071Answer by Paggas for HTML 5 <video> tag vs Flash video. What are the pros and cons?Paggas2009-07-06T22:01:59Z2009-07-06T22:01:59Z<p>Since now the browser gets the video file via regular HTTP, as compared to some obscure method defined in the SWF file (which would need to be parsed), you can now have web proxies that can also cache video files! As well as have the very browser be able to cache a video file.</p>
http://stackoverflow.com/questions/844143/why-is-the-jvm-slow-to-start/844285#8442852Answer by Paggas for Why is the JVM slow to start?Paggas2009-05-09T23:12:12Z2009-05-09T23:25:07Z<p>If you are using Sun's HotSpot for x86_64 (64bit compiled), note that the current implementation only works in server mode, that is, it precompiles every class it loads with full optimization, whereas the 32bit version also supports client mode, which generally postpones optimization and optimizes the most CPU-intensive parts only, but has faster start-up times.</p>
<p>See for instance:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/64-bit#32_vs_64_bit" rel="nofollow">http://en.wikipedia.org/wiki/64-bit#32_vs_64_bit</a></li>
<li><a href="http://java.sun.com/docs/hotspot/HotSpotFAQ.html#64bit_compilers" rel="nofollow">http://java.sun.com/docs/hotspot/HotSpotFAQ.html#64bit_compilers</a></li>
</ul>
<p>That being said, at least on my machine (Linux x86_64 with 64bit kernel), the 32bit HotSpot version supports both client and server mode (via the -client and -server flags), but defaults to server mode, while the 64bit version only supports server mode.</p>
http://stackoverflow.com/questions/823334/whats-the-max-memory-available-for-applications-getting-no-more-handles-error/823349#8233490Answer by Paggas for What's the max. memory available for applications? (getting no more handles error).Paggas2009-05-05T04:30:05Z2009-05-05T04:30:05Z<p>I cannot answer specifically your question, but it seems to me you are running into the maximum limit of open files a process can have at any time (judging from the "handles" term, which often refers to open files, much like file descriptors in Unix). It would be a matter of operating-system-level user permissions/capabilities then. The allowed number of open files has nothing to do with memory size.</p>
http://stackoverflow.com/questions/355220/defining-const-values-in-c4Defining const values in CPaggas2008-12-10T06:16:35Z2008-12-11T00:40:16Z
<p>I have a C project where all code is organized in <code>*.c</code>/<code>*.h</code> file pairs, and I need to define a constant value in one file, which will be however also be used in other files. How should I declare and define this value?</p>
<p>Should it be as <code>static const ...</code> in the <code>*.h</code> file? As <code>extern const ...</code> in the <code>*.h</code> file and defined in the <code>*.c</code> file? In what way does it matter if the value is not a primitive datatype (<code>int</code>, <code>double</code>, etc), but a <code>char *</code> or a <code>struct</code>? (Though in my case it is a <code>double</code>.)</p>
<p>Defining stuff inside <code>*.h</code> files doesn't seem like a good idea generally; one should declare things in the <code>*.h</code> file, but define them in the <code>*.c</code> file. However, the <code>extern const ...</code> approach seems inefficient, as the compiler wouldn't be able to inline the value, it instead having to be accessed via its address all the time.</p>
<p>I guess the essence of this question is: Should one define <code>static const ...</code> values in <code>*.h</code> files in C, in order to use them in more that one place?</p>
http://stackoverflow.com/questions/1730536/private-and-protected-constructor-in-scalaComment by Paggas on Private and protected constructor in ScalaPaggas2009-11-13T17:06:00Z2009-11-13T17:06:00ZYou could have a Scala singleton (with the object keyword, that is), and define your class as private within that singleton, and have methods of the singleton for constructing your objects.http://stackoverflow.com/questions/1665549/ignore-non-matching-lines/1665662#1665662Comment by Paggas on Ignore non-matching linesPaggas2009-11-03T17:33:18Z2009-11-03T17:33:18ZI like this answer the most :)http://stackoverflow.com/questions/743164/do-while-loop-in-python/743231#743231Comment by Paggas on do-while loop in python?Paggas2009-11-02T18:10:47Z2009-11-02T18:10:47ZIt's good practice though to only have inside the try statement what you expect to throw your exception, lest you catch unwanted exceptions.http://stackoverflow.com/questions/1662600/why-does-visual-studio-2008-tell-me-9-8999999999999995-0-000000000000000555/1662728#1662728Comment by Paggas on Why does Visual Studio 2008 tell me .9 - .8999999999999995 = 0.00000000000000055511151231257827?Paggas2009-11-02T18:02:19Z2009-11-02T18:02:19Z+1 for the leading zeroes explanation.http://stackoverflow.com/questions/143429/whats-the-least-useful-comment-youve-ever-seen/168840#168840Comment by Paggas on What's the least useful comment you've ever seen?Paggas2009-11-02T17:45:21Z2009-11-02T17:45:21ZIn-comment correspondence, just amazing O_Ohttp://stackoverflow.com/questions/1614898/python-and-ms-dosComment by Paggas on python and ms dosPaggas2009-10-23T17:37:47Z2009-10-23T17:37:47ZDo you really mean running it under a DOS operating system, or just in the Windows command line interpreter?http://stackoverflow.com/questions/1560523/onlogn-algorithm-find-three-evenly-spaced-ones-within-binary-string/1585303#1585303Comment by Paggas on O(nlogn) Algorithm - Find three evenly spaced ones within binary stringPaggas2009-10-23T17:21:42Z2009-10-23T17:21:42ZAha, disregard my previous comment, last step is O(n) + O(n), rather than O(n) * O(n), since we just find one term of order 2b with coefficient >1 (O(n)) and then we find a second one of order c such that there is a term of order a = 2b - c (O(n))!http://stackoverflow.com/questions/1560523/onlogn-algorithm-find-three-evenly-spaced-ones-within-binary-string/1585303#1585303Comment by Paggas on O(nlogn) Algorithm - Find three evenly spaced ones within binary stringPaggas2009-10-23T17:16:44Z2009-10-23T17:16:44ZHmm, is it really O(nlogn)? The last step checks all terms of even order 2b, and for each such term checks all terms of lesser order, until it finds a match. Sounds O(n^2) to me...http://stackoverflow.com/questions/1582356/fastest-way-of-finding-the-middle-value-of-a-triple/1582406#1582406Comment by Paggas on Fastest way of finding the middle value of a triple?Paggas2009-10-17T19:36:09Z2009-10-17T19:36:09ZYou cannot avoid having at least 5 conditionals, unless you do things like value swapping or recursion. This is because the corresponding decision tree has 6 leaves, which means 5 internal nodes, thus 5 decision points in the whole code, though only two or three of them will be active at a time, those in the path to the answer leaf. But maybe the size of the code, or at least the number of conditionals, can be reduced by using swapping or other techniques!http://stackoverflow.com/questions/1582356/fastest-way-of-finding-the-middle-value-of-a-triple/1582406#1582406Comment by Paggas on Fastest way of finding the middle value of a triple?Paggas2009-10-17T19:15:40Z2009-10-17T19:15:40ZShould be:
(a <= b)
? ((b <= c) ? b : ((a < c) ? c : a))
: ((a <= c) ? a : ((b < c) ? c : b))http://stackoverflow.com/questions/1562074/how-do-i-show-the-value-of-a-define-at-compile-time/1562381#1562381Comment by Paggas on How do I show the value of a #define at compile-time?Paggas2009-10-13T19:47:24Z2009-10-13T19:47:24ZThis looks like a nice feature, I'd love to see it in GCC :)http://stackoverflow.com/questions/1551842/why-are-most-of-the-biggest-open-source-projects-in-c/1551853#1551853Comment by Paggas on Why are most of the biggest open source projects in C?Paggas2009-10-12T02:29:16Z2009-10-12T02:29:16ZThe links are a very nice read.http://stackoverflow.com/questions/529757/are-there-any-famous-one-man-army-programmers/529912#529912Comment by Paggas on Are there any famous one-man-army programmers?Paggas2009-10-11T21:02:16Z2009-10-11T21:02:16ZA one-woman-army programmer really :)http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/128987#128987Comment by Paggas on What is the one programming skill you have always wanted to master but haven't had time?Paggas2009-10-10T18:35:12Z2009-10-10T18:35:12ZI feel there are some cultural differences with respect to the meaning of "finger"? :)http://stackoverflow.com/questions/1036625/differentiate-between-a-unix-directory-and-file-in-c/1036914#1036914Comment by Paggas on Differentiate between a unix directory and file in C++Paggas2009-06-24T07:40:46Z2009-06-24T07:40:46ZProblematic if filename contains whitespace, I think you'd have to escape it.