444

Discussion in 'Random Thoughts' started by Meagain, Jun 26, 2014.

  1. WOLF ANGEL

    WOLF ANGEL Senior Member - A Fool on the Hill Lifetime Supporter

    Messages:
    7,049
    Likes Received:
    878
    Seems somewhat like a Jedi message - in that have the 4's with you ;)
     
  2. neodude1212

    neodude1212 Senior Member

    Messages:
    11,724
    Likes Received:
    120
    what does this even mean
     
  3. AceK

    AceK Scientia Potentia Est

    Messages:
    7,822
    Likes Received:
    962
    666 in binary is 1010011010 ... Does anyone know of the significance of the number 666 in cryptography, or long strings of repeating 6s?
     
  4. Moonglow181

    Moonglow181 Lifetime Supporter Lifetime Supporter

    Messages:
    16,175
    Likes Received:
    4,938
    No, I don't know....How did you figure out the binary for 666?
     
  5. neodude1212

    neodude1212 Senior Member

    Messages:
    11,724
    Likes Received:
    120
    Our normal number system is base-10 (meaning there are 10 possible digits, 0-9), binary is base-2 (meaning there are 2 possible digits, 0-1), so to convert you just take 2 raised to whatever power you need to construct the base-10 number you want.
    Each binary digit has a place-holder value similarly like our number system.
    For instance 444 is 400+40+4, the left-most digit being the hundreds place, then the tens, then the ones.
    Binary is the same, except instead of using powers of 10 you use powers of 2 (because only 2 digits are possible, 1 or 0)

    So for example, the number 12 in binary is

    1100

    you can read this also as

    (1)(2^3) + (1)(2^2) + (0)(2^1) + (0)(2^0)

    8 + 4 + 0 + 0

    12

    As you can see you need far more places in binary than in decimal, becaue 2^n power yields less possibilities than 10^n power (except when n=0)
     
  6. AceK

    AceK Scientia Potentia Est

    Messages:
    7,822
    Likes Received:
    962
    Kcalc Is handy to decimal to binary. Much easier to convert between binary and hexadecimal / octal (base 16 and base 8 respectively) tho since their radix/bases are also powers of two themselves ... And these bases, especially hexadecimal are MUCH more commonly used to represent binary values than base-2 itself. Also much easier to tell the size in bytes that u need to store said integer

    Windows calculator also converts number systems... U have to switch to "programmer" mode

    Memory addresses are usually 64bit numbers or 32bit numbers depending on which processor you use. A regular "int" is almost always 32 bits (4 bytes) on modern PC processors and "long" is 64 bits (8 bytes). On certain processors, most notably niche embedded processors the size of types may be (is) different. However, any pointer arithmetic is adjusted by a factor of sizeof(type) by C compilers so will be mostly portable, at least in C but in assembly I can only imagine how tedious things can get. So to store a number of certain length the variable must be of a type with sufficient allocated length in memory to store it or else the value will overflow when it goes out of bounds, and the value will be corrupted. this is because memory is allocated at the byte level and not bit-level. It is impossible to declare a pointer referencing just one single bit.
     
  7. Gyro Gearloose

    Gyro Gearloose Senior Member

    Messages:
    3,980
    Likes Received:
    244
    Hello,

    you can follow neodude's schema or simply use a pocket calculator ;). Maybe not the ones in the 2 dollar range, but the ones in the 10 dollar range should do at least bin and hex calculations. On the other hand, if you understand the scheme it's fun doing it in your head while the other kids still struggle with the pocket calculator ;).

    Regards
    Gyro
     
  8. AceK

    AceK Scientia Potentia Est

    Messages:
    7,822
    Likes Received:
    962
    I have a binary wall clock that each hour is represented as one half-byte ... A good reference kinda ;)
     
  9. MeatyMushroom

    MeatyMushroom Juggle Tings Proppuh

    Messages:
    2,489
    Likes Received:
    193
    I've had a lot of 444's recently..

    As far as the validity of numerology and all that other crazy stuff, it can't really be proven.. but there is an astounding synchronicity when you play in time with the music of nature. The beauty of it is that it doesn't mean much if you don't want it to, but it's a nice way to humour yourself.
    Swing between the beat, that's where the funk lives - but ya gotta hit the 1! Huh!

    http://youtu.be/UB0xTEi1YyE
     
  10. Piaf

    Piaf Senior Member

    Messages:
    272
    Likes Received:
    1
    Yeah, and most people went to high school.
     
  11. Gyro Gearloose

    Gyro Gearloose Senior Member

    Messages:
    3,980
    Likes Received:
    244
    Hello,

    that seems to be the trend, at least in this country.

    Regards
    Gyro
     
  12. MeAgain

    MeAgain Dazed & Confused Lifetime Supporter Super Moderator

    Messages:
    21,441
    Likes Received:
    15,763
    6 is the perfect number as 1+2+3 = 6 and 1x2x3 also equals 6.
    6 is the number of creation, three 6s is the active role of 6 as 3 is the first active number.

    666 is active material creation as shown by the sun in nature, the emperor in society, and the will in the individual.

    666 is positive and male as opposed to receptive and female. If abused it becomes tyrannical and therefore must always be balanced by the female 1080 lunar influence.

    666 + 1080 = 1746 the mustard seed of fertility, or number of fusion.


    6.666 miles is the circumference of the circle that contains the square of the ground plan of The New Jerusalem defined by St. John.

    666 is yang, 1080 is yin, Plato's Same and the Other.

    There is tons more all found within City of Revelation by John Mitchell.
     
  13. AmericanTerrorist

    AmericanTerrorist Bliss

    Messages:
    6,090
    Likes Received:
    140
    I woke up at 4:44 this a.m.- took notice of it and thought of this thread.
     
  14. MeAgain

    MeAgain Dazed & Confused Lifetime Supporter Super Moderator

    Messages:
    21,441
    Likes Received:
    15,763
    Welcome to the club!
     
  15. themnax

    themnax Senior Member

    Messages:
    27,693
    Likes Received:
    4,510
    ooooo gooody. i heard the news today, oh boy, about a lucky man who made the grade, ...

    i believe there was a new york central steam locomotive number 999 that set some kind of world speed record for the time, back in 18xx something or other.
     
  16. Moonglow181

    Moonglow181 Lifetime Supporter Lifetime Supporter

    Messages:
    16,175
    Likes Received:
    4,938
    Thank you to those who tried to explain binary to me here, but it was like hearing Chinese to me . I have no idea what you mean....I guess i could google and study, if I really want to.....and thanks again.... :)
     
  17. themnax

    themnax Senior Member

    Messages:
    27,693
    Likes Received:
    4,510
    numbers are like words in that people seem to like to play mind game with them.
     
    1 person likes this.
  18. MeAgain

    MeAgain Dazed & Confused Lifetime Supporter Super Moderator

    Messages:
    21,441
    Likes Received:
    15,763
    So I woke up again at 5:55........
     
  19. MeAgain

    MeAgain Dazed & Confused Lifetime Supporter Super Moderator

    Messages:
    21,441
    Likes Received:
    15,763
    Woke up at 5:55 again today.....
     
  20. MeAgain

    MeAgain Dazed & Confused Lifetime Supporter Super Moderator

    Messages:
    21,441
    Likes Received:
    15,763
    5:55 again.....
     
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice