11 Responses to Geektastic wall clock

  1. Nick Utschig on said:

    Log(55) is ambiguous – but if log base 10, the answer is ~1.7

    What they meant to use for 4pm is ln(55) ~= 4.007

    • if you’re a computer geek…let take those examples:

      $ perl -we 'print log(55)'
      4.00733318523247

      $ python
      >>> import math
      >>> math.log(55)
      4.0073331852324712

      $ php
      < ?php
      echo log(55);
      ?>
      4.0073331852325

      $ cat log55.c
      #!/usr/local/bin/tcc -run

      #include
      #include

      int
      main(void)
      {
      printf("%f\n", log(55));
      return 0;
      }

      $ ./log55.c
      4.007333

      CL-USER 1 > (log 55)
      4.0073333

      Those should be enough… :-P

  2. geekcook的产品?顶一个。抢占沙发,哦耶。

  3. g=10, dont get that one?

    • Sheng Jiang on said:

      g is the standard gravitational acceleration of a particle free falling on the earth, or 9.8 m/(s^2)

      • 9.80665 ~= 10. And no, I didn’t look up g to get those digits, and I don’t know the 0b notation.

        A “geek” would use trig functions in radians, degrees are for high school freshmen.

        If I really want to get picky, when is -5 o’clock?

        And though it’s been discussed, log(55) is approximately 1.7. The lazy design of computer programming languages does not get to change mathematical convention. There are so many things computers do wrong mathematically, start by looking for “machine epsilon”. So to do proof by “my computer says so” shows more ignorance than I’ve seen for a long, long time.

        • Anonymous on said:

          i think 0b is supposed to be in hexadecimal.

          • Ben Bradley on said:

            It’s surely SUPPOSED to be, but that doesn’t mean it IS. Interpretation of such a string is language dependent, but in C (ghod bless k&r) a numeric string that starts with 0 is interpreted as octal, thus it should be 013. The ‘b’ is the correct hexadecimal digit for decimal 11, but hexadecimal constants in C start with 0x, thus in C it should be 0xb to indicade 11 decimal in hexidecimal.

            Methinks this clock face could use some debugging. It once again reminds me never to buy Version x.0 of anything.

            And I’ll probably have to also never buy Version x.1 once manufacturers figure that out and start labeling new major releases as x.1.

  4. unigamer on said:

    I found this randomly after seeing this post:

    http://www.motifake.com/saveas.php?id=83159

    Similar design with a few changes.

  5. graphmastur on said:

    I don’t get 4:00 or 7:00.

    I think it was supposed to be LN(55) not log(55)

    I really don’t get 7:00.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

%d bloggers like this: