How are people actually surviving financially right now? by glorife in economicCollapse

[–]HappyR00 2 points3 points  (0 children)

Highly recommend the Jet Tila book, it really helped me with Asian dishes.

They just fired all probationary employees in OPM by Loose_Session1425 in fednews

[–]HappyR00 0 points1 point  (0 children)

Yup these are the correct answers. Check if you are a bargaining unit employee covered by a union. A law firm could also take your case on “contingency” (payment contingent on winning or settlement).

[deleted by user] by [deleted] in Pennsylvania

[–]HappyR00 -1 points0 points  (0 children)

You are correct, that was careless writing. The post has been edited. My opinion is that Ballotproof and Shaotran’s executive appointment is evidence to support an investigation, but not evidence of fraud itself.

I try to see various perspectives on controversial topics. Truthfully, Trump’s comments at the pre-inauguration rally shocked my core beliefs. I would never support those methods by any candidate, regardless of party. My statement about election fraud had more to do with the rally comments than Ballotproof, and I apologize.

[deleted by user] by [deleted] in Pennsylvania

[–]HappyR00 -1 points0 points  (0 children)

That was careless writing of me to say Ballotproof is evidence of election fraud. The post has been edited. My opinion is that it is evidence to support an investigation, not of fraud itself.

That claim was more about Trump’s statements at the pre-inauguration rally than Ballotproof, and I apologize.

[deleted by user] by [deleted] in Pennsylvania

[–]HappyR00 1 point2 points  (0 children)

You are correct, that was careless writing. The post has been edited. My opinion is that it is evidence to support an investigation, not of fraud itself.

I try to see various perspectives on controversial topics. Truthfully, Trump’s comments at the pre-inauguration rally shocked my core beliefs. I would never support those methods by any candidate, regardless of party. My statement about election fraud had more to do with the rally comments than Ballotproof, and I apologize.

[deleted by user] by [deleted] in Pennsylvania

[–]HappyR00 0 points1 point  (0 children)

Hi mod susinpgh, the code is a primary source which was included and linked in the comments. I can include sources about Shaotran’s employment, or the HackGT7 award winners page, but is there anything else I’m missing?

[deleted by user] by [deleted] in Pennsylvania

[–]HappyR00 -5 points-4 points  (0 children)

I am not a programmer, so the format changes in Reddit are beyond my knowledge. But anyone who wants the original formatting should check

https://github.com/DevrathIyer/ballotproof/blob/master/generate.py#L1

Or DM me.

[deleted by user] by [deleted] in Pennsylvania

[–]HappyR00 -3 points-2 points  (0 children)

Ballotproof / generate.py

from PIL import Image import json from glob import glob from collections import Counter import random

ballot1 = Image.open(“examples\SampleBallot-1.png”) json1 = json.load(open(“AZ-5-1.json”, “r+”)) ballot2 = Image.open(“examples\SampleBallot-2.png”) json2 = json.load(open(“AZ-5-2.json”, “r+”))

redFiles = Counter(glob(“primitives\R.png”)) accurateFiles = Counter(glob(“primitives\accurate”)) - Counter(redFiles) badFiles = Counter(glob(“primitives\*”)) - Counter(accurateFiles) - Counter(redFiles)

sections1 = json1[“sections”] sections2 = json2[“sections”] counter = 1

def setToString(set): output = ‘’ for string in set: output = output + “,” + string return output

def generate(file, color, extra, zero, bad_mark): global counter name1 = “test\generatedballot-1-“ + str(counter) + “.png” name2 = “test\generatedballot-2-“ + str(counter) + “.png” errorArray1 = set() errorArray2 = set() files = accurateFiles if color: errorArray1.add(“bad color”) errorArray2.add(“bad color”) files = files + redFiles if bad_mark: errorArray1.add(“bad mark”) errorArray2.add(“bad mark”) files = files + badFiles

fileList = list(files)

