<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Latest on VisorCraft News</title><link>https://www.visorcraft.com/news/latest/</link><description>Recent content in Latest on VisorCraft News</description><image><title>VisorCraft News</title><url>https://www.visorcraft.com/logo.png</url><link>https://www.visorcraft.com/logo.png</link></image><generator>Hugo</generator><language>en-US</language><atom:link href="https://www.visorcraft.com/news/latest/index.xml" rel="self" type="application/rss+xml"/><item><title>VisorCraft Launches New Edge Computing Platform</title><link>https://www.visorcraft.com/news/2024/07/visorcraft-launches-new-edge-computing-platform/</link><pubDate>Mon, 01 Jul 2024 10:00:00 -0500</pubDate><guid>https://www.visorcraft.com/news/2024/07/visorcraft-launches-new-edge-computing-platform/</guid><description>&lt;p>We&amp;rsquo;re excited to announce the launch of our new edge computing platform, designed to bring compute power closer to where data is created.&lt;/p>
&lt;h2 id="whats-new">What&amp;rsquo;s New&lt;/h2>
&lt;p>Our platform offers:&lt;/p>
&lt;ul>
&lt;li>&lt;strong>Ultra-low latency&lt;/strong>: Sub-millisecond response times&lt;/li>
&lt;li>&lt;strong>Global deployment&lt;/strong>: Edge nodes in 50+ regions&lt;/li>
&lt;li>&lt;strong>Seamless integration&lt;/strong>: Works with your existing infrastructure&lt;/li>
&lt;li>&lt;strong>Pay-as-you-go pricing&lt;/strong>: Only pay for what you use&lt;/li>
&lt;/ul>
&lt;h2 id="getting-started">Getting Started&lt;/h2>
&lt;p>Deploy your first edge function in under 5 minutes:&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-bash" data-lang="bash">&lt;span style="display:flex;">&lt;span>npm install -g @visorcraft/cli
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>visorcraft init
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>visorcraft deploy
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;p>Learn more in our &lt;a href="https://www.visorcraft.com/docs">documentation&lt;/a>.&lt;/p></description><content:encoded><![CDATA[<p>We&rsquo;re excited to announce the launch of our new edge computing platform, designed to bring compute power closer to where data is created.</p>
<h2 id="whats-new">What&rsquo;s New</h2>
<p>Our platform offers:</p>
<ul>
<li><strong>Ultra-low latency</strong>: Sub-millisecond response times</li>
<li><strong>Global deployment</strong>: Edge nodes in 50+ regions</li>
<li><strong>Seamless integration</strong>: Works with your existing infrastructure</li>
<li><strong>Pay-as-you-go pricing</strong>: Only pay for what you use</li>
</ul>
<h2 id="getting-started">Getting Started</h2>
<p>Deploy your first edge function in under 5 minutes:</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>npm install -g @visorcraft/cli
</span></span><span style="display:flex;"><span>visorcraft init
</span></span><span style="display:flex;"><span>visorcraft deploy
</span></span></code></pre></div><p>Learn more in our <a href="https://www.visorcraft.com/docs">documentation</a>.</p>
]]></content:encoded></item><item><title>Building Resilient Systems: Lessons from the Field</title><link>https://www.visorcraft.com/news/2024/06/building-resilient-systems-lessons-from-the-field/</link><pubDate>Fri, 28 Jun 2024 14:30:00 -0500</pubDate><guid>https://www.visorcraft.com/news/2024/06/building-resilient-systems-lessons-from-the-field/</guid><description>&lt;p>After running production systems at scale for the past year, we&amp;rsquo;ve learned a lot about building systems that don&amp;rsquo;t just work—they recover gracefully when things go wrong.&lt;/p>
&lt;h2 id="the-philosophy">The Philosophy&lt;/h2>
&lt;p>Resilience isn&amp;rsquo;t about preventing failures. It&amp;rsquo;s about designing systems that &lt;strong>expect&lt;/strong> failures and keep running anyway.&lt;/p>
&lt;h2 id="key-principles">Key Principles&lt;/h2>
&lt;h3 id="1-fail-fast-fail-open">1. Fail Fast, Fail Open&lt;/h3>
&lt;p>When something goes wrong, surface it immediately. Don&amp;rsquo;t hide errors behind silent failures.&lt;/p>
&lt;h3 id="2-assume-network-partitions">2. Assume Network Partitions&lt;/h3>
&lt;p>Networks are unreliable. Design your services to handle timeouts and retries gracefully.&lt;/p></description><content:encoded><![CDATA[<p>After running production systems at scale for the past year, we&rsquo;ve learned a lot about building systems that don&rsquo;t just work—they recover gracefully when things go wrong.</p>
<h2 id="the-philosophy">The Philosophy</h2>
<p>Resilience isn&rsquo;t about preventing failures. It&rsquo;s about designing systems that <strong>expect</strong> failures and keep running anyway.</p>
<h2 id="key-principles">Key Principles</h2>
<h3 id="1-fail-fast-fail-open">1. Fail Fast, Fail Open</h3>
<p>When something goes wrong, surface it immediately. Don&rsquo;t hide errors behind silent failures.</p>
<h3 id="2-assume-network-partitions">2. Assume Network Partitions</h3>
<p>Networks are unreliable. Design your services to handle timeouts and retries gracefully.</p>
<h3 id="3-graceful-degradation">3. Graceful Degradation</h3>
<p>If a non-critical service goes down, the rest of your system should continue functioning. Feature flags and circuit breakers are your friends.</p>
<h3 id="4-observability-first">4. Observability First</h3>
<p>You can&rsquo;t fix what you can&rsquo;t see. Structured logging, metrics, and tracing are table stakes.</p>
<h2 id="whats-next">What&rsquo;s Next</h2>
<p>We&rsquo;ll be sharing more deep dives into our architecture and tools in the coming weeks. Stay tuned!</p>
]]></content:encoded></item></channel></rss>