<?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>DEV Community: Manjunatha Sai Uppu</title>
    <description>The latest articles on DEV Community by Manjunatha Sai Uppu (@manjunani).</description>
    <link>https://dev.to/manjunani</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%2F390920%2Fe3f54659-109a-4e42-a768-6d7641afee64.jpg</url>
      <title>DEV Community: Manjunatha Sai Uppu</title>
      <link>https://dev.to/manjunani</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/manjunani"/>
    <language>en</language>
    <item>
      <title>Azure - Building Multimodal Generative Experiences. Part 2</title>
      <dc:creator>Manjunatha Sai Uppu</dc:creator>
      <pubDate>Fri, 31 May 2024 02:14:17 +0000</pubDate>
      <link>https://dev.to/manjunani/azure-building-multimodal-generative-experiences-part-2-i3</link>
      <guid>https://dev.to/manjunani/azure-building-multimodal-generative-experiences-part-2-i3</guid>
      <description>&lt;p&gt;Previous Post &lt;a href="https://dev.to/manjunani/azure-building-multimodal-generative-experiences-part-1-j5o"&gt;Link&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Create a composed Document Intelligence Model
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Composed models in Azure AI document intelligence enable users to submit a form when they don't know which is the best model to use.&lt;/li&gt;
&lt;li&gt;Composed Models

&lt;ul&gt;
&lt;li&gt;when you have forms with unusual or unique formats, you can create and train your own custom models in Azure AI Document Intelligence.&lt;/li&gt;
&lt;li&gt;You can create custom model of 2 types (custom template model and custom neural models) refer to previous post to know more about them.&lt;/li&gt;
&lt;li&gt;Once you have created a set of custom models, you must assemble them into a composed model. you can do this on the Azure AI Studio.&lt;/li&gt;
&lt;li&gt;Custom model Compatibility&lt;/li&gt;
&lt;li&gt;Custom template models are responsible with other custom template models across 3.0 and 2.1 API versions&lt;/li&gt;
&lt;li&gt;Custom neural models are composable with other custom neural models.&lt;/li&gt;
&lt;li&gt;Custom neural models can't be composed with custom template models.&lt;/li&gt;
&lt;li&gt;&lt;a href="https://learn.microsoft.com/en-us/azure/ai-services/document-intelligence/concept-composed-models"&gt;Custom models&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Build a document intelligence custom skill for azure search.
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;If you integrate AI Search with an Azure AI Document intelligence solution, you can enrich your index with fields that your Azure AI Document Intelligence models are trained to extract.&lt;/li&gt;
&lt;li&gt;Azure AI Search is a search service hosted in Azure that can index content on your permises or in a cloud location.&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There are 5 stages in Indexing process&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Document Cracking. In document cracking, the indexer opens the content files and extracts their content.&lt;/li&gt;
&lt;li&gt;Field Mappings. Fields such as titles, names, dates, and more are extracted from the content. You can use field mappings to control how they're stored in the index.&lt;/li&gt;
&lt;li&gt;Skillset Execution. In the optional skillset execution stage, custom AI processing is done on the content to enrich the final index.&lt;/li&gt;
&lt;li&gt;Output field mappings. If you're using a custom skillset, its output is mapped to index fields in this stage.&lt;/li&gt;
&lt;li&gt;Push to index. The results of the indexing process are stored in the index in Azure AI Search.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;

&lt;p&gt;AI Search Skillset&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Key Phrase extraction&lt;/li&gt;
&lt;li&gt;Language Detection&lt;/li&gt;
&lt;li&gt;Merge&lt;/li&gt;
&lt;li&gt;Sentiment&lt;/li&gt;
&lt;li&gt;Translation&lt;/li&gt;
&lt;li&gt;Image Analysis&lt;/li&gt;
&lt;li&gt;Optical character recognition&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;&lt;p&gt;we can use custom skills too and they can be used for 2 reasons&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The list of built-in skills doesn't include the type of AI Enrichment you need.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;you want to train your own model to analyze the data&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;

&lt;p&gt;2 types of custom skills that you can create&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Azure Machine Learning Custom Skills&lt;/li&gt;
&lt;li&gt;Custom Web API Skills
Refer to this &lt;a href="https://learn.microsoft.com/en-in/training/modules/build-form-recognizer-custom-skill-for-azure-cognitive-search/3-build-custom-skill"&gt;link&lt;/a&gt; for building an Azure AI Document Intelligence Custom Skill&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>azure</category>
      <category>ai</category>
      <category>openai</category>
      <category>information</category>
    </item>
    <item>
      <title>Azure - Building Multimodal Generative Experiences. Part 1</title>
      <dc:creator>Manjunatha Sai Uppu</dc:creator>
      <pubDate>Wed, 29 May 2024 17:04:01 +0000</pubDate>
      <link>https://dev.to/manjunani/azure-building-multimodal-generative-experiences-part-1-j5o</link>
      <guid>https://dev.to/manjunani/azure-building-multimodal-generative-experiences-part-1-j5o</guid>
      <description>&lt;p&gt;This Blog is a brief run-through of this &lt;a href="https://learn.microsoft.com/en-in/collections/7pmnfq2k784d?WT.mc_id=cloudskillschallenge_d1db6d81-f56e-4032-8779-b00a75aa762f"&gt;learn collection&lt;/a&gt; to get a good understanding of the AI services offered by Azure.&lt;/p&gt;

&lt;h2&gt;
  
  
  Getting Started with Azure OpenAI Services
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Many Generative models are subsets of deep learning algorithms that support various workloads like vision, speech, language, decision and search.&lt;/li&gt;
&lt;li&gt;On Azure, these models are available through Rest APIs, SDK's, and Studio Interfaces.&lt;/li&gt;
&lt;li&gt;Azure Open AI Provides access to model management, deployment, experimentation, customization and learning resources.&lt;/li&gt;
&lt;li&gt;To begin building with Azure OpenAI, we need to choose and deploy a base model. Microsoft provides base models and an option to create customized base models&lt;/li&gt;
&lt;li&gt;There are several types of models available likely --&amp;gt;GPT 4, GPT 3.5, Embedding models, and Dall E Models(image generation models) which differ by cost, speed, and how well they complete the tasks&lt;/li&gt;
&lt;li&gt;Deployment of those Azure AI models can be done in multiple ways like using Azure OpenAI Studio, Azure CLI, or Azure Rest API.&lt;/li&gt;
&lt;li&gt;Once the deployment is done, you can check the models by triggering them from Azure OpenAI Studio.&lt;/li&gt;
&lt;li&gt;Likely using the below prompt types

&lt;ul&gt;
&lt;li&gt;Classifying Content&lt;/li&gt;
&lt;li&gt;Generating New Content&lt;/li&gt;
&lt;li&gt;Holding a Conversation&lt;/li&gt;
&lt;li&gt;Transformation ( translation and symbol conversion)&lt;/li&gt;
&lt;li&gt;Summarizing Content&lt;/li&gt;
&lt;li&gt;Pick up where you left off&lt;/li&gt;
&lt;li&gt;Giving Factual Responses&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Additionally, you can test your models in the completion playground.

&lt;ul&gt;
&lt;li&gt;These below are the parameters that you see on the completion playground.&lt;/li&gt;
&lt;li&gt;Temperature: Controls randomness. Lowering the temperature means that the model produces more repetitive and deterministic responses. Increasing the temperature results in more unexpected or creative responses. Try adjusting temperature or Top P but not both.&lt;/li&gt;
&lt;li&gt;Max length (tokens): Set a limit on the number of tokens per model response. The API supports a maximum of 4000 tokens shared between the prompt (including system message, examples, message history, and user query) and the model's response. One token is roughly four characters for typical English text.&lt;/li&gt;
&lt;li&gt;Stop sequences: Make responses stop at a desired point, such as the end of a sentence or list. Specify up to four sequences where the model will stop generating further tokens in a response. The returned text won't contain the stop sequence.&lt;/li&gt;
&lt;li&gt;Top probabilities (Top P): Similar to temperature, this controls randomness but uses a different method. Lowering Top P narrows the model’s token selection to likelier tokens. Increasing Top P lets the model choose from tokens with both high and low likelihood. Try adjusting temperature or Top P but not both.&lt;/li&gt;
&lt;li&gt;Frequency penalty: Reduce the chance of repeating a token proportionally based on how often it has appeared in the text so far. This decreases the likelihood of repeating the exact same text in a response.&lt;/li&gt;
&lt;li&gt;Presence penalty: Reduce the chance of repeating any token that has appeared in the text at all so far. This increases the likelihood of introducing new topics in a response.&lt;/li&gt;
&lt;li&gt;Pre-response text: Insert text after the user’s input and before the model’s response. This can help prepare the model for a response.&lt;/li&gt;
&lt;li&gt;Post-response text: Insert text after the model’s generated response to encourage further user input, as when modeling a conversation.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Also you have a chat playground that is based on conversation in the message out interface which contains these parameters (Max Response, Top P, Past Messages Included)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Analyze Images
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Azure Vision Service is designed to help you extract information from images. It provides the below functionalities

