liori
|
Registered User
|
|
13h |
comment |
Do any common OS file systems use hashes to avoid storing the same content data more than once? I plan to build a fileserver and Solaris is my choice exactly because of ZFS. |
|
1d |
comment |
Calculate exponents via addition only If you have shift instructions, it would be easy to do multiplication and division pretty fast. |
|
Dec 11 |
comment |
Fastest way to calculate the decimal length of an integer? (.NET) for(i=10;value<i;i=(i<<3)+(i<<1)) {...} could be faster. |
|
Dec 11 |
comment |
Concept check: any lossless data compression can be “defeated’, right? Note that out of 2^(2^30) 1GB bitstreams only some represent useful data, for example movies. Almost all of these bitstreams are simply random noice for us. Lossless compression makes the useful bitstreams smaller at the cost that other less useful bitstreams. |
|
Dec 7 |
comment |
How does `MonthNames` work for different cultures? You might need to install japanese fonts. In japanese month names mean only sth like "first month", "second month", and therefore they are written as number+kanji for "month". |
|
Dec 5 |
asked | RESTful services and |
|
Dec 4 |
comment |
Automatic Application Generator To build a computer fast enough to check every possible program in sensible time you'd have to use more quartz than there is in the universe. So this will be impossible in year 2099 and in year 10000000 just the same way it is impossible now. |
|
Dec 4 |
comment |
How to search data using oledbdata reader in vb.net? You should ask on stackoverflow.com. |
|
Dec 4 |
revised |
Automatic Application Generator added 464 characters in body |
|
Dec 4 |
answered | Automatic Application Generator |
|
Dec 3 |
awarded | ● Yearling |
|
Dec 1 |
comment |
Optimized dot product in Python My results are: d0 elapsed: 13.4328830242 d1 elapsed: 9.52215504646 d2 elapsed: 10.1050257683 d3 elapsed: 9.16764998436 Be sure to check if the differences between d1 and d3 are statistically significant. |
|
Nov 29 |
comment |
Sun C++ Compilers and Boost Boost::MPL seems to have an extensive set of unit tests, you can try to run them under your compiler. This should give you the most recent status of support, regardless of any documentation. |
|
Nov 29 |
comment |
Why is that data structures usually have a size of 2^n ? It is noteworthy to say that some hashing algorithms suggests to use hash size equal to some prime number and not to 2^n, to make its behaviour more predictable; these algorithms usually have strong background in theoretical computer science. |
|
Nov 28 |
comment |
Disadvantages of First-class functions Not necessarily. There are languages with first class functions which aren't interpreted and don't have GC (f.e. C++). Closures are more difficult to implement without GC though. |
|
Nov 25 |
comment |
SWI Prolog - conditional NOT? Ok, I checked SWI-Prolog's documentation... you're right. I was under assumption it is defined more like ((If, Then); (\+If, Else)). |
|
Nov 24 |
awarded | ● Civic Duty |
|
Nov 24 |
comment |
SWI Prolog - conditional NOT?write might be only a placeholder. |
|
Nov 23 |
comment |
How is the x64 architecture different from x86 It probably means that AMD will not make much effort in optimizing them (so they might get very slow), and is probably going to drop it from hardware and emulate it only in software. That's my guess. |
|
Nov 23 |
comment |
Draw emf antialiased Duplicate: stackoverflow.com/questions/1422949/… |
|
Nov 23 |
revised |
SWI Prolog - conditional NOT? added 18 characters in body |
|
Nov 23 |
revised |
SWI Prolog - conditional NOT? added 999 characters in body; deleted 3 characters in body |
|
Nov 23 |
comment |
SWI Prolog - conditional NOT? Ha, I somehow misread your code... you want to find all occurences. I'll edit my answer. |
|
Nov 23 |
comment |
SWI Prolog - conditional NOT? Using cuts isn't considered nice. |
|
Nov 23 |
answered | SWI Prolog - conditional NOT? |
|
Nov 22 |
comment |
friend function declared inside befriended class, GCC does not compile sbi, case when a friend function is defined (not only declared) inside class is covered by 11.4.5 ("A function can be defined in a friend declaration of a class if and only if the class is a non-local class, the function name is unqualified, and the function has namespace scope" -- your example fulfils these requirements). I guess that standard does allow declaration ("prototype") of a friend function inside class. It is the error g++ is generating which bothers me. |
|
Nov 22 |
comment |
friend function declared inside befriended class, GCC does not compile Could you prove that with a reference to C++ Standard? I couldn't find that. |
|
Nov 22 |
comment |
How would you store encrypted information in public DVCS repository? Why do you want to encrypt them? You don't trust your developers? |
|
Nov 22 |
asked | friend function declared inside befriended class, GCC does not compile |
|
Nov 20 |
accepted | Stripping spaces between XML nodes with Python |
|
Nov 20 |
comment |
Working with lists in Prolog Well, you have to start with zero, and then with each recursive call increment it. It will probably be easier for you to modify the tail-recursive version: add another parameter to sum_if_bigger_tr/4. If you'll have problems doing this, please make another question in SO... this one is getting a bit too long ;-) |
|
Nov 20 |
comment |
Working with lists in Prolog Yes, you do. You firstly assign value to NewResult, then put it to recursive total_sum call. Don't do that. Firstly gather all data: sum_if_bigger(A, B, SingleRowResult), total_sum(L1, L2, ResultForOtherRows), and only then calculate the composite result: Result is SingleRowResult + ResultForOtherRows. |
|
Nov 20 |
comment |
Working with lists in Prolog BTW, you can try to work out how code (both your and mine) work using trace/0. Simply enter trace. in swipl's prompt, launch a query and press enter to do step-by-step go. Use notrace. to stop tracing. |
|
Nov 20 |
revised |
Working with lists in Prolog added 545 characters in body |
|
Nov 20 |
comment |
Working with lists in Prolog Ok, so the second one :-). |
|
Nov 20 |
answered | Working with lists in Prolog |
|
Nov 20 |
comment |
Working with lists in Prolog (BTW, you're overusing is. You need is to calculate sum and difference; it is not needed for simple assignments. |
|
Nov 20 |
comment |
Working with lists in Prolog Which one do you need to calculate: sum(max(A[i], B[i]) for i in 1..len(A)) or sum(max(A[i]-B[i], 0) for i in 1..len(A))? |
|
Nov 20 |
revised |
Working with lists in Prolog added 100 characters in body; edited tags |
|
Nov 20 |
comment |
C Programming: Preprocessor, macros as tokens Could you explain why? |
|
Nov 20 |
accepted | How do I simplify bash’s ‘eval “$TIME $BIN_FILE $BIN_OPTS &> $LOG_FILE”’ and keep it working? |
|
Nov 20 |
answered | How do I simplify bash’s ‘eval “$TIME $BIN_FILE $BIN_OPTS &> $LOG_FILE”’ and keep it working? |
|
Nov 19 |
comment |
std::string equivalent for data with NULL characters? Yes, I do (as long as the library is standards-compliant). C++ Standard, point 21.3.6.3: "If size() is nonzero, the member [data() const] returns a pointer to the initial element of an array whose first size() elements equal the corresponding elements of the string controlled by *this." |
|
Nov 18 |
revised |
How do I mark a method as Obsolete/Deprecated? - C# added 65 characters in body |
|
Nov 18 |
comment |
python multiprocessing db access is very slow. Try running your code under profiler. |
|
Nov 18 |
answered | python multiprocessing db access is very slow. |
|
Nov 18 |
revised |
python multiprocessing db access is very slow. Typography & tags |
|
Nov 4 |
comment |
Is it possible to find two numbers whose difference is minimum in O(n) time The question seems to be ill-defined. Do you mean that you want to find min {abs(t[i]-t[j]): i=/=j}? |
|
Nov 3 |
answered | Is it possible to find two numbers whose difference is minimum in O(n) time |
|
Nov 3 |
accepted | Ignore non-matching lines |
