⚠Invalid Handle's Avatar

⚠Invalid Handle

@96deff33fa162942.bsky.social

76 Followers  |  337 Following  |  32 Posts  |  Joined: 05.09.2023  |  2.761

Latest posts by 96deff33fa162942.bsky.social on Bluesky

Epstein emails (2.5 GB)

Approximately 20,900 unredacted emails and file attachments sent and received by Jeffrey Epstein's jeeproject@yahoo.com email address over nineteen years.

ddosecrets.com/article/epst...

Help us keep publishing: donorbox.org/ddosecrets

24.11.2025 10:14 — 👍 381    🔁 168    💬 0    📌 16
Jeffrey Epstein commenting on his own blog

Comment reads:

checking on this comments section.

September 25, 2013 at 9:29 PM

Jeffrey Epstein commenting on his own blog Comment reads: checking on this comments section. September 25, 2013 at 9:29 PM

24.11.2025 09:25 — 👍 1    🔁 0    💬 0    📌 0

Elliott Abrams is one of the premier monsters of our age; Iran-Contra, El Salvador and the Mozote Massacre, Rios Montt in Guatemala, Nicaragua, a 2002 bush era coup attempt in Venezuela, any new numbers of coup attempts since under Trump against Venezuela. A war criminal and a fiend.

24.11.2025 08:09 — 👍 111    🔁 54    💬 3    📌 8

I follow Ed's reporting bsky.app/profile/edzi...

23.11.2025 00:21 — 👍 2    🔁 0    💬 0    📌 0

Not that it isn't true, but the substack referenced in the quoted post is from an insane guy who also writes a huge number of cryptocurrency, quantum, AI type things of questionable substance.

22.11.2025 23:57 — 👍 1    🔁 0    💬 2    📌 0
"animals" in an AI generated "christmas" mural, they are half-formed, which type of animal they are is unclear and are walking through what could be snow or surf.

https://www.reddit.com/media?url=https%3A%2F%2Fi.redd.it%2Fuoimmysse02g1.jpeg

"animals" in an AI generated "christmas" mural, they are half-formed, which type of animal they are is unclear and are walking through what could be snow or surf. https://www.reddit.com/media?url=https%3A%2F%2Fi.redd.it%2Fuoimmysse02g1.jpeg

birds with dogs heads and dogs with birds heads, encountered in the Nightmare of Mensis in Bloodborne.

birds with dogs heads and dogs with birds heads, encountered in the Nightmare of Mensis in Bloodborne.

22.11.2025 21:17 — 👍 0    🔁 0    💬 0    📌 0
Screenshot of a terminal running the command:

❯ ./fract png --cr .28 --ci 0.008 --x0 -1 --x1 1 --y0 -1.2 --y1 1.2 --scale 350 --type julia

Displayed below it is a rendering of the Julia set directly on the terminal, as a PNG with transparency.

Screenshot of a terminal running the command: ❯ ./fract png --cr .28 --ci 0.008 --x0 -1 --x1 1 --y0 -1.2 --y1 1.2 --scale 350 --type julia Displayed below it is a rendering of the Julia set directly on the terminal, as a PNG with transparency.

still not entirely comfortable with the idea of the kitty terminal graphics protocol but it is fun to play around with.

22.11.2025 17:21 — 👍 1    🔁 0    💬 0    📌 0
Preview
Jeffrey Epstein Pursued Swiss Rothschild Bank to Finance Israeli Cyberweapons Empire Epstein to Ehud Barak: “[Ariane de Rothschild] said to me, if Ehud wants to make serious money, he will have to build a relationship with me. take time so that we can truly understand one another.”

Another connection between Epstein and the cyber world.

Jeffrey Epstein Pursued Swiss Rothschild Bank to Finance Israeli Cyberweapons Empire
www.dropsitenews.com/p/jeffrey-ep...

21.11.2025 10:34 — 👍 9    🔁 11    💬 1    📌 0

I wonder if it's because his wife is on the board of Altius Minerals who are doing great off of the GPU boom.