&lt;ul&gt;
&lt;li&gt;Description and Tag Generation&lt;/li&gt;
&lt;li&gt;Object Detection&lt;/li&gt;
&lt;li&gt;People Detection&lt;/li&gt;
&lt;li&gt;Image metadata, color, and type analysis&lt;/li&gt;
&lt;li&gt;Category Identification&lt;/li&gt;
&lt;li&gt;Background Removal&lt;/li&gt;
&lt;li&gt;Moderate Rating (determine if the image includes any adult or violent content)&lt;/li&gt;
&lt;li&gt;Optical Character Recognition&lt;/li&gt;
&lt;li&gt;Smart thumbnail generation&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Plan an Azure AI Document Intelligence solution
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Azure AI Document Intelligence uses Azure AI Services to analyze the content of scanned forms and convert them into data. It can recognize text values in both common forms and forms that are unique to your business.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Azure AI Document Intelligence&lt;/strong&gt; is an Azure service that you can use to analyze forms completed by your customers, partners, employers, or others and extract the data that they contain.&lt;/li&gt;
&lt;li&gt;prebuilt models like (read, general document, layout) are available and common type forms like ( invoice, receipt, W-2 US tax declaration, ID Document, Business Card, Health Insurance card), custom models (custom template model, custom neural model), composed models (model which consists of multiple custom models).&lt;/li&gt;
&lt;li&gt;Refer this for more info on &lt;a href="https://learn.microsoft.com/en-in/training/modules/plan-form-recognizer-solution/4-choose-model-type"&gt;model types&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Azure AI Document Intelligence includes Application Programming Interfaces for each model types you've seen.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Use Prebuilt Document Intelligence models
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;prebuilt models in Azure AI Document Intelligence enable you to extract data from common forms without training your own models.&lt;/li&gt;
&lt;li&gt;Several of the prebuilt models are trained on specific form types:

&lt;ul&gt;
&lt;li&gt;Invoice model. Extracts common fields and their values from invoices.&lt;/li&gt;
&lt;li&gt;Receipt model. Extracts common fields and their values from receipts.&lt;/li&gt;
&lt;li&gt;W2 model. Extracts common fields and their values from the US Government's W2 tax declaration form.&lt;/li&gt;
&lt;li&gt;ID document model. Extracts common fields and their values from US drivers' licenses and international passports.&lt;/li&gt;
&lt;li&gt;Business card model. Extracts common fields and their values from business cards.&lt;/li&gt;
&lt;li&gt;Health insurance card model. Extracts common fields and their values from health insurance cards.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;The other models are designed to extract values from documents with less specific structures:

&lt;ul&gt;
&lt;li&gt;Read model. Extracts text and languages from documents.&lt;/li&gt;
&lt;li&gt;General document model. Extract text, keys, values, entities, and selection marks from documents.&lt;/li&gt;
&lt;li&gt;Layout model. Extracts text and structure information from documents.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Features of Prebuilt models (text extraction, key-value pairs, entities, selection marks, tables, fields)&lt;/li&gt;
&lt;li&gt;Also there are some input requirements we need to follow to use the prebuilt models and also a brief info of which models provide which features refer to this &lt;a href="https://learn.microsoft.com/en-in/training/modules/use-prebuilt-form-recognizer-models/2-understand-prebuilt-models?pivots=python"&gt;link&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Probably W2 models and General Document models are good enough to get all the features that we might need.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Extract data from forms with Azure Document Intelligence.
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Azure Document Intelligence uses Optical Character Recognition capabilities and a deep learning model to extract text, key-value pairs, selection marks, and tables from documents.&lt;/li&gt;
&lt;li&gt;OCR captures document structure by creating bounding boxes around detected objects in an image.&lt;/li&gt;
&lt;li&gt;Azure Document Intelligence is composed of the following services

&lt;ul&gt;
&lt;li&gt;Document Analysis Models&lt;/li&gt;
&lt;li&gt;Prebuilt models( W2, invoices, receipts, ID Documents, Business Cards)&lt;/li&gt;
&lt;li&gt;Custom Models&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Azure Document Intelligence works on input documents that meet these requirements:

&lt;ul&gt;
&lt;li&gt;Format must be JPG, PNG, BMP, PDF (text or scanned), or TIFF.&lt;/li&gt;
&lt;li&gt;The file size must be less than 500 MB for the paid (S0) tier and 4 MB for the free (F0) tier.&lt;/li&gt;
&lt;li&gt;Image dimensions must be between 50 x 50 pixels and 10000 x 10000 pixels.&lt;/li&gt;
&lt;li&gt;The total size of the training data set must be 500 pages or less.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt; To Use OCR Capabilities, use a layout or read or general document model.&lt;/li&gt;
&lt;li&gt; To create an application that extracts data from other formats we can use prebuilt models&lt;/li&gt;
&lt;li&gt; To create an application that extracts data for your industry-specific norms we can use custom models&lt;/li&gt;
&lt;li&gt;Custom Models

&lt;ul&gt;
&lt;li&gt;Custom template models accurately extract labeled key-value pairs, selection marks, tables, regions, and signatures from documents. Training only takes a few minutes, and more than 100 languages are supported.&lt;/li&gt;
&lt;li&gt;Custom neural models are deep-learned models that combine layout and language features to accurately extract labeled fields from documents. This model is best for semi-structured or unstructured documents.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Refer this &lt;a href="https://dev.to/manjunani/azure-building-multimodal-generative-experiences-part-1-175p-temp-slug-8788540?preview=a83a5936ea6c652829720d7b03ec06b146b3d5edf614ce3ece9f6e538bb86a427ed1489a22a08639dca4d549bdb6fa0ca3f3ab908ed3babe739eadaf"&gt;Link&lt;/a&gt; for Continuation&lt;/p&gt;

</description>
      <category>azure</category>
      <category>ai</category>
      <category>openai</category>
      <category>information</category>
    </item>
    <item>
      <title>Type of API Testing</title>
      <dc:creator>Manjunatha Sai Uppu</dc:creator>
      <pubDate>Mon, 30 Oct 2023 15:00:42 +0000</pubDate>
      <link>https://dev.to/manjunani/type-of-api-testing-599k</link>
      <guid>https://dev.to/manjunani/type-of-api-testing-599k</guid>
      <description>&lt;ol&gt;
&lt;li&gt;Smoke Testing&lt;/li&gt;
&lt;li&gt;Functional Testing.&lt;/li&gt;
&lt;li&gt;Integration Testing&lt;/li&gt;
&lt;li&gt;Regression Testing&lt;/li&gt;
&lt;li&gt;Load Testing&lt;/li&gt;
&lt;li&gt;Stress Testing&lt;/li&gt;
&lt;li&gt;Security Testing&lt;/li&gt;
&lt;li&gt;UI Testing&lt;/li&gt;
&lt;li&gt;Fuzz Testing&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Smoke Testing:&lt;/strong&gt;&lt;br&gt;
Smoke testing is an initial testing process to check whether the most crucial functions of a program are working without any critical errors. It's often performed before more comprehensive testing. Imagine you've developed a web application. During smoke testing, you'd check if the main components, such as the login page, home page, and basic navigation, are functioning correctly without major issues.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Functional Testing:&lt;/strong&gt;&lt;br&gt;
Functional testing assesses the software's functions by testing each function's input, output, and behavior. For example, consider a banking application. Functional testing would involve testing activities like user authentication, fund transfer, balance inquiry, and transaction history to ensure that each function operates as expected based on its specifications.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Integration Testing:&lt;/strong&gt;&lt;br&gt;
Integration testing checks the interface between different software modules and ensures that they work together as intended. Imagine you're developing an e-commerce platform. Integration testing would involve verifying that the payment gateway, inventory management system, and user interface all communicate effectively to process orders, update stock, and handle transactions seamlessly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Regression Testing:&lt;/strong&gt;&lt;br&gt;
Regression testing ensures that new changes or updates to the software do not adversely affect the existing functionality. Let's say you've added new features to a mobile app. Regression testing would involve retesting the original functionalities like login, data retrieval, and core operations to confirm that the new updates haven't caused any unintended issues or bugs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Load Testing:&lt;/strong&gt;&lt;br&gt;
Load testing evaluates the software's performance under normal and peak usage conditions to determine its stability and response time. For instance, if you've developed a video streaming platform, load testing would involve simulating a large number of users accessing the platform simultaneously to assess how well it handles the increased traffic and data load.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Stress Testing:&lt;/strong&gt;&lt;br&gt;
Stress testing examines the software's behavior under extreme conditions to assess its robustness and determine the breaking point. Consider an online shopping website. Stress testing would involve evaluating how the platform performs when there's a sudden surge in user traffic, heavy load on the servers, or when the database is nearing its maximum capacity.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Security Testing:&lt;/strong&gt;&lt;br&gt;
Security testing evaluates the software's ability to protect data and maintain the integrity of the system against potential threats and vulnerabilities. If you've developed a mobile banking application, security testing would involve assessing how well the application safeguards user data, prevents unauthorized access, and encrypts sensitive information to prevent security breaches and cyber attacks.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;UI Testing:&lt;/strong&gt;&lt;br&gt;
UI testing focuses on the user interface to ensure that the application's visual elements and user interactions function as intended. Consider a social media platform. UI testing would involve assessing the layout, color scheme, buttons, links, and overall user experience to ensure that the interface is intuitive, visually appealing, and easy to navigate.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Fuzz Testing:&lt;/strong&gt;&lt;br&gt;
Fuzz testing involves sending invalid, unexpected, or random data inputs to the software to check how it handles these inputs. For instance, if you're testing a messaging application, fuzz testing would involve sending a series of random characters, symbols, and special characters to verify that the application can handle such inputs without crashing or producing unexpected behavior.&lt;/p&gt;

