Jump to content

Doc

Members
  • Posts

    18
  • Joined

  • Last visited

Contact Methods

  • Website URL
    http://

Profile Information

  • Location
    Houston

Retained

  • Quark

Doc's Achievements

Quark

Quark (2/13)

10

Reputation

  1. Hey. You guys are doing nicely on these(much better than the guys on ls1.com). Here is your challenge, Good Luck. (~((char)0))^(~((short)0))^(~((long)0)) = ? on an x86 system?
  2. What about this thread on corral ? Give me the link.
  3. what's the value of ~(char)(!!9) ? Again, good luck.
  4. I believe the Planck constant is actually for distance. It is the distance scale at which the known laws of physics break down, and we can no longer describe the structure of space and time. The Planck Length is 0.0000000000000000000000000000000016 centimeters.
  5. I pity any man who feels secure in his knowledge of the universe because he is secured in perpetual ignorance. I give you an A for effort Zarkov.
  6. If your interested I will come up with some more. I can code better than you!
  7. Nearly sufficient. I was looking for some links on more technical aspects such as the functions of each neurotransmitter and such.
  8. Your very close. Nicey done. Here is the full soultion. (int) - casts an int void ***q = pointer to pointer to pointer to void. malloc(8) = pointer to 8 writable bytes. "*q=q" = set the first 4 of those bytes to point to themselves. Like if the bytes are at 0x11223344, the list of bytes will go 0x44,0x33,0x22,0x11,?,?,?,?. "*((long long *)*q)" = retrieve that pointer. Then cast is as a pointer to a long long, then derefrenced. At that point, q = *q, because we did *q=q So it's equivalent to "*((long long*)q)", and the "0x012345678abcdef;" stores that 64-bit hex value into the memory location. Those 8 bytes are set to 0xef,0xcd,0xab,0x78,0x56,0x34,0x12 or something to that effect. First Byte = 0xef, so *((char*)q) = (char)0xef 255=-1,255=-2,etc. 0xef=239 239=-16
  9. It is true aluminum traces were found in the brains of Alzheimers(sp?) patients. What I wonder is if it is from drinking coca cola or other substances out of a aluminum can.
  10. Doc

    Fafalone

    I have studied neurobiology and other subjects. Very interesting stuff.
  11. I am closer to the Pasadena area. Got the problem solved yet?
  12. Doc

    Fafalone

    impressive work Fafalone. May you continue to research these subjects and many more and have a life full of learning and enlightenment.
  13. Can you provide some documentation/links? I wouldn't mind reading about some of these studies.
  14. No the answer is not 42. Here let me break the first part of it down for you. Its cast has an int. (int) void ***q = pointer to pointer to pointer to void. malloc(8) = pointer to 8 writable bytes. "*q=q" = set the first 4 of those bytes to point to themselves. I hope that helped some.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.