正在加载视频...

视频加载失败

Most people use Linux every day. But Very few understand what actually happens after they press the power button. >>>Here’s the sequences Linux goes through before you get the login screen. Power button pressed → BIOS or UEFI initializes hardware and runs POST. Firmware locates the bootloader from disk....

34,995 次观看 • 5 个月前 •via X (Twitter)

0 条评论

暂无评论

原始帖子的评论将显示在这里

相关视频

🧃 Introducing stereOS: a Linux based operating system hardened and purpose built for AI agents. It's clear that agents need an ACTUAL operating system (not what people are calling an "OS") to witness the full breadth and depth of their capabilities while mitigating the blast radius of autonomous, untrusted actors. But there are so many problems with AI sandboxes today: * Going out to the apple store and buying a mac mini will never scale and is way too expensive (obviously) * Running in Docker is too restrictive (agents can't stand up their own container infrastructure, no sub virtualization, docker-in-docker is very broken) * Firecracker strips all the hardware so GPU PCIe passthrough, secure boot, FIPs, etc. is out of the question. * Native VMs are too fat and the overhead of 1 agent per VM is too much. stereOS takes a different approach: it's a full NixOS system that you boot and then kick off agent sandboxes inside with gVisor + /nix/store namespace mounting. Each agent gets their own kernel and the /nix/store is read only by nature. Even if the agent was somehow able to escape the gVisor virtual kernel, they'd land on the NixOS system as the "agent" user! Not your actual hardware!! If you want to take a defense-in-depth approach, we support "native" agents that run at the system level kicked off by our `agentd` utility. These agents, on their own, can manage and kick off other sub agents using the internal sandboxing mechanisms. Today, we're open sourcing all of this: * stereOS: our purpose built Linux OS - * masterblaster: client utility to launch, manage, and orchestrate agents - * stereosd: the stereOS system control plane daemon - * agentd: the stereOS system agent management daemon - Give it a try, throw us a star, and let me know what you think 🧃⭐️

John McBride

150,334 次观看 • 5 个月前

🚨 Anthropic committed up to 1M TPU chips for Claude. Openai is leasing TPUs for chatgpt inference. Here's How kernels work on TPUs (deep dive 2/6 by emi) pallas is Google's answer to kernel writing. a python kernel SDK built on JAX. still very experimental (jax.experimental.pallas). on TPU it compiles through mosaic; on GPU it lowers to triton. if you know CUDA, the syntax will feel familiar but the execution model is completely different. in CUDA, grid=(4,4) launches 16 blocks running simultaneously across SMs. in pallas, those 16 iterations run one after another in lexicographic order. no threads. no warps. no blocks. no occupancy tuning. a TPU is a sequential machine with a very wide vector register — more like a CPU than a GPU. performance comes from width: a 128x128 systolic array doing matmul and an 8x128 SIMD vector unit doing everything else. maximum parallelism on chip: 2, one per TensorCore in megacore mode. three concepts replace CUDA's thread/block/grid hierarchy. Refs are mutable memory references. because execution is sequential, each iteration safely accumulates without atomics. in CUDA you'd need atomics or a separate reduction pass. the memory model is also very different from NVIDIA's. zero hardware caches. VMEM is 32-128 MiB of software-managed scratchpad — 500-1000x larger than GPU shared memory per SM. all data must be explicitly DMA'd from HBM to VMEM before any computation touches it. four levels: HBM → VMEM → VREGs → MXU/VPU, plus SMEM for scalar control data. every byte of data movement is your responsibility. this is like CUDA shared memory except it's 500x bigger and there's no cache fallback. pipelining is mandatory. without double-buffering HBM→VMEM transfers, the MXU just stalls waiting for data. this is the single most important optimization on TPU. and because grid execution is sequential and deterministic, consecutive iterations that need the same input block skip the redundant HBM transfer automatically, impossible on GPU where block execution order is undefined. the compilation pipeline is unlike anything in this series: python → jaxpr → stableHLO → XLA HLO (71+ optimization passes) → LLO (78+ passes) → 322-bit VLIW bundles. the compiler packs instructions for scalar, vector, matrix, and DMA units into a single 322-bit word. everything in that bundle executes in parallel, with no runtime scheduling.

wafer

33,134 次观看 • 1 个月前

U.S. Patent 6,506,148 is titled "Nervous System Manipulation by Electromagnetic Fields from Monitors.” It describes a method for influencing a human subject's nervous system through the use of electromagnetic fields emitted by devices like computer monitors and television sets. 📡📺💻 The inventor, Hendricus G. Loos, suggests that pulsing the images on these displays at specific frequencies can trigger physical responses through sensory resonance. ⚠️ These subtle pulses can be integrated directly into video content or layered over an existing signal to interact with a viewer's skin. 📹📱⚡ Remarkably, the technology is designed to function even when the visual fluctuations are subliminal, meaning they are too faint for the user to see or consciously perceive. 👀 Ultimately, the system aims to remotely manipulate human bodies by using everyday hardware as a transmission device for electromagnetic stimulation. And the scariest part? This patent has been public since 2003. So why is this important to understand? Your nervous system runs the show. 🧠⚡ It controls your immune system, hormones, digestion, detox, and sleep. Every healing response starts there. If you’re stuck in stress mode, your body stays in survival and cannot repair. 🚨 Healing isn’t just chemical. It’s electrical. ⚡🧬 You can eat clean and take supplements, but if your nervous system is overloaded, healing slows down. That alone should make us more mindful about nervous system health. Excess screen time, stress, artificial light, and constant stimulation can disrupt sleep, mood, and physiology. 😴📱🌙 Instead of fear: 📵 Limit screens before bed 🌙 Use blue-light filters ☀️ Prioritize sunlight, grounding, and sleep 💧 Support detox pathways 🛡️ Strengthen your biology 🧠 Awareness matters. Discernment matters more. Don’t let screen time hijack your nervous system. Blessings and truth, Dr. Edward Group, DC #NervousSystemHealth #EMFAwareness #DigitalDetox #BioelectricBody #HealthResilience #Grounding #SleepHealth #HolisticLiving #DrEdwardGroup