&lt;p&gt;Follow me for more at &lt;a href="https://manjunani.github.io/manjunathasaiuppu"&gt;Manjunath&lt;/a&gt;&lt;br&gt;
reference from &lt;a href="https://substack.com/@manjunathasaiuppu?utm_source=profile-page"&gt;ByteByteGo Blog&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>api</category>
      <category>testing</category>
    </item>
    <item>
      <title>Differences between Firebase, Supabase, AWS Amplify, Appwrite</title>
      <dc:creator>Manjunatha Sai Uppu</dc:creator>
      <pubDate>Sat, 29 Jul 2023 13:42:47 +0000</pubDate>
      <link>https://dev.to/manjunani/differences-between-firebase-supabase-aws-amplify-appwrite-3ln</link>
      <guid>https://dev.to/manjunani/differences-between-firebase-supabase-aws-amplify-appwrite-3ln</guid>
      <description>&lt;h1&gt;
  
  
  Differences between different Backedn as a Service Providers
&lt;/h1&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Feature&lt;/th&gt;
&lt;th&gt;Supabase&lt;/th&gt;
&lt;th&gt;AWS Amplify&lt;/th&gt;
&lt;th&gt;Firebase&lt;/th&gt;
&lt;th&gt;Appwrite&lt;/th&gt;
&lt;th&gt;Others&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;License&lt;/td&gt;
&lt;td&gt;Open-source&lt;/td&gt;
&lt;td&gt;Proprietary&lt;/td&gt;
&lt;td&gt;Proprietary (Google Cloud)&lt;/td&gt;
&lt;td&gt;Open-source&lt;/td&gt;
&lt;td&gt;Varies based on platform&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Backend Services&lt;/td&gt;
&lt;td&gt;✓ Auth, Database, Storage, Realtime Events&lt;/td&gt;
&lt;td&gt;✓ Auth, Database, Storage, Functions, API&lt;/td&gt;
&lt;td&gt;✓ Auth, Database, Storage, Realtime Database&lt;/td&gt;
&lt;td&gt;✓ Auth, Database, Storage, Functions&lt;/td&gt;
&lt;td&gt;Varies based on platform&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;✓ Realtime Collaboration, Webhooks&lt;/td&gt;
&lt;td&gt;✓ Hosting, Analytics, AI/ML, Monitoring&lt;/td&gt;
&lt;td&gt;✓ Hosting, Analytics, AI/ML, Cloud Messaging&lt;/td&gt;
&lt;td&gt;✓ Realtime Collaboration, Webhooks&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Serverless Functions&lt;/td&gt;
&lt;td&gt;✓ Custom Functions&lt;/td&gt;
&lt;td&gt;✓ Custom Serverless Functions&lt;/td&gt;
&lt;td&gt;✓ Firebase Cloud Functions (Node.js)&lt;/td&gt;
&lt;td&gt;✓ Custom Serverless Functions&lt;/td&gt;
&lt;td&gt;Varies based on platform&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Scalability&lt;/td&gt;
&lt;td&gt;Horizontal Scaling&lt;/td&gt;
&lt;td&gt;Horizontal Scaling&lt;/td&gt;
&lt;td&gt;Horizontal Scaling&lt;/td&gt;
&lt;td&gt;Horizontal Scaling&lt;/td&gt;
&lt;td&gt;Varies based on platform&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Data Replication&lt;/td&gt;
&lt;td&gt;Automatic across regions&lt;/td&gt;
&lt;td&gt;Automatic across regions&lt;/td&gt;
&lt;td&gt;Automatic across regions&lt;/td&gt;
&lt;td&gt;Limited replication&lt;/td&gt;
&lt;td&gt;Varies based on platform&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Database&lt;/td&gt;
&lt;td&gt;PostgreSQL&lt;/td&gt;
&lt;td&gt;NoSQL, SQL&lt;/td&gt;
&lt;td&gt;Realtime DB, Firestore&lt;/td&gt;
&lt;td&gt;NoSQL, SQL&lt;/td&gt;
&lt;td&gt;Varies based on platform&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Real-time Features&lt;/td&gt;
&lt;td&gt;Built on PostgreSQL&lt;/td&gt;
&lt;td&gt;Built-in Realtime&lt;/td&gt;
&lt;td&gt;Built-in Realtime&lt;/td&gt;
&lt;td&gt;Built-in Realtime&lt;/td&gt;
&lt;td&gt;Varies based on platform&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;✓ Realtime Collaboration, RLS&lt;/td&gt;
&lt;td&gt;✓ Realtime Database Sync, Subscriptions&lt;/td&gt;
&lt;td&gt;✓ Realtime Database Sync, Subscriptions&lt;/td&gt;
&lt;td&gt;✓ Realtime Collaboration, Subscriptions&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Authentication&lt;/td&gt;
&lt;td&gt;✓ Email/Password, Social Sign-in&lt;/td&gt;
&lt;td&gt;✓ Social Sign-in, Custom&lt;/td&gt;
&lt;td&gt;✓ Email/Password, Social Sign-in, Custom&lt;/td&gt;
&lt;td&gt;✓ Email/Password, OAuth, API Keys&lt;/td&gt;
&lt;td&gt;Varies based on platform&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;File Storage&lt;/td&gt;
&lt;td&gt;✓ Built-in File Storage&lt;/td&gt;
&lt;td&gt;✓ Built-in File Storage&lt;/td&gt;
&lt;td&gt;✓ Built-in File Storage&lt;/td&gt;
&lt;td&gt;✓ Built-in File Storage&lt;/td&gt;
&lt;td&gt;Varies based on platform&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Analytics &amp;amp; Monitoring&lt;/td&gt;
&lt;td&gt;Basic Monitoring &amp;amp; Logging&lt;/td&gt;
&lt;td&gt;✓ Analytics, Monitoring, Logging&lt;/td&gt;
&lt;td&gt;✓ Analytics, Monitoring, Logging&lt;/td&gt;
&lt;td&gt;✓ Basic Monitoring &amp;amp; Logging&lt;/td&gt;
&lt;td&gt;Varies based on platform&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Web &amp;amp; Mobile Support&lt;/td&gt;
&lt;td&gt;Web, iOS, Android&lt;/td&gt;
&lt;td&gt;Web, iOS, Android, React Native&lt;/td&gt;
&lt;td&gt;Web, iOS, Android, React Native&lt;/td&gt;
&lt;td&gt;Web, iOS, Android, React Native&lt;/td&gt;
&lt;td&gt;Varies based on platform&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Custom Plugins&lt;/td&gt;
&lt;td&gt;✓ Extensible with Custom Plugins&lt;/td&gt;
&lt;td&gt;Limited Plugin Support&lt;/td&gt;
&lt;td&gt;Limited Plugin Support&lt;/td&gt;
&lt;td&gt;✓ Extensible with Custom Plugins&lt;/td&gt;
&lt;td&gt;Varies based on platform&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Webhooks&lt;/td&gt;
&lt;td&gt;✓ Built-in Webhooks&lt;/td&gt;
&lt;td&gt;Limited Webhook Support&lt;/td&gt;
&lt;td&gt;Limited Webhook Support&lt;/td&gt;
&lt;td&gt;✓ Supports Custom Webhooks&lt;/td&gt;
&lt;td&gt;Varies based on platform&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Localization&lt;/td&gt;
&lt;td&gt;✓ Supports Multiple Languages&lt;/td&gt;
&lt;td&gt;-&lt;/td&gt;
&lt;td&gt;✓ Internationalization&lt;/td&gt;
&lt;td&gt;-&lt;/td&gt;
&lt;td&gt;Varies based on platform&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Community Support&lt;/td&gt;
&lt;td&gt;Growing Community Support&lt;/td&gt;
&lt;td&gt;Large and Active Community Support&lt;/td&gt;
&lt;td&gt;Large and Active Community Support&lt;/td&gt;
&lt;td&gt;Growing Community Support&lt;/td&gt;
&lt;td&gt;Varies based on platform&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Offline Support&lt;/td&gt;
&lt;td&gt;Automatic Offline Data Syncing&lt;/td&gt;
&lt;td&gt;Automatic Offline Data Syncing&lt;/td&gt;
&lt;td&gt;Offline Data Access and Syncing&lt;/td&gt;
&lt;td&gt;Offline Data Access and Syncing&lt;/td&gt;
&lt;td&gt;Varies based on platform&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Follow me at &lt;a href="https://manjunani.github.io/manjunathasaiuppu"&gt;Manjunatha Sai Uppu&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cloud</category>
      <category>firebase</category>
      <category>appwritehack</category>
      <category>aws</category>
    </item>
    <item>
      <title>Generative AI for Everyone on AWS</title>
      <dc:creator>Manjunatha Sai Uppu</dc:creator>
      <pubDate>Tue, 25 Jul 2023 03:45:47 +0000</pubDate>
      <link>https://dev.to/manjunani/generative-ai-for-everyone-on-aws-2j48</link>
      <guid>https://dev.to/manjunani/generative-ai-for-everyone-on-aws-2j48</guid>
      <description>&lt;p&gt;&lt;strong&gt;Vote of Thanks&lt;/strong&gt;&lt;br&gt;
