<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Andronik Nazaryan</title>
    <description>The latest articles on Forem by Andronik Nazaryan (@anridev24).</description>
    <link>https://forem.com/anridev24</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F593944%2Fff29d435-92af-424e-8aca-aa852f883c63.jpg</url>
      <title>Forem: Andronik Nazaryan</title>
      <link>https://forem.com/anridev24</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/anridev24"/>
    <language>en</language>
    <item>
      <title>Meet FileScout: Simple, Fast Deep Text Search on Windows</title>
      <dc:creator>Andronik Nazaryan</dc:creator>
      <pubDate>Sun, 03 Mar 2024 20:31:25 +0000</pubDate>
      <link>https://forem.com/anridev24/meet-filescout-simple-fast-deep-text-search-on-windows-3oej</link>
      <guid>https://forem.com/anridev24/meet-filescout-simple-fast-deep-text-search-on-windows-3oej</guid>
      <description>&lt;p&gt;Introducing FileScout, a straightforward desktop application designed for Windows to help you quickly find text within files. Built with Rust for speed and reliability, FileScout simplifies the search process, making it easier than ever to locate the content you need.&lt;/p&gt;

&lt;h2&gt;
  
  
  Simple Yet Powerful
&lt;/h2&gt;

&lt;p&gt;FileScout is all about simplicity and efficiency. It allows you to perform deep text searches within your files, ensuring that finding specific content is no longer a time-consuming task.&lt;/p&gt;

&lt;h3&gt;
  
  
  How It Works
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Specify Path and Keyword&lt;/strong&gt;: Start by telling FileScout where to look and what you're looking for.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;File Tree Building&lt;/strong&gt;: FileScout scans the specified path, preparing a list of files to search through.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Deep Text Search&lt;/strong&gt;: The app then searches within these files for your keyword, ensuring thorough results.&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Features
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Efficiency&lt;/strong&gt;: Built for speed, FileScout finds what you need quickly.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Simplicity&lt;/strong&gt;: Easy to use, with a focus on user-friendly design.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Precision&lt;/strong&gt;: Designed for deep text searches, ensuring accurate findings.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Get Started
&lt;/h2&gt;

&lt;p&gt;FileScout is available for Windows users looking for a fast, reliable way to search text within files. Download, install, and start searching—it's that simple.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/anridev24/file-scout/releases/tag/0.0.1"&gt;Download FileScout here&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Your Feedback Matters
&lt;/h2&gt;

&lt;p&gt;We're always looking to improve. Share your FileScout experiences and suggestions with us, helping to make it even better.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;For those needing a fast, simple solution for deep text searches on Windows, FileScout is here. Try it out and see how it can streamline your search process.&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>opensource</category>
      <category>showdev</category>
      <category>rust</category>
    </item>
    <item>
      <title>AWS Lambda Typescript Template</title>
      <dc:creator>Andronik Nazaryan</dc:creator>
      <pubDate>Sun, 24 Apr 2022 09:13:31 +0000</pubDate>
      <link>https://forem.com/anridev24/aws-lambda-typescript-template-n9k</link>
      <guid>https://forem.com/anridev24/aws-lambda-typescript-template-n9k</guid>
      <description>&lt;p&gt;Hello there, today I want to present you template built by me.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Serverless functions&lt;/strong&gt; are growing in popularity, and since today I haven't found a good template to develop serverless functions in &lt;strong&gt;Typescript&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;you can view template on this URL &lt;a href="https://github.com/anridev24/sls-lambda-ts-template"&gt;&lt;strong&gt;REPOSITORY&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;strong&gt;template includes basic structure which can be modified in any way&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Instructions&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;clone repository&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git clone https://github.com/anridev24/sls-lambda-ts-template.git
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;CD into project and open with your text editor&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;cd .\sls-lambda-ts-template\
code .
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;install dependencies and start the development server&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;npm install
npm run dev
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;you can start coding in &lt;strong&gt;src&lt;/strong&gt; folder&lt;/p&gt;

&lt;p&gt;and finally you can deploy it using&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;serverless deploy
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;Everything you write will be transpiled to JavaScript in a &lt;strong&gt;dist&lt;/strong&gt; folder&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;When you deploy, useless packages will be excluded to guarantee minimal deployment size.&lt;/p&gt;

&lt;p&gt;Thank you for reading, if you have any questions feel free to ask.&lt;br&gt;
Will be happy if you give me a star on GitHub ⭐&lt;/p&gt;

</description>
      <category>aws</category>
      <category>typescript</category>
      <category>serverless</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Delete JavaScript projects like a pro 🔥</title>
      <dc:creator>Andronik Nazaryan</dc:creator>
      <pubDate>Tue, 27 Jul 2021 15:18:26 +0000</pubDate>
      <link>https://forem.com/anridev24/delete-javascript-projects-like-a-pro-3dp5</link>
      <guid>https://forem.com/anridev24/delete-javascript-projects-like-a-pro-3dp5</guid>
      <description>&lt;h2&gt;
  
  
  Works only on Windows
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;create new file call it  &lt;strong&gt;frm.bat&lt;/strong&gt; (&lt;em&gt;command name&lt;/em&gt; can be anything)&lt;/li&gt;
&lt;li&gt;open with your favourite code editor and paste the following code&lt;/li&gt;
&lt;li&gt;move it into &lt;em&gt;Program Files (x86)&lt;/em&gt; to be available for Powershell
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;@echo off 

if "%~1"=="" (
    echo No parameters have been provided.
    echo ex: frm {file/folder}
) else (
    if exist %1\* (
        echo Removing %1 with recursion please wait...
        cmd "/C rm -r %1 -f"
        echo %1 removed.
    ) else (
        echo {%1} doesn't exist
    )
)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  You are done, open Powershell and type
&lt;/h3&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;/frm {folder name}&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;all this simple code does is running native &lt;strong&gt;powershell&lt;/strong&gt; command&lt;br&gt;
&lt;code&gt;rm -r {folder_name} -Force&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  this is my first post hope it helps ♥
&lt;/h2&gt;

</description>
      <category>javascript</category>
      <category>programming</category>
      <category>productivity</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