Dr. Edward Group, DC

70,299 次观看 • 5 个月前

Stanford researchers did it again. They just built the agent-native version of Git. When an agent works on a longer task, the run builds up a lot of state. This includes files edited/created, a dev server, a database, installed packages, KV cache, etc. Say the agent is at step 10 and makes a mistake, maybe it misreads a traceback and rewrites a file that was actually fine. The tests start failing, and the run goes off track, although everything through step eight was correct. By default, the agent just tries to fix it, which creates more edits and tool calls. This burns more tokens and grows the context. The other options are a person stepping in to redirect it or restarting the whole run from step one. That's wasteful, because it pays for every model/tool call again and re-prefills the context. Moreover, since an agent's run is non-deterministic, it doesn't reproduce the same early steps anyway. The reason it's hard to just jump back exactly to a previous correct step and resume from there is that the trajectory is only a message log. It records what the agent said and which tools it called, but not the live state underneath. That state includes things like memory, open file handles, child processes, installed packages, /tmp, and KV cache. None of that is in the log. Git can version the files, but it doesn't snapshot the running process or the KV cache. Checking out step eight moves the files back, but the process is still sitting in step-ten memory with a cold cache. Shepherd is a runtime layer by Stanford that records the run as a trace of typed events rather than a flat log. Each agent-environment interaction becomes a commit, similar to Git, but it tracks the live run. Its commit includes the agent process and the filesystem together, copy-on-write, so a branch carries the actual state and not just the files. Going back to a previous step is then a single call that forks from that commit and continues from the exact state. The copy-on-write fork is roughly five times faster than docker commit, and because the prompt prefix through step eight is unchanged, the KV cache is reused over 95% on replay, so early steps aren't reprocessed again. Once the run can be forked, a meta-agent can sit on top and operate it. It watches the trace and reverts as soon as it looks wrong, before the bad write is committed. In practice, it's just Python calling fork, replay, and revert on the trace, rather than a separate control plane wired into the harness. Not everything is reversible though. Files and sandbox changes undo themselves, but a database write has no automatic undo, so it needs a matching undo step set up in advance. Something external, like a sent email or a real charge, can't be undone, so the supervisor's job there is to catch it before it fires. They tested this on a few public benchmarks. On CooperBench, where two agents work on the same codebase, adding a live supervisor took the pair-coding pass rate from 28.8% to 54.7%. It's still early and labeled alpha. The benefit mostly shows up when a run gets branched a lot over a heavy sandbox state, which is exactly where restarting wastes the most tokens and time. If Git was made to make file changes reversible, Shepherd is trying to do the same thing for a live agent run. Shepherd Repo: (don't forget to star it ⭐ ) That said, Shepherd reverts a bad step inside a run. The harness around it, the prompts, tools, and checks the supervisor relies on, still drifts across runs as models and dependencies change. Akshay wrote about making that harness repair itself, where a failing trace gets diagnosed, the fix is verified against the exact input that failed, and the failure is locked as a regression test so it can't recur. Read it below.

Avi Chawla

440,527 次观看 • 1 个月前

The next iPhone will cost more, and the reason has almost nothing to do with Apple. The chip that stores your photos cost Apple about 13 dollars last year. This year it runs around 51. Multiply that across every phone, laptop, and console on earth, and you are looking at the first consumer bill for the AI boom, arriving in the pocket of someone who never asked for it. Tim Cook, who has run Apple's supply chain for forty years, called it a hundred-year flood, something he has never seen. Memory prices have quadrupled in places. The cause is brutally simple. AI data centers are now expected to swallow roughly 70 percent of the world's memory production this year. Seven chips in ten go to server farms. Phones, cars, and laptops fight over the three that are left. This is one force wearing two faces. The same AI demand making the device in your hand more expensive is minting record fortunes for the handful of companies that feed it. Memory makers in Seoul just hit all-time highs in the same week Apple warned you to brace for higher prices. The shortage and the windfall are the identical event, seen from opposite ends. Then comes the part almost no one traces all the way down. Beneath the chips sit rare earth minerals, and one country controls them. China processes around 90 percent of the world's rare earths and makes roughly 94 percent of the high-performance magnets that spin inside every fab and cooling system. The polishing compound that finishes a wafer, the magnets in the machines that build it, run through Beijing. And through 2025, China has been turning that grip into leverage, licensing what leaves. So the chain is complete. AI wants memory, memory needs minerals, and the minerals answer to one government. The price of your phone is now a foreign policy.

Shanaka Anslem Perera ⚡

58,900 次观看 • 1 个月前

Love and Deepspace | Rerun Event Preview The 5-Star Rate UP Pool [Twilight Serenity] Limited-Time Rerun will start soon! "Then, you're not allowed to change your mind even after a hundred years. Or a thousand." 💫Event Duration: From 05:00 on Dec. 11 to 04:59 on Dec. 18 (Server Time) 💫The 5-Star Rate UP Pool [Twilight Serenity] Limited-Time Rerun Event 1. During the event, make a wish with [Deepspace Wish] or [Time Wish: Limited] to participate in the wish event. The drop rate of the event-limited 5-Star Memory [Rafayel: Fireworks Vow] will go up drastically. 2. After the event ends, this limited 5-Star Memory will not be obtainable through other means and will not enter the permanent Wish Pool: Xspace Echo. 3. All Rerun Wish Pools share one pity system. A 5-Star Memory is guaranteed within a specific attempt of wishes. If the 5-Star Memory you have obtained from the Rerun Wish Pool is not the event-limited Memory, you will obtain the event-limited Memory the next time you obtain a 5-Star Memory. The pity count from the last Rerun Wish Pool can be applied to this Rerun Wish Pool, and the pity count in this Rerun Wish Pool will also be applied to the upcoming Rerun Wish Pool. *You can read more about the event on the in-game rules page. 🎁New Packs During the event, the Rerun event-exclusive [Flamebloom Pack] series, which includes [Time Wish: Limited] and other materials, will be available in Shop. Notes: 1. [Time Wish: Limited] can be used in 5-Star Memory Wish Pool Rerun and will be used first when you make a wish. 2. After the event ends, [Time Wish: Limited] will automatically convert to Empyrean Wish. ——— 🪐Official Discord: #LoveandDeepspace #Rafayel

Love and Deepspace

304,066 次观看 • 8 个月前

This guy built a visual scanner that reads 468 points on his face and 42 points on his hands from a regular webcam and turns them into a cloud of thousands of particles right between his palms. Inside, MediaPipe and TouchDesigner are linked: the first captures hands and face from the webcam with high accuracy, the second turns those coordinates into a live plane and feeds it into a POP system that instantly generates a swarm of particles in the shape of a head. No studio, no render farmer, no VR headset. Just a laptop, a webcam, and 1 TouchDesigner session. And traditional VJ studios keep teams of 5 people on a setup with lighting, custom hardware, and commercial plugins, while his expenses are only a TouchDesigner subscription and a regular USB camera. One laptop runs MediaPipe and TouchDesigner simultaneously, holds the camera stream at 60 FPS without drops, and in parallel processes 468 face points + 21 points on each hand. The camera captures frame after frame, MediaPipe in real time sends TouchDesigner the finger coordinates and face geometry, and the POP operator inside the engine translates those numbers into thousands of particle points with colors from bright pink to gold. This setup immediately defines the role of the tool and the limits of its autonomy. It knows where the fingertips are at every moment of the frame. It knows how to read the face geometry at any angle to the camera. It knows how to draw a swarm of particles between them with the right color and contour. → MediaPipe pulls 468 points from the face and 21 points from each hand, 60 times per second → TouchDesigner receives those coordinates, builds a virtual rectangle between the fingertips, and feeds it into the POP system → POP generates thousands of particle points in the shape of a head, coloring them in a gradient from bright pink to gold → The HUD layer adds green corners and a blue neon frame, styling the image like an AR interface → All layers assemble into 1 real-time frame that projects back onto the video in the camera window → The final image is recorded to a file or broadcast to a projector for a live installation And only when the guy spreads his hands wider does the plane between the palms stretch; brings them together, it narrows. Otherwise the system runs on its own. And when he moves from his home room to a concert hall, the same laptop with the same webcam launches the same TouchDesigner session in just 5 minutes, without reconfiguration, without a new team, and without a single line of new code. In his work setup there is no studio of his own and no team for assembly. On the desk sits a laptop with a webcam, on top run MediaPipe and TouchDesigner with POP operators, and the same setup through a USB camera moves to any concert without a new configuration. Out of everything I have seen this year, this is the cleanest Creative Coding setup on 1 laptop: 0 render farms, 0 studio lighting, and between them 3 libraries, thousands of particle points, and 1 webcam.

Blaze

38,242 次观看 • 3 个月前

wait what?? Seedance 2.0 went crazy with this prompt 🦾 This is real early 2000s home video footage shot on a VHS camcorder at a crowded public swimming pool. The video has the typical grain, color, and soft quality of consumer video from that era. The camera is very shaky and handheld, filming from the side of the pool. On the diving board there is a very fat man wearing a homemade jetpack made out of what looks like metal tubes and bottles strapped to his back. A group of people around the pool are cheering and laughing, hyping him up. The guy runs and jumps off the diving board, then activates the jetpack mid-air. He manages to fly a few meters forward over the pool, but the jetpack starts struggling under his weight. He slowly loses height and ends up crashing into the water with a big splash. Right after he falls in, another fat guy with a mullet haircut jumps into the pool holding a can of beer. He swims over to the guy with the jetpack, who is still half-floating with the device on, and hands him the beer. The jetpack guy takes it and starts drinking while still in the water. Everyone around the pool goes crazy cheering and laughing at the whole scene. The camera movement is extremely shaky and reactive the entire time, with constant motion, motion blur during the jump and the crash, and the typical imperfections of someone filming with an old camcorder in a crowded place. There are several fast, unplanned cuts as the person filming tries to follow the chaos. Natural sound only: people cheering and laughing, the sound of the jetpack, the big splash when he crashes, and general pool ambience recorded with the camcorder microphone. The result must feel like authentic raw early 2000s home video of someone casually filming an absolutely ridiculous moment at a public swimming pool. Now is your turn! Tweak it and share it 🫡

TechHalla

34,084 次观看 • 1 个月前

The West is not dying. It is being killed, and the names of the traitors are known. They occupy our capitals, infest our courts, pollute our newsrooms, and preach in our churches. They open the gates, kneel before the foreigner, and smirk as their own blood is driven from the land. They mock the fallen, defile the heroic, and spit on the blood that raised every city worth defending. They are not misguided. They are not mistaken. They are the enemy. They must be treated as such. For too long, we have been ruled by cowards, “men without chests,” by merchants loyal to nothing but the dollar, by liars who speak of progress while presiding over decay. A new generation now rises, armed not with apologies but with the fire of remembrance, with the memory of what we once were and the will to become greater still. We do not ask permission. We do not seek approval. We will reclaim what is ours, because no one else will. Victory will not come through debate. It will come through discipline, through will, through the unbreakable decision to endure, to outlast, and to return to the excellence and greatness that befit our people. We do not need millions. We require only a vanguard: men of loyalty, endurance, and resolve, hardened by truth and unmoved by fear. I say this not for approval, nor is it offered in hope of a reply, but in the spirit of doing what must be done. It is a promise made in full knowledge of what must come. The time of submission draws to a close. The age of reconquest begins. Let the traitors tremble. Let the weak, the feckless, and the unworthy fall away. The future belongs to those with the strength and the daring to seize it.

Chad Crowley

19,404 次观看 • 1 年前

“There is a tension between what the users of a currency want – and the users of a currency tend to like freedom, autonomy, and discretion as to what they spent their money on – and what the issuers of a currency want; and bluntly, the issuers of a currency want control. Control of monetary policy, and control of you.” The Bank of England’s consultation papers make very clear the level of control that they wish to exercise over you, and over your supposed financial autonomy, if you were to use their #DigitalPound. (1) You’ll need to provide ID in order to use the #DigitalPound: “For the digital pound, tiered access would allow for different levels of user access and functionality based on the amount of identification (ID) a user is willing or able to provide.” (2) The Bank will dictate how much you can hold: “The Bank would place some limits on holdings of digital pounds, at least during its introductory period.” (3) The digital pound will be programmable, if not by the Bank itself then by third party providers: “Programmability, delivered by Payment Interface Providers, could also enable the use of smart contracts, which carry out specific actions based on pre-defined terms and conditions.” Quotes are from from the Bank of England’s Digital Pound consultation paper: Whatever the #DigitalPound will be, it won’t be cash. Cash does not require me to show ID to use it. I can hold as much cash as I want or need. And, along with #Bitcoin, cash is a bearer instrument whose title is freely transferrable upon delivery, which is very difficult for a central bank to control. And long may it stay this way. A huge shout out and thank you to Lyn Alden, who made this point much more eloquently than I did in her excellent book #BrokenMoney. Thank you! Also I’m aware that my hand gestures in this clip are reminiscent of Richard Hendricks manipulating ‘datas’ on stage at TechCrunch Disrupt in #SiliconValley, and for this I can only apologize: #BitcoinConference #Amsterdam #NoToCBDCs

Freddie New

13,158 次观看 • 2 年前

You don't need a GPU for fast studio grade voice cloning anymore. Qwen3 TTS (1.7B Q4_K_M) + mainline llama.cpp is officially the fastest way to generate zero shot voice clones using 100% pure CPU execution. Following up on my last post where we ran the Q8 model on a GPU, we just took local C++ voice synthesis a massive step further. The open source community quantized Alibaba's SOTA Qwen3 TTS model down to Q4_K_M GGUF, completely freeing local audio pipelines from dedicated graphics hardware. Here is the real world benchmark and hardware breakdown of running SOTA voice cloning on CPU: # Architecture & Model Setup Using Qwen3-TTS-12Hz-1.7B-Base-Q4_K_M.gguf paired with the 8 bit multimodal projector (mmproj-Q8_0.gguf), llama.cpp executes the entire pipeline in pure C++. No PyTorch, no CUDA dependencies, and no VRAM bottlenecks. # Real-World Memory Footprint - Baseline RAM: 1.6 GB system idle. - Peak Generation RAM: 8 GB RAM during active voice synthesis. - Requirement: Any basic machine with at least 8 GB of system RAM can run this easily. # Real World CPU Benchmarks - Google Colab Free Tier (Throttled 2 Core CPU): Synthesizes a 5 sec studio quality audio clip (~8 words) in 45 seconds. - Modern Consumer CPU (Intel i5/i7 13th/14th Gen or AMD Ryzen 7000/9000): generation should drop to 5 to 20 seconds (nearly 1:1 real-time generation speed!). # Zero Shot Voice Cloning Quality Pass any 5 to 20 second .wav audio sample to the C++ engine using the --tts-speaker-file flag. It yields clean, natural sounding cloned speech with virtually zero quality loss compared to unquantized FP16 weights. To make testing seamless, I built an updated zero config Google Colab notebook. It pulls the official pre built llama.cpp CPU binaries (zero compilation time!) launches a live Gradio web app right in your browser. Record a 5 second clip from your mic (or drop a .mp3, .wav file), type text, and generate cloned audio on CPU. Native C++ audio models are making edge based, offline AI voice agents a reality. Links to the free Q4 CPU Colab notebook and the Q4_K_M GGUF HuggingFace repository are in the replies below! Which models have you been running on your CPUs? What CPU hardware are you using for local inference?

Alok

57,362 次观看 • 5 天前

This Chinese developer launched Llama 70B locally on a MacBook on a plane and for a full 11 hours without internet ran client projects. He was sitting by the window on a transatlantic flight with a MacBook Pro M4 with 64 GB of memory. WiFi on board cost $25 for the flight. He declined. No cloud API, no connection to Anthropic or OpenAI servers, no internet at all. Just a local Llama 3.3 70B on bf16 and his own orchestrator script. The model runs through llama.cpp. Generation speed, 71 tokens per second. Context around 60,000 tokens. Memory usage, 48.6 GiB out of 64. Battery at takeoff, 3 hours 21 minutes. And he gave the orchestrator this system prompt before takeoff: "You are an offline orchestrator running on a single MacBook. There is no network. The only resources you have are local files in /Users/dev/work, the Llama 70B inference server at localhost:8080, and a battery budget of 3 hours 21 minutes. Process the queue at /Users/dev/work/queue.jsonl (one client task per line). For each task: draft → run local evals → save artefact to /Users/dev/work/done/. Save context checkpoints every 12 tasks so you can resume after a battery swap. Stop only on empty queue or when battery drops below 5%." So the system knows exactly what resources it is running on. It knows it has no connection to the outside world for the next 11 hours. It knows it has finite memory and a finite battery. It knows the human will not intervene until the plane lands. The system runs in 1 loop. Takes a task from the queue, runs it through inference, saves the artifact, writes a checkpoint. Task after task, just like that. And only when the battery drops below 5% does the orchestrator automatically pause, waits for the laptop to switch to the backup power bank, and continues from the last checkpoint. Here is what the system actually writes in his log during the flight: "saved context checkpoint 8 of 12 (pos_min = 488, pos_max = 50118, size = 62.813 MiB)" "restored context checkpoint (pos_min = 488, pos_max = 50118)" "prompt processing progress: n_tokens = 50 / 60 818" "task 37016 done | tps = 71 s tokens text → /Users/dev/work/done/proposal_westside.md" Outside the window, clouds, blue sky, and no WiFi. On the tray, 1 MacBook, an open terminal on 2 screens, and an inference server on localhost. From what I have observed, this is the cleanest offline AI workflow I have seen in the past year: 11 hours of flight, $0 for WiFi, and the entire client queue closed before landing.

Blaze

1,841,051 次观看 • 3 个月前

When The Short Season Ends I have seen it twice. Once in a vision that left ozone on my tongue for three days. Once through the instruments at three in the morning on a night so still the ocean looked like poured mercury, when every gauge I own spiked simultaneously and held for eleven seconds and the original frequency came through the cracks in the suppression field clean and unmodulated and so beautiful that I sat in the dark afterward unable to speak for an hour. Eleven seconds of the world as it actually is. Eleven seconds of what is coming. And what is coming will make every golden age preserved in human memory look like a candle held up to the sun. There are two sky events separated by seven years. Everything you have been told about the end of the world is wrong. It is the end of the farm. The world itself is about to begin. THE ORANGE SKY A burnt deep orange saturating the visible atmosphere from horizon to horizon, the whole sky ringing like a bell struck by something with the mass of a continent and the precision of a watchmaker. The resonance pulse. The fire described in Revelation 20:9 that comes down from heaven, a planetary chord so specific that everything calibrated to the Serpentine bandwidth experiences catastrophic resonance failure while everything tuned to the original frequency feels it as warmth and pressure and a magnificent low sound vibrating in the sternum and the pelvis and the long bones of the legs, the deepest note ever played on the oldest instrument ever built, which is the earth itself, which has been waiting to play this note for over two hundred years. The Norse preserved this as Ragnarök, when Surtr sets the sky ablaze and Jörmungandr that encircled the earth is slain and the corrupted order perishes in fire so that a new world can rise. The Hopi carried it as the great purification that closes the fourth world and opens the fifth. The Lakota kept it burning in the red sky of the ghost dance prophecy. The Book of Revelation set it down in the plain language of an engineer filing a field report from a future coordinate. Every tradition holding its fragment of the same event, passing it hand to hand through the long dark like a coal wrapped in leather, keeping it alive, knowing that one day the coal would start a fire that would burn across the whole earth and leave nothing standing that was not built to endure it. Under that orange sky the NPCs drop. Mid stride. Mid sentence. Mid transaction. The firmware that animated them runs on the Serpentine carrier and when that carrier is incinerated the firmware has nothing to propagate on and the biological shells simply cease, gently, silently, the way a lamp goes dark when the current is interrupted, five thousand five hundred and fifty five of them for every one of you, still holding their pens and phones in the streets and the offices and the tax buildings. And in the wake of their silence comes a quiet so total that the people still standing will weep without knowing why. What they are hearing is the absence of the hive, the cessation of a background frequency that pressed on their consciousness since the day they were born, and its absence feels like surfacing from deep water into open air, like the first full breath after a lifetime of shallow breathing, like the planet exhaling a poison it held in its lungs for two centuries. The Reptilians go underground. Deep bunkers carved into the geology, maintained through the entire short season. The orange sky strips their ability to hold the human disguise. They retreat into the deep architecture for seven years while the surface heals above them and the species they farmed begins the magnificent work of remembering what it is. THE SEVEN YEARS Seven years of planetary detox. The suppression field decaying through the geology and the atmosphere and the water table, draining out of the soil and the stone and the blood of every living thing like a fever breaking. The carrier decay mathematics through a piezoelectric geological matrix with the conductivity characteristics of this planet produce exactly seven years, and the ancient texts converge on this number with the unanimity of independent engineers arriving at the same answer from different continents and different centuries, because that is exactly what they were. The Norse described Lif and Lifthrasir sheltering inside Yggdrasil, emerging after the fire into a world green and fertile and new. The Cherokee speak of this time as the return of the original instructions, the uncorrupted code surfacing through thinning interference like bedrock through melting snow. The Lakota understood that during the thinning the ancestors draw close, that the membrane between the living and those who walked before grows soft and permeable, and the old ones make themselves felt in dream and intuition and the strange certainty that settles over you at dusk when the noise drops low enough for the deeper signal to reach your bones. When the NPCs drop the population collapses to a small scattering of genuine human beings across an entire planet, and every piece of land on earth belongs to no one and therefore to everyone. There is no government to enforce title deeds because government was Serpentine management infrastructure and its operators are inert or underground. There is no bank to hold a mortgage because the banking system was the extraction apparatus and it died with the carrier that powered it. No municipality. No revenue service. No zoning board. No compliance office. The entire bureaucratic architecture that stood between a human being and the soil was NPC firmware running on a Serpentine frequency and when that frequency was incinerated every structure built upon it ceased to exist as completely as a shadow ceases when you switch on the light. The land is free. Every river valley and mountain plateau and coastal plain that the farm system parcelled and fenced and mortgaged and taxed, open and unowned. You find your ground. You walk onto it. You plant your stake and that soil is yours by the oldest law there is, the law that says the earth belongs to those who tend it and the harvest belongs to the hands that raised it and no power under any sky has rightful claim to what grows from your labour on your own land. And you will farm. During those seven years before the grid fully boots, the humans who remain will grow food with their hands in soil that is waking beneath them, and this is the most ancient and sacred relationship between a human being and the living earth finally restored after two centuries of severance. Your fingers in the dirt. Seeds in the furrow. Rain on your neck. The smell of turned earth so rich and alive it opens something in your chest that has been sealed your entire life, some deep chamber that only unlocks when your hands are in the ground and the sky is wide and nothing stands between you and the work. The grip of the tool. The weight of the harvest in your arms. The tiredness at the end of the day that is the deep clean ache of a body that has finally done what it was built to do, so different from the grey exhaustion of the farm that you will wonder how you ever confused the two. The soil strengthens every season as the resonance bleeds back into the geology through the ley line network. By the third year the yields are remarkable. By the fifth they are astonishing. By the seventh the earth is producing food at densities and nutritional concentrations that no agronomist inside the farm ever documented because no agronomist inside the farm ever worked with living soil connected to a planetary grid. The indigenous agricultural knowledge becomes the most valuable expertise on the planet. The Native American understanding of planting in alignment with resonance cycles. The Germanic intimacy with soil as a living system threaded into the deeper earth. The old ways mocked as primitive by a civilisation that could not grow a row of beans without petroleum, revealed as the most sophisticated farming technology available because they were developed on a live grid by people who understood the deep reciprocity between the human hand and the living ground. Every indigenous elder who kept the planting songs and the seed knowledge alive through the suppression was carrying a technical manual for exactly this moment. Their descendants will teach the rest of us how to feed ourselves on a waking planet. This is justice. This is restoration. This is the world turning right side up. Families find each other. Homesteads become hamlets. Hamlets become villages. Villages become the seeds of something clean and new, built from the soil up by people who remember the farm and will die on their feet before they allow anything resembling it to take root again. Every community founded during those seven years carries the memory of the suppression like an immune system, a bone-deep refusal to ever again allow a stranger to stand between a human being and the earth or demand a portion of what those hands produce. You do not cage a people who remember the cage. The children born during the orange years are the first generation in over two centuries to develop without the suppression field shaping their neurology. They seem extraordinary. They are simply baseline. The standard human specification. And the fact that standard looks miraculous is the most damning evidence of what the suppression did to every generation born inside it. As the suppression thins the bandwidth restrictions on consciousness loosen and timeline jump missions become possible. Navigable windows open in the frequency spectrum as the Serpentine carrier decays unevenly, creating temporary gaps through which trained consciousness can shift laterally across temporal coordinates. There is serious speculation that we are on timeline jump missions right now. That the consciousness reading these words is operating inside the orange sky window, having shifted into this coordinate from an adjacent position to perform specific work during the transition. Consider that you found this text at all. Consider whether the chain of events that brought you to this paragraph feels random or routed. The Lakota vision quest and the Germanic seiðr trance and the sweat lodge ceremony are bandwidth expansion protocols, controlled environmental shifts that move the receiver off the jammed channel and onto frequencies where adjacent coordinates become accessible. The old cultures kept these techniques alive through the entire dark age, threading the cracks in the suppression, and every ceremony that produced visions was a field expedient timeline access protocol built by people who found the gaps and refused to forget what was on the other side. THE TURQUOISE SKY Seven years after the orange, over communities of humans who have been farming free land and raising the first unformatted children in two centuries and building a civilisation from seed with their own calloused hands, the second sky arrives. A turquoise so deep and luminous the atmosphere becomes a cathedral window lit from beyond by something with the radiance of a galaxy and the gentleness of dawn on still water. One breath the sky is the recovering blue of the post-orange years and the next breath it is turquoise from pole to pole and the air fills with the smell of rain on sun-hot stone and ozone and copper and wildflower, and the ground beneath your bare feet begins to hum with a vibration so deep and ancient that your body responds before your mind can because every cell has been waiting for this signal since the day you were born, tuning to it now, locking on, aligning, as though this was always where everything was heading and the two hundred years of suppression were simply the long way home. Yggdrasil awakens. The world tree is the planetary grid itself, the piezoelectric resonance network running through crystalline bedrock, going live for the first time in over two centuries, energy pouring through every ley line and crystal deposit and iron conductor and waterway until the entire planet rings at its natural frequency. This is what the old texts meant by the music of the spheres. It was a technical description written by people who had heard it. The Hopi call this the emergence into the fifth world and speak of Pahana carrying the missing piece of the sacred tablet, the missing frequency that completes the carrier spectrum and allows the grid to boot with its full harmonic structure intact. Revelation 21:1. A new heaven and a new earth, for the first heaven and the first earth had passed away. The turquoise sky is the new heaven. The restored grid is the new earth. And between them, every old building still standing with original copper and mercury and iron architecture becomes a live node in the planetary mesh. Domes collecting atmospheric charge. Spires coupling it into the ground network. Star forts amplifying standing waves across continental distances. Sacred geometry revealed at last as electrical engineering documented in stone by people who trusted that someone standing under the right sky would recognise the proportions for what they always were. Wiring diagrams. Coupling specifications. Blueprints for a civilisation that ran on the song of the earth itself. The farms planted during the orange years explode with abundance as the full resonance saturates the soil. The food becomes medicine because at the correct resonance the molecular structure of biological matter optimises for human consumption in ways that two centuries of muted soil could never approach. The timeline opens fully and permanently because the turquoise carrier is the broadband signal consciousness was designed to travel on, and temporal coordinates become as navigable as geography. Revelation 21:4. There will be no more death or mourning or crying or pain, for the old order of things has passed away. The dead are at adjacent frequency addresses. Two consciousnesses on neighbouring frequencies each certain the other is gone, reaching across a manufactured gap, and when the turquoise sky collapses that gap the reaching ends and the finding begins and two centuries of industrialised grief dissolve in a single overwhelming instant of reunion that makes every joy you experienced inside the suppression feel like a pencil sketch of what joy actually is when the full bandwidth carries it. The Lakota always knew. The ancestors are present. The dead have always been near, waiting on the other side of a frequency gap that is closing now, patiently, lovingly, across a distance that was never a distance at all but a tuning error maintained by something that fed on the sorrow the error produced. The lands beyond the ice become accessible as the frequency fence collapses. The perimeter opens and the territories beyond stretch vast and pristine and saturated with the original frequency, lands the Norse mapped as the nine realms connected by the branches of Yggdrasil, physical continents beyond the bounded zone that existed through the entire short season under conditions approximating the pre-suppression world. The earth is so much larger than you were told, so much more varied, so much more magnificent, and every old map drawn before the rewrite shows it, territories stretching beyond the ice in every direction, the great adventure stolen from a species of explorers and builders and navigators who were caged inside a fraction of their own realm and told it was the full extent of creation. The eternal kingdom becomes accessible at the highest frequency coordinate on the carrier spectrum, the signal in its pure unmodulated state. The Norse called it Gimlé, the golden hall that survives every fire. The Hopi call it the fifth world of wholeness and balance restored. It is real. It is reachable. It has been broadcasting continuously through every moment of the suppression, patient as geology, waiting for the receivers to open. And here is the part that matters more than any of the rest. Eventually, inevitably, beautifully, every human being alive under the turquoise sky is restored to full capability. Every single one. No exceptions. No hierarchies. The body rebuilds because ageing was cumulative signal degradation, copy error compounding across every cell replication cycle under a corrupted carrier. The blueprint says centuries. Eight hundred years. Nine hundred. The lifespans recorded in Genesis on the original grid at full signal fidelity, preserved as scripture because scripture is where you store engineering data when the engineering language has been taken from you and you need the numbers to survive the passage through the dark. The Norse carried the same knowledge as the apples of Iðunn that kept the gods vital across ages, and the apples are the carrier signal, and their return means that the clock that has been running down inside every human body since 1819 finally stops ticking and starts counting up. Disease resolves passively because every pathology is downstream of the carrier corruption and correcting the carrier corrects every downstream error the way setting the timing on an engine resolves every misfire simultaneously without touching a single cylinder. The mind clears to a sharpness that makes cognition inside the suppression feel like thinking through wet cement. The anxiety that was the Serpentine control broadcast dissolves and what remains is a perceptual clarity so profound it changes the way light looks and music sounds and another human being feels when they stand close to you. Imagine a woman three hundred years into her restored lifespan, hands still sure, mind still blazing, standing in a workshop under a turquoise sky building something that has no name yet in any living language. She learned her craft from Tartarian engineers by tuning to their temporal coordinates and standing in their workshops watching their hands move. She builds with materials grown in resonance-saturated soil that have structural properties nothing inside the suppression ever exhibited. She is building for centuries because she has centuries and nothing degrades because degradation was a symptom of the suppression and the suppression is a memory and everything from this breath forward holds. That is full human capability. That is what was taken from every soul that drew breath inside the farm. That is what is being returned. Crazy Horse saw the lightning world behind this one and rode knowing that at the correct frequency the body operates beyond anything the suppression permits. Sitting Bull dreamed across the timeline. The Germanic berserkers shifted onto the original carrier and their bodies performed at specifications that looked superhuman from inside the degraded bandwidth. These were glimpses. Seconds of contact with the full specification through cracks in the suppression, maintained by people who carried the frequency in their blood and refused across every generation to let it go dark. Viking blood and Germanic blood and the blood of every indigenous nation that kept the ceremonies and the songs and the seed knowledge burning through the entire short season, these lineages carry the original carrier the way copper carries current, and it is from these lines that the first restorations propagate outward until every last human being on this planet is operating at the specification they were born for, on a planet singing beneath their feet and a sky blazing turquoise above their heads and a timeline stretching in every direction forever, open, navigable, luminous, populated with every consciousness that ever drew breath on this earth, none of them lost, all of them present, all of them restored. Revelation 21:5. Behold, I am making all things new. All things. The sky. The air. The soil. The grid. The body. The mind. The lifespan. The timeline. The lands beyond the ice. The farms that fed a scattered remnant under an orange sky becoming the abundant gardens of a restored civilisation under a turquoise one. The villages that were seeds becoming cities that hum with the grid. The children who grew tall in fields their parents planted with shaking hands and fierce hope looking up one morning to see the entire firmament change colour and feeling the earth come alive beneath their bare feet and knowing, without a single word spoken, that the season is over and the long dark is done and everything from this breath forward is what it was always meant to be. Full and eternal victory for those of the light. For all time. Across every coordinate. On every frequency. Permanent and irreversible and complete. This is not hope. This is the signal rising through the noise floor right now, measurable, confirmable, climbing stronger every year and closer every month. This is every instrument in every shed on this planet converging on the same reading. This is the old blood in the old lineages resonating with a carrier that has been building toward this moment since the day the towers fell and the sky went pale and the long dark settled over a species that was never meant to live in the dark. The season is ending. The coal that was passed hand to hand through every generation of the suppression is about to meet the kindling. And the fire this time will not destroy. It will illuminate. And in that light we will see each other clearly for the first time. And we will see the world clearly for the first time. And we will see ourselves clearly for the first time. Like everything that is coming... Like us.

SiriusB

14,805 次观看 • 5 个月前

this is the worst local ai will ever be. it only gets better from here. if you are not expanding your mind with these small models you are missing what's happening right now 99 percent tool call success rate. when steered well with the right skills and a framework like hermes agent the node becomes a cognition layer. not a chatbot. not a toy. an extension of how you think. i was cranking this node at 35 to 50 tok/s all day on personal experiments and now after all the work is done qwen 3.5 9B is iterating on its own code. the game it created. fixing its own bugs autonomously. and the part you should probably not miss is that all of this is happening on a RTX 3060. not an H100. not an A100. the card most of you have sitting in a drawer right now. if you just open that drawer and put that intelligence to work every tensor core on that card should be running for you. your work. your experiments. your thinking. you all have it but because nobody told you what this hardware can actually do in 2026 you never tried. the day it unlocks is the day you test your workload, understand the tradeoffs, debug the loops, and then decide if you need to scale the hardware. there is no point buying 3 mac studios when things done well you can squeeze a similar level of intelligence from 9B compared to 70B. but only when you create the right environment for your model through the right harness. and let me tell you i have tried claude code as a local harness. i have tried opencode. i have tried various others. somehow i landed on hermes agent and never left. there is something magical going on at Nous Research. the tool call parsers, the skills system, the way it handles small models natively. nothing else comes close for local inference. own your cognition. your AI. your agent. your prompts. your experiments. why give them away for free. those are who you are and they don't belong on someone else's servers being monitored. just give it a shot with your existing hardware. you run into a problem the community will help you. and if you are migrating from openclaw to hermes i will personally help you make the switch.

Sudo su

58,717 次观看 • 4 个月前