Thanks to Ayyanar Jeyakrishnan for provididing this content at The Meetup&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Path to GenAI&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;we came from descriptive analytics and then to predictive analytics and thne to word embeddings&lt;br&gt;
and then we have generative ai now.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Let's Understand Basics&lt;/strong&gt;&lt;br&gt;
A word is tokenized first and then embedded as a vector and then we can apply the alogrithms that we want to apply like semantic search or clustering.&lt;/p&gt;




&lt;p&gt;Foundation Models that are available on AWS Sagemaker to jumpstart for self managed access.&lt;/p&gt;

&lt;h3&gt;
  
  
  Publicaly available
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Stability AI&lt;/li&gt;
&lt;li&gt;Alexa&lt;/li&gt;
&lt;li&gt;HuggingFace Models&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  Properitary Models
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Co:here&lt;/li&gt;
&lt;li&gt;Lighten&lt;/li&gt;
&lt;li&gt;A121 Labs&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;strong&gt;Generative AI on AWS&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;AWS Bedrock&lt;/li&gt;
&lt;li&gt;Amazon EC2 Trn1n and Amazon EC2 inf2&lt;/li&gt;
&lt;li&gt;Amazon Code whisperer&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;strong&gt;Amazon Bedrock Foundation Models&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;AI21 labs - (Jurassic-2)&lt;/li&gt;
&lt;li&gt;ANTHROPIC - (Claude)&lt;/li&gt;
&lt;li&gt;Stability AI - (stable diffusion)&lt;/li&gt;
&lt;li&gt;Amazon - (Amazon Titan)&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;on &lt;strong&gt;AWS&lt;/strong&gt; we can try connecting with LLM by going through the &lt;strong&gt;Sagemaker foundation model - playground console&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;Things we can do by prompting and only using LLM&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Text Generation&lt;/li&gt;
&lt;li&gt;Summarization&lt;/li&gt;
&lt;li&gt;Translation&lt;/li&gt;
&lt;li&gt;Code Generation&lt;/li&gt;
&lt;li&gt;Question and Answering&lt;/li&gt;
&lt;/ol&gt;




&lt;p&gt;Choice of Choosing LLM should depend on these four things&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Quality&lt;/li&gt;
&lt;li&gt;Cost&lt;/li&gt;
&lt;li&gt;Latency&lt;/li&gt;
&lt;li&gt;Customization&lt;/li&gt;
&lt;/ol&gt;




&lt;p&gt;&lt;strong&gt;Prompting Tricks&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Zero shot Prompting&lt;/strong&gt; - Decribing task that LLM needs to do without providing any examples&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;One Shot Prompting&lt;/strong&gt; - Describing Task that LLM Needs to do along with one example&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Few Shot Prompting&lt;/strong&gt; - Describing Task along with Some examples to rely on&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; Few shot &lt;strong&gt;&amp;gt;&lt;/strong&gt; one shot &lt;strong&gt;&amp;gt;&lt;/strong&gt; zero shot prompting&lt;/p&gt;




&lt;p&gt;Challenges that we have while adapting LLM's to Enterprises&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pretraining Model from scratch&lt;/li&gt;
&lt;li&gt;Data Privacy and Security and Ethics&lt;/li&gt;
&lt;li&gt;Model Interpretability and hallucination&lt;/li&gt;
&lt;li&gt;Fine Tuning and Customization&lt;/li&gt;
&lt;li&gt;Continual Model Improvement and Integration.&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--GHfPK7J_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://image.slidesharecdn.com/awsmeetupblrjuly22social-230724111823-412f5fa6/75/awsmeetupblrjuly22socialpdf-45-2048.jpg%3Fcb%3D1690197896" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--GHfPK7J_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://image.slidesharecdn.com/awsmeetupblrjuly22social-230724111823-412f5fa6/75/awsmeetupblrjuly22socialpdf-45-2048.jpg%3Fcb%3D1690197896" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--656dNRf4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://image.slidesharecdn.com/awsmeetupblrjuly22social-230724111823-412f5fa6/75/awsmeetupblrjuly22socialpdf-52-2048.jpg%3Fcb%3D1690197896" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--656dNRf4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://image.slidesharecdn.com/awsmeetupblrjuly22social-230724111823-412f5fa6/75/awsmeetupblrjuly22socialpdf-52-2048.jpg%3Fcb%3D1690197896" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>chatgpt</category>
      <category>openai</category>
      <category>aws</category>
      <category>ai</category>
    </item>
    <item>
      <title>Prompt Engineering</title>
      <dc:creator>Manjunatha Sai Uppu</dc:creator>
      <pubDate>Mon, 17 Jul 2023 03:25:55 +0000</pubDate>
      <link>https://dev.to/manjunani/prompt-engineering-2obc</link>
      <guid>https://dev.to/manjunani/prompt-engineering-2obc</guid>
      <description>&lt;h2&gt;
  
  
  What is Prompt Engineering?
&lt;/h2&gt;

&lt;p&gt;A Concept in Artificial Intelligence to make the AI model respond Corretly to our needs.&lt;br&gt;
As generative AI tools improve, prompt engineering will also be important in generating other kinds of content, including robotic process automation bots, 3D assets, scripts, robot instructions and other types of content and digital artifacts.&lt;br&gt;
&lt;strong&gt;Good at Prompt Engineering = Asking Good Questions = Getting Good Results&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;Brilliant Context = Brilliant Answer&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Let's Know about a framework that we can use to get good results from Open AI's ChatGPT..
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;It is known as 5W and 1H framework.&lt;/li&gt;
&lt;li&gt;Here 6W stands for &lt;strong&gt;What, Who, Why, Which, Where&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;1H stands for &lt;strong&gt;How&lt;/strong&gt;..&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Lets Learn More about how to use that framework.
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;What - What do you want from the AI (what are the things that you are expecting it to do)&lt;/li&gt;
&lt;li&gt;Who - To Whom the context is meant to or from whom it is being generated.&lt;/li&gt;
&lt;li&gt;Where - Where are u planning to use the generated Data or generated Content.&lt;/li&gt;
&lt;li&gt;Why - why are you planning to use the generated Data or generated Content&lt;/li&gt;
&lt;li&gt;Which - Which content or which info u might need more.&lt;/li&gt;
&lt;li&gt;How - How the output needs to be generated or how the output needs to be formatted etc.,&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  What we can do with CHATGPT?
&lt;/h2&gt;

&lt;p&gt;If we need to do something or if we want to get/generate some good results what we can do is to ask the ChatGPT to do it for us.&lt;br&gt;
Ex:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;we can ask it to &lt;strong&gt;Rephrase/Summarize&lt;/strong&gt; the prompt we provide.&lt;/li&gt;
&lt;li&gt;We can ask it to &lt;strong&gt;Translate&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;We can as it to &lt;strong&gt;Clarify&lt;/strong&gt; (Explain in Simple Steps/Explain step by step.)&lt;/li&gt;
&lt;li&gt;we can ask to &lt;strong&gt;troubleshoot&lt;/strong&gt; an error by providing it with the good context&lt;/li&gt;
&lt;li&gt;We can ask it to &lt;strong&gt;brainstorm&lt;/strong&gt; ideas for us.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;By Providing these short keywords in the prompt, eventually we can get good results&lt;/p&gt;




&lt;p&gt;As we know there is a certain character limit for output and input in ChatGPT, we can use some commands to extract the info if the character limit is hit.&lt;br&gt;
Some of those commands are&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;ROLEPLAY&lt;/li&gt;
&lt;li&gt;COMPARE&lt;/li&gt;
&lt;li&gt;CONTRAST&lt;/li&gt;
&lt;li&gt;TRANSLATE&lt;/li&gt;
&lt;li&gt;ELABORATE
There Could be some more as well, but these are widely used.&lt;/li&gt;
&lt;/ol&gt;




&lt;p&gt;Finally we can use &lt;strong&gt;CHATGPT&lt;/strong&gt; for good or for bad, it all depends on how well you phrase your prompt.&lt;br&gt;
Let's say if i want to know more about dictionary attack and ask chatgpt it might not give me the details.&lt;br&gt;
If i ask it in a way that i want to know more about it in order to protect myself from such things it will eventually give out the informations&lt;br&gt;
So I suggest everyone to bring out your inner Creativity while providing the prompt.&lt;br&gt;
It will broaden your understanding and also helps to consider various aspects, implications etc.,&lt;/p&gt;

</description>
      <category>promptengineering</category>
      <category>chatgpt</category>
      <category>career</category>
      <category>careerdevelopment</category>
    </item>
    <item>
      <title>Why ChatGPT?</title>
      <dc:creator>Manjunatha Sai Uppu</dc:creator>
      <pubDate>Mon, 17 Jul 2023 01:50:54 +0000</pubDate>
      <link>https://dev.to/manjunani/why-chatgpt-bi4</link>
      <guid>https://dev.to/manjunani/why-chatgpt-bi4</guid>
      <description>&lt;h2&gt;
  
  
  Why is everyone Hyped about ChatGPT?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Because it is incredible.&lt;/li&gt;
