23243565? ago

I'm having trouble spotting the grille cypher pattern. Can someone explain?

23239847? ago

You cultists are actually the most retarded people on the planet holy shit

23239412? ago

Comey’s penance?

Side work to save face?

Or just a kayak trip

23237859? ago

This submission was linked from this anonymous v/QRV comment.

Posted automatically (#102043) by the SearchVoat.co Cross-Link Bot. You can suppress these notifications by appending a forward-slash(/) to your Voat link. More information here.

23235972? ago

If he did, shows just how dumb this plan is. Let Corney stay free to call for a hit on a civilian? Cool plan, Q. Gotta get more evidence? Thought you had it all? How many more lives have to be lost before this fucking ends???

23235683? ago

This submission was linked from this anonymous v/QRV submission.

Posted automatically (#102008) by the SearchVoat.co Cross-Link Bot. You can suppress these notifications by appending a forward-slash(/) to your Voat link. More information here.

23235460? ago

I wrote some code to help with this (Digits here). I'll copy it below. I should really put it on a site to make it easier but then of course it'd be easier to attack. This way, you can run it locally. Run it like:

perl find-word.pl maeve fahey kennedy townsend gideon mckean

and it'll give this output:

Searching ["Our national identity is being remade in real time. What had once seemed a bitter and divided society now seems more like a nation of people finding creative ways to show up for one another." - @nytdavidbrooks]

Searching for [maeve]: found.

Searching for [fahey]: found.

Searching for [kennedy]: found.

Searching for [townsend]: found.

Searching for [gideon]: found.

Searching for [mckean]: found.

Returning [1] ALL FOUND

I put Comey's tweet in as the default text; you can change the text to search by adding "--text='the text to search'".

Note that I didn't code anything to do with the grille cipher; I'm just helping the search for word(s) within a larger text, each word of which might be broken up.

The search matches regardless of whether the letter is capitalized or not.

Code is below, in a "code" block so hopefully it's copy/paste-able (verified during preview; this should work).

#!/usr/bin/perl
=head1 find-word.pl

This script will search text for specified words; the words might be broken up.

Author: unknown :)
Date: 2020-04-04 Sat 11:27

=cut


=head2 ALWAYS USE STRICT AND WARNINGS
=cut
use strict;
use warnings;


=head2 MODULES USED FROM CPAN
=cut
use Getopt::Long;


=head2 MODULES WRITTEN IN-HOUSE
=cut


=head2 VARIABLE DECLARATIONS
=cut
my $verbose = 0;     # invoke with "--verbose" to turn on more output.
my @words;           # word(s) to search for, might be broken up.
my $comey = "\"Our national identity is being remade in real time.  What had once seemed a bitter and divided society now seems more like a nation of people finding creative ways to show up for one another.\" - \@nytdavidbrooks";
my $string = $comey; # string to search within.


=head2 SUBROUTINE DECLARATIONS
=cut
sub main();


=head2 MAIN FUNCTION

Note that we first call setup_aspect_log(), and THEN exit main() -- previously I had the call to setup_aspect_log() inside the
main() sub, so it wasn't showing "Entering" and "Leaving" main(); now it will.

=cut
exit main();


=head2 SUBROUTINE DEFINITIONS
=cut
=head2 main

Main routine, which will try to find a word in another string.  Exits with errorlevel 0 if found, 1 otherwise.

=cut
sub main() {
  # Return code; default to failure.
  my $rc = -1;

  # First, validate our options.
  GetOptions( "verbose"  => \$verbose,
              "word=s"   => \@words,
              "string=s" => \$string,
            ) or die "Error in command line arguments.\n";
  # Any remaining bare args should go into @words.
  push @words, @ARGV;
  
  # Check that we have a word and string passed in.
  if ( scalar @words == 0 or !defined $string ) {
    die "Error: must define both 'word' and 'string'.";
  }

  # Get the results, and display them (in the subroutine).
  my $found = find_words_in_string( $string, @words );
  return $found ? 0 : 1; # errorlevel is basically reverse of the truth :)
}


=head2 find_word_in_string

Given a string and one or more words, see if each word is in the string.

Returns true if all were found, false if not.

=cut
sub find_words_in_string($@) {
  my ($string, @words) = @_;

  print "Searching [$string]\n";
  my $rc = 0; # default to failure
  # Planning this out, I think I can do this with a regex.  Just add ".*" between each character of $word, then search.
  # Wrap that in a loop for each word, and we're good.
  my $prev_found = 1; # initially success
  foreach my $w ( @words ) {
    my @word = split //, $w;
    my $search = join ".*", @word;
    my $is_in = $string =~ /$search/i;
    print "  Searching for [$w]: " . ($is_in ? "" : "NOT ") . "found.\n";
    if ( $prev_found ) {
        if ( $is_in ) {
            $rc = 1;
        } else {
          $rc = $prev_found = 0; # will return failure; however, continue searching for other words.
        }
    }
  }
  print "Returning [$rc] " . ($rc ? "ALL FOUND" : "NOT all found") . ".\n";
  return $rc;
}

23235686? ago

This comment was linked from this anonymous v/QRV submission.

Posted automatically (#102010) by the SearchVoat.co Cross-Link Bot. You can suppress these notifications by appending a forward-slash(/) to your Voat link. More information here.

23235667? ago

I turned this into a post, over here: https://voat.co/v/QRV/3745761

23233963? ago

I think this has something to do with Vaccines. Maeve Kennedy McKean was the Executive Director of Georgetown University’s Global Health Initiatives, and RJK, Jr. is a well-known opponent of vaccines.

23234049? ago

and RFK Jr in recent months has helped take the FCC to court over lack of updated safety standards addressing 5G.

23233392? ago

That's some next level autism.

23233163? ago

Never seen so many negative reactions on VOAT.

That's also no coincidence.

23233388? ago

The shills absolutely HATE decodes. The jump all over every single one of them. They really do NOT want us decoding anything.

23235180? ago

Dude, these "decodes" are exactly the kind of shit that end up on r/Qult_headquarters and shown to their Facebook friend to show how dumb the Q people are. Legit or not, not even veteran patriots could understand it.

Y'all really need to lean what "optics" means.

23232983? ago

Someone is reaching...

23233836? ago

Putting together clues forming theories is all about reaching. How can you expose the truth without reaching? Stfu with this "reaching" bullshit, if you aren't reaching for knowledge outside of the mainstream you will stay ignorant and in the dark.

23238134? ago

Not everything is a conspiracy. It's ok to remove the tin foil hat once every now and then.

23248335? ago

You’ve forgotten where you are.

23233640? ago

It's Spycraft 101.

23232854? ago

I FOUND ANOTHER CODED MESSAGE!!!

https://files.catbox.moe/r1b1hz.png

23248321? ago

You’ve nailed it. Finally a “Q proof” with validity.

23232799? ago

So what are the chances the letters would be in order? If they were unscrambling the names to form them I'd say bullshit. This is a bit different. Good old Corney.

23233504? ago

Bible Code all over again https://en.wikipedia.org/wiki/Bible_code

Is it a sort of public key and private key. How do you get the grille to the assassin? Dead letter drop? Sign in the window, grille behind the telephone box.

Enemy of the State on the Staten Island ferry https://en.wikipedia.org/wiki/Enemy_of_the_State_(film)

Not the clips I was looking for but...https://www.youtube.com/watch?v=R90vWtcHLlE

23232694? ago

For fuck's sake! Just when we lose SB2 and things are looking up, we get TwitterCypherFag.

23232692? ago

For kicks, I decided to use the tweet to find other names. I gave up after failing to find either Michael or Jordan.

23232640? ago

It’s not even a coincidence. It’s nothing. It’s a pile of crap. It’s perfect fodder for a Qtard.

23232620? ago

For the love of God, people, it is one single tweet with 6 different names. It's. The. Same. Tweet. Stop responding with 'muh 6 different tweets' faggotry. All of those names appear in one single tweet.

23236974? ago

Yes, it’s one tweet. But isn’t that what makes this seem improbable? To find a coherent word combination that precisely fits 6 pre-established grid templates would be almost impossible. Also, specifically identifying which grandkid to target is oddly specific. It would make more sense for him to send code that’s says “send so-and-so a message”.

23233580? ago

Exactly. I swear people jump to discredit before even diving into this.

23234409? ago

"people" but yeah!

23232611? ago

Maybe the white hats have put them into protection - JFKjr style!

23232595? ago

I still want to know why that one particular kid was targeted out of the 3 they have. Assuming this was a hit...

23232534? ago

Drink Your Ovaltine

23232519? ago

Interesting. But why?

Just because he is a Kennedy?

23233947? ago

I think it has to do with vaccines. She was the Executive Director of Georgetown University’s Global Health Initiatives, and RFK, Jr. is a well-known opponent of vaccines.

23232372? ago

This would also implicate David Brooks right?

23232141? ago

I just learned something new today.

23236585? ago

Perhaps they use a different pattern for each day of the week.

23233096? ago

It's different patterns on the same single tweet.

23232466? ago

grid cyphers can have multiple masks especially with digital technology

hundreds if not thousands of them

23232666? ago

Maybe the playlists and book lists they all put out from time to time contain certain pages used as a grille cypher. These people have had a lifetime of experience learning and using this stuff.

23233615? ago

This might partly explain the Gematria. Story has 33 or 322 blatantly in it, it means use grid 33.

Or 33 322 means "message here" and the gematria of the headline words in inverted commas gives the grid number.

Or 33 322 666 or other numbers mean there is a physical drop at a particular place.

Why all the effort? Why not just pick up the phone?

The umbrella links three hops (probably unlimited hops). People don't want to get caught for murder or worse.

23232421? ago

That's how you know it's bs

23232254? ago

multiple copies/patterns used in a particular way

Numbers stations stuff, could be #5 grill because it was posted at 4:05.

23232104? ago

That is a really big, and ginormous stretch. You need to take a break and get out of your head for a while.

23232304? ago

look anons, boilerplate gaslighting !!

23232100? ago

I can find any 6 tweets as well and make any message out of the letters co trained within those 6 tweets. So what

23244245? ago

Can you? Show me.

23233635? ago

Stupid boomer, it's 1 tweet.

23235955? ago

Stupid Qtard, Corney still free and calling for hits. Some plan.

23236830? ago

Says the boomer with only surface level knowledge of what the fuck is actually going on....

23238663? ago

Says the moron believing what he reads on an anonymous website. Cool story bro

23238676? ago

Never said I believed it, I was just pointing out your retarded inaccuracy.

23233370? ago

DUMBy - learn to count.

23232243? ago

It's one tweet containing all the letters for a few relevant words, in the right sequence, shortly before the event, from a former FBI director. Probably happenstance, I have to imagine better communication methods exist for stuff like this, but it's more than just rearranging the letters in 6 random tweets to make words.

23233570? ago

What communication methods? With the NSA tapping every decide they have, and remember FISA works both ways, how can they comm?

Xbox live and Gmail drafts?

23232188? ago

Not sure if you're shilling or if it's an honest mistake, but there is only one single tweet in OP's image, not six different tweets. I don't know how to calculate the odds of all six names appearing sequentially within the same tweet, but if you or anyone else can provide an example of another random tweet with a similar letter count, within a similar time window of their disappearance/death, where all six names appear sequentially, that would be strong evidence that this is just a random occurrence.

23233881? ago

But the Anon went through the same tweet SIX times. This is not what I would call sequential.

23232268? ago

sequentially

this ^

My theory >> Comey did call in a hit. White Hats deciphered it immediately ( may have posted this proof?? ) and notified Kennedy's who took evasive action. Comey knows they are not dead, he can rationalize they would not 'chase a ball into the Chesapeake Bay in a canoe' on the day of a wet op.

Comey is exposed. This may very well be a demonstration of why Jr. faked his death and how.

Something big is coming. This is way too SCRIPTED.

23233822? ago

Its not sequential at least not the exact ordering thats in the article posted. Interesting indeed.

Also grill ciphers are a nice and simple way to avoid a lot of the mathematical type decoding possible on other types of cryptography.

I read two books on this crap a while back. Ceasar ciphers and grill ciphers are always listed at beginnings of the books, introductory stuff. Grill ciphers in particular always stood out to me as something that would be useful to (((them))) in our text based world.

Its possible. I do get the intuition those kennedys are safe somewhere probably playing arcade games or pinball machines.

23233849? ago

Its possible. I do get the intuition those kennedys are safe somewhere probably playing arcade games or pinball machines.

So do I and I just posted about it:

https://voat.co/v/QRV/3745499

The post is currently under heavy forum sliding attack.

23233913? ago

Godamnit now you have me in wannabe cryptotologist mode....

One name per tweet, in each post. The more you look at it the more it seems plausible lol

23232662? ago

You assholes discredit yourselves with your insanity. Then, when it is pointed out what assholes you are you accuse the intelligent people of being shills. You are totally fucked up, beyond help.

23233548? ago

Thank you for playing.

23232679? ago

your unwarranted hostility exposes you, faggot

23234356? ago

kek, you really triggered that thing!

23233549? ago

LOL. And .... your unwarranted hostility exposes you, you faggot cocksucking POS.

23232328? ago

a demonstration of why Jr. faked his death

what?

23232444? ago

sure:

JFK Jr. faked his death and that was THE START of THE PLAN

His mag was BAIT to the DS and HW Bush > 'Come and get me' it said.

DS took the bait and rigged his plane, but he was not on it.

Maeve and her son are NOT DEAD. This a is play and it's just beginning.

JFK Jr. will return. It will unite the country.

23234344? ago

whoa, kek, Digits confirms! trips and a palindrome, using all eight!

What a thing to wake up to on this glorious Saturday morning. It's a little overcast but still feels sunny!

23232412? ago

<different anon> I'll jump in with an easy way to explain. Check out this video to catch up on most of the story so far: https://www.youtube.com/watch?v=bmA8rreTvm8

Jump to 2:40 to see just the part that would explain the 'Jr. faked his death'.

  • I do not subscribe to this theory, but hey, who knows?

23232502? ago

I concluded in 2003 that JR faked his death and when he re-appeared with Bisset at the Trump rally as V. Fusco, I finally had the reason WHY. Previously, I thought it was out of protection from the Bush/Clinton Cartel.

23232560? ago

What lead you to that conclusion in 2003?

In 2003 I just assumed he was killed to stop a story from getting published in George.

23232771? ago

I already knew HW Bush was the point man for the CIA in Dallas and Jr. named his mag after him.

Your'e correct, the articles in GEORGE were provoking the DS and the Bush Cartel. Either he was going to continue to expose them or they would be forced to silence him. He had to know this.

The official report from the NTSA is pure bullshit and contradicts EVERY witness account. Witnesses who have nothing to gain from lying. The body pulled out of the plane was NOT HIM. Not even close.

23232086? ago

So this one image by itself looks like a crazy coincidence, but wasn't there someone recently who did a similar decode with Comey's tweets and an event afterwards? Is there a compilation anywhere yet? Start putting them together and it won't look crazy anymore.

23232042? ago

No

23232021? ago

That does seem to be a heck of a coincidence.

23231813? ago

what's a grille cipher and how was it applied here?

sources please this is interesting

https://en.wikipedia.org/wiki/Grille_(cryptography)

23233933? ago

You are exactly right. And, with modern technology it would be very simple to have millions of grills.

All you do is you use the first few character or last few or a combination to be the password. When the right combination is matches, that’s the grill to use.

Because you can use letters, numbers, or any character like an emoji or Chinese character, each character in the password could represent tens of thousands of grills. Two character passwords could represent billions of combinations. With a simple program you could unlock it is a split second.