Загрузка видео...

Не удалось загрузить видео

На главную

Surprisingly, Windows 10's explorer.exe still works in Windows 11 Version 26H1, albeit bit buggy (e.g., non-working Task View). When ran (11's explorer isn't running), it'll use the taskbar from Windows 10, more features than Windows 11's taskbar such as resizing and moving it.

335,073 просмотров • 5 месяцев назад •via X (Twitter)

Комментарии: 0

Нет доступных комментариев

Здесь появятся комментарии из оригинального поста

Похожие видео

Holy shit... someone built a free portable tool that activates Windows, kills the bloatware, and shuts down every telemetry service Microsoft buried in your OS. It's called GTweak. One .exe file. No install. No subscription. You download it, run it, and your Windows is finally yours. Every "Windows debloater" before this made you pick one trade-off. Activate but keep the spyware. Debloat but lose update control. Disable telemetry but break Defender toggles. GTweak does all of it inside a single portable executable. Here's what makes it different from every Windows tweaker that came before: → HWID + KMS activation built in, no sketchy batch scripts, no Massgrave links, no PowerShell one-liners pasted from a Reddit thread → Removes Cortana, Copilot, Recall, OneDrive, Edge, and every pre-installed UWP app on Windows 10 and 11 in one click → Disables keyloggers and telemetry across Windows and NVIDIA including the data collection tasks hiding in Task Scheduler that nobody talks about → Blocks Microsoft's shadow domains at the hosts file AND firewall level so the OS literally cannot phone home → Disables Defender, SmartScreen, Antimalware, VBS, and UAC with proper toggles instead of registry hacks that break on the next update → Pauses Windows Updates entirely and wipes the cached update files Microsoft refuses to let you delete → Kills Teredo, ISATAP, and IPv6 along with the diagnostic services running silently in the background → Activates the hidden Ultimate Performance power plan and fixes the Realtek audio delay bug nobody at Microsoft has patched in 5 years → Runs custom .ps1, .cmd, .bat, .reg scripts with TrustedInstaller privileges, the highest permission level Windows has → Built-in hardware monitor, NTFS compression, RAM cleaner, and secure Windows.old wipe Killed: $30 Windows 11 Pro keys, every "debloat script" repo with 47 forks and no maintenance, the $5/mo "PC optimizer" garbage running on YouTube ads. Works on every official Windows build since 10 (18362.116). One .NET Framework 4.8 dependency that's already on your machine. BSD 3-Clause License. 100% Opensource.

Guri Singh

171,691 просмотров • 2 месяцев назад

Nibiru has moved from 4 o’clock position to 3 o’clock position. Moving up towards the elliptic (center of Sun - circle) and seen closer to the Sun. Nibiru is moving infront of the Sun, just as predicted by the Zetas. 10/24/25 vs 11/04/25 ☄️ #Nibiru #Atlas “November is when the Nibiru Complex will move from the left of the Sun to center in front of the Sun.” “• Planet X, finding itself tilting along the flow lines while close to the Sun, does a slow roll to align with the Sun at its middle, the S Pole slung away from the Sun's S Pole, this direction and momentum continuing until it rolls 270° to click into a side-by-side alignment with the Sun. This is implied in Eastfield, a 270° roll both before and after the timeline. • Planet X does more than one 270° roll, as the fastest way to align itself again with magnetic flow lines after piercing the Ecliptic, as implied in Eastfield, the second roll culminating in the passage where the visible presence of Planet X increases enormously during the week of rotation stoppage. The timeline implies a position of Planet X prior to the passage that include angles of 45° on either side and a 180° reversal in between. • Planet X first approaches creating wobbles in the orientation of the Earth as it passes the Sun's S Pole, then a tight lock while rising through the flow lines to the Ecliptic, then slinging the Earth in a radically different orientation (denoted by the beak) during a 270° roll, and then halting the rotation of the Earth as the Atlantic Rift is gripped in line with Planet X.”

ZetaTalkLive👽

11,452 просмотров • 9 месяцев назад