&lt;li&gt;Because it is awesome.&lt;/li&gt;
&lt;li&gt;Because it is amazing.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Notable AI Projects!.
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Dall E.&lt;/li&gt;
&lt;li&gt;Whisper&lt;/li&gt;
&lt;li&gt;Bard.&lt;/li&gt;
&lt;li&gt;Imagen Model (not Release to Public)&lt;/li&gt;
&lt;li&gt;LLaMa by Meta&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  What Can be enhanced?
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Fundamental Understanding&lt;/li&gt;
&lt;li&gt;Business Logic&lt;/li&gt;
&lt;li&gt;Creativity&lt;/li&gt;
&lt;li&gt;Critical Thinking&lt;/li&gt;
&lt;li&gt;Ethical Judgement&lt;/li&gt;
&lt;li&gt;Emotional Intelligence&lt;/li&gt;
&lt;li&gt;Contextual Awareness&lt;/li&gt;
&lt;li&gt;Intuition&lt;/li&gt;
&lt;/ol&gt;




&lt;ul&gt;
&lt;li&gt;Although these are things that a human has these things can be greatly enhanced with the help of artificial intelligence (chatgpt kind of applications).&lt;/li&gt;
&lt;li&gt;Overtime AI Models will become exponentially more potent and many new applications will be introduced.&lt;/li&gt;
&lt;li&gt;AI can be used for many things.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Follow me at &lt;a href="https://manjunani.github.io/manjunathasaiuppu"&gt;Manjunatha Sai Uppu&lt;/a&gt;&lt;/p&gt;

</description>
      <category>chatgpt</category>
      <category>promptengineering</category>
      <category>career</category>
    </item>
    <item>
      <title>Startups of the Year 2023</title>
      <dc:creator>Manjunatha Sai Uppu</dc:creator>
      <pubDate>Sun, 16 Jul 2023 11:17:59 +0000</pubDate>
      <link>https://dev.to/manjunani/startups-of-the-year-2023-296m</link>
      <guid>https://dev.to/manjunani/startups-of-the-year-2023-296m</guid>
      <description>&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Name&lt;/th&gt;