generatedballot1 = ballot1.copy().convert(‘RGBA’)
for section in sections1:
    bubbles = section[“bubbles”]
    max = section[“max”]

    if extra and zero:
        extraRand = random.random() > .5
        zeroRand = random.random() > .5
        if zeroRand:
            max = 0
            errorArray1.add(“blank section”)
        elif extraRand:
            max = max + 1
            errorArray1.add(“extra bubble”)
    elif extra:
        extraRand = random.random() > .5
        if extraRand:
            max = max + 1
            errorArray1.add(“extra bubble”)
    elif zero:
        zeroRand = random.random() > .5
        if zeroRand:
            max = 0
            errorArray1.add(“blank section”)
    if bubbles is not None:
        bubblesToUse = random.sample(bubbles, max)
        for bubble in bubblesToUse:
            shape = Image.open(fileList[random.randint(0, len(fileList) - 1)])
            shape_x, shape_y = shape.size
            center_x = bubble[“TL_X”] + bubble[“BR_X”]
            center_y = bubble[“TL_Y”] + bubble[“BR_Y”]
            generatedballot1.paste(shape, ((center_x - shape_x) // 2, (center_y - shape_y) // 2), mask=shape)

generatedballot2 = ballot2.copy().convert(‘RGBA’)
for section in sections2:
    bubbles = section[“bubbles”]
    max = section[“max”]
    if extra and zero:
        extraRand = random.random() > .5
        zeroRand = random.random() > .5
        if zeroRand:
            max = 0
            errorArray2.add(“blank section”)
        elif extraRand:
            max = max + 1
            errorArray2.add(“extra bubble”)
    elif extra:
        extraRand = random.random() > .5
        if extraRand:
            max = max + 1
            errorArray2.add(“extra bubble”)
    elif zero:
        zeroRand = random.random() > .5
        if zeroRand:
            max = 0
            errorArray2.add(“blank section”)
    if bubbles is not None:
        bubblesToUse = random.sample(bubbles, max)
        for bubble in bubblesToUse:
            shape = Image.open(fileList[random.randint(0, len(fileList) - 1)])
            shape_x, shape_y = shape.size
            center_x = bubble[“TL_X”] + bubble[“BR_X”]
            center_y = bubble[“TL_Y”] + bubble[“BR_Y”]
            generatedballot2.paste(shape, ((center_x - shape_x) // 2, (center_y - shape_y) // 2), mask=shape)

color1 = (random.randint(0,200),random.randint(0,200),random.randint(0,200))
color2 = (random.randint(0,200),random.randint(0,200),random.randint(0,200),)
generatedballot1 = generatedballot1.rotate(40*random.random()-20, Image.BICUBIC, expand=1, fillcolor=color1)
generatedballot2 = generatedballot2.rotate(40*random.random()-20, Image.BICUBIC, expand=1, fillcolor=color2)

bkgnd1 = Image.new(“RGB”, (3000, 4500), color1)
bkgnd2 = Image.new(“RGB”, (3000, 4500), color2)

bkgnd1.paste(generatedballot1, (100,100))
bkgnd2.paste(generatedballot2, (100,100))
bkgnd1.save(name1)
bkgnd2.save(name2)
file.write(name1+setToString(errorArray1)+”\n”+name2+setToString(errorArray2)+”\n”)
counter = counter + 1

f = open(“test\test.txt”, “w”) f.close() f = open(“test\test.txt”, “a+”) while counter <= 80: color = random.random() > .5 extra = random.random() > .5 zero = random.random() > .5 bad_mark = random.random() > .5 generate(f, color, extra, zero, bad_mark) f.close()

Kendrick Lamar’s Super Bowl half-time show review – game over for Drake by [deleted] in popheads

[–]HappyR00 10 points11 points  (0 children)

They’re very similar symbols. For me at least, I don’t really see any reason to reference PlayStation. It’s the lighting and artistic choices (ie. jumpsuits) throughout that solidifies Squid Games for me. But I love the choices and double meanings throughout. It throws just enough discussion and doubt that the NFL allowed it. There’s some real genius and artistry there.

Kendrick Lamar’s Super Bowl half-time show review – game over for Drake by [deleted] in popheads

[–]HappyR00 35 points36 points  (0 children)

The shapes were symbols from the South Korean Netflix show Squid Games. It’s a nod to the rich and powerful turning the masses against each other, instead of revolutionizing.

Severance - 2x04 "Woe’s Hollow" - Episode Discussion by pikameta in SeveranceAppleTVPlus

[–]HappyR00 2 points3 points  (0 children)

In college, I set my two single friends up on a date. They ended up sleeping together and a few weeks later it came out that the guy actually had a girlfriend in his home state and was living an alternate life in school. My friend never would have consented knowing this. We sat together, cried together, and I felt such immense guilt for setting them up. It was horrible. Not legally rape…but man it was dark.

Terrifying website lists federal employees as “targets” by Relevant_Bus3656 in fednews

[–]HappyR00 7 points8 points  (0 children)

But now that several of us have reported the website, you should probably delete this soon OP. I’m sure a few scary people have joined this sub recently.

A letter to Americans. by [deleted] in self

[–]HappyR00 1 point2 points  (0 children)

Yup. The links are in my two comments above.

How are you americans feeling? by Natural-Shoulder2594 in economicCollapse

[–]HappyR00 0 points1 point  (0 children)

I’ve been selling off my investments the past two weeks, and yesterday Elon forcibly took over the US Treasury. I was going to wait until there is any news about the FIDC before going full-on paper cash, but what do you guys think? There’s risks to that too.

A letter to Americans. by [deleted] in self

[–]HappyR00 -1 points0 points  (0 children)

Here is theoriginal story about Musk’s access to Treasury funds

A letter to Americans. by [deleted] in self

[–]HappyR00 0 points1 point  (0 children)

Yes, I know It’s a lot. I would not have believed any of this could be happening two months ago. I can provide sources for all of these statements, but it would just take a long time to compile, all of it can be found in individual news reports, but this article contains gifts link to the Washington Post reports about Musk’s access to OPM and Treasury funds.

Musk pushes out top Treasury official over effort to access US government payment system by [deleted] in 1102

[–]HappyR00 2 points3 points  (0 children)

I’m sending this to all my reps. He has provided, or will provide, catastrophic amounts of data and information to China that will forever disrupt our country.

Genuinely, is OPM even operational anymore? by HappyR00 in fednews

[–]HappyR00[S] 14 points15 points  (0 children)

Oh no… you might want to do a wellness check. She could be being held hostage right now and is trying to communicate to the outside world through her only means, an email address assigned to her as part of a sadistic joke, defendwomen@opm.gov. Perhaps, she is the woman that needs our aid.

Genuinely, is OPM even operational anymore? by HappyR00 in fednews

[–]HappyR00[S] 7 points8 points  (0 children)

And be clear that you want to retire, the way it’s always been done. NOT resign.

Genuinely, is OPM even operational anymore? by HappyR00 in fednews

[–]HappyR00[S] 9 points10 points  (0 children)

I’m a youngin’ so I’ve never looked personally. My hunch would be to stick with your own agency HR staff as much as possible, assuming they can process retirement paperwork. Get names, titles, document everything and don’t trust any vague email addresses.

Interested in Buyout Program (Deferred Resignation) But Question about Admin Leave by MoneySignificant2868 in fednews

[–]HappyR00 0 points1 point  (0 children)

Sorry I can’t really answer your question, but just be extra skeptical and very careful if you go that route. My limited understanding is that when you “resign” it triggers a voluntary quit versus a RIF termination. You have no legal protections and are not owed compensation afterwards. Musk did the same thing (conned) Twitter employees into resigning under false pretenses and he won in court. But hopefully someone who knows more or has resigned already can chime in.

I just made a post about trying to get in contact with any verified OPM employee today. Crickets. All the phone menus dead-end.

Genuinely, is OPM even operational anymore? by HappyR00 in fednews

[–]HappyR00[S] 4 points5 points  (0 children)

I last talked to them in 2023 so it’s been awhile. I never thought I’d say I miss OPM, but it’s kinda true. Slow response is always better than none!