20.11.2025 18:31 — 👍 3    🔁 0    💬 0    📌 0

bsky.app/profile/magg...

18.11.2025 16:36 — 👍 9    🔁 0    💬 1    📌 0
Post image

dangilmore.com/2022/03/10/w...
www.washingtonpost.com/documents/2b...

You ever read this? The people who are theoretically policing that kind of stuff are increasingly on the same side too, that's the part that gives me real unease.

18.11.2025 10:28 — 👍 3    🔁 0    💬 0    📌 0
desktop in ~
❯ fn fact { |n| * (range 1 (+ 1 $n)) }

desktop in ~
❯ fn pow { |x n| * (range 0 $n | peach { |n| put $x })}

desktop in ~
❯ fn e { |x| + (range 0 300 | peach { |n| / (pow $x $n) (fact $n) } ) }

desktop in ~
❯ fn sin { |x| + (range 0 300 | peach { |n| / (* (pow -1 $n) (pow $x (+ (* 2 $n
) 1))) (fact (+ (* 2 $n) 1)) }) }

desktop in ~
❯ fn cos { |x| + (range 0 300 | peach { |n| / (* (pow -1 $n) (pow $x    (* 2 $n
)   )) (fact    (* 2 $n)   ) }) }

desktop in ~
❯ fn ie { |a| var exp = (e $a[r]); put [&r=(* $exp (cos $a[i])) &i=(* $exp (sin
 $a[i]))] }

desktop in ~
❯ ie [&r=0 &i=3.1415926535897932384626433832795028841971693993751058209749445]
▶ [&i=(num -0.0000000005289187244831729) &r=(num -0.9999999999243488)]

desktop in ~ ❯ fn fact { |n| * (range 1 (+ 1 $n)) } desktop in ~ ❯ fn pow { |x n| * (range 0 $n | peach { |n| put $x })} desktop in ~ ❯ fn e { |x| + (range 0 300 | peach { |n| / (pow $x $n) (fact $n) } ) } desktop in ~ ❯ fn sin { |x| + (range 0 300 | peach { |n| / (* (pow -1 $n) (pow $x (+ (* 2 $n ) 1))) (fact (+ (* 2 $n) 1)) }) } desktop in ~ ❯ fn cos { |x| + (range 0 300 | peach { |n| / (* (pow -1 $n) (pow $x (* 2 $n ) )) (fact (* 2 $n) ) }) } desktop in ~ ❯ fn ie { |a| var exp = (e $a[r]); put [&r=(* $exp (cos $a[i])) &i=(* $exp (sin $a[i]))] } desktop in ~ ❯ ie [&r=0 &i=3.1415926535897932384626433832795028841971693993751058209749445] ▶ [&i=(num -0.0000000005289187244831729) &r=(num -0.9999999999243488)]

e^(iπ) = -0.9999999999243488-0.0000000005289187244831729i

math is beautiful, elegant, precise ...