&lt;th&gt;URL&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Privatyze&lt;/td&gt;
&lt;td&gt;&lt;a href="https://privatyze.io"&gt;https://privatyze.io&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Our flagship product DEPASS turns any NFT or W3C Verifiable Credential into a pass that can be held in any Apple or Google Wallet.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Blueboard&lt;/td&gt;
&lt;td&gt;&lt;a href="https://blueboard.com"&gt;https://blueboard.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;The Blueboard rewards platform allows co...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ReFocus AI&lt;/td&gt;
&lt;td&gt;&lt;a href="https://refocusai.com"&gt;https://refocusai.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Retention analytics for subscription products.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Good Face Project&lt;/td&gt;
&lt;td&gt;&lt;a href="https://thegoodfaceproject.com"&gt;https://thegoodfaceproject.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;The Good Face Project is a formulation a...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Sportidia&lt;/td&gt;
&lt;td&gt;&lt;a href="https://sportidia.com"&gt;https://sportidia.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sportidia connects people from any sport...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Hyper Brew&lt;/td&gt;
&lt;td&gt;&lt;a href="https://hyperbrew.co"&gt;https://hyperbrew.co&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Hyper Brewis in the Video Creation Tools...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;harpoon&lt;/td&gt;
&lt;td&gt;&lt;a href="https://harpoon.io"&gt;https://harpoon.io&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;harpoon is a drag and drop Kubernetes to...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Platform Science&lt;/td&gt;
&lt;td&gt;&lt;a href="https://platformscience.com"&gt;https://platformscience.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Through the development of a first of it...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SoulShape&lt;/td&gt;
&lt;td&gt;&lt;a href="https://soulshape.app"&gt;https://soulshape.app&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;SoulShapeis in the Healthcare IT Industr...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Alpha Fiber&lt;/td&gt;
&lt;td&gt;&lt;a href="https://alphafiber.tech"&gt;https://alphafiber.tech&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;We are a B2B biotech startup developing ...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Meetlete&lt;/td&gt;
&lt;td&gt;&lt;a href="https://meetlete.com"&gt;https://meetlete.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Meetlete is taking fan engagement to the...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ClickUp&lt;/td&gt;
&lt;td&gt;&lt;a href="https://clickup.com"&gt;https://clickup.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;ClickUp is the world's only all-in-one p...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Assigned&lt;/td&gt;
&lt;td&gt;&lt;a href="https://getassigned.com"&gt;https://getassigned.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Born in an agency that interfaced with h...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;OmniSync&lt;/td&gt;
&lt;td&gt;&lt;a href="https://omnisync.io"&gt;https://omnisync.io&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Our software is a first-of-its kind tool...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Tag-N-Trac&lt;/td&gt;
&lt;td&gt;&lt;a href="https://tagntrac.com"&gt;https://tagntrac.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;We completed development and are introdu...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Zoox&lt;/td&gt;
&lt;td&gt;&lt;a href="https://zoox.com"&gt;https://zoox.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Zoox was founded to make personal transp...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Hey Social Good&lt;/td&gt;
&lt;td&gt;&lt;a href="https://heysocialgood.com"&gt;https://heysocialgood.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Hey Social Good is a social impact tech ...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SimplicityDX&lt;/td&gt;
&lt;td&gt;&lt;a href="https://simplicitydx.com"&gt;https://simplicitydx.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;SimplicityDXis in the E-Commerce Enabler...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Pagarba Solutions&lt;/td&gt;
&lt;td&gt;&lt;a href="https://pagarba.ai"&gt;https://pagarba.ai&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;We are a company committed to intelligen...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Blue Mountain Insights&lt;/td&gt;
&lt;td&gt;&lt;a href="https://bluemountaininsights.com"&gt;https://bluemountaininsights.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Blue Mountain Insightsis in the Data as ...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RobustPhysics&lt;/td&gt;
&lt;td&gt;&lt;a href="https://robustphysics.com"&gt;https://robustphysics.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;RobustPhysics is based in San Diego, Cal...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Monsido&lt;/td&gt;
&lt;td&gt;&lt;a href="https://monsido.com"&gt;https://monsido.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Website accessibility!&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PassPoint&lt;/td&gt;
&lt;td&gt;&lt;a href="https://getpasspoint.com"&gt;https://getpasspoint.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;PassPoint currently focuses on COVID com...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PatientPartner&lt;/td&gt;
&lt;td&gt;&lt;a href="https://patientpartner.com"&gt;https://patientpartner.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;You use Facebook \u0026 Instagram for yo...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Lawmatics&lt;/td&gt;
&lt;td&gt;&lt;a href="https://lawmatics.com"&gt;https://lawmatics.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Lawmatics is the #1 Attorney-Client Rela...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Work Chop&lt;/td&gt;
&lt;td&gt;&lt;a href="https://eworkchop.com"&gt;https://eworkchop.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Work Chopis in the Robotic Process Autom...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;EMU Results Coaching&lt;/td&gt;
&lt;td&gt;&lt;a href="https://emuresultscoaching.com"&gt;https://emuresultscoaching.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;EMU Results Coachingis in the Continued ...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;EverBee&lt;/td&gt;
&lt;td&gt;&lt;a href="https://everbee.io"&gt;https://everbee.io&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;We help E-commerce companies identify tr...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cleanbot&lt;/td&gt;
&lt;td&gt;&lt;a href="https://getcleanbot.com"&gt;https://getcleanbot.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Cleanbot.io is what you want in your hom...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Direct Systems Support&lt;/td&gt;
&lt;td&gt;&lt;a href="https://directsys.net"&gt;https://directsys.net&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Direct Systems Supportis in the Business...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ProtectOn&lt;/td&gt;
&lt;td&gt;&lt;a href="https://protecton.app"&gt;https://protecton.app&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;ProtectOnis in the Security-Surveillance...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;AirTrackFactoryUS&lt;/td&gt;
&lt;td&gt;&lt;a href="https://airtrackus.com"&gt;https://airtrackus.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Premier inflatable tumbling equipment. W...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Commons XR&lt;/td&gt;
&lt;td&gt;&lt;a href="https://thecommonsxr.com"&gt;https://thecommonsxr.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;The Commons XR provides an integrated pl...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;comma&lt;/td&gt;
&lt;td&gt;&lt;a href="https://comma.ai"&gt;https://comma.ai&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;We're making driving chill—think Tesla A...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Pareto Care&lt;/td&gt;
&lt;td&gt;&lt;a href="https://pareto.care"&gt;https://pareto.care&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Pareto Careis in the Healthcare IT Indus...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;XILO&lt;/td&gt;
&lt;td&gt;&lt;a href="https://xilo.io"&gt;https://xilo.io&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;XILO helps hundreds of independent insur...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Redfish&lt;/td&gt;
&lt;td&gt;&lt;a href="https://redfish.agency"&gt;https://redfish.agency&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Redfish is a YouTube marketing agency.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;BolideAI&lt;/td&gt;
&lt;td&gt;&lt;a href="https://bolide.ai"&gt;https://bolide.ai&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;BolideAIis in the MarketingTech Industry&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Boardcave&lt;/td&gt;
&lt;td&gt;&lt;a href="https://boardcave.com"&gt;https://boardcave.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Oceans wrap the majority of our planet a...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Launch Factory&lt;/td&gt;
&lt;td&gt;&lt;a href="https://launchfactory.com"&gt;https://launchfactory.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;We are a startup studio with a unique pa...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Capture2&lt;/td&gt;
&lt;td&gt;&lt;a href="https://capture2proposal.com"&gt;https://capture2proposal.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Capture2Proposal provides GovCon Busines...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Dia Creative&lt;/td&gt;
&lt;td&gt;&lt;a href="https://diacreative.com"&gt;https://diacreative.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Fractional CMO. Perfect your branding \u...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Doctible&lt;/td&gt;
&lt;td&gt;&lt;a href="https://doctible.com"&gt;https://doctible.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Doctible offers a fully integrated platf...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PropertyFlo&lt;/td&gt;
&lt;td&gt;&lt;a href="https://propertyflo.com"&gt;https://propertyflo.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;PropertyFlois in the Real Estate IT Indu...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Maze AR&lt;/td&gt;
&lt;td&gt;&lt;a href="https://maze-ar.com"&gt;https://maze-ar.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Maze AR provides an innovative technolog...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Carenet&lt;/td&gt;
&lt;td&gt;&lt;a href="https://carenet.ai"&gt;https://carenet.ai&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Carenetis in the Healthcare IT Industry&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Ticordatatools&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ticordatatools.com"&gt;https://ticordatatools.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Ticordatatoolsis in the Real Estate IT I...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Medical Intelligence One&lt;/td&gt;
&lt;td&gt;&lt;a href="https://mi1.ai"&gt;https://mi1.ai&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Medical Intelligence Oneis in the Health...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Ontologic&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ontologic.ly"&gt;https://ontologic.ly&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Ontologicis in the Business Intelligence...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Upgrade Merchant&lt;/td&gt;
&lt;td&gt;&lt;a href="https://upgrademerchant.com"&gt;https://upgrademerchant.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Upgrade Merchantis in the Payments Indus...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Viso&lt;/td&gt;
&lt;td&gt;&lt;a href="https://viso.vision"&gt;https://viso.vision&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Visois in the Construction Tech Industry&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;DecPage AI&lt;/td&gt;
&lt;td&gt;&lt;a href="https://decpage.ai"&gt;https://decpage.ai&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;DecPage AIis in the Insurance IT Industr...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Advanced AI Solutions&lt;/td&gt;
&lt;td&gt;&lt;a href="https://xfireusa.com"&gt;https://xfireusa.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Advanced AI Solutionsis in the Drones In...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PartnerOptimizer&lt;/td&gt;
&lt;td&gt;&lt;a href="https://partneroptimizer.com"&gt;https://partneroptimizer.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;PartnerOptimizeris in the MarketingTech ...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;XRA&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ziplaunchpad.sdsu.edu"&gt;https://ziplaunchpad.sdsu.edu&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;NDA needed&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Nowadays&lt;/td&gt;
&lt;td&gt;&lt;a href="https://nowadays.media"&gt;https://nowadays.media&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Our signature is inducing action through...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;DogQ&lt;/td&gt;
&lt;td&gt;&lt;a href="https://dogq.io"&gt;https://dogq.io&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;DogQis in the Software Testing Tools Ind...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Classy.org&lt;/td&gt;
&lt;td&gt;&lt;a href="https://classy.org"&gt;https://classy.org&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Classy is the world’s largest fundraisin...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Oatmeal Health&lt;/td&gt;
&lt;td&gt;&lt;a href="https://oatmealhealth.com"&gt;https://oatmealhealth.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Oatmeal Healthis in the Healthcare IT In...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Virtual Me&lt;/td&gt;
&lt;td&gt;&lt;a href="https://virtualme.care"&gt;https://virtualme.care&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Virtual Meis in the HRTech Industry&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Kahoona&lt;/td&gt;
&lt;td&gt;&lt;a href="https://kahoona.io"&gt;https://kahoona.io&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Kahoonais in the Cybersecurity Industry&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SwellCo&lt;/td&gt;
&lt;td&gt;&lt;a href="https://swellco.me"&gt;https://swellco.me&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;SwellCo connects sports enthusiasts with...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Walla&lt;/td&gt;
&lt;td&gt;&lt;a href="https://hellowalla.com"&gt;https://hellowalla.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;The fitness industry was shaken by the l...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Approveit&lt;/td&gt;
&lt;td&gt;&lt;a href="https://approveit.today"&gt;https://approveit.today&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;We enhance business efficiency by bringi...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;NeighborhoodTrials&lt;/td&gt;
&lt;td&gt;&lt;a href="https://neighborhoodtrials.com"&gt;https://neighborhoodtrials.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;NeighborhoodTrialsis in the Life Science...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ObjectSecurity&lt;/td&gt;
&lt;td&gt;&lt;a href="https://objectsecurity.com"&gt;https://objectsecurity.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;ObjectSecurity is a highly innovative cy...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Resilience.Healthcare&lt;/td&gt;
&lt;td&gt;&lt;a href="https://resilience.healthcare"&gt;https://resilience.healthcare&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Resilience.Healthcareis in the Healthcar...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Brain&lt;/td&gt;
&lt;td&gt;&lt;a href="https://braincorp.com"&gt;https://braincorp.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Brain Corp is a San Diego-based A.I. com...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Ongoing Subscriptions&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ongoingsubscriptions.com"&gt;https://ongoingsubscriptions.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Ongoing Subscriptionsis in the E-Commerc...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;BAM Communications&lt;/td&gt;
&lt;td&gt;&lt;a href="https://bamcommunications.biz"&gt;https://bamcommunications.biz&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;At bam communications, we provide assist...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Minnow&lt;/td&gt;
&lt;td&gt;&lt;a href="https://minnow.works"&gt;https://minnow.works&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Minnow matches users with mobile MicroTa...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Prokobi&lt;/td&gt;
&lt;td&gt;&lt;a href="https://prokobi.com"&gt;https://prokobi.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Prokobiis in the Internet of Things Infr...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;REST NODE&lt;/td&gt;
&lt;td&gt;&lt;a href="https://restnode.org"&gt;https://restnode.org&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;REST NODEis in the Smart Homes Industry&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Truepic&lt;/td&gt;
&lt;td&gt;&lt;a href="https://truepic.com"&gt;https://truepic.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Truepic develops the world's most secure...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;KÉXY&lt;/td&gt;
&lt;td&gt;&lt;a href="https://getkexy.com"&gt;https://getkexy.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;KÉXY is a data-driven multisided platfor...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MdNect&lt;/td&gt;
&lt;td&gt;&lt;a href="https://mdnect.com"&gt;https://mdnect.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;MdNectis in the Digital Transaction Mana...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;LLAVE&lt;/td&gt;
&lt;td&gt;&lt;a href="https://llave.io"&gt;https://llave.io&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;LLAVEis in the Cybersecurity Industry&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Campaign Wizard&lt;/td&gt;
&lt;td&gt;&lt;a href="https://campaignwizard.io"&gt;https://campaignwizard.io&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Campaign Wizardis in the MarketingTech I...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;4th Dimension EMR&lt;/td&gt;
&lt;td&gt;&lt;a href="https://4d-emr.com"&gt;https://4d-emr.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;4th Dimension EMRis in the Healthcare IT...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Imperfects&lt;/td&gt;
&lt;td&gt;&lt;a href="https://imperfects.co"&gt;https://imperfects.co&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Handmade Surf, Skate, and Apparel for th...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;VentiSwap&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ventiswap.com"&gt;https://ventiswap.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;VentiSwapis in the Cryptocurrencies Indu...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PINS Advantage&lt;/td&gt;
&lt;td&gt;&lt;a href="https://pinsadvantage.com"&gt;https://pinsadvantage.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Our software streamlines and automates t...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Ink Finance&lt;/td&gt;
&lt;td&gt;&lt;a href="https://inkfinance.xyz"&gt;https://inkfinance.xyz&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Ink Financeis in the Blockchain Infrastr...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Trust \u0026 Will&lt;/td&gt;
&lt;td&gt;&lt;a href="https://trustandwill.com"&gt;https://trustandwill.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Trust \u0026 Will is disrupting the trus...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Sequence&lt;/td&gt;
&lt;td&gt;&lt;a href="https://sequence.film"&gt;https://sequence.film&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sequenceis in the Video Creation Tools I...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;DIGITAL MENU GUY&lt;/td&gt;
&lt;td&gt;&lt;a href="https://digitalmenuguy.com"&gt;https://digitalmenuguy.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;DIGITAL MENU GUYis in the Food Tech Indu...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Mitek Systems&lt;/td&gt;
&lt;td&gt;&lt;a href="https://miteksystems.com"&gt;https://miteksystems.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;We’re Mitek, a NASDAQ-listed global lead...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Prana Wellness&lt;/td&gt;
&lt;td&gt;&lt;a href="https://pranawellnessworks.com"&gt;https://pranawellnessworks.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Prana Wellness brings wellness to the wo...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PrecisePK&lt;/td&gt;
&lt;td&gt;&lt;a href="https://precisepk.com"&gt;https://precisepk.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;We are the developer of PrecisePK, a Bay...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;CanIRank&lt;/td&gt;
&lt;td&gt;&lt;a href="https://canirank.com"&gt;https://canirank.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;SEO software that delivers actions and i...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;GRAPL&lt;/td&gt;
&lt;td&gt;&lt;a href="https://grapl.it"&gt;https://grapl.it&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;GRAPLis in the Enterprise Collaboration ...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Robin Healthcare&lt;/td&gt;
&lt;td&gt;&lt;a href="https://robinhealthcare.com"&gt;https://robinhealthcare.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Led by a repeat founder with a successfu...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Brilliant CRM&lt;/td&gt;
&lt;td&gt;&lt;a href="https://brilliantcrm.tech"&gt;https://brilliantcrm.tech&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Brilliant CRMis in the Sales Force Autom...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;WEALTHAWK&lt;/td&gt;
&lt;td&gt;&lt;a href="https://wealthawk.com"&gt;https://wealthawk.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;WEALTHAWKis in the Investment Tech Indus...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ChargeNet Stations&lt;/td&gt;
&lt;td&gt;&lt;a href="https://chargenetstations.com"&gt;https://chargenetstations.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;EV Fast Chargers in prime restaurant and...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Half Past Nine&lt;/td&gt;
&lt;td&gt;&lt;a href="https://halfpastnine.io"&gt;https://halfpastnine.io&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;We deliver industry-leading marketing st...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Border&lt;/td&gt;
&lt;td&gt;&lt;a href="https://borderux.com"&gt;https://borderux.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Product strategy User research Stakehold...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Streamlined&lt;/td&gt;
&lt;td&gt;&lt;a href="https://streamlinedpayments.com"&gt;https://streamlinedpayments.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Streamlined is on a mission to transform...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Mari + Gold&lt;/td&gt;
&lt;td&gt;&lt;a href="https://mariandgold.com"&gt;https://mariandgold.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Mari + Goldis in the Marketing Services ...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Helix&lt;/td&gt;
&lt;td&gt;&lt;a href="https://helix.com"&gt;https://helix.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Helix is a growth stage company focused ...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;HostedHooks&lt;/td&gt;
&lt;td&gt;&lt;a href="https://hostedhooks.com"&gt;https://hostedhooks.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;HostedHooksis in the Application Develop...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Portrait&lt;/td&gt;
&lt;td&gt;&lt;a href="https://portraitcare.com"&gt;https://portraitcare.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Portrait's mission is inspired care. We'...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Empirical&lt;/td&gt;
&lt;td&gt;&lt;a href="https://goempirical.com"&gt;https://goempirical.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;We are a people-first company of product...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;AlanaMD&lt;/td&gt;
&lt;td&gt;&lt;a href="https://alanamd.com"&gt;https://alanamd.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;AlanaMDis in the Healthcare IT Industry&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;GoShare&lt;/td&gt;
&lt;td&gt;&lt;a href="https://goshare.co"&gt;https://goshare.co&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;GoShare is Paving a New Path in the Logi...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Jayu&lt;/td&gt;
&lt;td&gt;&lt;a href="https://jayu.us"&gt;https://jayu.us&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;The rewards program customers love ❤️  J...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Niche&lt;/td&gt;
&lt;td&gt;&lt;a href="https://withniche.com"&gt;https://withniche.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Nicheis in the MarketingTech Industry&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Ascent Warehouse Logistic...&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ascentwl.com"&gt;https://ascentwl.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Ascent Warehouse Logisticsis in the Logi...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;AgileIT&lt;/td&gt;
&lt;td&gt;&lt;a href="https://agileit.com"&gt;https://agileit.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;100% unapologetically focused on Microso...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Career Club&lt;/td&gt;
&lt;td&gt;&lt;a href="https://careerclubhq.com"&gt;https://careerclubhq.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Career Clubis in the HRTech Industry&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Ryzee&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ryzee.co"&gt;https://ryzee.co&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Ryzeeis in the IoT Applications Industry&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Atlas MarketEdge&lt;/td&gt;
&lt;td&gt;&lt;a href="https://theatlasmarketedge.com"&gt;https://theatlasmarketedge.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;The Atlas MarketEdgeis in the MarketingT...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6Storage&lt;/td&gt;
&lt;td&gt;&lt;a href="https://6storage.com"&gt;https://6storage.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Founded in 2011 to solve our own proble...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RFYN&lt;/td&gt;
&lt;td&gt;&lt;a href="https://rfyn.io"&gt;https://rfyn.io&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;RFYNis in the MarketingTech Industry&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Replay&lt;/td&gt;
&lt;td&gt;&lt;a href="https://replay.bio"&gt;https://replay.bio&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Replayis in the Life Sciences Platforms ...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Pixly&lt;/td&gt;
&lt;td&gt;&lt;a href="https://pixly.ai"&gt;https://pixly.ai&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Pixly is building the easiest way to sav...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MarketPage&lt;/td&gt;
&lt;td&gt;&lt;a href="https://marketpage.co"&gt;https://marketpage.co&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;MarketPageis in the Content Management S...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Slikk&lt;/td&gt;
&lt;td&gt;&lt;a href="https://slikk.ai"&gt;https://slikk.ai&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Slikkis in the Enterprise Collaboration ...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Crowd Connect&lt;/td&gt;
&lt;td&gt;&lt;a href="https://crowdconnect.io"&gt;https://crowdconnect.io&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Crowd Connectis in the MarketingTech Ind...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;DecisionLogic&lt;/td&gt;
&lt;td&gt;&lt;a href="https://decisionlogic.com"&gt;https://decisionlogic.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;DecisionLogic is a leading FinTech compa...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Land Lead Manager&lt;/td&gt;
&lt;td&gt;&lt;a href="https://landleadmanager.com"&gt;https://landleadmanager.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Land Lead Manageris in the Sales Force A...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Sensorydata&lt;/td&gt;
&lt;td&gt;&lt;a href="https://sensorydatacorp.com"&gt;https://sensorydatacorp.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sensorydata removes the subjectivity fro...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;ODK Central&lt;/td&gt;
&lt;td&gt;&lt;a href="https://odkcentral.com"&gt;https://odkcentral.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;ODK Centralis in the Open Source Industr...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;GoFormz&lt;/td&gt;
&lt;td&gt;&lt;a href="https://goformz.com"&gt;https://goformz.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;GoFormz lets businesses capture data ele...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cloudbeds&lt;/td&gt;
&lt;td&gt;&lt;a href="https://cloudbeds.com"&gt;https://cloudbeds.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Cloudbeds provides a transformative tech...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;EmpathIQ&lt;/td&gt;
&lt;td&gt;&lt;a href="https://empathiq.ai"&gt;https://empathiq.ai&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;EmpathIQis in the Cybersecurity Industry&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Skillmasters.io&lt;/td&gt;
&lt;td&gt;&lt;a href="https://skillmasters.io"&gt;https://skillmasters.io&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Skillmasters offers a comprehensive trai...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;KidSecure&lt;/td&gt;
&lt;td&gt;&lt;a href="https://kidsecure.app"&gt;https://kidsecure.app&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;KidSecureis in the Security-Surveillance...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Easy Games&lt;/td&gt;
&lt;td&gt;&lt;a href="https://easy.gg"&gt;https://easy.gg&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Easy Games is a remote-first, independen...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Lively Root&lt;/td&gt;
&lt;td&gt;&lt;a href="https://livelyroot.com"&gt;https://livelyroot.com&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;At Lively Root, we are horticultural exp...&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Learning Equality&lt;/td&gt;
&lt;td&gt;&lt;a href="https://learningequality.org"&gt;https://learningequality.org&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Learning Equality is a nonprofit organiz...&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Follow me at &lt;a href="https://manjunani.github.io/manjunathasaiuppu"&gt;Manjunatha Sai Uppu&lt;/a&gt;&lt;/p&gt;

