ephemient
|
Registered User
|
Dabbler in many fields, expert in few.
|
|
38m |
comment |
python-config ldflags on mac If your question is now resolved, you may accept your own answer. |
|
39m |
comment |
In Python, use “dict” with keywords or anonymous dictionaries? Related: stackoverflow.com/questions/1690517 |
|
2h |
comment |
Reversing binary numbers in Haskell Or even foldr (\b -> if b then I else O) []. |
|
10h |
accepted | Profiling a Set implementation on 64-bit machines |
|
13h |
answered | Equivalent of strace -feopen < command > on mac os X |
|
14h |
answered | Profiling a Set implementation on 64-bit machines |
|
14h |
comment |
Debug heap/STL debugging equivalent for GCC? Err, and bug report: sourceware.org/bugzilla/show_bug.cgi?id=10282/… |
|
15h |
comment |
Debug heap/STL debugging equivalent for GCC? Note that glibc 2.10 and 2.11 are buggy: MALLOC_CHECK_ can cause hang and crash multi-threaded programs. |
|
16h |
comment |
Linux group scheduling for user not being applied to setuid-ed process To an extent, you can watch the netlink connector for PROC_EVENT_UID events to apply these fixes, but it I think what you really want are UID-based cpusets and cgroup-based scheduling. |
|
16h |
comment |
Linux group scheduling for user not being applied to setuid-ed process don't have any good reading material, but the only thing checked by setuid is "am I root* and does the target UID have less than RLIMIT_NPROC processes?". Other resource limits and priority are not checked or touched. *(actually the check is "unless forbidden by LSM, do I have CAP_SETUID and if I'm actually changing real UID does the target have less than RLIMIT_NPROC processes, or is the specified UID equal to current real UID or saved UID?") |
|
16h |
accepted | Linux group scheduling for user not being applied to setuid-ed process |
|
17h |
answered | Adding new error code in SSLerrs.h |
|
18h |
comment |
Sequence expression in bash Dup: stackoverflow.com/questions/169511 |
|
18h |
comment |
deep copy Linkedlist without destroying original list and extra storage space (using ANSI C) And how do you suggest to keep track of already-visited nodes? (This is important.) |
|
19h |
revised |
deep copy Linkedlist without destroying original list and extra storage space (using ANSI C) added 138 characters in body |
|
19h |
comment |
Empty or “flush” a file descriptor without read()? This governs (a) synchronizing read and write positions when interleaving buffered IO on a single file, and (b) undoing the effects of a read buffer that has proceeded ahead of what has been requested. Not what OP requests. |
|
19h |
answered | deep copy Linkedlist without destroying original list and extra storage space (using ANSI C) |
|
19h |
answered | Linux group scheduling for user not being applied to setuid-ed process |
|
1d |
comment |
split a string using find_if I normally avoid using namespace too, but for this short example I preferred to avoid over-80 column lines. |
|
1d |
accepted | Force Linux to use only memory over 4G? |
|
1d |
answered | How can I fairly choose an item from a list? |
|
1d |
comment |
Randomizing arg order for a bash for statement To satisfy the original question, this wants a if file.endswith('.txt'). Or maybe you could turn it into something more generic like shuf... |
|
1d |
comment |
Dynamically including modules without eval search.cpan.org/perldoc?Acme::Don't ;) |
|
1d |
comment |
split a string using find_if Why bother with space and not_space when you can use ptr_fun(isspace) and not1(ptrfun(isspace)) from <functional>? |
|
1d |
answered | split a string using find_if |
|
1d |
comment |
split a string using find_if You should have edited your question to include those details. |
|
1d |
comment |
Convert list of Integers into one Int (like concat) in haskell If someone felt strongly enough about the pointless 0, they could remove it and use foldl1 instead. And perhaps that's easier to explain? 1 addDigit 2 addDigit 3, if addDigit were a left-associative infix operator. Then again, having the 0 in front doesn't change a thing... |
|
1d |
comment |
Randomizing arg order for a bash for statement More specifically, coreutils≥6.1, I believe. Personally I'd prefer shuf -ze * | while read over done < <(shuf -ze *) but effectively they're the same. |
|
1d |
comment |
Convert list of Integers into one Int (like concat) in haskell This turns [12,34] into 1234 -- unlike sth's, which turns it into 154, or Chris's, which errors out. OP's desired behavior is not specified enough. |
|
1d |
comment |
split a string using find_if Nope, template<class InputIterator, class Predicate> InputIterator find_if(InputIterator first, InputIterator last, Predicate pred); is an inline function acting on iterators defined in <algorithm> -- not a method on strings or vectors or anything like that. |
|
1d |
comment |
split a string using find_if Indeed. Throwing in the includes and using namespace std; makes it compile flawlessly here; please show us what is different for you. |
|
1d |
comment |
How to replace the last one or two characters of a file with unix tools Umm, huh? Matt's answer is the only one that might be incorrect. |
|
1d |
comment |
Dynamically including modules without evals@'|::@/@g -- for hysterical raisins, ' and :: are interchangeable as package delimiters. |
|
1d |
answered | Using stdout/stderr/stdin streams behind haskell’s FFI |
|
1d |
answered | How to replace the last one or two characters of a file with unix tools |
|
1d |
comment |
How to replace the last one or two characters of a file with unix tools No, $ means "last line". The last line can end with \n (which is usually the case in UNIX); it will still be the last line. |
|
1d |
comment |
Reversing binary numbers in Haskell I probably wouldn't create any new types at all: Bool is already a suitable bit type, and [] is already a suitable list type. Making the type Bin = [Bool] alias, maybe. |
|
1d |
comment |
Randomizing arg order for a bash for statement See my updated answer for a couple pure-Bash shuffles, which incidentally handle odd filenames without problems. |
|
1d |
revised |
Randomizing arg order for a bash for statement added 305 characters in body; added 4 characters in body |
|
1d |
revised |
Randomizing arg order for a bash for statement added 499 characters in body |
|
1d |
comment |
Randomizing arg order for a bash for statement Hopefully nobody ever creates them, but embedded newlines in filenames will still trip this up. |
|
1d |
comment |
Randomizing arg order for a bash for statementls, sort, and cut aren't pure Bash commands. Also fails in the horrible case of filenames containing embedded newlines. |
|
1d |
comment |
Randomizing arg order for a bash for statement @Dennis I can't find their bug tracker but it looks like it was fixed by lists.gnu.org/archive/html/… -- what would happen is with LC_COLLATE (or LANG or LC_ALL) set to anything other than empty or C or POSIX, sort -R could be pretty darn deterministic. |
|
1d |
accepted | Randomizing arg order for a bash for statement |
|
1d |
comment |
git-svn, how to use a directory in trunk as local trunk Umm, no. The first non-option to git svn clone must be the svn repository URI; the -T/-b/-t options can be relative, and definitely makes no sense to specify them multiple times (-b branches becomes svn-remote.svn.branches=branches/*:refs/remotes/* in git's config). |
|
1d |
comment |
Randomizing arg order for a bash for statement Breaks if any filenames contain whitespace. |
|
1d |
answered | Randomizing arg order for a bash for statement |
|
2d |
accepted | Borderless windows on Linux… |
|
2d |
accepted | File r/w locking and unlink |
|
2d |
answered | Force Linux to use only memory over 4G? |
