Malkocoglu
|
Registered User
|
I'm Malkocoglu, and you're not ! C/C++ :: rocks, (void *) makes it the king. Python :: good for hi-level, the GIL sucks. Java :: mediocre stuff, not very cool. C# :: mediocre stuff, same as java. ASM :: X86 is my ex, ARM is cool. |
|
Nov 25 |
comment |
DNS answer returning NS records without IP addresses , is this normal ? @caf: Thank you, I will add this option. If the customer knows about SMTP, they will set this option as they will. Otherwise, I will behave the other way around. I fixed this MX-DNS thing, but it takes several (5-6) rounds to get the needed information... |
|
Nov 18 |
comment |
List of multicore embedded CPUs This is very good news, really... |
|
Nov 18 |
comment |
List of multicore embedded CPUs Well, Atom is good but it lacks any of the internal peripherals like USB, Ethernet, RTC, InternalFlash, InternalRAM (not cache), ADC, DAC, I2C, I2S, SPI, UART, SDIO, SD/MMC, PWM, Timer, WatchDog, Capture, Compare, CAN... |
|
Nov 17 |
comment |
Measure CPU / RAM usage of a program It has been harsh on VTune. It is not suitable for this kind of task but it is not "top" either... |
|
Nov 17 |
comment |
List of multicore embedded CPUs I did not know Thread-core existed since 70's. Must be some IBM chip I think... |
|
Nov 17 |
comment |
List of multicore embedded CPUs XMOS XS1 CPU has lots of instructions, even CRC32 instruction !?! |
|
Nov 17 |
comment |
List of multicore embedded CPUs It was recently announced (en.wikipedia.org/wiki/OMAP#OMAP4). I must add that ARM is a very good architecture. x86 seems very primitive compared to ARM instruction set. I do not know much about Ubicom but its 12-thread (!?) architecture (HT-like maybe) is interesting... |
|
Nov 17 |
revised |
List of multicore embedded CPUs added 125 characters in body |
|
Nov 17 |
answered | List of multicore embedded CPUs |
|
Nov 17 |
comment |
Illegal instruction in ASM: lock cmpxchg dest, src Why don't you just use a futex ? (en.wikipedia.org/wiki/Futex) With just 6 hours assembly, you can not guarantee that this code will work without a glitch on every processor out there. See timetobleed.com/mysql-doesnt-always-suck-this-tim… |
|
Nov 16 |
comment |
What tool can catch buffer overflows in C? I have not heard of cppcheck before. Oldest release was on 2007, so it is relatively new. Especially when compared to PC-Lint... |
|
Nov 16 |
comment |
Good tools to understand / reverse engineer a top layer network protocol If the encryption scheme is SSL/TLS then you may use crypto.stanford.edu/~eujin/sslsniffer/… to analyse the packets on the wire. If it is some home-grown encryption, you are out of lock... |
|
Nov 16 |
comment |
Why “not all control paths return a value” is warning and not an error? @Jeremy Friesner: You can also look at the link I have written Jonathan about... |
|
Nov 15 |
answered | What tool can catch buffer overflows in C? |
|
Nov 14 |
comment |
Why “not all control paths return a value” is warning and not an error? We are not safe even with hardware (True, they say) RNG systems. lightbluetouchpaper.org/2009/09/… |
|
Nov 14 |
comment |
Why “not all control paths return a value” is warning and not an error? @Shailesh: Unfortunately, it is very hard to have properly generated random numbers (springerlink.com/content/kkpghbg30r1xce4m/…). I also remember some cryptographer attacking the Intel hardware RNG on their chipsets by using some other hardware on that chip (maybe the sound card, i do not remember) so that he can keep the temperature of that area high enough that the RNG produced little entropy (as it relied on thermal noise)... |
|
Nov 14 |
comment |
Why “not all control paths return a value” is warning and not an error? @Shailesh: I am not a fan of uninitialized data structures. I just remembered that, there was an occasion some programmers relied on this thing... |
|
Nov 14 |
comment |
Why “not all control paths return a value” is warning and not an error? It was mistaken for a bug and caused big problem... |
|
Nov 14 |
comment |
Why “not all control paths return a value” is warning and not an error? @Jonathan Leffler: blogs.fsfe.org/tonnerre/archives/24 |
|
Nov 14 |
revised |
Why “not all control paths return a value” is warning and not an error? added 27 characters in body |
|
Nov 14 |
answered | Why “not all control paths return a value” is warning and not an error? |
|
Nov 12 |
comment |
DNS answer returning NS records without IP addresses , is this normal ? It would be too much config for the end-user. They are not IT guys, they may have an e-mail but no knowledge of DNS :-) I will use either the DNS from the DHCP or RootZone/Verizone DNS server to begin my loop and hope to reach the MX at the end... |
|
Nov 12 |
comment |
DNS answer returning NS records without IP addresses , is this normal ? I tried the same query with 192.33.14.30 (IANA RootZone , should be more reliable/neutral than verizone) but unfortunately it does not recurse. It just returns some NS records :-( |
|
Nov 12 |
comment |
DNS answer returning NS records without IP addresses , is this normal ? @tinkertim: I think the problem is the RecursionAvailable flag. I send the DNS query by RecursionDesired=1, this can not force the DNS server to recurse. When the DNS server does the Recursion, it does all the dirty work that I have described above. I think the DNS I got from the DHCP does not do that :-) |
|
Nov 12 |
revised |
DNS answer returning NS records without IP addresses , is this normal ? added 52 characters in body |
|
Nov 12 |
comment |
DNS answer returning NS records without IP addresses , is this normal ? @tinkertim: I sent the DNS query to 4.2.2.1 and it returned the MX record (not the IP but that is not a problem) in the first loop. I think they are all Verizon DNS servers. Can I trust them no matter what ? Isn't it a problem to hardcode one of them in the executable ? |
|
Nov 12 |
comment |
DNS answer returning NS records without IP addresses , is this normal ? @Heath: Thanks for this info... |
|
Nov 12 |
comment |
DNS answer returning NS records without IP addresses , is this normal ? Well, but I can find a valid/working MX after looping 3 times. In fact, I can rarely get the MX answer on the first try. Don't think of hotmail/gmail e-mail addresses. Think of an e-mail like somebody@somesmallcompany.com.md (Moldova) for example... |
|
Nov 12 |
asked | DNS answer returning NS records without IP addresses , is this normal ? |
|
Nov 10 |
awarded |
● |
|
Nov 9 |
comment |
How to create a system with 1500 servers that deliver results instantaneously? Damn, I am moving to Denmark in the cargo bay of next oil tanker :-) |
|
Nov 7 |
answered | Fastest file access/storage? |
|
Nov 6 |
comment |
Mysterious pointer-related multithreading slowdown How do you share the data between the threads ? |
|
Nov 6 |
revised |
How can I test the performance of a C function? added 228 characters in body; added 2 characters in body |
|
Nov 6 |
answered | How can I test the performance of a C function? |
|
Nov 6 |
comment |
How to create a system with 1500 servers that deliver results instantaneously? sdtom is just saying that a program (that runs 1 second/day) and its related data is not kept in memory whole-time by the OS. Just open some program like IE, minimize it, do not touch it for a while, do other stuff, then activate IE window. This will take some time and you will see some disk activity. This means the OS has reclaimed the memory (code+data) that it has given to IE after certain amount of inactivity... |
|
Nov 6 |
comment |
What’s the best way to implement an ‘enum’ in Python? I like this solution; short, simple; just like the C enum... |
|
Nov 6 |
comment |
Private Network (as in IPv4) question @Michael Dillon: This is the first time I hear this "Martian Traffic". I think this is caused by low-quality adsl-modems. No big network admin would do such mistake, right ? |
|
Nov 6 |
comment |
Private Network (as in IPv4) question Although answers that suggest measuring latency are very promising; for this particular system, it is not feasible (very low-end embedded system barely functioning). Thank you for your answers... |
|
Nov 6 |
comment |
Private Network (as in IPv4) question Thank you, using subnet_mask looks better... |
|
Nov 6 |
comment |
Private Network (as in IPv4) question Thanks for the extra info... |
|
Nov 6 |
asked | Private Network (as in IPv4) question |
|
Nov 5 |
revised |
NULL definition problem on 64 bit system added 33 characters in body |
|
Nov 5 |
revised |
NULL definition problem on 64 bit system added 1095 characters in body |
|
Nov 5 |
revised |
NULL definition problem on 64 bit system added 3 characters in body |
|
Nov 5 |
revised |
NULL definition problem on 64 bit system added 1771 characters in body |
|
Nov 4 |
revised |
NULL definition problem on 64 bit system deleted 8 characters in body |
|
Nov 4 |
answered | NULL definition problem on 64 bit system |
|
Oct 27 |
awarded | ● Student |
|
Oct 27 |
answered | Why are pointers not located on a stack? |