</description>
      <category>startup</category>
      <category>chatgpt</category>
      <category>career</category>
    </item>
    <item>
      <title>Some Good AI Tools</title>
      <dc:creator>Manjunatha Sai Uppu</dc:creator>
      <pubDate>Sun, 16 Jul 2023 07:39:22 +0000</pubDate>
      <link>https://dev.to/manjunani/some-good-ai-tools-43k</link>
      <guid>https://dev.to/manjunani/some-good-ai-tools-43k</guid>
      <description>&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;S.No&lt;/th&gt;
&lt;th&gt;Name&lt;/th&gt;
&lt;th&gt;URL&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;Zoviz&lt;/td&gt;
&lt;td&gt;&lt;a href="https://zoviz.com/logo-maker" rel="noopener noreferrer"&gt;Zoviz&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;tl;dv&lt;/td&gt;
&lt;td&gt;&lt;a href="https://tldv.io/" rel="noopener noreferrer"&gt;tl;dv&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;Otter AI&lt;/td&gt;
&lt;td&gt;&lt;a href="https://otter.ai/?irclickid=zhBxOmRo-xyNWY70Pm0w2xFkUkF0EK3XUzh%3ATc0&amp;amp;irgwc=1&amp;amp;utm_term=1113693&amp;amp;utm_medium=tracking_link&amp;amp;utm_source=affiliate&amp;amp;utm_content=other" rel="noopener noreferrer"&gt;Otter AI&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;Taskade&lt;/td&gt;
&lt;td&gt;&lt;a href="https://www.taskade.com/" rel="noopener noreferrer"&gt;Taskade&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;td&gt;Notion AI&lt;/td&gt;
&lt;td&gt;&lt;a href="https://affiliate.notion.so/4k7toe8k1i48-4y5a7" rel="noopener noreferrer"&gt;Notion AI&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;td&gt;Bing&lt;/td&gt;
&lt;td&gt;&lt;a href="https://www.bing.com/new" rel="noopener noreferrer"&gt;Bing&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;7&lt;/td&gt;
&lt;td&gt;Bard&lt;/td&gt;
&lt;td&gt;&lt;a href="https://bard.google.com/" rel="noopener noreferrer"&gt;Bard&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;8&lt;/td&gt;
&lt;td&gt;Forefront&lt;/td&gt;
&lt;td&gt;&lt;a href="https://www.forefront.ai/" rel="noopener noreferrer"&gt;Forefront&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;9&lt;/td&gt;
&lt;td&gt;Merlin&lt;/td&gt;
&lt;td&gt;&lt;a href="https://merlin.foyer.work/" rel="noopener noreferrer"&gt;Merlin&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;10&lt;/td&gt;
&lt;td&gt;WNR AI&lt;/td&gt;
&lt;td&gt;&lt;a href="https://wnr.ai/" rel="noopener noreferrer"&gt;WNR AI&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;11&lt;/td&gt;
&lt;td&gt;Chat ABC&lt;/td&gt;
&lt;td&gt;&lt;a href="https://chatabc.ai/" rel="noopener noreferrer"&gt;Chat ABC&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;12&lt;/td&gt;
&lt;td&gt;Paperpal AI&lt;/td&gt;
&lt;td&gt;&lt;a href="https://paperpal.com/" rel="noopener noreferrer"&gt;Paperpal AI&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;13&lt;/td&gt;
&lt;td&gt;Monic AI&lt;/td&gt;
&lt;td&gt;&lt;a href="https://beta.monic.ai/" rel="noopener noreferrer"&gt;Monic AI&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;14&lt;/td&gt;
&lt;td&gt;ChartGPT&lt;/td&gt;
&lt;td&gt;&lt;a href="https://www.chartgpt.dev/" rel="noopener noreferrer"&gt;ChartGPT&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;15&lt;/td&gt;
&lt;td&gt;Trinka AI&lt;/td&gt;
&lt;td&gt;&lt;a href="https://www.trinka.ai/" rel="noopener noreferrer"&gt;Trinka AI&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;16&lt;/td&gt;
&lt;td&gt;Scholarcy&lt;/td&gt;
&lt;td&gt;&lt;a href="https://www.scholarcy.com/" rel="noopener noreferrer"&gt;Scholarcy&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;17&lt;/td&gt;
&lt;td&gt;Lavender&lt;/td&gt;
&lt;td&gt;&lt;a href="https://www.lavender.ai/" rel="noopener noreferrer"&gt;Lavender&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;18&lt;/td&gt;
&lt;td&gt;Regie&lt;/td&gt;
&lt;td&gt;&lt;a href="https://www.regie.ai/" rel="noopener noreferrer"&gt;Regie&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;19&lt;/td&gt;
&lt;td&gt;Warmer&lt;/td&gt;
&lt;td&gt;&lt;a href="https://warmer.ai/" rel="noopener noreferrer"&gt;Warmer&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;20&lt;/td&gt;
&lt;td&gt;Twain&lt;/td&gt;
&lt;td&gt;&lt;a href="https://www.twain.ai/" rel="noopener noreferrer"&gt;Twain&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;21&lt;/td&gt;
&lt;td&gt;Octane&lt;/td&gt;
&lt;td&gt;&lt;a href="https://octaneai.grsm.io/s6v7fey8zc8q" rel="noopener noreferrer"&gt;Octane&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;22&lt;/td&gt;
&lt;td&gt;10Web&lt;/td&gt;
&lt;td&gt;&lt;a href="https://10web.io/" rel="noopener noreferrer"&gt;10Web&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;23&lt;/td&gt;
&lt;td&gt;Uncody&lt;/td&gt;
&lt;td&gt;&lt;a href="https://uncody.com/" rel="noopener noreferrer"&gt;Uncody&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;24&lt;/td&gt;
&lt;td&gt;Dora&lt;/td&gt;
&lt;td&gt;&lt;a href="https://www.dora.run/ai" rel="noopener noreferrer"&gt;Dora&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;25&lt;/td&gt;
&lt;td&gt;Durable&lt;/td&gt;
&lt;td&gt;&lt;a href="https://durable.co/" rel="noopener noreferrer"&gt;Durable&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;26&lt;/td&gt;
&lt;td&gt;Replit&lt;/td&gt;
&lt;td&gt;&lt;a href="https://replit.com/" rel="noopener noreferrer"&gt;Replit&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;27&lt;/td&gt;
&lt;td&gt;Consensus&lt;/td&gt;
&lt;td&gt;&lt;a href="https://consensus.app/" rel="noopener noreferrer"&gt;Consensus&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;28&lt;/td&gt;
&lt;td&gt;Writesonic&lt;/td&gt;
&lt;td&gt;&lt;a href="https://writesonic.com/" rel="noopener noreferrer"&gt;Writesonic&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;29&lt;/td&gt;
&lt;td&gt;Papercheck&lt;/td&gt;
&lt;td&gt;&lt;a href="https://papercheck.ai/en" rel="noopener noreferrer"&gt;Papercheck&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Of All the above tools in order to build my personal brand and custom logo i had used &lt;a href="https://zoviz.com" rel="noopener noreferrer"&gt;Zoviz&lt;/a&gt; extensively. It has many features in it. we can consider it as one of the best &lt;a href="https://zoviz.com/logo-maker" rel="noopener noreferrer"&gt;ai logo maker&lt;/a&gt; (&lt;a href="https://zoviz.com/logo-maker" rel="noopener noreferrer"&gt;ai logo generator&lt;/a&gt;)specifically made for logo making.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>logomaker</category>
      <category>logo</category>
      <category>tools</category>
    </item>
    <item>
      <title>Devops Trends in 2023</title>
      <dc:creator>Manjunatha Sai Uppu</dc:creator>
      <pubDate>Sat, 15 Jul 2023 12:35:23 +0000</pubDate>
      <link>https://dev.to/manjunani/devops-trends-in-2023-3f5e</link>
      <guid>https://dev.to/manjunani/devops-trends-in-2023-3f5e</guid>
      <description>&lt;ol&gt;
