199
posted ago by 100percentdeplorable ago by 100percentdeplorable +199 / -0

DATA CRUNCHERS AND WEAPONIZED AUTISTS GO CRAZY!!! Pass this onto 4chan...

Michigan voter registration data as of October 2020 - https://michiganvoters.info/ Raw voter registration data - http://69.64.83.144/~mi/download/20201012/

Social security death index raw data - http://ssdmf.info/download.html

Download the data, look for dead people in the voter registration!!! I am writing a Python script right now to look for matches between the death index and registered voters. All hands on deck! This could be YUUUUUUUUUUUGE!!!! Don't let the Dems steal this election!!!!

Comments (34)
sorted by:
You're viewing a single comment thread. View all comments, or full comment thread.
1
wethepepe 1 point ago +1 / -0

Ok cool

Depending on what u/bear__aware and u/SayonaraShitbird say, I'll get stuck in asap (want to avoid pedes overlapping on the same things)

Do you think you can do data sets like these for other states too? I'm happy to follow along behind you: you do the datasets and i'll shit out scrapers to see what sort of hits we can get

1
bear__aware 1 point ago +1 / -0

My understanding of the general plan:

People have also talked about looking at obituaries but when it comes to relatively curated/official/structured data the Social Security Death Master File (DMF) is the one. There is a published instance here:

http://ssdmf.info/download.html

But this one is lacking zip codes, so certain voter search pages are ruled out, e.g. Michigan

But Wisconsin takes just name and birth date, so I was going to try and figure out how to query their site programmatically. If that proves possible then we could begin right away with the above dataset.

The other way of getting the DMF data is this page https://sortedbybirthdate.com/small_pages/1903/19030101_1001.html Which is a different edition of the data which has zip codes, SSNs, etc. u/SayonaraShitbird was working on scraping this, and mentioned that some ppl in Fleccas' twatter reply threads had already developed parsing for this format of the data.

Then that is enough to begin querying MI's site. I don't know if anyone has automated that part.

Are group chats possible on .win like on reddit? Or is there another option? Otherwise we're going to have a hard time keeping track I think. I'm already forgetting the usernames of everybody who has expressed interest in this so far.

Anyways like I say, I will be looking at automating querying for WI, until further notice.

1
wethepepe 1 point ago +1 / -0

Ok well I'll see what I can do about building one for MI and running u/100percentdeplorable data. I think that data has all the fields needed to run a check

For WI have you seen this code for checking their voter search API?:

var fetch = require("node-fetch");

async function checkForDeadPeople(firstName, lastName, birthDate) {
    const response = await fetch("https://myvote.wi.gov/DesktopModules/GabMyVoteModules/api/voter/search", {
        method: "POST",
        headers: {
            "Content-Type": "application/json",
        },
        body: JSON.stringify({
            firstName,
            lastName,
            birthDate,
        }),
    });
    const data = await response.json();
    if (data['Data']['voters']['$values'].length > 0) {
        console.log('FOUND', firstName, lastName, birthDate)
        console.log(data['Data']['voters']['$values']);
    } else {
        console.log('not found')
    }
}

async function runScript() {
  await checkForDeadPeople("Arthur", "Kriesel", "12/25/1935");
}

runScript();

source modified from: https://thedonald.win/p/11PpBKVzL7/reporting-in-you-guys-checking-w/c/

Just saw another snippet in there where a pede has modified it to scale a bit better so it can run faster: https://thedonald.win/p/11PpBKVzL7/x/c/1ASFvT5uni

Are group chats possible on .win like on reddit? Or is there another option? Otherwise we're going to have a hard time keeping track I think. I'm already forgetting the usernames of everybody who has expressed interest in this so far.

Are you on TheDonald Discord? That's probably the best place to move this for faster communication

1
100percentdeplorable [S] 1 point ago +1 / -0

Unfortunately I'm not vetted on The_Donald discord, I'll PM you discord username if you want to DM on Discord.

Wisconsin is simple, all you have to do is send a POST request to https://myvote.wi.gov/DesktopModules/GabMyVoteModules/api/voter/search

With python requests. Not too familiar with JS so I'll work with python for now. Hopefully they're dumb and don't have rate limiting in place, otherwise I'll have to write up some proxy stuff.

E.g. this is JSON I'm getting back with the Milwaukee mayor's voter info -

{ "$id": "1", "voters": { "$id": "2", "$values": [ { "$id": "3", "voterID": "f36f19ab-4db0-e511-80ea-0050568c2fc0", "voterName": "Barrett, Thomas M", "address": "5030 W Washington Blvd", "voterStatus": 0, "voterStatusName": "Active", "statusReasonCode": 757580001, "statusReasonName": "Registered", "city": "Milwaukee", "postalCode": "53208-1701", "state": "WI", "dateOfBirth": "1953-12-08T00:00:00Z", "districtComboID": "18743edb-ddaf-e511-80ea-0050568c2fc0", "jurisdictionID": "63ce0067-ddaf-e511-80ea-0050568c2fc0", "voterTypeID": 757580000, "voterTypeName": "Regular", "registrationDate": "11/4/1980", "registrationSource": "", "voterRegNumber": "0009084588", "congressionalCode": "CG-04" } ] } }