Paggas
|
Registered User
|
I am a CS student. My development platform of preference is Linux. :)
|
|
Nov 13 |
comment |
Private and protected constructor in Scala You 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. |
|
Nov 8 |
awarded | ● Yearling |
|
Nov 3 |
comment |
Ignore non-matching lines I like this answer the most :) |
|
Nov 3 |
asked | Ignore non-matching lines |
|
Nov 2 |
comment |
do-while loop in python? It's good practice though to only have inside the try statement what you expect to throw your exception, lest you catch unwanted exceptions. |
|
Nov 2 |
comment |
Why does Visual Studio 2008 tell me .9 - .8999999999999995 = 0.00000000000000055511151231257827? +1 for the leading zeroes explanation. |
|
Nov 2 |
comment |
What’s the least useful comment you’ve ever seen? In-comment correspondence, just amazing O_O |
|
Oct 23 |
comment |
python and ms dos Do you really mean running it under a DOS operating system, or just in the Windows command line interpreter? |
|
Oct 23 |
comment |
O(nlogn) Algorithm - Find three evenly spaced ones within binary string Aha, 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))! |
|
Oct 23 |
comment |
O(nlogn) Algorithm - Find three evenly spaced ones within binary string Hmm, 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... |
|
Oct 17 |
comment |
Fastest way of finding the middle value of a triple? You 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! |
|
Oct 17 |
comment |
Fastest way of finding the middle value of a triple? Should be: (a <= b) ? ((b <= c) ? b : ((a < c) ? c : a)) : ((a <= c) ? a : ((b < c) ? c : b)) |
|
Oct 13 |
comment |
How do I show the value of a #define at compile-time? This looks like a nice feature, I'd love to see it in GCC :) |
|
Oct 12 |
comment |
Why are most of the biggest open source projects in C? The links are a very nice read. |
|
Oct 11 |
comment |
Are there any famous one-man-army programmers? A one-woman-army programmer really :) |
|
Oct 11 |
answered | What exactly does “ar” utility do? |
|
Oct 10 |
comment |
What is the one programming skill you have always wanted to master but haven’t had time? I feel there are some cultural differences with respect to the meaning of "finger"? :) |
|
Oct 6 |
answered | Finding a branch point with Git? |
|
Jul 22 |
answered | Iterate over a string 2 (or n) characters at a time in Python |
|
Jul 20 |
awarded | ● Critic |
|
Jul 14 |
asked | How do Windows NT ACLs work? |
|
Jul 6 |
answered | HTML 5 <video> tag vs Flash video. What are the pros and cons? |
|
Jun 24 |
awarded | ● Commentator |
|
Jun 24 |
comment |
Differentiate between a unix directory and file in C++ Problematic if filename contains whitespace, I think you'd have to escape it. |
|
Jun 16 |
comment |
What is the best credit card processing service? womp: Why does your comment have to be so awesome? :P |