I told you to claim your free 16GB NVIDIA GPU for learning Local LLMs. Now I’m going to show you how to double its inference speed without touching the hardware. Google Colab gives you an enterprise grade NVIDIA Tesla T4 GPU for free, roughly 4 hours every single day. It is the absolute perfect sandbox for learning AI engineering, testing inference flags, and pushing massive context windows. The local AI timeline is moving way too fast. If you aren't using Multi Token Prediction (MTP) yet, you are leaving massive performance on the table. I just pushed DeepMind’s Gemma 4 26B to 64.9 t/s on this exact free tier. Let's look at the raw benchmark data running on an Ubuntu Linux environment with the latest compiled llama.cpp binaries and quantized GGUFs from Unsloth via HuggingFace: # Qwen 3.5 9B (Dense): Base: [ Prompt: 626.7 t/s | Generation: 21.0 t/s ] With MTP: [ Prompt: 539.1 t/s | Generation: 24.8 t/s ] # Gemma 4 26B QAT (MoE): Base: [ Prompt: 634.2 t/s | Generation: 48.3 t/s ] With MTP: [ Prompt: 572.1 t/s | Generation: 64.9 t/s ] If you are paying attention, this single Colab notebook reveals 3 massive observations about the current state of local LLMs: # 1. The MTP Speedup (Software Overclocking) Standard autoregressive decoding guesses one token at a time. MTP acts like a highly optimized, built in speculative decoder. It predicts multiple future tokens at once and the main model verifies them in parallel. The result? Zero accuracy loss and a massive throughput increase. Gemma jumped from 48 to 65 t/s just by flipping a flag. # 2. The MoE Paradox (Bigger is Faster) How does a 26B parameter model absolutely destroy a 9B model in raw speed on the exact same hardware? Architecture. Qwen 3.5 9B is a dense model. it activates all 9 billion parameters for every single token. Gemma 4 26B is a Mixture of Experts (MoE) model. It routes data efficiently, activating only 4B parameters per token. You get the reasoning capabilities of a 26B model with the compute cost of a 4B model. 3. Thinking Efficiency When I ran the exact same complex prompt on both models, the larger MoE spent significantly fewer "thinking" tokens to arrive at the correct answer. A smarter model doesn't just give better answers; it gets to the point faster, saving you compute cycles and preserving your context window. # Want to run this yourself? Here are the exact llama.cpp CLI commands. For Qwen (MTP is baked into the main model): ./llama-cli -m Qwen3.5-9B-UD-Q4_K_XL.gguf -p "Explain quantum computing." -n 2000 -c 8000 -ngl 99 -fa on --spec-type draft-mtp --spec-draft-n-max 4 --spec-draft-p-min 0.7 For Gemma (Using a separate lightweight draft model): ./llama-cli -m gemma-4-26B-A4B-it-qat-UD-Q4_K_XL.gguf --model-draft mtp-gemma-4-26B-A4B-it.gguf -p "Explain quantum computing." -n 2000 -c 8000 -ngl 99 -fa on --spec-type draft-mtp --spec-draft-n-max 4 --spec-draft-p-min 0.7 Stop waiting for a $3,000 rig. Boot up Colab, pull these models, and start building your stack. I’ve put together a completely free, cell by cell Google Colab notebook that automates this entire workflow so you can test it yourself in 5 minutes and learn. Link to the notebook is in the comments below. Experiemt with different MTP parameters, context windows and post your results in the comments.

Alok

170,442 просмотров • 21 дней назад

I want to believe, but there's too much evidence that not only tells me but shows me that they lied. I feel like low Earth orbit is as far as we can go... 1. The van Allen radiation belt. 2. The disgusted, unexciting, ashamed post moon landing conference with the three astronauts. Their body language, mannerisms, and answers scream that they're lying. 3. The lack of noise of the jet engines in the "videos." 4. How did they get the lunar rover on the spaceship? 5. No craters or dust underneath the spaceship. 6. How did the film the spaceship take off perfectly if nobody was left on the moon to operate the camera, and how was it so perfect if there was a delay? 7. The rockets and the spaceship look like a model. 8. The video of them saying that they are 130,000 miles away from Earth when all they really did was cover up the windows when they are in low earth orbit and film a small portion of Earth from low Earth orbit to simulate that they were far away, but then you find out that they're only in low Earth orbit when they uncover the windows. (Shown in the video below) 9. How we have to redesign the space suits to be able to handle the atmosphere on the moon. 10. The lack of talk and missions to the moon ever since. 11. The numerous blacked out photos from NASA. 12. How an older smartphone has way more technology than the entire spaceship back in 1969, and how we were able to even communicate with them in the spaceship as the one astronaut who passed away before the moon launch specified that they had trouble communicating between buildings and the shuttle on the ground. 13. Not one single astronaut would put their hand on the Bible and say they went to the moon. Why? 14. All the CGI and bubbles caught on NASA videos. 15. All the green screen captures and astronauts on wires in the "shuttle" and on the "ISS." There are so many bloopers and outtakes of astronauts and shuttle hatches malfunctioning, people appearing in the background of videos of the shuttle, people fading in and out, I could go on forever... How would you convince me against the evidence or prove me wrong from the arguments that I have provided?

