1// ===== about.html =====
2<br><br><h2>Magnetosphere is an electronic surplus webstore.</h2> <pre style='font-size: 0.1em;color:white;'>© 2005-{{.Page.Year}} <a style='color:red;' title='{{.Page.SitePrettyName}}' href='/'>{{.Page.SiteName}}</a> All Rights Reserved</pre>
3
4We accept payment via stripe (visa/mc).<br><br>
5
6Our sincerest thanks to:<br><br>
7* <a title='bgmicro.com' href='https://bgmicro.com'>BG Micro</a><br>
8* <a title='tannerelectronics.com' href='https://www.tannerelectronics.com/'>Tanner Electronics</a><br>
9* <a title='bunkerofdoom.com' href='https://bunkerofdoom.com/'>the Bunker of Doom</a><br>
10<br>
11In memory of Lewis Cearly, <a title='Nortex Memorial' href='https://bunkerofdoom.com/nortex/index.html'>Nortex Electronics</a><br><br>
12
13This website is made with <a title='magnetosphere.net source code' href='/sourcecode'>golang</a><br><br>
14
15<h2>This website is not about the Earth's magnetosphere</h2>
16
17For information about the Earth's magnetosphere, refer to Suspicious0bservers:<br><br>
18
19<a title='Suspicious0bservers.org' href='https://www.Suspicious0bservers.org'>Suspicious0bservers.org</a><br>
20<a title='SpaceWeatherNews.com' href='https://www.SpaceWeatherNews.com'>SpaceWeatherNews.com</a><br>
21<br>
22<p style='font-size:8pt;'>{{.Page.SiteASCIILogo}}
23</p>
24
25
26// ===== checkout.html =====
27<!DOCTYPE html>
28<html lang="en">
29 <head>
30 <meta charset="utf-8" >
31 <title>Checkout</title>
32 <meta name="description" content="A demo of a payment on Stripe">
33 <meta name="viewport" content="width=device-width, initial-scale=1">
34 <!-- link rel="stylesheet" href="checkout.css" -->
35 <style title="checkout.css">
36 {{ template "css" .}}
37 </style>
38 <script src="https://js.stripe.com/v3/"></script>
39 </head>
40 <body>
41 <h1>Checkout</h1>
42
43 <!-- Cart Section -->
44 <h2>Your Cart</h2>
45 <ul id="cart-items-display"></ul>
46 <p id="cart-total">Total: $0.00</p>
47
48
49 <!-- Payment Form -->
50 <form id="payment-form">
51 <div id="payment-element"></div>
52 <button id="submit">
53 <span class="spinner hidden" id="spinner"></span>
54 <span id="button-text">Pay now</span>
55 </button>
56 <div id="payment-message" class="hidden"></div>
57 </form>
58
59 <!-- Payment Method Preview -->
60 <div id="dpm-annotation">
61 <p>
62 Payment methods are dynamically displayed based on customer location, order amount, and currency.
63 <a href="#" target="_blank" rel="noopener noreferrer" id="dpm-integration-checker">Preview payment methods by transaction</a>
64 </p>
65 </div>
66
67 <script>
68 const stripe = Stripe("{{.Page.StripePK}}");
69
70 let items = JSON.parse(localStorage.getItem("cartItems")) || [];
71 let elements;
72
73 document.addEventListener("DOMContentLoaded", () => {
74 // Validate cart items early
75 if (!validateCartItems(items)) {
76 return; // Exit script if validation fails
77 }
78
79 displayCartItems();
80 initialize();
81 });
82
83 // Validate cart items for at least one shipping and one non-shipping item
84 function validateCartItems(cartItems) {
85 const paymentButton = document.querySelector("#submit");
86 let hasShipping = false;
87 let hasNonShipping = false;
88
89 // Check if the cart contains the required items
90 for (const item of cartItems) {
91 if (item.id.startsWith("shipping-to")) {
92 hasShipping = true;
93 } else {
94 hasNonShipping = true;
95 }
96 if (hasShipping && hasNonShipping) break; // Exit loop early if condition is met
97 }
98
99 if (!hasShipping || !hasNonShipping) {
100 // Display an error message and disable the button
101 paymentButton.disabled = true;
102 showMessage("You need at least one shipping item and one non-shipping item in your cart.");
103 return false;
104 }
105
106 // Enable the button if validation passes
107 paymentButton.disabled = false;
108 return true;
109 }
110
111 async function initialize() {
112 const response = await fetch("{{.Page.OrdersURL}}/create-payment-intent", {
113 method: "POST",
114 headers: { "Content-Type": "application/json" },
115 body: JSON.stringify({ items })
116 });
117 const { clientSecret, dpmCheckerLink } = await response.json();
118
119 const appearance = { theme: "stripe" };
120 elements = stripe.elements({ appearance, clientSecret });
121
122 const paymentElementOptions = { layout: "tabs" };
123 const paymentElement = elements.create("payment", paymentElementOptions);
124 paymentElement.mount("#payment-element");
125
126 setDpmCheckerLink(dpmCheckerLink);
127 }
128
129 document.querySelector("#payment-form").addEventListener("submit", async (e) => {
130 e.preventDefault();
131 setLoading(true);
132
133 const { error } = await stripe.confirmPayment({
134 elements,
135 confirmParams: { return_url: document.location.protocol + "//" + document.location.host + "/complete.html" },
136 });
137
138 if (error) {
139 showMessage(error.message || "An unexpected error occurred.");
140 }
141
142 setLoading(false);
143 });
144
145 function showMessage(messageText) {
146 const messageContainer = document.querySelector("#payment-message");
147 messageContainer.classList.remove("hidden");
148 messageContainer.textContent = messageText;
149
150 setTimeout(() => {
151 messageContainer.classList.add("hidden");
152 messageContainer.textContent = "";
153 }, 4000);
154 }
155
156 function setLoading(isLoading) {
157 document.querySelector("#submit").disabled = isLoading;
158 document.querySelector("#spinner").classList.toggle("hidden", !isLoading);
159 document.querySelector("#button-text").classList.toggle("hidden", isLoading);
160 }
161
162 function setDpmCheckerLink(url) {
163 document.querySelector("#dpm-integration-checker").href = url;
164 }
165
166 function displayCartItems() {
167 const cartDisplay = document.getElementById("cart-items-display");
168 const cartTotalElement = document.getElementById("cart-total");
169 cartDisplay.innerHTML = "";
170 let total = 0;
171
172 if (items.length === 0) {
173 cartDisplay.innerHTML = "<p>No items in your cart.</p>";
174 return;
175 }
176
177 items.forEach(item => {
178 const itemElement = document.createElement("li");
179 itemElement.textContent = `${item.id}: $${(item.amount / 100).toFixed(2)} x ${item.quantity || 1}`;
180 cartDisplay.appendChild(itemElement);
181 total += item.amount * (item.quantity || 1); // quantity defaults to 1 if not present
182 });
183
184 cartTotalElement.textContent = `Total: $${(total / 100).toFixed(2)}`;
185 }
186 </script>
187
188 </body>
189</html>
190
191
192// ===== clock.html =====
193<!DOCTYPE html>
194<html lang="en">
195<head>
196<meta charset="UTF-8">
197<meta name="viewport" content="width=device-width, initial-scale=1.0">
198<title>CSS sin() cos() demo Clock</title>
199<style>
200.clock {
201 --_ow: clamp(5rem, 60vw, 40rem);
202 --_w: 88cqi;
203 --_r: calc((var(--_w) - var(--_sz)) / 2);
204 --_sz: 12cqi;
205
206 background: #222;
207 block-size: var(--_ow);
208 border-radius: 24%;
209 container-type: inline-size;
210 display: grid;
211 font-family: ui-sans-serif, system-ui, sans-serif;
212 inline-size: var(--_ow);
213 margin-inline: auto;
214 place-content: center;
215}
216
217.clock-face {
218 aspect-ratio: 1;
219 background: var(--_bgc, #FFF);
220 border-radius: 50%;
221 block-size: var(--_w);
222 font-size: 6cqi;
223 font-weight: 700;
224 list-style-type: none;
225 inline-size: var(--_w);
226 padding: unset;
227 position: relative;
228}
229
230.clock-face time {
231 --_x: calc(var(--_r) + (var(--_r) * cos(var(--_d))));
232 --_y: calc(var(--_r) + (var(--_r) * sin(var(--_d))));
233 display: grid;
234 height: var(--_sz);
235 left: var(--_x);
236 place-content: center;
237 position: absolute;
238 top: var(--_y);
239 width: var(--_sz);
240}
241
242.clock-face time:nth-child(1) { --_d: 270deg; }
243.clock-face time:nth-child(2) { --_d: 300deg; }
244.clock-face time:nth-child(3) { --_d: 330deg; }
245.clock-face time:nth-child(4) { --_d: 0deg; }
246.clock-face time:nth-child(5) { --_d: 30deg; }
247.clock-face time:nth-child(6) { --_d: 60deg; }
248.clock-face time:nth-child(7) { --_d: 90deg; }
249.clock-face time:nth-child(8) { --_d: 120deg; }
250.clock-face time:nth-child(9) { --_d: 150deg; }
251.clock-face time:nth-child(10) { --_d: 180deg; }
252.clock-face time:nth-child(11) { --_d: 210deg; }
253.clock-face time:nth-child(12) { --_d: 240deg; }
254
255.arm {
256 background-color: var(--_abg);
257 border-radius: calc(var(--_aw) * 2);
258 display: block;
259 height: var(--_ah);
260 left: calc((var(--_w) - var(--_aw)) / 2);
261 position: absolute;
262 top: calc((var(--_w) / 2) - var(--_ah));
263 transform: rotate(0deg);
264 transform-origin: bottom;
265 width: var(--_aw);
266}
267.seconds {
268 --_abg: rgb(255, 140, 5);
269 --_ah: 40cqi;
270 --_aw: 1cqi;
271 animation: turn 60s linear infinite;
272 animation-delay: var(--_ds, 0ms);
273}
274
275.minutes {
276 --_abg: #333;
277 --_ah: 35cqi;
278 --_aw: 2.5cqi;
279 animation: turn 3600s steps(60, end) infinite;
280 animation-delay: var(--_dm, 0ms);
281}
282
283.hours {
284 --_abg: #333;
285 --_ah: 30cqi;
286 --_aw: 2.5cqi;
287 animation: turn 43200s linear infinite; /* 60 * 60 * 12 */
288 animation-delay: var(--_dh, 0ms);
289 position: relative;
290}
291
292.hours::before {
293 background-color: #fff;
294 border: 1cqi solid #333;
295 border-radius: 50%;
296 content: "";
297 display: block;
298 height: 4cqi;
299 position: absolute;
300 bottom: -3cqi;
301 left: -1.75cqi;
302 width: 4cqi;
303}
304
305html {
306 display: grid;
307 height: 100%;
308}
309body {
310 background-image: linear-gradient(175deg, rgb(128, 202, 190), rgb(85, 170, 160), rgb(60, 139, 139));
311 padding-block-start: 2em;
312}
313p {
314 display: none;
315 font-family: ui-sans-serif, system-ui, sans-serif;
316 text-align: center;
317}
318@keyframes turn {
319 to {
320 transform: rotate(1turn);
321 }
322}
323@supports not (left: calc(1px * cos(45deg))) {
324 time {
325 left: 50% !important;
326 top: 50% !important;
327 transform: translate(-50%,-50%) rotate(var(--_d)) translate(var(--_r)) rotate(calc(-1*var(--_d)));
328 }
329 p { display: block; }
330}
331</style>
332<script>
333const time = new Date();
334const hour = -3600 * (time.getHours() % 12);
335const mins = -60 * time.getMinutes();
336app.style.setProperty('--_dm', `${mins}s`);
337app.style.setProperty('--_dh', `${(hour+mins)}s`);
338</script>
339</head>
340<body>
341<h1>Css trig function clock</h1>
342<p><small>CSS sin() and cos() does <strong>NOT</strong> work in your browser.</small></p>
343<div class="clock">
344 <div class="clock-face" id="app">
345 <time datetime="12:00">12</time>
346 <time datetime="1:00">1</time>
347 <time datetime="2:00">2</time>
348 <time datetime="3:00">3</time>
349 <time datetime="4:00">4</time>
350 <time datetime="5:00">5</time>
351 <time datetime="6:00">6</time>
352 <time datetime="7:00">7</time>
353 <time datetime="8:00">8</time>
354 <time datetime="9:00">9</time>
355 <time datetime="10:00">10</time>
356 <time datetime="11:00">11</time>
357 <span class="arm seconds"></span>
358 <span class="arm minutes"></span>
359 <span class="arm hours"></span>
360 </div>
361</div>
362</body>
363</html>
364
365
366// ===== links.html =====
367<h2 class='❤'>Links To Other Suppliers</h2>
368<table class='᛭'><thead><tr><th><pre>Supplier</pre></th><th><pre>Location</pre></th><th><pre>Notes</pre></th></tr></thead>
369<tbody><tr><td><pre><a title='magnetosphere.net' onclick='this.style.color=pink' href='https://magnetosphere.net/'>magnetosphere.net</a> & <a title='magnetosphereelectronicsurplus.com' onclick='this.style.color=pink' href='https://magnetosphereelectronicsurplus.com/'>magnetosphereelectronicsurplus.com</a></pre></td><td><pre>Dallas, TX</pre></td><td><pre></pre></td></tr><tr>
370<td><pre><a title='surplussales.com Surplus & Sales of Nebraska' onclick='this.style.color=pink' href='https://www.surplussales.com/'>Surplus & Sales of Nebraska</a></pre></td><td><pre>Fort Calhoun, NE</pre></td><td><pre></pre></td></tr>
371<tr><td><pre><a title='jameco.com Jameco' onclick='this.style.color=pink' href='https://www.jameco.com/'>Jameco</a></pre></td><td><pre>Belmont, CA</pre></td><td><pre></pre></td></tr>
372<tr><td><pre><a title='allelectronics.com All Electronics' onclick='this.style.color=pink' href='https://www.allelectronics.com/'>All Electronics</a></pre></td><td><pre>Van Nuys, CA</pre></td><td><pre><b>Closed permanently</b> in September 2023, after nearly 50 years. Former staff opened <a title='aretronics.com Aretronics' onclick='this.style.color=pink' href='https://aretronics.com/'>Aretronics</a> in Pacoima, CA</pre></td></tr>
373<tr><td><pre><span style='text-decoration-line: line-through;'>Marlin P. Jones & Assoc. Inc.</span></pre></td><td><pre style='text-decoration-line: line-through;'>West Palm Beach, FL</pre></td><td><pre><b>Closed</b> in 2025 after 53 years. mpja.com now redirects to Skycraft, who bought the inventory</pre></td></tr>
374<tr><td><pre><a title='theelectronicgoldmine.com The Electronic Gold Mine' onclick='this.style.color=pink' href='https://theelectronicgoldmine.com/'>The Electronic Gold Mine</a></pre></td><td><pre>Scottsdale, AZ</pre></td><td><pre></pre></td></tr>
375<tr><td><pre><a title='electronicsurplus.com Electronic surplus' onclick='this.style.color=pink' href='https://www.electronicsurplus.com'>Electronic surplus</a></pre></td><td><pre>Mentor, OH</pre></td><td><pre></pre></td></tr>
376<tr><td><pre><a title='skycraftsurplus.com Skycraft Surplus' onclick='this.style.color=pink' href='https://skycraftsurplus.com/'>Skycraft Surplus</a></pre></td><td><pre>Orlando, FL</pre></td><td><pre></pre></td></tr>
377<tr><td><pre><a title='surplusgizmos.com Surplus Gizmos' onclick='this.style.color=pink' href='https://www.surplusgizmos.com/'>Surplus Gizmos</a></pre></td><td><pre>Hillsboro, OR</pre></td><td><pre></pre></td></tr>
378<tr><td><pre><a title='surplus-electronics-sales.com Surplus Electronic Sales' onclick='this.style.color=pink' href='https://www.surplus-electronics-sales.com/'>Surplus Electronic Sales</a></pre></td><td><pre>Arcanum, OH</pre></td><td><pre></pre></td></tr>
379<tr><td><pre><a title='bmisurplus.com BMI Surplus' onclick='this.style.color=pink' href='https://bmisurplus.com/'>BMI Surplus</a></pre></td><td><pre>Hanover, MA</pre></td><td><pre></pre></td></tr>
380<tr><td><pre><a title='partsmine.com Parts Mine' onclick='this.style.color=pink' href='https://partsmine.com/'>Parts Mine</a></pre></td><td><pre>Garden City, ID</pre></td><td><pre></pre></td></tr>
381<tr><td><pre><a title='jpmsupply.com JPM Supply' onclick='this.style.color=pink' href='https://www.jpmsupply.com/'>JPM Supply</a></pre></td><td><pre>Houston, TX</pre></td><td><pre>Storefront is down — Shopify returns 402, which is what a frozen shop answers</pre></td></tr>
382<tr><td><pre><a title='elliottelectronicsurplus.com Elliot Electronic Surplus' onclick='this.style.color=pink' href='https://elliottelectronicsurplus.com/'>Elliot Electronic Surplus</a></pre></td><td><pre>Tucson, AZ</pre></td><td><pre></pre></td></tr>
383<tr><td><pre><a title='cesparts.com Coast Electronic Supply' onclick='this.style.color=pink' href='http://www.cesparts.com/'>Coast Electronic Supply</a></pre></td><td><pre></pre></td><td><pre>Linked over http: their https certificate expired 2026-07-28</pre></td></tr>
384<tr><td><pre><a title='bgmicro.com BG Micro' onclick='this.style.color=pink' href='https://bgmicro.com/'>BG Micro</a> - <a title='ebay.com/str/surfsidetrading Electronic Excess on Ebay' onclick='this.style.color=pink' href='https://www.ebay.com/str/surfsidetrading'>Electronic Excess</a> on Ebay</pre></td><td><pre style='padding: 0; margin: 0; text-decoration-line: line-through;'>Garland, TX</pre></td><td><pre>bgmicro.com is not serving a store at the moment; the Ebay shop still is</pre></td></tr>
385<tr><td><pre><a title='danssmallpartsandkits.net Dan's Small Parts And Kits' onclick='this.style.color=pink' href='https://www.danssmallpartsandkits.net/'>Dan's Small Parts And Kits</a></pre></td><td><pre>Springville, UT</pre></td><td><pre>Check or money order by mail only</pre></td></tr>
386<tr><td><pre><a title='anatekinstruments.com Alltronics / Anatek instruments' onclick='this.style.color=pink' href='https://anatekinstruments.com/'>Alltronics / Anatek instruments</a></pre></td><td><pre>Silicon Valley, CA</pre></td><td><pre></pre></td></tr>
387<tr><td><pre><a title='circuitspecialists.com Circuit Specialists' onclick='this.style.color=pink' href='https://www.circuitspecialists.com/'>Circuit Specialists</a></pre></td><td><pre></pre></td><td><pre></pre></td></tr>
388<tr><td><pre><a title='excesssolutions.com Excess Solutions' onclick='this.style.color=pink' href='https://excesssolutions.com/'>Excess Solutions</a></pre></td><td><pre>Milpitas, CA</pre></td><td><pre></pre></td></tr>
389<tr><td><pre><a title='fairradio.com Fair Radio' onclick='this.style.color=pink' href='https://fairradio.com/'>Fair Radio</a></pre></td><td><pre>Lima, OH</pre></td><td><pre><b>Closed</b> — the owner retired in 2023 after more than 50 years</pre></td></tr>
390<tr><td><pre><a title='firstwatt.com Fair Radio' onclick='this.style.color=pink' href='https://www.firstwatt.com/'>First Watt</a></pre></td><td><pre></pre></td><td><pre>basic amplifier concepts with an eye toward producing the highest quality sound with elegantly simple circuits</pre></td></tr>
391<tr><td><pre><a title='westfloridacomponents.com West Florida Components' onclick='this.style.color=pink' href='https://www.westfloridacomponents.com/'>West Florida Components</a></pre></td><td><pre>Tarpon Springs, FL</pre></td><td><pre></pre></td></tr>
392<tr><td><pre><a title='vakits.com NightFire Electronic Kits' onclick='this.style.color=pink' href='https://www.vakits.com/'>NightFire Electronic Kits</a></pre></td><td><pre>Ocala, FL</pre></td><td><pre>Lots of great kits!</pre></td></tr>
393<tr><td><pre><a title='parts-express.com Parts Express' onclick='this.style.color=pink' href='https://www.parts-express.com/'>Parts Express</a></pre></td><td><pre>Springboro, OH</pre></td><td><pre></pre></td></tr>
394<tr><td><pre><a title='rapidled.com Rapid LED' onclick='this.style.color=pink' href='https://rapidled.com/'>Rapid LED</a></pre></td><td><pre>San Francisco, CA</pre></td><td><pre></pre></td></tr>
395<tr><td><pre><a title='superbrightleds.com Super Bright LEDs' onclick='this.style.color=pink' href='https://www.superbrightleds.com/'>Super Bright LEDs</a></pre></td><td><pre>Earth City, MO</pre></td><td><pre></pre></td></tr>
396<tr><td><pre><a title='elexp.com Electronix Express' onclick='this.style.color=pink' href='https://www.elexp.com/'>Electronix Express</a></pre></td><td><pre></pre></td><td><pre></pre></td></tr>
397<tr><td><pre><a title='futurlec.com Futurelec' onclick='this.style.color=pink' href='https://www.futurlec.com/'>Futurelec</a></pre></td><td><pre>Asia</pre></td><td><pre></pre></td></tr>
398<tr><td><pre><a title='saelig.com Saelig' onclick='this.style.color=pink' href='https://www.saelig.com/'>Saelig</a></pre></td><td><pre>Fairport, NY</pre></td><td><pre></pre></td></tr>
399<tr><td><pre><a title='arrow.com Arrow Electronic Components' onclick='this.style.color=pink' href='https://www.arrow.com/'>Arrow Electronic Components</a></pre></td><td><pre></pre></td><td><pre></pre></td></tr>
400<tr><td><pre><a title='tti.com TTI' onclick='this.style.color=pink' href='https://www.tti.com/'>TTI</a></pre></td><td><pre>Ft. Worth, TX</pre></td><td><pre>Formerly Tex-Tronics</pre></td></tr>
401<tr><td><pre><a title='us.rs-online.com RS Americas' onclick='this.style.color=pink' href='https://us.rs-online.com/'>RS Americas</a></pre></td><td><pre>Fort Worth, TX </pre></td><td><pre></pre></td></tr>
402<tr><td><pre><a title='tubesandmore.com Antique Electronic Supply' onclick='this.style.color=pink' href='https://www.tubesandmore.com/'>Antique Electronic Supply</a></pre></td><td><pre>Tempe, AZ</pre></td><td><pre></pre></td></tr>
403<tr><td><pre><a title='dxengineering.com DX Engineering' onclick='this.style.color=pink' href='https://dxengineering.com/'>DX Engineering</a></pre></td><td><pre>Tallmadge, OH & Sparks, NV</pre></td><td><pre></pre></td></tr>
404<tr><td><pre><a title='avnet.com Avnet' onclick='this.style.color=pink' href='https://www.avnet.com/wps/portal/us/'>Avnet</a></pre></td><td><pre>Phoenix, AZ</pre></td><td><pre></pre></td></tr>
405<tr><td><pre><a title='masterelectronics.com Master Electronics' onclick='this.style.color=pink' href='https://www.masterelectronics.com/'>Master Electronics</a></pre></td><td><pre>Regional Offices</pre></td><td><pre></pre></td></tr>
406<tr><td><pre><a title='futureelectronics.com Future Electronics' onclick='this.style.color=pink' href='https://www.futureelectronics.com/'>Future Electronics</a></pre></td><td><pre>Pointe Claire, Quebec</pre></td><td><pre></pre></td></tr>
407<tr><td><pre><a title='digikey.com Digikey' onclick='this.style.color=pink' href='https://www.digikey.com/'>Digikey</a></pre></td><td><pre>Minnesota & North Dakota</pre></td><td><pre></pre></td></tr>
408<tr><td><pre><a title='mouser.com Mouser Electronics' onclick='this.style.color=pink' href='https://www.mouser.com/'>Mouser Electronics</a></pre></td><td><pre>Mansfield, TX</pre></td><td><pre></pre></td></tr>
409<tr><td><pre><a title='apexsurplus.com Apex Surplus' onclick='this.style.color=pink' href='https://apexsurplus.com/'>Apex Surplus</a></pre></td><td><pre>Sun Valley, CA</pre></td><td><pre>Sixty years of stock; aircraft parts, movie props, wire and cable</pre></td></tr>
410<tr><td><pre><a title='apexjr.com Apex Jr.' onclick='this.style.color=pink' href='https://www.apexjr.com/'>Apex Jr.</a></pre></td><td><pre>Torrance, CA</pre></td><td><pre>Order by phone or mail; caps, transformers and wire</pre></td></tr>
411<tr><td><pre><a title='ax-man.com Ax-Man Surplus' onclick='this.style.color=pink' href='https://www.ax-man.com/'>Ax-Man Surplus</a></pre></td><td><pre>Saint Paul, MN</pre></td><td><pre>Three Twin Cities stores plus a small online shop</pre></td></tr>
412<tr><td><pre><a title='murphyjunk.net Murphy's Surplus Warehouse' onclick='this.style.color=pink' href='https://murphyjunk.net/'>Murphy's Surplus Warehouse</a></pre></td><td><pre>El Cajon, CA</pre></td><td><pre>Military and industrial surplus; free shipping over $100</pre></td></tr>
413<tr><td><pre><a title='vetco.net Vetco Electronics' onclick='this.style.color=pink' href='https://vetco.net/'>Vetco Electronics</a></pre></td><td><pre>Bellevue, WA</pre></td><td><pre>Walk-in counter and mail order, small quantities</pre></td></tr>
414<tr><td><pre><a title='anchor-electronics.com Anchor Electronics' onclick='this.style.color=pink' href='https://anchor-electronics.com/'>Anchor Electronics</a></pre></td><td><pre>Santa Clara, CA</pre></td><td><pre>Counter sales; ask for the printed price list</pre></td></tr>
415<tr><td><pre><a title='epohouston.com Electronic Parts Outlet' onclick='this.style.color=pink' href='https://epohouston.com/'>Electronic Parts Outlet</a></pre></td><td><pre>Houston, TX</pre></td><td><pre>Walk-in store since 1985; the online catalog is a fraction of it</pre></td></tr>
416<tr><td><pre><a title='ace4parts.com Ace Electronics' onclick='this.style.color=pink' href='https://ace4parts.com/'>Ace Electronics</a></pre></td><td><pre>Houston, TX</pre></td><td><pre>Counter store since 1964</pre></td></tr>
417<tr><td><pre><a title='marvac.com MarVac Electronics' onclick='this.style.color=pink' href='https://marvac.com/'>MarVac Electronics</a></pre></td><td><pre>Costa Mesa, CA</pre></td><td><pre>Family-run since 1965; stock counts shown on every item</pre></td></tr>
418<tr><td><pre><a title='cgsurplus.com C & G Surplus' onclick='this.style.color=pink' href='https://cgsurplus.com/'>C & G Surplus</a></pre></td><td><pre>Camden, NJ</pre></td><td><pre>Carries the old Herbach & Rademan stock; motors, breakers, PLCs</pre></td></tr>
419<tr><td><pre><a title='surpluscenter.com Surplus Center' onclick='this.style.color=pink' href='https://surpluscenter.com/'>Surplus Center</a></pre></td><td><pre>Lincoln, NE</pre></td><td><pre>Gearmotors, hydraulics, bearings and winches</pre></td></tr>
420<tr><td><pre><a title='slevysurplus.com Steven Levy Enterprises' onclick='this.style.color=pink' href='https://www.slevysurplus.com/'>Steven Levy Enterprises</a></pre></td><td><pre>South Houston, TX</pre></td><td><pre>Plant and refinery surplus; motors, gearboxes, pumps, valves</pre></td></tr>
421<tr><td><pre><a title='surplusshed.com Surplus Shed' onclick='this.style.color=pink' href='https://www.surplusshed.com/'>Surplus Shed</a></pre></td><td><pre>Fleetwood, PA</pre></td><td><pre>Surplus optics; flat $6 shipping to the lower 48 whatever the order</pre></td></tr>
422<tr><td><pre><a title='mi-lasers.com Meredith Instruments' onclick='this.style.color=pink' href='https://www.mi-lasers.com/'>Meredith Instruments</a></pre></td><td><pre>Glendale, AZ</pre></td><td><pre>HeNe laser tubes, heads and power supplies</pre></td></tr>
423<tr><td><pre><a title='texelec.com TexElec' onclick='this.style.color=pink' href='https://texelec.com/'>TexElec</a></pre></td><td><pre>Aledo, TX</pre></td><td><pre>Kits and boards for vintage computers; nearest one on this list</pre></td></tr>
424<tr><td><pre><a title='smallbear-electronics.mybigcommerce.com Small Bear Electronics' onclick='this.style.color=pink' href='https://smallbear-electronics.mybigcommerce.com/'>Small Bear Electronics</a></pre></td><td><pre>Waltham, MA</pre></td><td><pre>Pedal kits, pots and obsolete semiconductors; run by synthCube now</pre></td></tr>
425<tr><td><pre><a title='tapr.org TAPR' onclick='this.style.color=pink' href='https://tapr.org/'>TAPR</a></pre></td><td><pre>Tucson, AZ</pre></td><td><pre>Non-profit ham group selling its own kits and boards</pre></td></tr>
426<tr><td><pre><a title='qrpkits.com Pacific Antenna / QRP Kits' onclick='this.style.color=pink' href='https://qrpkits.com/'>Pacific Antenna / QRP Kits</a></pre></td><td><pre>Fayetteville, AR</pre></td><td><pre>QRP kits by mail; ships in one to two weeks</pre></td></tr>
427</tbody></table>
428<h2 class='❤'>Misc. Electronics</h2>
429<table class='᛭'><thead><tr><th><pre>Supplier</pre></th><th><pre></pre></th><th><pre></pre></th></tr></thead><tbody>
430<tr><td><pre><a title='macetech.com Macetek' onclick='this.style.color=pink' href='https://shop.macetech.com/'>Macetek</a></pre></td><td><pre></pre></td><td><pre>LED matrix sunglasses</pre></td></tr>
431<tr><td><pre><a title='skysedge.com Sky's Edge' onclick='this.style.color=pink' href='https://skysedge.com'>Sky's Edge</a></pre></td><td><pre></pre></td><td><pre>Rotary un-smartphone. Last shipped Nov 2025 — <a title='A personal update from Justine' onclick='this.style.color=pink' href='https://skysedge.com/2024/08/22/from-justine.html'>Justine's update</a>; <a title='forum.skysedge.com Not getting any reply about where my order is in the queue' onclick='this.style.color=pink' href='https://forum.skysedge.com/viewtopic.php?p=563'>buyers report unanswered mail</a> since</pre></td></tr>
432<tr><td><pre><a title='snapeda.com SnapEDA' onclick='this.style.color=pink' href='https://www.snapeda.com/'>SnapEDA</a></pre></td><td><pre></pre></td><td><pre></pre></td></tr>
433</tbody></table>
434<h2 class='❤'>Vacuum Tubes, Vintage and Restoration</h2>
435<table class='᛭'><thead><tr><th><pre>Supplier</pre></th><th><pre>Location</pre></th><th><pre>Notes</pre></th></tr></thead><tbody>
436<tr><td><pre><a title='hayseedhamfest.com Hayseed Hamfest' onclick='this.style.color=pink' href='https://hayseedhamfest.com/'>Hayseed Hamfest</a></pre></td><td><pre>Cedar Rapids, IA</pre></td><td><pre>New multi-section can capacitors, made to order</pre></td></tr>
437<tr><td><pre><a title='justradios.com JustRadios' onclick='this.style.color=pink' href='https://justradios.com/'>JustRadios</a></pre></td><td><pre>Scarborough, ON</pre></td><td><pre>Capacitor kits made up for a specific radio; US orders ship from NY</pre></td></tr>
438<tr><td><pre><a title='dougstubes.com Doug's Tubes' onclick='this.style.color=pink' href='https://dougstubes.com/'>Doug's Tubes</a></pre></td><td><pre>Wantagh, NY</pre></td><td><pre>Tubes tested and matched by hand for guitar amps and hi-fi</pre></td></tr>
439<tr><td><pre><a title='vacuumtubesinc.com Vacuum Tubes, Inc.' onclick='this.style.color=pink' href='https://vacuumtubesinc.com/'>Vacuum Tubes, Inc.</a></pre></td><td><pre>Orlando, FL</pre></td><td><pre>NOS tubes, sockets and hardware, 3,000-plus types</pre></td></tr>
440<tr><td><pre><a title='store.triodestore.com Triode USA' onclick='this.style.color=pink' href='https://store.triodestore.com/'>Triode USA</a></pre></td><td><pre>Chicago, IL</pre></td><td><pre>Web orders only now; the Irving Park Road shop is shut to walk-ins</pre></td></tr>
441<tr><td><pre><a title='edcorusa.com EDCOR Electronics' onclick='this.style.color=pink' href='https://edcorusa.com/'>EDCOR Electronics</a></pre></td><td><pre>Carlsbad, NM</pre></td><td><pre>Made-to-order output, power and matching transformers</pre></td></tr>
442<tr><td><pre><a title='sundialwire.com Sundial Wire' onclick='this.style.color=pink' href='https://sundialwire.com/'>Sundial Wire</a></pre></td><td><pre>Florence, MA</pre></td><td><pre>Cloth-covered wire in rayon and cotton, sold by the foot</pre></td></tr>
443<tr><td><pre><a title='renovatedradios.com Renovated Radios' onclick='this.style.color=pink' href='https://renovatedradios.com/'>Renovated Radios</a></pre></td><td><pre>Shelby Township, MI</pre></td><td><pre>Reproduction knobs, grommets and rubber parts, 350-odd types</pre></td></tr>
444<tr><td><pre><a title='radiodaze.com Radio Daze' onclick='this.style.color=pink' href='https://radiodaze.com/'>Radio Daze</a></pre></td><td><pre>Rochester, NY</pre></td><td><pre>Narrowing to reproduction graphics; the parts are on clearance</pre></td></tr>
445</tbody></table>
446<h2 class='❤'>Used Test Equipment</h2>
447<table class='᛭'><thead><tr><th><pre>Supplier</pre></th><th><pre>Location</pre></th><th><pre>Notes</pre></th></tr></thead><tbody>
448<tr><td><pre><a title='mhzelectronics.com MHz Electronics' onclick='this.style.color=pink' href='https://mhzelectronics.com/'>MHz Electronics</a></pre></td><td><pre>Phoenix, AZ</pre></td><td><pre>Search the inventory and click Inquire — no prices, no cart</pre></td></tr>
449<tr><td><pre><a title='recycledgoods.com Recycled Goods' onclick='this.style.color=pink' href='https://recycledgoods.com/'>Recycled Goods</a></pre></td><td><pre>Ventura, CA</pre></td><td><pre>Cheap, but a lot of it is sold as-is or for parts</pre></td></tr>
450<tr><td><pre><a title='sphere.bc.ca Sphere Research' onclick='this.style.color=pink' href='https://sphere.bc.ca/'>Sphere Research</a></pre></td><td><pre>Kelowna, BC</pre></td><td><pre>Selling off the stock since the founder died in 2023; nixies, numitrons, slide rules</pre></td></tr>
451<tr><td><pre><a title='testequipmentdepot.com Test Equipment Depot' onclick='this.style.color=pink' href='https://www.testequipmentdepot.com/'>Test Equipment Depot</a></pre></td><td><pre>Woburn, MA</pre></td><td><pre>The refurbished gear is a separate catalog from the new stock</pre></td></tr>
452<tr><td><pre><a title='valuetronics.com ValueTronics' onclick='this.style.color=pink' href='https://valuetronics.com/'>ValueTronics</a></pre></td><td><pre>Elgin, IL</pre></td><td><pre>$200 minimum order</pre></td></tr>
453</tbody></table>
454<h2 class='❤'>Magnets</h2>
455<table class='᛭'><thead><tr><th><pre>Supplier</pre></th><th><pre>Location</pre></th><th><pre>Notes</pre></th></tr></thead><tbody>
456<tr><td><pre><a title='magnet4sale.com CMS Magnetics' onclick='this.style.color=pink' href='https://www.magnet4sale.com/'>CMS Magnetics</a></pre></td><td><pre>Garland, TX</pre></td><td><pre>Warehouse in Garland; neodymium, ceramic, AlNiCo and SmCo</pre></td></tr>
457<tr><td><pre><a title='magnet4less.com Applied Magnets' onclick='this.style.color=pink' href='https://www.magnet4less.com/'>Applied Magnets</a></pre></td><td><pre>Plano, TX</pre></td><td><pre>Orders online only, as their own banner asks</pre></td></tr>
458<tr><td><pre><a title='kjmagnetics.com K&J Magnetics' onclick='this.style.color=pink' href='https://www.kjmagnetics.com/'>K&J Magnetics</a></pre></td><td><pre>Pipersville, PA</pre></td><td><pre>Neodymium only, with measured pull force listed for every part</pre></td></tr>
459</tbody></table>
460<h2 class='❤'>Crypto</h2>
461<table class='᛭'><thead><tr><th><pre>Name</pre></th><th><pre></pre></th><th><pre></pre></th></tr></thead><tbody>
462<tr><td><pre><a title='skycoin.com Skycoin' onclick='this.style.color=pink' href='https://skycoin.com'>Skycoin</a></pre></td><td><pre></pre></td><td><pre></pre></td></tr>
463<tr><td><pre><a title='emercoin.com Emercoin' onclick='this.style.color=pink' href='https://emercoin.com'>Emercoin</a></pre></td><td><pre></pre></td><td><pre></pre></td></tr>
464</tbody></table>
465
466
467// ===== mementomori.html =====
468<div style='text-align: left; word-wrap: break-word; padding:20px;' class='✟'>
469<br>
470<br>
471<h1>Memento Mori</h1>
472<br>
473<br>
474<h2>January 15th, 2025</h2>
475<br>
476<br>
477The first half of this decade has taken both of my parents from me.<br>
478<br>
479In November 2024, my father was murdered by aggressive cancer caused by the COVID <s>vaccine</s> bioweapon injection.<br>
480<br>
481<br>
482I will not mince words.<br>
483<br>
484I will not remain silent.<br>
485<br>
486A depopulation agenda is in motion.<br>
487<br>
488Governments are either willfully ignorant or complicit in the murder of their citizenry.<br>
489<br>
490<h2>The COVID-19 <s>'vaccinations'</s> injections <b>are agents of biological warfare - they are biogenic / biological weapons.</b></h2>
491<br>
492<video controls>
493 <source src="/i/covid/premeditated_murder_covid_david_martin.mp4" type="video/mp4">
494Your browser does not support the video tag.
495</video>
496<br><br>
497<video controls>
498 <source src="/i/covid/Dr_David_Martin_speech_to_EU_Parliament.mp4" type="video/mp4">
499Your browser does not support the video tag.
500</video>
501<br>
502<br>
503Coronavirus fragments were described as <b><u>“bio-warfare enabling technology”</u></b> at a 2005 DARPA conference.<br>
504<br>
505According to <a href="https://www.ecfr.gov/current/title-7/subtitle-B/chapter-III/part-331">7 CFR Part 331</a>: <b>The spike protein associated with any modification of coronavirus is classified as a biological weapon.</b><br>
506<br>
507<b>The injections instruct the human body to manufacture a scheduled toxin (spike protein).</b><br>
508<br>
509A brief summation:<br>
510<br>
511<ul>
512<li> The <u>spike protein itself is a known carcinogen</u> through at least half a dozen pathways</li>
513<li> <u>mRNA was explicitly described as an experimental gene therapy in SEC filings</u> made by Pfizer BioNTech and Moderna - not a vaccine.</li>
514<li> The injections are <u>not actually mRNA (messenger RNA) but modified RNA</u></li>
515<li> Synthetic <u>pseudouridine</u> in the modified RNA is <u>a known pro-cancer agent</u></li>
516<li> The <u>syntheytic lipid nanoparticles</u> had been previously found <u>too dangerous for any medical application</u></li>
517<li> <u>DNA contamination in excess of 500X the allowed limit</u> was found in virtually all the so-called covid vaccines</li>
518<li> The DNA contamination included <u>SV-40</u>, a known carcinogen, cancer accelerator, and tumerogenic agent</li>
519<li> Japanese Researchers confirmed the existence of <u>self-assembling nanotechnology</u> in the shots</li>
520<li> Dozens or hundreds of other unknown ingredients in the <s>vaccines</s> bioweapon injections</li>
521</ul>
522<br>
523Recently, Slovakia has moved to ban the COVID bioweapon injections:
524<br>
525<video controls preload="none">
526 <source src="/i/covid/slovakia-bans-covid-shots.mp4" type="video/mp4">
527Your browser does not support the video tag.
528</video>
529<br>
530This was an orchestrated domestic and international terror campaign for the purpose of advancing a 'vaccine initiative'<br><br>
531using a deadly experimental gene therapy - <b><u>intended to harm, maim, and kill human beings.</u></b><br><br>
532My father was diagnosed with stage 4 cancer after the shot. The way he suffered before he died was absolutely horrific.<br><br>
533He was sacrificed to the devil by forces of darkness.<br><br>
534Pure evil has manifested on the Earth. Pandora's box has been opened. Genocidal weapons intended to threaten humanity itself with extinction have been deployed.<br><br>
535Generations are being poisoned at a genetic level - in what I can only assume is a heinous plot to create a slave class of genetically dysfunctional & spiritually disconnected people.<br><br>
536<b><u>They knew</u> the pseudo-uridine in the modified RNA was a pro-cancer agent.</b><br><br>
537<b><u>They knew</u> synthetic lipid nanoparticles were too dangerous to use in any application in any living organism to treat anything.</b><br><br>
538<b><u>They knew</u> from ebola trials that remdesivir had a 53% mortality rate. They knew they were murdering people by giving them remdesivir.</b><br><br>
539<b><u>They knew</u> putting people on ventilators was a death sentence.</b><br><br>
540<b><u>They knew</u> that the so-called vaccine did not even meet the legal standard of a vaccine.</b><br><br>
541<b><u>They knew</u> that ivermectin and hydroxychloroquine was an effective treatment for the virus.</b><br><br>
542<img src='/i/covid/zelenko-covid-treatment.jpg'><br><br>
543<b><u>They suppressed that info</u> because they would have never gotten emergency use authorization for the mRNA experimental gene therapy bioweapon injections had treatments existed.</b><br><br>
544<h2>Multiple covert weapon systems have been deployed against American citizens</h2><br>
545Including:
546<ul>
547<li> Biogenic / Biological weapons</li>
548<li> Geoengineering & Weather Modification</li>
549<li> Directed Energy Weapons</li>
550<li> Counterfitting of currency</li>
551<li> Psychological warfare</li>
552</ul>
553<br>
554<b><u>I don't want to live like this anymore.</u></b>
555<br>
556<br>
557<h2>Videos from outspoken doctors and other experts on these topics:</h2>
558<br>
559<br>
560An_Injection_of_Truth_2_Dr_David_E_Martin<br>
561<video controls preload="none"><source src="/i/covid/An_Injection_of_Truth_2_Dr_David_E_Martin.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
562RFK_Jr_on_pharma<br>
563<video controls preload="none"><source src="/i/covid/RFK_Jr_on_pharma.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
564Dr_David_E_Martin_Nuremberg_Illegal_Coercion_Domestic_Terrorism<br>
565<video controls preload="none"><source src="/i/covid/a2.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
566Dr_David_Martin_Like_Never_Before<br>
567<video controls preload="none"><source src="/i/covid/Dr_David_Martin_Like_Never_Before.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
568Dr_David_Martin_Presents_Irrefutable_Evidence_That_COVID-19-Segment_1<br>
569<video controls preload="none"><source src="/i/covid/Dr_David_Martin_Presents_Irrefutable_Evidence_That_COVID-19-Segment_1.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
570Arne_Burkhardt_Spike_Protein_Replacing_Sperm - NOTE: Dr Arne Burkhardt later died in suspicious circumstances<br>
571<video controls preload="none"><source src="/i/covid/Arne_Burkhardt.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
572Dr_David_E_Martin_COVID_Select_Committee_Cover-up<br>
573<video controls preload="none"><source src="/i/covid/COVID_Select_Committee_Cover-up.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
574Dr_David_E_Martin_American_Biological_Threat<br>
575<video controls preload="none"><source src="/i/covid/David_E_Martin_American_Biological_Threat.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
576Dr_David_Martin_Speech_at_International_Crisis_Summit_5_Washington<br>
577<video controls preload="none"><source src="/i/covid/Dr_David_Martin_Speech_at_International_Crisis_Summit_5_Washington.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
578Dr_Robert_Malone<br>
579<video controls preload="none"><source src="/i/covid/Dr_Robert_Malone.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
580Exposed_WHO_Now_Wants_Power_Over_US_Citizens_Facts_Matter_EpochTV<br>
581<video controls preload="none"><source src="/i/covid/Exposed_WHO_Now_Wants_Power_Over_US_Citizens_Facts_Matter_EpochTV.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
582Exposing_Covid-19_Crimes-1<br>
583<video controls preload="none"><source src="/i/covid/Exposing_Covid-19_Crimes-1.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
584Exposing_Covid-19_Crimes-2<br>
585<video controls preload="none"><source src="/i/covid/Exposing_Covid-19_Crimes-2.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
586Jessica_Lipid_Nano_Particles<br>
587<video controls preload="none"><source src="/i/covid/Jessica_Lipid_Nano_Particles.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
588Dr_David_E_Martin_Liberty_or_Death-When_Health_is_Weaponized<br>
589<video controls preload="none"><source src="/i/covid/Liberty_or_Death-When_Health_is_Weaponized.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
590monika-henninger-erber-austrian-tv-mp4<br>
591<video controls preload="none"><source src="/i/covid/monika-henninger-erber-austrian-tv-mp4.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
592Part_2_Dr_David_Kim_Martin_Wheres_This_World_Going_Fundraiser<br>
593<video controls preload="none"><source src="/i/covid/Part_2_Dr_David_Kim_Martin_Wheres_This_World_Going_Fundraiser.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
594Richard_Urso<br>
595<video controls preload="none"><source src="/i/covid/Richard_Urso.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
596Ryan_Cole_Lipid_Nanoparticle<br>
597<video controls preload="none"><source src="/i/covid/Ryan_Cole_Lipid_Nanoparticle.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
598Covid_shots_cause_autoimmune_disorder<br>
599<video controls preload="none"><source src="/i/covid/Covid_shots_cause_autoimmune_disorder.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
600pascal_najadi_thedocuments.info.mp4<br>
601<video controls preload="none"><source src="/i/covid/pascal_najadi_thedocuments.info.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
602Dr_david_martin_anthrax_9-28-2001_inside_job.mp4<br>
603<video controls preload="none"><source src="/i/covid/Dr_david_martin_anthrax_9-28-2001_inside_job.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
604americas_frontline_doctors_white_coat_summit<br>
605<video controls preload="none"><source src="/i/covid/americas_frontline_doctors_white_coat_summit.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
606world_council_for_health_lipid_nanoparticles<br>
607<video controls preload="none"><source src="/i/covid/world_council_for_health_lipid_nanoparticles.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
608covid_shot_autopsies_show_autoimmune_deaths<br>
609<video controls preload="none"><source src="/i/covid/covid_shot_autopsies_show_autoimmune_deaths.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
610covid_shot_accelerated_ageing_turbocancers<br>
611<video controls preload="none"><source src="/i/covid/covid_shot_accelerated_ageing_turbocancers.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
612unvaccinated_are_healthier<br>
613<video controls preload="none"><source src="/i/covid/unvaccinated_are_healthier.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
614UK_doctors_censored<br>
615<video controls preload="none"><source src="/i/covid/UK_doctors_censored.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
616Dr_Paul_Thomas_vaccinated_vs_unvaccinated_children<br>
617<video controls preload="none"><source src="/i/covid/Dr_Paul_Thomas_vaccinated_vs_unvaccinated_children.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
618Dr_David_Martin_treason<br>
619<video controls preload="none"><source src="/i/covid/Dr_David_Martin_treason.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
620MAHA<br>
621<video controls preload="none"><source src="/i/covid/maha.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
622Dr-David_martin_we_are_murdering_children_for_profit<br>
623<video controls preload="none"><source src="/i/covid/Dr-David_martin_we_are_murdering_children_for_profit.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
624Dr_David_martin_sacha_stone_revalation_tour_provo_utah<br>
625<video controls preload="none"><source src="/i/covid/Dr_David_martin_sacha_stone_revalation_tour_provo_utah.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
626stew_peters_pcr_testing_linked_to_cloning_genetic_manipulation<br>
627<video controls preload="none"><source src="/i/covid/stew_peters_pcr_testing_linked_to_cloning_genetic_manipulation.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
628rfk_jr_on_vaccines<br>
629<video controls preload="none"><source src="/i/covid/rfk_jr_on_vaccines.mp4" type="video/mp4">Your browser does not support the video tag.</video><br><br>
630<h2>I too was poisoned by 'vaccines'</h2>
631I have never willingly consented to any vaccination.<br><br>
632I consider needles and injections to be rape.<br><br>
633In adolescence, I was diagnosed with cancer.<br><br>
634I still bear many physical and psychological scars from this experience.<br><br>
635In light of recent information regarding both the covid bioweapon injections<br>
636and the practice of 'vaccination' before the advent of mRNA bioweapons -<br>
637I blame vaccinations for causing my childhood cancer.<br><br>
638Nothing can change the past. Nothing can replace or put back what has been taken from me, or from humanity.<br>
639My childhood. My father. My friends. My fellow human beings. Nothing will bring them back.<br><br>
640All I can do is speak the truth and pray for an end to this madness, an end to the suffering being inflicted on humanity.<br><br>
641Vaccines are “unavoidably” unsafe.<br><br><br><br>
642<h2>A Prayer for an End to Suffering</h2>
643"Vengeance is mine, and recompense,<br>
644for the time when their foot shall slip;<br>
645for the day of their calamity is at hand,<br>
646and their doom comes swiftly."<br>
647- Deuteronomy 32:35<br><br>
648I pray Almighty God, creator of Heaven and Earth, author of life<br>
649I pray - Lord Jesus Christ of Nazareth -<br>
650I pray with tears in my eyes, with my heart full of sorrow<br><br>
651<b><u>I PRAY THE DAY OF YOUR HOLY VENGEANCE WILL COME SOON!</u></b><br><br>
652Crush the head of the serpent!<br>
653Cast out the wicked and evil ones who seek to destroy your creation!<br>
654Throw them into the lake of fire!<br>
655May they suffer eternally for what they have done!<br>
656Show no mercy to the evil ones!<br>
657Destroy that which is evil<br>
658And in so doing<br>
659Bring peace back to the world.<br>
660Amen<br><br>
661</div>
662
663
664// ===== policy.html =====
665<br><br><br><br><h2>Magnetosphere Shipping and Store Policies.</h2>
666<br>
667<br>
668We are currently shipping to U.S. street addresses.<br><br>
669Orders are sent in the order they are received; on business days during normal business hours.<br><br>
670If something is broken or not as described;<br>
671* return postage<br>
672* refund or store credit<br>
673* replacements<br>
674* other appropriate action<br><br>
675 will be assessed at that time, and in coordination with the customer to the best of our abilities.<br><br>
676<h3>Order and Return Policy</h3>
677<br>
678At Magnetosphere, we strive to provide our customers with the best shopping experience.<br>
679Occasionally, stock levels may be listed incorrectly or images may be incorrect.<br>
680Items which cannot be located or have been sold out will be refunded, and the rest of the order sent normally.<br>
681If something is wrong with your order, we want to make it right or refund the items in question.<br>
682Refunds will always be less the amount of payment processing fee - 2.9% + 30 cents.<br>
683<br>
6841. Returns<br>
685<br>
6861.1. Eligibility: To be eligible for a return, your item must be unused and in the same condition that you received it.<br>
6871.2. Time Frame: You have 30 days from the date you received your item to contact us and request a return.<br>
688<br>
6892. How to Initiate a Return<br>
690<br>
6912.1. Contact Us: Please contact us on telegram @magnetosphere<br>
692or via the e-mail address included in the order confirmation e-mail to initiate the return process.<br>
693Provide your order number and a brief explanation of the reason for the return.<br>
694<br>
6953. Shipping Your Return<br>
696<br>
6973.1. Return Shipping: You will be responsible for paying the shipping costs for returning your item.<br>
698Shipping costs are non-refundable.<br>
699<br>
7004. Refunds<br>
701<br>
7024.1. Processing Time: Once your return is received and inspected, we will issue your refund.<br>
7034.2. Refund Method: If approved, your refund will be processed,<br>
704and a credit will automatically be applied to your original method of payment within 3 business days.<br>
705<br>
7065. Exchanges<br>
707<br>
7085.1. Product Exchange: If you would like to exchange your item for a different one,<br>
709please contact us to arrange the exchange.<br>
710<br>
7116. Exceptions<br>
712<br>
7136.1. Non-Returnable Items: items which were sold in used condition are not eligible for returns.<br>
7146.2. Damaged or Defective Items: If you receive a damaged or defective item, please contact us immediately for assistance.<br>
715<br>
716<h3>Shipping Methods, Costs, and Packaging</h3>
717<br>
718If the weight of your order plus the packaging material is less than 1 pound (454 grams) the least expensive shipping option is first class mail via USPS.<br>
719We typically use:<br>
720<br>
721* 6"x4"x4" cardboard boxes<br>
722or<br>
723* padded mailing envelopes<br>
724<br>
725Shipping charge is $5 for orders under 1 lb.<br>
726<br>
727If the weight of your order plus the packaging material is over 1 pound; the least expensive shipping option is USPS priority mail in either:<br>
728<br>
729* flat rate padded envelope ($8 approximate)<br>
730or<br>
731* regional rate A box ($8 to $13 approximate)<br>
732<br>
733Shipping costs for the regional rate A box vary based on distance and in some areas, notably California, it is arbitrarily more expensive.<br>
734<br>
735For orders too large or too heavy for the aforementioned USPS packages, the least expensive option is UPS.<br>
736<br>
737Shipping cost with UPS starts around $12, and we use the best size box available to ship larger orders.<br>
738<br>
739Please note these are the observed rates as of the current time (2021), and subject to change with inflation or rising fuel prices.<br>
740<br>
741<h3>Website Policy</h3>
742magnetosphere.net, its subsidiaries and affiliates, operate www.magnetosphere.net (henceforth referred to as the "Site").<br>
743By accessing, visiting, browsing, using or interacting or attempting to interact with any part of the Site or the use of any software program or services on the Site you agree on your behalf personally, and on behalf of any entity for which you are an agent or you appear to represent, (collectively and individually "you," "your," or "user") to each of the terms and conditions set forth herein (collectively the "Terms of Use").
744By ordering Products through the Site or by any other method, you agree on your behalf personally and on behalf of any entity for which you are an agent or you appear to represent to the Terms of Use.
745magnetosphere.net may prohibit or limit your use of the Site including without limitation the Services, at any time in its sole discretion.<br>
746<h3>Intellectual Property</h3>
747The <a href='/sourcecode'>source code for magnetosphere.net</a> is available. It may be freely used or modified for any purpose with the stipulation that the branding is made unique.<br>
748<br>
749<h3>Privacy Policy & cookies</h3>
750this Site does not collect or resell your personal information. Any personal information you provide is used only for shipping purposes.<br>
751<br>
752Cookies are only used for the shopping cart.<br>
753<br>
754<h3>DISCLAIMER OF WARRANTY</h3>
755ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON INFRINGEMENT ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID<br>
756<br>
757<h3>LIMITATION OF LIABILITY</h3>
758TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL MAGNETOSPHERE.NET BE LIABLE FOR ANY LOST REVENUE, PROFIT, OR DATA, OR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE THE WEBSITE OR SERVICE, EVEN IF MAGNETOSPHERE.NET HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.<br>
759In no event will magnetosphere.net's liability to you, whether in contract, tort (including negligence), or otherwise exceed the amount paid by you for the product or service. The foregoing limitations will apply even if the above stated warranty fails of it's essential purpose.<br>
760<br>
761
762