&lt;li&gt;Scaling Up Applications Smartly ( security and safety during the process of application development).&lt;/li&gt;
&lt;li&gt;Private Clouds are Emerging.&lt;/li&gt;
&lt;li&gt;Integrating AI into Devops.&lt;/li&gt;
&lt;li&gt;CI/CD — Continuous integration, continuous development, and continuous deployment.&lt;/li&gt;
&lt;li&gt;Monolithic vs. Microservices (Microservice creates a change in how companies develop their technology infrastructure. A microservice architecture can be built using smaller independent parts of a large and complicated application. )&lt;/li&gt;
&lt;li&gt;GitOps — Version Control With IaC&lt;/li&gt;
&lt;li&gt;Security With DevSecOps.&lt;/li&gt;
&lt;li&gt;Low-Code Application&lt;/li&gt;
&lt;li&gt;Observability and Response Time.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Do Find out my profiles on &lt;a href="https://manjunani.github.io/manjunathasaiuppu"&gt;Manjunatha Sai Uppu&lt;/a&gt;&lt;/p&gt;

</description>
      <category>devops</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Websites to follow to stay up to date on Startups and their stuff...</title>
      <dc:creator>Manjunatha Sai Uppu</dc:creator>
      <pubDate>Wed, 31 May 2023 02:49:08 +0000</pubDate>
      <link>https://dev.to/manjunani/websites-to-follow-to-stay-up-to-date-on-startups-and-their-stuff-b18</link>
      <guid>https://dev.to/manjunani/websites-to-follow-to-stay-up-to-date-on-startups-and-their-stuff-b18</guid>
      <description>&lt;p&gt;Here's a list of websites to follow for staying up to date on startups:&lt;/p&gt;

&lt;p&gt;TechCrunch ---&amp;gt; techcrunch.com&lt;br&gt;
Crunchbase ---&amp;gt; crunchbase.com&lt;br&gt;
AngelList ---&amp;gt; angel.co&lt;br&gt;
Startup Grind ---&amp;gt; startupgrind.com&lt;br&gt;
Product Hunt ---&amp;gt; producthunt.com&lt;br&gt;
Hacker News ---&amp;gt; news.ycombinator.com&lt;br&gt;
VentureBeat ---&amp;gt; venturebeat.com&lt;br&gt;
Forbes (Startups) ---&amp;gt; forbes.com/startups&lt;br&gt;
Entrepreneur ---&amp;gt; entrepreneur.com&lt;br&gt;
LinkedIn ---&amp;gt; linkedin.com&lt;br&gt;
These websites offer a wealth of information on startups, funding, product launches, industry trends, and entrepreneurial insights. Make sure to explore their content, subscribe to their newsletters, and follow them on social media to receive regular updates on the startup ecosystem.&lt;/p&gt;

</description>
      <category>startup</category>
    </item>
  </channel>
</rss>