The SCIF

32,347 просмотров • 1 год назад

Created with PixVerse V6 on BudgetPixel AI Title : From Blueprint to Reality Style: Ultra-realistic, cinematic, emotional, 4K, shallow depth of field, realistic lighting, smooth camera movements, detailed architecture, cinematic color grading. Full Prompt: A highly realistic cinematic 15-second video. The scene begins inside a modest room during golden hour. A young man in casual clothes sits at a wooden desk beside a window. Warm sunlight falls across the table, illuminating a detailed blueprint of his dream house. The room is quiet except for the soft sound of birds and a gentle breeze moving the curtains. The camera slowly moves over the blueprint, showing detailed floor plans and sketches. The young man touches the drawing with his fingers, imagining his future home. Suddenly, the blueprint begins to glow with soft golden light. Tiny particles rise into the air, and the room slowly fades away. In a magical transition, the young man finds himself standing at the entrance of the exact house from the blueprint. The camera circles around him as he looks at the beautiful modern home with large glass windows, a green lawn, and warm interior lighting. He slowly walks inside, seeing the spacious living room, elegant furniture, and sunlight entering through the windows. He walks toward the balcony and looks around in disbelief. His eyes fill with happiness and pride. The camera pulls back to reveal the entire house at sunset while he smiles, realizing his dream has become reality. Ultra-realistic textures, cinematic lens flare, volumetric sunlight, realistic shadows, smooth motion, 4K quality. Scene Timing 0–4 sec: Young man studying the blueprint in his room. 4–7 sec: Blueprint glows and magical transition begins. 7–11 sec: He arrives inside the dream house. 11–15 sec: He explores the home and smiles with joy. Voice Over (English) "Every dream starts as a simple drawing... a vision held in our hearts. One moment, it was only lines on paper. The next, I was standing inside the life I always imagined. Dreams become real when we dare to believe in them."

Yashal Ai

13,850 просмотров • 1 месяц назад

$ZEPH Chain Audit Update ⛓️📢 Upcoming Audit Hardfork (v8) We’re rolling out our Auditing HF on the 31st March as a critical milestone for our chain audit and commitment to maintaining chain integrity! ➡️ Hardfork Date: 31st March Updated downloads will be available ahead of time and will be announced when ready. ➡️ Audit Window: Throughout the month of April, all users will have the opportunity to audit their coins. This process is essential to confirm the integrity of your assets and our overall supply. ➡️ GUI Wallet Functionality: Our GUI wallets (Web, Windows, and OSX) will be updated with streamlined auditing functionality – designed to be as close to a “one-click” process as possible – to make this as painless as we can for everyone. ➡️ Mandatory Audit: All assets on the network will require auditing (ZEPH, ZSD, ZRS, ZYS). Please ensure you follow the instructions once the update is available! But as mentioned, this will be made to be as painless as possible! We recognize that this development and process has taken longer than we initially anticipated. We apologize for the delays. Our approach has evolved significantly over time, and in addition; the necessary emergency Hardfork v7 to fix the morphing assets bug has ultimately set us back. But we’ve been working hard (and still working hard!) behind the scenes in order to bring this update for Zephyr as soon as we can, while being as rigorous as we can. We remain fully committed to providing a robust and secure protocol, and for us to move on from this and work on much more exciting features and developments! Thank you for your continued support! — The Zephyr Team

Zephyr Protocol

20,840 просмотров • 1 год назад