Jacobi's comments

Jacobi | 13 years ago | on: The Mathematical Hacker

I think that it can be implemented in constant time for floating point numbers. For integers I know that the exponentiation by squaring takes O(log(n))

Jacobi | 13 years ago | on: The Mathematical Hacker

There are plenty. The analysis of basic algorithms involve math (e.g. QuickSort, binary search, etc). Programming a user friendly website can involve advanced mathematics, for example you want to recommend to your users a product that might interest them (Collaborative Filtering)

Jacobi | 13 years ago | on: I'm Not Japanese

For me sometimes it switches to Arabic even if I set the settings. And here in north Africa most people are francophone and prefer French or English !

Jacobi | 13 years ago | on: Parser combinator library in C

I appreciate the OP's efforts, certainly sharing code is a good thing. And one of the benefits of the sharing is to get a lot of feedback. Criticizing implementation details is important to spot, discuss and hopefully fix potential problems.

Jacobi | 13 years ago | on: Parser combinator library in C

I don't know why it uses a garbage collector when simple reference counting would suffice. Also I hate libraries with global states/variables like this one ...

Jacobi | 13 years ago | on: Dependency Inversion in C Using Function Pointers

The article describes an implementation of the observer pattern in C ... It's well known and used in many open source C projects. But I'm not sure that replacing simple tangled dependencies in the Linux kernel by using function pointers is a good idea. Because you may introduce an overhead in some performance critical code. And you may lose the locality of reference when abusing function pointers.

Jacobi | 13 years ago | on: Microsoft.com New Design Preview

I do agree with you : mono is a subset of .NET, Cross platform compatibility is not the main reason for using Mono. I really like the C# and the .NET ecosystem. I use a native UI for each platform, but the core code is the same. I'm not a big fan of those generic UI toolkit ...
page 1