guilloche | 12 years ago | on: China’s Tencent is giving away 10TB worth of free cloud storage
guilloche's comments
guilloche | 12 years ago | on: Cello: Higher level programming in C
I am not a fan for C++ syntax, can I still get something from cello?
guilloche | 12 years ago | on: You Should Write Ugly Code
We want clean and simple code, not anything with convoluted patterns.
guilloche | 13 years ago | on: Making UEFI Secure Boot Work With Open Platforms
guilloche | 13 years ago | on: Microsoft is killing Linux shops with Secure Boot
guilloche | 13 years ago | on: Microsoft is killing Linux shops with Secure Boot
Secure boot is evil until we can provide our own key. Even if GNU keys are permitted, it is still bad enough.
guilloche | 13 years ago | on: Why I am building a product with a tiny market
I developed torapp guilloche designer (http://www.torapp.info) for security printing industry, which is definitely a tiny market. But it did not mean less competition, and it is in fact much more complicated than a regular graphic editor like adobe illustrator and coreldraw.
Besides regular editing facilities in AI or coreldraw, I spent tremendous effort to handle all possible math formulas/curves as comupter algebraic system (CAS).
I would recommend people to pursue as big market as possible.
guilloche | 13 years ago | on: AICTE Mandates Microsoft Office 365 In Indian Educational Institutions
guilloche | 13 years ago | on: New lithium-ion battery design – 2,000x more powerful, recharges 1,000x faster
Discharging fast make it more possible to catch fire.
Overall, it seems not very useful for smartphones.
guilloche | 13 years ago | on: PostgreSQL as Schemaless Database [pdf]
But I have one more question, if I need to manage bank account, then the database must be consistent. Lets say that I just need to keep balance and social security number for the account, and only need to query the balance. Can No-SQL like redis have better performance than relational database? (assume same on logs and transactions).
guilloche | 13 years ago | on: PostgreSQL as Schemaless Database [pdf]
If the data is well structured and no join is needed, can I assume that relational database should have better performance than no-SQL?
guilloche | 13 years ago | on: Why Asm.js Bothers Me
If we need c/c++=>llvm=>javascript/asm.js for performance reasons, then why not just embed llvm inside web brosers? Isn't it much easier, and much cleaner?
guilloche | 13 years ago | on: Exceptions for control flow considered perfectly acceptable
ex. Lets assume that a problem can be attacked as algorithm1 (A1), and algorithm2 (A2). A1 is fast but cannot handle some corner cases while A2 is slow and can handle all cases. we also assume that there is no easy way to tell whether A1 is good or not without invoking A1.
So the function can be implemented as:
void A()
{
try {
A1();
}
catch (e) {
A2();
}
}void A1()
{
.....
if(corner case) raise();
.....
}Is there a simple way to avoid using eceptions here?
guilloche | 13 years ago | on: Torvalds clarifies Linux's Windows 8 Secure Boot position
guilloche | 13 years ago | on: Let's all use webkit (The IE10 benchmarks say not so fast)
guilloche | 13 years ago | on: Python vs. Node vs. PyPy benchmarks
guilloche | 13 years ago | on: C++ containers that save memory and time
guilloche | 13 years ago | on: C++ containers that save memory and time
The performance gain on the B-tree container is also largely depends on the size of value. So choose this one carefully.
guilloche | 13 years ago | on: Booting Linux using UEFI can brick Samsung laptops
guilloche | 13 years ago | on: Booting Linux using UEFI can brick Samsung laptops