help-circle
rss
A tragic story has emerged from northern Israel that combines shocking allegations, powerful families, and claims of online censorship. Shoshana Strook, 34, daughter of Israeli National Missions Minister Orit Strook, was found dead in her home after publicly accusing her parents and brother of sexual and ritual abuse dating back to her early childhood. The claims, including alleged trafficking and involvement in so-called paedophile ceremonies, have ignited debates online as reports and social media posts appear to vanish from Google searches. As her story spread online, users reported that news about Shoshana was being scrubbed or buried. Social media platforms and search engines appeared to remove or downrank posts, leading to speculation about deliberate censorship. Comments across forums highlighted comparisons to high-profile abuse cases elsewhere, pointing to elite networks and abuse cover-ups.
fedilink

What do you think about Ecosia? I have a habit of using Ecosia as the default search engine. And I do this because a while ago I was looking for a private and ethical alternative to Google. In my view, Ecosia is a very ethical organization committed to its mission of acquiring money to finance natural restoration projects. I admit that I haven't looked into it in depth so far, but they have a habit of releasing transparency reports. The problem, if you can call it that, is that Ecosia isn't very private, since it sends data to Bing to make it work. However, I think there's good reason to trust the Ecosia organization even with this. After all, in their marketing, they're concerned about creating a private search engine, or at least collecting only minimal data. So maybe it's not so private now, but and in the future? They have already shown themselves to be committed to their mission and that is why I trust them.
fedilink



Security researchers had publicly documented the network behind it in October 2024, and Microsoft removed the Edge version in February 2025, stating that it was "malware." Meanwhile, Google didn't remove the extension until March 2026, months after it had been running malicious code on over a million browsers.
fedilink









The Washington, DC-based Center for the Study of Organized Hate (CSOH) said it tracked posts that explicitly dehumanised, excluded, and incited violence against Muslims from 1 January to 5 March. On the day the war began, the volume of such posts surged from just under 2,000 per day to more than 6,000, the report said. "Reposts dramatically amplify the visibility of harmful content, allowing it to spread far beyond the original accounts that generated it." With reposts included, "the total mention volume of Islamophobic content rises to 279,417, representing an 11-fold amplification of the harmful original posts". The content examined by CSOH encompassed a wide swath that included everything from personal hate-fuelled opinions to calls for lawmakers to institute strict anti-Muslim policy, including a "Muslim Exclusion Act" and the deportation of all Muslims.
fedilink



How To Use OTG For Data Extraction?
Not sure if it fits here, but I found no community that distinctly focuses on phone repair/data extraction. I hope this is fine. Recently, my phone's display died. I am trying to save the data. I bought a more advanced OTG hub that should allow connecting the mouse and an external display. It also has a USB-C power input so the phone doesn’t have to power everything itself. The phone is connected to the hub via USB-C as well. However, I haven’t even managed to get that setup working with my current phone (CMF Phone 2 Pro). I enabled the “Improve OTG Compatibility” option, but the hub still doesn’t appear to work, even though it’s advertised as being compatible with smartphones and other OTG devices: https://www.amazon.com/dp/B0GD7G9HS9 At this point I’m unsure whether the problem is me, the adapter, or possibly an issue with the display I’m trying to use (though the display works fine with other devices). Any ideas? If OTG is not the right way, I am open for other suggestions. I am not really interested in repairing the phone, I just need the data. EDIT Why Otg?: I thought of OTG for data extraction, because attaching a display and a mouse should enable me to use the phone again assuming that it is just the display that is broken. In order to verify my correct OTG setup, I attempted it first with my working phone which did not work.
fedilink



An investigation into the AI bots that appeared on Reddit after they partnered with OpenAI. Key points: - The bots post a lot of links to products and services which appear to be adverts but are not marked as such. - Many of these links are for Sam Altman's World ID. - Reddit added terms on AI advertising to their business page around the time the bots appeared. - The bots also make up stories about dead mothers, depression, drug addiction, eating disorders, medical conditions and mental health issues.
fedilink


  • 1Y
