<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Blog</title>
    <link>/tags/blog/</link>
    <description>Recent content on Blog</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en</language>
    <lastBuildDate>Fri, 13 Dec 2024 00:00:00 +0000</lastBuildDate><atom:link href="/tags/blog/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Creating Custom SVGs for SCADA</title>
      <link>/posts/svg-work/</link>
      <pubDate>Fri, 13 Dec 2024 00:00:00 +0000</pubDate>
      
      <guid>/posts/svg-work/</guid>
      <description>&lt;h3 id=&#34;creating-custom-svgs-for-indus-scada&#34;&gt;Creating Custom SVGs for iNDUS SCADA:&lt;/h3&gt;
&lt;p&gt;In the dynamic world of automation, visualization tools like SCADA systems play a pivotal role in monitoring and controlling industrial processes.
iNDUS, developed by Flovel Energy Private Limited, is a state-of-the-art SCADA system that benefits immensely from scalable and adaptable graphics. To enhance its graphic quality, I have designed several SVG symbols tailored for iNDUS, offering unparalleled clarity and flexibility.&lt;/p&gt;
&lt;h4 id=&#34;why-svg-over-traditional-image-formats&#34;&gt;Why SVG Over Traditional Image Formats?&lt;/h4&gt;
&lt;p&gt;Scalable Vector Graphics (SVG) is a web-based vector image format that has become the gold standard for dynamic and interactive visual content. Unlike raster image formats like PNG or JPEG, which lose quality when resized, SVGs are resolution-independent. This feature makes them ideal for SCADA systems, where visuals often need to be scaled to different sizes depending on the display or use case.&lt;/p&gt;</description>
      <content>&lt;h3 id=&#34;creating-custom-svgs-for-indus-scada&#34;&gt;Creating Custom SVGs for iNDUS SCADA:&lt;/h3&gt;
&lt;p&gt;In the dynamic world of automation, visualization tools like SCADA systems play a pivotal role in monitoring and controlling industrial processes.
iNDUS, developed by Flovel Energy Private Limited, is a state-of-the-art SCADA system that benefits immensely from scalable and adaptable graphics. To enhance its graphic quality, I have designed several SVG symbols tailored for iNDUS, offering unparalleled clarity and flexibility.&lt;/p&gt;
&lt;h4 id=&#34;why-svg-over-traditional-image-formats&#34;&gt;Why SVG Over Traditional Image Formats?&lt;/h4&gt;
&lt;p&gt;Scalable Vector Graphics (SVG) is a web-based vector image format that has become the gold standard for dynamic and interactive visual content. Unlike raster image formats like PNG or JPEG, which lose quality when resized, SVGs are resolution-independent. This feature makes them ideal for SCADA systems, where visuals often need to be scaled to different sizes depending on the display or use case.&lt;/p&gt;
&lt;p&gt;Here are the key benefits of using SVGs for SCADA symbols:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Scalability&lt;/strong&gt;: SVGs are vector-based, ensuring symbols can be scaled up or down without losing clarity or quality. This is crucial for industrial displays, which may vary from small control room screens to large wall-mounted panels.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Lightweight and Efficient&lt;/strong&gt;: SVG files are generally smaller in size compared to high-resolution raster images, leading to faster load times and improved system performance.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Customizability&lt;/strong&gt;: SVGs are written in XML, allowing for easy editing and customization. This flexibility enables engineers to tweak symbols for specific applications within the SCADA system.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Interactivity and Animation&lt;/strong&gt;: SVG supports scripting and styling, enabling the creation of interactive or animated symbols that can visually represent real-time data changes.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h4 id=&#34;a-glimpse-into-the-svg-language&#34;&gt;A Glimpse into the SVG Language&lt;/h4&gt;
&lt;p&gt;Creating SVG symbols involves defining shapes, paths, and styles using XML-based code. For instance, here’s a basic example of an SVG circle:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-xml&#34; data-lang=&#34;xml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;svg&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;width=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;100&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;height=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;100&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;xmlns=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;http://www.w3.org/2000/svg&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;circle&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;cx=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;50&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;cy=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;50&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;r=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;40&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;stroke=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;black&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;stroke-width=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;3&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;fill=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;red&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;/&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;/svg&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;This simple code defines a red circle with a black border, easily customizable for any application. By leveraging the power of SVG, I’ve created a diverse range of symbols for iNDUS, from pumps and valves to turbines and other critical industrial components.&lt;/p&gt;
&lt;p&gt;!&lt;img src=&#34;/images/Pasted%20image%2020241213182617.png&#34; alt=&#34;Image Description&#34;&gt;&lt;/p&gt;
&lt;p&gt;Note - The image shown is the output of the code above but its not an SVG so zooming in or out will change its quality. You can copy and paste the code in any online SVG editor to view the output or run locally.&lt;/p&gt;
&lt;h4 id=&#34;get-access-to-my-custom-svgs&#34;&gt;Get Access to My Custom SVGs&lt;/h4&gt;
&lt;p&gt;Some of the SVG symbols I’ve created for iNDUS SCADA will be made available for download on my Patreon page. If you’re looking for high-quality, scalable symbols for your system, be sure to check them out.
Additionally, if you require custom SVG designs tailored to your specific needs, feel free to contact me. I’d be more than happy to help bring your ideas to life.&lt;/p&gt;
&lt;h4 id=&#34;conclusion&#34;&gt;Conclusion&lt;/h4&gt;
&lt;p&gt;SVGs are revolutionizing the way visuals are implemented in SCADA systems like iNDUS, offering unmatched scalability, efficiency, and customization. As industrial automation continues to evolve, embracing such cutting-edge technologies ensures systems remain adaptable and future-ready. Whether you’re working on iNDUS or any other SCADA platform, leveraging SVG symbols can significantly enhance your system’s visual and functional capabilities.&lt;/p&gt;
&lt;p&gt;Explore my work on Patreon or get in touch for custom designs, and let’s push the boundaries of industrial visualization together!&lt;/p&gt;
&lt;h4 id=&#34;demo&#34;&gt;Demo&lt;/h4&gt;
&lt;p&gt;Images will be attached when designing is complete. Work in progress.&lt;/p&gt;
</content>
    </item>
    
    <item>
      <title>First Blog</title>
      <link>/posts/my-first-blog/</link>
      <pubDate>Thu, 12 Dec 2024 00:00:00 +0000</pubDate>
      
      <guid>/posts/my-first-blog/</guid>
      <description>&lt;h3 id=&#34;i-finally-started-my-blog-thanks-to-networkchucks-amazing-pipeline&#34;&gt;I Finally Started My Blog! Thanks to NetworkChuck’s Amazing Pipeline&lt;/h3&gt;
