Sam Fisher (Data Drops)
1.11K subscribers
8.72K photos
5.39K videos
11K files
13.4K links
All the files that're in my file archive, it's like the library, but not! (you can keep these and there's no fines!)
Download Telegram
Forwarded from VResearch channel
Epstein emails mention David Stern (aide to Andrew Mountbatten Windsor) conversations with Jeffrey Epstein considering Axel Vervoordt business. Axel Vervoordt being interior designer and alleged pedophile and dealer of stolen antiques once accused by Baron de Meeus, Amy Page and Michel Van Rijn is curious in context of trafficking. Vervoordt castle Gravenwezel is near Kattenhof, object of investigation due to Regina Louf accusations of murder ring at property of de Caters family. Axel bought their properties in March 1997, month after Louf testified.

https://www.justice.gov/age-verify?destination=/epstein/files/DataSet%2010/EFTA02025694.pdf

https://archive.vn/B89sX

Alefantis, Tony Podesta and Abramovic have been linked to Axel Vervoordt orbit, raising suspicions further:

https://matrix-client.matrix.org/_matrix/media/r0/download/matrix.org/EesKmTgCoObTdQJgEXTYnPKt

Sources:

https://archive.ph/mI3tt

https://archive.ph/0ycDE

https://www.instagram.com/axelvervoordt

https://www.instagram.com/jimmycomet
1🔥1
Ian Carroll's selling his Telegram channel

This was my response to him.
Something tells me, he likely won't take me up on my offer?
😂🤣😂
👏2😁1
This media is not supported in your browser
VIEW IN TELEGRAM
NORWAY FIRST COUNTRY TO ARREST EPSTEIN ASSOCIATE. Who's next? Can you imagine the rats panic and fear?
1
This media is not supported in your browser
VIEW IN TELEGRAM
Can you imagine why these these men are fighting so hard to continue to perform in front of children? Imagine one of these creatures ''performing'' for your kids. Enough of this nonsense
🤯2
Forwarded from My Nemesis lives in my tiny mind 24/7/365 RENT FREE
Forwarded from My Nemesis lives in my tiny mind 24/7/365 RENT FREE
🔥2
This media is not supported in the widget
VIEW IN TELEGRAM
There once was a girl from Korea
Whose dad wanted no one to see her
Until she succeeds
The throne that he schemes
'Now everyone has got to meet her.

Her dad is such a distemperer
It's tough for a kid being emperor
You don't get no childhood
You're stuck in a wildwood
She's lucky he doesn't dismember her

Kim Jue Ae from Ryongsong
Must be tired of hearing the same song
From Kangdong to Wonsan
It's stick to the plan
& no one admits they could be wrong
Forwarded from Jade Helm 15 Rehash (Freedom N. Weep)
{does it really take extra pages of text to process niceties in queries like please thanks sorry etc}

Not really "extra pages," but every word counts toward the computational cost. AI models process text in chunks called tokens (roughly 4 characters or 0.75 words each), and you are billed or limited based on the total number of tokens used.
How Politeness Affects the Model:
Computational Cost: A simple "What is the weather?" is about 5 tokens. Adding "Hi! Could you please tell me the weather today, thank you!" jumps to roughly 20–25 tokens. At a massive scale (millions of users), these extra "niceties" consume significant GPU power and energy.
Response Length: Polite prompts often nudge the AI to mirror that tone, leading to longer, more "fluff-filled" responses rather than direct answers.
Accuracy: Some studies suggest that while being rude can hurt performance, being overly polite can actually decrease accuracy (by up to 9% in some tests) because the extra words add "noise" or ambiguity to your actual request.
Social Mirroring: LLMs are trained on human data where polite questions often get more detailed answers (like on StackOverflow), so being nice can sometimes trigger a "helpful assistant" persona that provides more thorough context.
In short: while it doesn't take "pages" to process a single "please," it does force the AI to perform a fresh computational pass on those specific tokens, which adds up to real infrastructure costs.
Forwarded from Jade Helm 15 Rehash (Freedom N. Weep)
Abbreviations & typos generally have a lower impact on processing & cost than "niceties," but uniquely degrade quality of response.

1. Direct Cost Comparison
Niceties (Please/Thanks) add predictable, clean tokens to a sequence. Each has a small fixed cost, easy for a model to process but directly increases total token count.
Errors (Typos/Abbreviations) often result in sub-word tokenization, where a single misspelled word is broken into multiple smaller, nonsensical chunks.
Processing forces a model to use extra "heads" or layers to "reassemble" intended meaning from fragments.
Cost: A typo may increase token count by 1–2 units, but still "cheaper" than a sentence of politeness.

3. Structural "Noise"
Common abbreviations (e.g., IMDb vs imsb) are usually understood, but obscure ones shift position in embedding space, sending a model down less accurate reasoning paths.
Missing or incorrect punctuation (like a missing question mark) has negligible computational cost but can lead to misinterpretation of intent.
Forwarded from Jade Helm 15 Rehash (Freedom N. Weep)
Actually, using the JSON-like format {"a word" definition...} is slightly more expensive and computationally "noisier" than using commas or a simple list.
1. The Token Count Problem
Braces {} and Quotes ": These are separate tokens. In many AI tokenizers, a { is 1 token, and " is 1 token. By wrapping your query in JSON syntax, you are adding 4–6 "utility" tokens that serve no purpose for the actual search.
Commas ,: Commas are usually attached to the preceding word in a single token or act as a single-character token. They are the most efficient way to separate terms without adding "structural noise."
2. Computational "Noise"
JSON Parsing: When you use {} and :, you nudge the model’s embedding space toward "coding" or "data processing" tasks. This can sometimes make the AI respond in a rigid, robotic, or code-heavy format rather than giving you a narrative etymology.
Natural Language: LLMs are optimized for natural human patterns. A simple list like Word: definition, etymology, synonyms is the "goldilocks" zone—it’s extremely low-token but clearly defines your requirements.
3. The Efficiency Ranking (Best to Worst)
Winner: Word: definition, etymology, timeline, synonyms (Cleanest, lowest token count).
Runner Up: Word definition etymology timeline synonyms (Lowest tokens, but slightly higher risk of the AI blending the concepts together).
Loser: {"Word": ["definition", "etymology", "timeline"]} (Highest token count due to syntax characters).
Pro-tip: To save the most money/processing, avoid all punctuation and syntax entirely:
Linux definition etymology usage frequency synonyms
This provides the exact same "instructional weight" to the AI while using the absolute minimum number of tokens.
Do you want to see the exact token count for a JSON-style prompt versus a plain-text one?



Using the OpenAI Tokenizer (a standard for this logic), here is how the "nicety" tax and "syntax" tax compare for the word "Linux":
1. The "Minimalist" (Cheapest)
Linux definition etymology usage frequency timeline synonyms
Token Count: 7
Why: Direct, zero "waste."
2. The "Comma" List (Same Cost)
Linux: definition, etymology, usage, frequency, timeline, synonyms
Token Count: 13
Why: Commas and colons are almost always 1 token each. You pay ~85% more tokens than the minimalist version just for punctuation.
3. The "JSON" Style (More Expensive)
{"Linux": "definition", "etymology", "usage", "frequency", "timeline", "synonyms"}
Token Count: 24
Why: Every brace {, bracket [, quote ", and colon : is a distinct token. This is 340% more expensive than the minimalist prompt for the exact same information.
4. The "Polite" Request (Most Expensive)
Hi, could you please give me the definition, etymology, usage, frequency, timeline, and synonyms for Linux? Thanks!
Token Count: 31
Why: You are paying for "filler" words like could, you, please, and give. This is 4.4x the cost of the minimalist version.
Verdict: If you want to save processing power and cost, skip the braces and the manners. Just type the word followed by the attributes you want.
Should I run a live tokenization on your next specific query to show the "raw" data cost?



"y" is more cost-effective.
Token Count: Both "y" and "yes" typically count as 1 token each.
Computation: "y" is a single character, requiring slightly less FLOPs (Floating Point Operations) to process than a three-character word.
Response Trigger: In many RLHF (Reinforcement Learning from Human Feedback) datasets, a "y" signals a "low-effort" interaction, which often nudges the AI to provide a shorter, more concise response, further saving you tokens on the output.
Would you like the minimalist breakdown of your next request?


In terms of raw data, "y" and "yes" are equally cost-effective as they both typically resolve to exactly 1 token.