17.11.2025 08:13 — 👍 0    🔁 0    💬 0    📌 0
(a terminal displaying a shellscript being run that produces a very inaccurate and expensive approximation of pi).
--
desktop in ~
❯ * 4.0 (+ 0 (range &step=2 1 10000 | peach {|n| / 1 (* $n (math:pow -1 (/ (- 1 $n) 2))) })
▶ (num 3.1413926535917933)

(a terminal displaying a shellscript being run that produces a very inaccurate and expensive approximation of pi). -- desktop in ~ ❯ * 4.0 (+ 0 (range &step=2 1 10000 | peach {|n| / 1 (* $n (math:pow -1 (/ (- 1 $n) 2))) }) ▶ (num 3.1413926535917933)

learning a new shell and if you want something done right, you've got to do it yourself (poorly approximate pi).

15.11.2025 19:10 — 👍 0    🔁 0    💬 1    📌 0
screenshot of language documentation, reading:

$math:pi
Approximate value of π: 3.141592…. This variable is read-only.


"This variable is read-only" is highlighted.

screenshot of language documentation, reading: $math:pi Approximate value of π: 3.141592…. This variable is read-only. "This variable is read-only" is highlighted.

cowards

15.11.2025 17:58 — 👍 1    🔁 0    💬 1    📌 0
developer tools for edu.2wai.ai showing their TTS options are the same as those for the porn avatars.

developer tools for edu.2wai.ai showing their TTS options are the same as those for the porn avatars.

The Education platform also shares with the AI Porn platform. I'm pretty sure with a little bit of Javascript DOM hackery, you could rig up their Education platform to replace the Idle Animation Shakespeare with a much more fucked up combination.

15.11.2025 07:33 — 👍 0    🔁 0    💬 0    📌 0
Login page showing "Student" and "Teacher" options for 2WAI "The Ultimate Virtual Chat".

Login page showing "Student" and "Teacher" options for 2WAI "The Ultimate Virtual Chat".

JSON object showing entries for a user tagged as "userType" of "STUDENT" along with fields for email and password.

JSON object showing entries for a user tagged as "userType" of "STUDENT" along with fields for email and password.

And the cherry on top, their "Education" platform, with an API so open that anyone has visibility of *all student accounts* including *email addresses* and *password hashes*.

15.11.2025 06:41 — 👍 1    🔁 0    💬 1    📌 0
Price List of 2wai Social, a subscription service where an LLM handles social media interactions for you.

Starter
$99 /month

Perfect for getting started

    ✓ 1 social account, 100 responses a month
    ✓ Basic personality training
    ✓ 2 platform connections
    ✓ Community support
    ✓ Analytics report

Creator
$249 /month

For serious content creators

    ✓ 2 social accounts, 300 responses a month
    ✓ Advanced personality depth
    ✓ All platform connections
    ✓ Priority support
    ✓ Analytics report
    ✓ Custom training sessions

Business
$649 /month

For brands and agencies

    ✓ 3 Social accounts, 1000 responses a month
    ✓ Multiple AI avatars
    ✓ White-label options
    ✓ API access
    ✓ Dedicated account manager
    ✓ Custom integrations

Price List of 2wai Social, a subscription service where an LLM handles social media interactions for you. Starter $99 /month Perfect for getting started ✓ 1 social account, 100 responses a month ✓ Basic personality training ✓ 2 platform connections ✓ Community support ✓ Analytics report Creator $249 /month For serious content creators ✓ 2 social accounts, 300 responses a month ✓ Advanced personality depth ✓ All platform connections ✓ Priority support ✓ Analytics report ✓ Custom training sessions Business $649 /month For brands and agencies ✓ 3 Social accounts, 1000 responses a month ✓ Multiple AI avatars ✓ White-label options ✓ API access ✓ Dedicated account manager ✓ Custom integrations

Price list for having an LLM write your posts for you...

15.11.2025 06:35 — 👍 0    🔁 0    💬 1    📌 0
Video thumbnail

Here's an example of one of their base videos that it works off of.
Found it funny because you can hear the videographers instructions still.
FWIW suggests to me the Penthouse app mock-up is probably a real plan, since she is a model for them.

penthouse.2wai.ai/virtual

14.11.2025 19:43 — 👍 0    🔁 0    💬 1    📌 0
screenshot of JSON object listing their TTS voice options, showing "Cora_Lux12", "CharlieKirk", "Krystalprivate", "CharlieKirk2", "Cora_Lux13" as the options.

screenshot of JSON object listing their TTS voice options, showing "Cora_Lux12", "CharlieKirk", "Krystalprivate", "CharlieKirk2", "Cora_Lux13" as the options.

some pretty funny choices on their part, hidden amongst the various waifu voice options...

14.11.2025 19:24 — 👍 2    🔁 0    💬 1    📌 0

From what I can tell, this is video deepfakery attached to LLM and lipsync.

Dev team is probably .cn, they're also trying to do waifus, including this mockup of a Penthouse app.

Their API reveals a bunch of their avatars.

So the company selling a cheap AI imitation your Nan is also doing AI porn.

14.11.2025 19:19 — 👍 3    🔁 0    💬 1    📌 0
Sender:
Time: 01/28/17 08:26:36 AM (507313596)
Flags: 1060865
Is Read: Yes
Is Invitation: No
GUID: 55A032C9-0F5C-4136-A63A-FB0423DBB6FF
Message: He was Complaining about being too old and I said he was still a little too
young for me that he needed to be 65 and he said great you ha e 4 years to train me -
that was funny

Sender: Time: 01/28/17 08:26:36 AM (507313596) Flags: 1060865 Is Read: Yes Is Invitation: No GUID: 55A032C9-0F5C-4136-A63A-FB0423DBB6FF Message: He was Complaining about being too old and I said he was still a little too young for me that he needed to be 65 and he said great you ha e 4 years to train me - that was funny

13.11.2025 11:16 — 👍 0    🔁 0    💬 0    📌 0
Sender: e:jeeitunes@gmail.com
Time: 01/28/17 08:23:14 AM (507313394)
Flags: 1085445
Is Read: No
Is Invitation: No
GUID: 17BF006B-0621-43DB-8F09-226F6536E99F
Message: Did you fuck

Sender: e:jeeitunes@gmail.com Time: 01/28/17 08:23:14 AM (507313394) Flags: 1085445 Is Read: No Is Invitation: No GUID: 17BF006B-0621-43DB-8F09-226F6536E99F Message: Did you fuck

Time: 01/28/17 08:24:02 AM (507313442)
Flags: 1060865
Is Read: Yes
Is Invitation: No
GUID: 4E864FB8-4399-4A9A-815E-8798CCDCA40C
Message: No
Sender:
Time: 01/28/17 08:24:36 AM (507313476)
Flags: 1060865
Is Read: Yes
Is Invitation: No
GUID: CDC21DE8-153A-44F6-AE52-76617F67CC43
Message: Members of his henchman team hovered outside the door for the full few hours
Instead We went crazy on the whiteboard and a lot to talk about

Time: 01/28/17 08:24:02 AM (507313442) Flags: 1060865 Is Read: Yes Is Invitation: No GUID: 4E864FB8-4399-4A9A-815E-8798CCDCA40C Message: No Sender: Time: 01/28/17 08:24:36 AM (507313476) Flags: 1060865 Is Read: Yes Is Invitation: No GUID: CDC21DE8-153A-44F6-AE52-76617F67CC43 Message: Members of his henchman team hovered outside the door for the full few hours Instead We went crazy on the whiteboard and a lot to talk about

Sender:
Time: 01/28/17 08:24:36 AM (507313476)
Flags: 1060865
Is Read: Yes
Is Invitation: No
GUID: CDC21DE8-153A-44F6-AE52-76617F67CC43
Message: Members of his henchman team hovered outside the door for the full few hours
Instead We went crazy on the whiteboard and a lot to talk about
Sender:
Time: 01/28/17 08:25:05 AM (507313505)
Flags: 1060865
Is Read: Yes
Is Invitation: No
HOUSE OVERSIGHT 027145
GUID: 6782ED0E-973C-4CCD-9D09-F2E20D968FE5
Message: Every half hour they would bring him coffee or a croissant or a. Newspaper or
message etc Very closely watched
Sender:
Time: 01/28/17 08:25:34 AM (507313534)
Flags: 1060865
Is Read: Yes
Is Invitation: No
GUID: 83CEDF28-E10C-4113-AlFE-2BB2612807BA
Message: We did have about 3 minutes at the beginning to take a deep breath and just
stand there together

Sender: Time: 01/28/17 08:24:36 AM (507313476) Flags: 1060865 Is Read: Yes Is Invitation: No GUID: CDC21DE8-153A-44F6-AE52-76617F67CC43 Message: Members of his henchman team hovered outside the door for the full few hours Instead We went crazy on the whiteboard and a lot to talk about Sender: Time: 01/28/17 08:25:05 AM (507313505) Flags: 1060865 Is Read: Yes Is Invitation: No HOUSE OVERSIGHT 027145 GUID: 6782ED0E-973C-4CCD-9D09-F2E20D968FE5 Message: Every half hour they would bring him coffee or a croissant or a. Newspaper or message etc Very closely watched Sender: Time: 01/28/17 08:25:34 AM (507313534) Flags: 1060865 Is Read: Yes Is Invitation: No GUID: 83CEDF28-E10C-4113-AlFE-2BB2612807BA Message: We did have about 3 minutes at the beginning to take a deep breath and just stand there together

someone recounting a meeting with Bill Gates, but from the only perspective that Jeffrey actually cares about: "did you fuck"

13.11.2025 11:16 — 👍 0    🔁 0    💬 1    📌 0

Counterpoint: no it’s not, that’s a stupid thing to say

12.11.2025 01:36 — 👍 805    🔁 141    💬 14    📌 0

Look guys I’ve spent the last day playing this over and over again. Don’t read the comments first and stick it through to the second verse. It is in fact one of the funniest things I’ve ever heard.

11.11.2025 00:24 — 👍 1843    🔁 284    💬 89    📌 17

UPDATE: NSO just hired former Trump ambassador to Israel.

They're trying to push Pegasus spyware to 🇺🇸America.

Your rights and freedoms are in danger.

NSO Group is no friend to the US & has spent years undermining our security & values 1/

09.11.2025 22:05 — 👍 274    🔁 173    💬 5    📌 13

writes itself, really.

27.10.2025 10:35 — 👍 0    🔁 0    💬 0    📌 0
screenshot of bsky posts, OP name is redacted.

The post reads "Looks like our suspicions were confirmed. Surprise surprise." with a link to a Daily Beast article (itself just repeating Dropsite News' original reporting).

The post quotes their 1 month old post regarding the "live C2 network".

screenshot of bsky posts, OP name is redacted. The post reads "Looks like our suspicions were confirmed. Surprise surprise." with a link to a Daily Beast article (itself just repeating Dropsite News' original reporting). The post quotes their 1 month old post regarding the "live C2 network".

no they weren't.

you can't take a "pivot trail" to a "live C2" network because you were drawing erroneous connections based on generic HTTP error pages mistaken as unique identifiers as being right.

it was obviously a crypto scam, there's no cybercrime C2 or Russian nexus like you've claimed.

27.10.2025 01:16 — 👍 0    🔁 0    💬 0    📌 0
screenshot of the original creator on threads saying: "it’s more of a visual test than a full concept right now. The real idea is to see how far AI can go in generating playable systems, not just visuals."

screenshot of the original creator on threads saying: "it’s more of a visual test than a full concept right now. The real idea is to see how far AI can go in generating playable systems, not just visuals."

Another mark in the "it's not real time, it's potemkin software and probably why that one prompt choice was disregarded"

OP claims it'll be open source, I bet it's never published and is fully vibe coded. The whole thing seems like a shabby version of what you could slap together in an afternoon.

25.10.2025 22:56 — 👍 2    🔁 0    💬 0    📌 0
screenshot from threads, with posters profiles redacted.

threads user asks: "Is the "gameplay" is just clicking some prompts occasionally?  And you think people are going to play this?"

threads original poster replies: "Yeah I get what you mean but it’s kinda more about how the AI reacts than just the clicking that’s what makes it interesting."

screenshot from threads, with posters profiles redacted. threads user asks: "Is the "gameplay" is just clicking some prompts occasionally? And you think people are going to play this?" threads original poster replies: "Yeah I get what you mean but it’s kinda more about how the AI reacts than just the clicking that’s what makes it interesting."

I did some digging and found the OP (?).

I think what we have is a consistent UI that isn't generated. the prompt choices and presumably the last frame of the previous video are used to generate the next scene.

So we get the consistent mock-up menu around 8 sec clips, I'd assume not in real time.

25.10.2025 22:51 — 👍 1    🔁 0    💬 1    📌 0

Theres also a corresponding scene counter (sometimes) in the top left that's weirdly more consistent that makes me think it's maybe also pulling that from prompt text.

25.10.2025 18:39 — 👍 0    🔁 0    💬 1    📌 0

@96deff33fa162942 is following 20 prominent accounts