&lt;p&gt;I’ve always wanted to write a blog. It’s been on my mind for years, but I never started. Why? Because, let’s be honest, writing and publishing a blog usually takes a lot of time. Between planning, drafting, editing, and formatting, it felt like an overwhelming task—especially with my demanding schedule. My work often involves visiting remote sites for electrical and SCADA-related tasks at hydropower plants. That doesn’t leave much room for extra creative projects.&lt;/p&gt;</description>
      <content>&lt;h3 id=&#34;i-finally-started-my-blog-thanks-to-networkchucks-amazing-pipeline&#34;&gt;I Finally Started My Blog! Thanks to NetworkChuck’s Amazing Pipeline&lt;/h3&gt;
&lt;p&gt;I’ve always wanted to write a blog. It’s been on my mind for years, but I never started. Why? Because, let’s be honest, writing and publishing a blog usually takes a lot of time. Between planning, drafting, editing, and formatting, it felt like an overwhelming task—especially with my demanding schedule. My work often involves visiting remote sites for electrical and SCADA-related tasks at hydropower plants. That doesn’t leave much room for extra creative projects.&lt;/p&gt;
&lt;p&gt;But that dream of writing and sharing my experiences with others never really went away.&lt;/p&gt;
&lt;h3 id=&#34;enter-networkchucks-blogging-pipeline&#34;&gt;Enter NetworkChuck’s Blogging Pipeline&lt;/h3&gt;
&lt;p&gt;Then, I discovered &lt;strong&gt;NetworkChuck’s&lt;/strong&gt; video on creating an automated blog pipeline/ system, and it was a total game-changer. For those who don’t know, NetworkChuck is an amazing tech content creator who makes seemingly complex processes feel achievable. His video on building a blogging workflow inspired me to finally take the leap.&lt;/p&gt;
&lt;p&gt;Here’s the link to the video that got me started:
!&lt;img src=&#34;/images/Pasted%20image%2020241213204747.png&#34; alt=&#34;Image Description&#34;&gt;
&lt;a href=&#34;https://www.youtube.com/watch?v=dnE7c0ELEH8&#34;&gt;https://www.youtube.com/watch?v=dnE7c0ELEH8&lt;/a&gt;
(Make sure to check it out and give him some love for his incredible work!)&lt;/p&gt;
&lt;h3 id=&#34;why-this-is-a-game-changer&#34;&gt;Why This is a Game-Changer&lt;/h3&gt;
&lt;p&gt;NetworkChuck’s approach simplifies the blogging process into something manageable and even fun. With this, I can focus on writing and let the automation handle the rest. No more excuses about lack of time or energy—this tool makes blogging efficient and hassle-free.&lt;/p&gt;
&lt;p&gt;Now, I can:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Quickly jot down ideas and drafts.&lt;/li&gt;
&lt;li&gt;Publish posts seamlessly without spending hours on formatting.&lt;/li&gt;
&lt;li&gt;Focus on sharing my knowledge and experiences with you.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;my-blogging-journey-starts-here&#34;&gt;My Blogging Journey Starts Here&lt;/h3&gt;
&lt;p&gt;I’m so excited to finally begin this journey. Whether it’s about my experiences working with SCADA systems at hydropower plants, cool tech tips, or insights from my day-to-day job in electrical engineering, I’m determined to share something valuable with my readers.&lt;/p&gt;
&lt;p&gt;To anyone who’s been putting off starting their own blog: don’t let the fear of complexity or time hold you back. If I can do it with my packed schedule, so can you. All you need is the right tools and a bit of inspiration. And if you’re looking for that inspiration, &lt;strong&gt;go watch NetworkChuck’s video&lt;/strong&gt; and take that first step today!&lt;/p&gt;
&lt;h3 id=&#34;a-big-thank-you-to-networkchuck&#34;&gt;A Big Thank You to NetworkChuck&lt;/h3&gt;
&lt;p&gt;A huge shoutout to NetworkChuck for creating such an amazing idea, workflow and inspiration. Your work makes a difference, and I’m incredibly grateful for it.&lt;/p&gt;
&lt;p&gt;So here’s to new beginnings! Let’s see where this blogging adventure takes us.&lt;/p&gt;
</content>
    </item>
    
  </channel>
</rss>
