Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
The Media

Is QAnon an 8Chan Game Gone Wrong? (ft.com) 190

This week London's prestigious Financial Times published a 15-minute video investigating the question: "Is QAnon a game gone wrong?" In 2017, the Q team, whoever they may be, made use of the modern equivalent of the Playboy's letters page. It's a message board called 4Chan... A YouTuber called defango has since claimed the work was his. He says he created Q as an alternative reality game, mostly for the LOLs, but also to smoke out bad journalists in the alternative media space. But he also says that in 2018, a man called Thomas Schoenberger wrested control of the game from him... Nobody knows if what he says is really true. What is becoming clear is that the whole thing has run away with itself...

Anyone who plays live action role playing games, known as LARPs, will recognise the gaming elements of QAnon [according to alternate-reality game pioneer Jim Stewartson.] "In 2015, 2016, and 2017, there were a lot of what are called LARPs, live action role playing is what the term means. And it really just means that there is a person pretending to be somebody else. The players knew they weren't real, but it was fun for them to interact with. But what happened on 4Chan and 8Chan is that individual people would go and LARP all by themselves, and create basically a single point of contact for an entire alternate reality game. In 2016, there was FBI Anon, and CIA Anon, Meganon, and all of these different LARPs that were basically practicing, they were prototyping what QAnon is... So it turns out there's a guy named Thomas Schoenberger. He saw this Cicada game as an opportunity to radicalise smart people, and he ended up creating puzzles and calling it Cicada, even though he was not the creator of it."

To this day, no one seems quite sure who the creator of Cicada was. We haven't been able to confirm Thomas Schoenberger's involvement in either Cicada or QAnon... [But Jim Stewartson tells them] "There's a woman named Lisa Clapier who runs an account called SnowWhite7IAM. And her job was to bring people from Cicada to QAnon. So there was a whole theme about follow the White Rabbit. A whole theme around Snow White and Disney characters. And that theme was used specifically to pull people from Cicada into QAnon."

A similar origin story appears in a new article at Heavy.com: Between 2014 and 2016, Schoenberger "stole" Cicada, Heavy's source said, and he started manipulating the puzzle. Later on, while working with Chavez, "breadcrumbs" — vague top secret information hidden in clues, were presented through the Cicada game.

In October 2017 QAnon posts premiered on 4chan, a site Schoenberger was prominent on before moving to 8chan in December, a site run out of the Philippines by pornography mogul and pig farmer, Jim Watkins, Heavy's source said.

Comment What is worth your time? (Score 1) 465

It depends on what you willing to deal with.

Python is good if you don't need to very heavy array code. I know you can use Python libraries that give you access to good arrays but I think of Python as a scripting language. It's good for a quick prototype as well, but for heavy computation, I would move on to a compiled language.

Fortran 90 or Fortran 2003/08 is what will be the most like what the mathematical syntax you'll use. Despite what people may tell you, it is possible to write code that is understandable and reusable in Fortran, it just takes a great deal of understanding when you design the code. Most people have only seen Fortran code that was either hacked together or is so heavily optimized that it has been obfuscated.

C++ is good as well but you'll spend more time figuring out how to express your mathematics and to use the arrays than you might might find productive. In my group, we do computer science parts of our codes in C++, but numeric calculations and heavy-duty array manipulation is done in Fortran.

The thing about taking advantage of the multiple core machine is much deeper than simply choosing a language. There are MPI and OpenMP libraries that are very good for Fortran and C++. However, producing efficient code that is parallelizable requires changing and complicating the algorithm for a well understood and functioning serial code. Writing effective parallel code will take you much more time than picking up a programming language.

Comment None Currently are Perfect (Score 2) 254

I don't know what your discipline is, but I think it'll depend on what journals you typically read.

I'm a chemist, so a lot of what I read is from the American Chemical Society. Most of the articles are formatted for a big (bigger than letter size) with two column format. It's a big of a squeeze down to letter paper, but you can still read it.

I've got a Kindle DX and I find the ACS journals are just too small when fitted to the Kindle DX's viewable area. It's suppose to be able to show a letter-sized document in full but that's only if it has "standard" margins. Most journal articles don't have those standard margins. I personally am hoping for someone to market a 13.1 in diagonal e-reader which should be able to show a letter-size pdf in the full. Delta's eMagzine fits the bill but no commercial companies have brought it to the market.

If the article is one-column or manuscript-style, it should be easy to read on most e-readers but I would stay on the large size because of things like diagrams and small indices in equations.

I don't know of any readers that do postscript.

Comment Re:Dupe (Score 3, Insightful) 419

That is because mental retardation was an umbrella diagnosis that didn't convey any useful information. Most people with any kind of mental disability were given that diagnosis. As we learned more about these kinds of disabilities, we began specifying different kinds of mental problems. It's like the difference between calling a person educated and calling them a physicist.

Comment Re:Not more safe (Score 1) 611

sudo is a command. Not an account. Besides, if the user account has a poor password, then chances are that one of these is true:
a) The user and root accounts have the same password.
b) The root account has a different but similarly insecure password.
c) The user made a file with the root password:
    i) The file has mode 660, so all you need is the user's password
    ii) The file has mode 666, so all you need is nobody access.
d) The user somehow managed to get /bin/bash (or something similar) setuid (mode 4755).

Slashdot Top Deals

grep me no patterns and I'll tell you no lines.

Working...