Jump to content
Banner by ~ Ice Princess Silky

MrChampion

Blank Flank
  • Posts

    4
  • Joined

  • Last visited

Everything posted by MrChampion

  1. Banned because computers store data in multiple different ways. They do this with binary, which you may have heard before or at least seen before. Binary is a counting system where instead of the decimals 0,1,2,3,4,5,6,7,8, and 9, numbers are encoded with the digits 0,1. One of these, a 0 or 1, is called a bit. Now that that's done, onto integers and floating point numbers. Integers are pretty much just a series of bits, like this 11001101. Now, the technicalities of how binary numbers even relate to normal numbers will take some time, but it relates to how in decimal numbers, each digit is a multiple of a power of 10. That is, the "ones" digit is a multiple of 10^0 which is 1, the "tens" digit is a multiple of 10^1 which is 10, the "hundreds" digit is a multiple of 10^2 which is 100, then 10^3, 10^4, and so on. For binary, it's powers of 2 instead of 10. So the digits would be 2^0=1, 2^1=2, 2^2=4, 2^3=8, 2^4=16, and so on. The value of an integer in binary works much the same way as decimals do. I could explain this a lot more clearly, but I don't want to make this too long. I'm sure there are many videos on YouTube that can help with that if you need. But next is floating point numbers. These ones are easy if you know about scientific notation, because essentially that's all they are. The exponent on the power of 10 is recorded as an integer, and the value its multiplied by can be recorded as a integer(ignoring the decimal point). If you don't know what scientific notation is, then I'll have to explain it. Scientific notation is, simply put, just a very easy way to record and do calculations with really large and really small numbers. It basically works by representing the number as some decimal multiplied by a power of ten. So for example, 1.23*10^2 would be 1.23*100=123. So 1.23*10^2=123. This can be used to record really big numbers by using large powers of 10 like 10^23 or 10^74. This allows for many calculations to become much easier because it reduces the problem to multiplying two decimals and adding two integers. So for example, multiplying 1.521*10^3 and 3.711*10^2 just becomes (1.521*3.711) * 10^(3+2) which is ~5.644*10^5. As for floating point numbers, they're stored this exact way, except with integers for both the significand(the part that's multiplied by power of 10) and the exponent. So, I just realized he also mentioned fixed point numbers, so I'm gonna briefly go over that. Basically, fixed point numbers are numbers where the power of 10 is fixed in place(hence the name "fixed point"). Meaning that no operation actually changes that. However, any operation which needs to change that value(in order to, say, record 1/3=0.33333...) is simply rounded off at the fixed point. Also, there's strings, which are just sets(or more technically, arrays) of characters represented as integers. Basically they're just sets of text like what you're reading now. If you're confused about any of this, I recommend going to youtube and watching some videos on different data types. Their animations will probably be a lot easier to understand than my wall of text Okay, that was alot. But now onto what CypherHoof said. What he was talking about was fixed point point numbers and floating point numbers. What he is saying about them is that in those types of variables, no decimal point is actually stored, only the significand and the exponent. The only variable that actually stores a decimal point is a string. The joke here is that the only data type which actually stores a decimal point is a string, which can literally store a "." in it. Now, to those who know a lot about this, I know I probably left out some things, or didn't go over certain topics that well. But in my defense, I could've done A LOT more than this if I were to fully explain this, but I decided to restrict myself to avoid making this too long.
  2. From what I've heard, that won't mean anything. Youtube only implemented that feature as a minimum requirement for the contract. But they decided to also use AI to autodetect kids content and label it as such. This makes the option for content creators to label their videos themselves useless since AI could label it as kids content regardless of how you labelled it.
  3. No need to worry, I'm on it. I'm in school right now so I can't work on it full time, but I'll be sure to keep trying things until I find a lot more. That earth image is probably something that happened in the past. I hope this thread/topic isn't dead yet, I don't think I can do this on my own
  4. "They" are likely the soviet government. "They" are watching her likely because of something related to the space race of the late 1900's.
  5. Not sure if this is still active, or if anyone has answered this yet, but it seems as though the first set of text is Base64. A common method used to make any set of text seem like mumbo jumbo, particularily by those who are trying to hide stuff like this. However, the decrypted text doesn't give me much of an answer, here it is " 0 1 1▐0 compare 1 0 1 0 /w 1 1 1 1 unex▐4(4(|4(4)▐9p358dh/AADKIPQJgVDRGQxUMDoUtWFZa?dl=0█moon_l 1 0 0 _??? " This may seem like nothing, but that's because I evaluated the text between the "▐" individually. But if I remove the "▐", I get something much more interesting... 0 1 1 0 compare 1 0 1 0 /w 1 1 1 1 unexpected 1 0 1 1 values_??? sh/7qjawe3q9p358dh/AADKIPQJgVDRGQxUMDoUtWFZa?dl=0& 1 0 0 _??? It seems to me like it's a puzzle, and the "_???" are the answers. But it also seems like the second last line is another thing entirely. And no, the second last line doesn't bring anything up when put through a Base64 decoder. I have a few theories, first, the bits shown in the other lines are supposed to be replaced by something involving the second part. For example, in the first line, for the first part, "0 1 1 0", I think it's associated in some way to the second part, "compare". "/w" could be referring to the common theme in programming for special characters(like the space, newline, tab, even backspace) to be depicted in a string by using "\" beside some letter. Although, this could instead be a forward slash instead of a backslash. The 3rd and 4th lines don't really add up to this theory. So, I'm kinda stuck on this one. So, if anyone has any idea as to what this might mean, please respond
×
×
  • Create New...