はじめまして!私は犯罪者のみどくり(のなめ)こと鈴木哲哉(すずきてつや)です!
はじめまして!私は犯罪者のみどくり(のなめ)こと鈴木哲哉(すずきてつや)です! 趣味は様々なサイトに核を飛ばすことです! [\#鈴木哲哉](https://transforthe.win/tags/%E9%88%B4%E6%9C%A8%E5%93%B2%E5%93%89) [#みどくり](https://transforthe.win/tags/%E3%81%BF%E3%81%A9%E3%81%8F%E3%82%8A) [#DMCA](https://transforthe.win/tags/DMCA) [#唐澤貴洋](https://transforthe.win/tags/%E5%94%90%E6%BE%A4%E8%B2%B4%E6%B4%8B) [#AS215935](https://transforthe.win/tags/AS215935) [https://krsw-wiki.org/wiki/唐澤貴洋Wiki:チラシの裏/荒らし連合軍#みどくり](https://krsw-wiki.org/wiki/唐澤貴洋Wiki:チラシの裏/荒らし連合軍#みどくり) [https://midokuriserver.github.io/minidon/](https://midokuriserver.github.io/minidon/) [@technology](https://lemmy.ml/c/technology) [@primthung](https://misskey.favskey.online/@primthung) [@waru\_ichi](https://voskey.icalo.net/@waru_ichi) @[email protected] [@bakusan\_zibaku](https://misskey.io/@bakusan_zibaku) [@Kotking](https://misskey.io/@Kotking) [@renoa\_gatling](https://misskey.io/@renoa_gatling) [@lflf](https://mstdn.beer/@lflf) @[email protected] [@HN\_Method](https://misskey.io/@HN_Method)
fedilink


Reuse non-prefix KV Cache and speed up RAG by 3X with LMCache.
In modern LLM applications like RAG and Agents, the model is constantly fed new context. For example, in RAG, we retrieve relevant documents and stuff them into the prompt. The issue is that this dynamically retrieved context doesn't always appear at the beginning of the input sequence. Traditional KV caching only reuses a "common prefix," so if the new information isn't at the very start, the cache hit rate plummets, and your GPU ends up recomputing the same things over and over. CacheBlend changes the game by allowing for the reuse of pre-computed KV caches regardless of their position in the input sequence. This makes it possible to achieve a 100% KV Cache hit rate in applications like RAG. The performance gains are significant: * Faster Time-To-First-Token (TTFT): Get your initial response much quicker. * More Throughput: Serve significantly more users with the same hardware. * Almost lossless Output Quality: All of this is achieved with little degradation in the model's generation quality. CacheBlend works by intelligently handling the two main challenges of reusing non-prefix caches: * Positional Encoding Update: It efficiently updates positional encodings to ensure the model always knows the correct position of each token, even when we're stitching together cached and new data. * Selective Attention Recalculation: Instead of recomputing everything, it strategically recalculates only the minimal cross-attention needed between the new and cached chunks to maintain perfect generation quality. An interactive CacheBlend demo is available at: https://github.com/LMCache/LMCache-Examples/tree/main/demo-rag-blending
fedilink





Image description: Image shows batches 1, 2 and 3 sold out for the Ryzen 7 7840HS which costs $1,399. > > cross-posted from: https://mander.xyz/post/1226322 > > > > > For now both DIY and prebuild edition (all configurations) are in batch 4 which ships in late Q4 2023.
fedilink



NVIDIA driver rant
Figured I would share this in case anyone is in the market for a new GPU. For the last month or so, every NVIDIA driver released has been incompatible with 4000 series cards (at least when using display port). As soon as any of the last 4 driver releases are installed, the screen goes black, forcing you to boot into safe mode then roll back or uninstall the driver. The 5000 series cards are very new - it's crazy that the seem to have just stopped supporting 1-2 year old cards so they can focus on their new line. That being said, the new drivers are allegedly not great for the 5000 series either. TL;DR: Consider AMD, it'll probably work better with Linux anyways :)
fedilink

cross-posted from: https://feditown.com/post/650064
fedilink




はじめまして!私は犯罪者のみどくり(のなめ)こと鈴木哲哉(すずきてつや)です!
はじめまして!私は犯罪者のみどくり(のなめ)こと鈴木哲哉(すずきてつや)です! 趣味は様々なサイトに核を飛ばすことです! [\#鈴木哲哉](https://urweibo.com/tags/鈴木哲哉) [#みどくり](https://urweibo.com/tags/みどくり) [#DMCA](https://urweibo.com/tags/DMCA) [#唐澤貴洋](https://urweibo.com/tags/唐澤貴洋) [#AS215935](https://urweibo.com/tags/AS215935) [https://krsw-wiki.org/wiki/](https://krsw-wiki.org/wiki/)唐澤貴洋Wiki:チラシの裏/荒らし連合軍[#みどくり](https://urweibo.com/tags/みどくり) [https://midokuriserver.github.io/minidon/](https://midokuriserver.github.io/minidon/) [@[email protected]](https://lemmy.ml/c/technology) [@kiyomy\_\[email protected]](https://nijimiss.moe/@kiyomy__) [@10der\[email protected]](https://side.misskey.productions/@10der_foot) [@[email protected]](https://oran.ski/@ikujyhtgfrd) [@[email protected]](https://wxw.moe/@Diluta) [@[email protected]](https://timetheft.social/@addedviolence) [@mr\[email protected]](https://gensokyo.town/@mr_orima) [@[email protected]](https://hello.2heng.xin/@mashiro) [@[email protected]](https://misskey.io/@horizon) [@[email protected]](https://baraag.net/@Heiyuu) [@[email protected]](https://misskey.io/@goose) [@FN\[email protected]](https://misskey.gamelore.fun/@FN_Nil256) [@[email protected]](https://sushi.ski/@maindo) [@[email protected]](https://chaos.social/@basisbit) [@[email protected]](https://side.misskey.productions/@mokumen)
fedilink




    Create a post

    This is the official technology community of Lemmy.ml for all news related to creation and use of technology, and to facilitate civil, meaningful discussion around it.


    Ask in DM before posting product reviews or ads. All such posts otherwise are subject to removal.


    Rules:

    1: All Lemmy rules apply

    2: Do not post low effort posts

    3: NEVER post naziped*gore stuff

    4: Always post article URLs or their archived version URLs as sources, NOT screenshots. Help the blind users.

    5: personal rants of Big Tech CEOs like Elon Musk are unwelcome (does not include posts about their companies affecting wide range of people)

    6: no advertisement posts unless verified as legitimate and non-exploitative/non-consumerist

    7: crypto related posts, unless essential, are disallowed

    • 1 user online
    • 33 users / day
    • 85 users / week
    • 330 users / month
    • 1.44K users / 6 months
    • 1 subscriber
    • 4.8K Posts
    • 52.2K Comments
    • Modlog
    Lemmy
    A community of privacy and FOSS enthusiasts, run by Lemmy’s developers

    What is Lemmy.ml

    Rules

    1. No bigotry - including racism, sexism, ableism, homophobia, transphobia, or xenophobia. Code of Conduct.
    2. Be respectful, especially when disagreeing. Everyone should feel welcome here.
    3. No porn.
    4. No Ads / Spamming.

    Feel free to ask questions over in: