<?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: SAIFULLAH🇮🇳</title>
    <description>The latest articles on DEV Community by SAIFULLAH🇮🇳 (@er_saifullah).</description>
    <link>https://dev.to/er_saifullah</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%2F666557%2F823ad6a2-fa73-4eb3-897c-6a084e431eee.jpg</url>
      <title>DEV Community: SAIFULLAH🇮🇳</title>
      <link>https://dev.to/er_saifullah</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/er_saifullah"/>
    <language>en</language>
    <item>
      <title>AWS services in nutshell</title>
      <dc:creator>SAIFULLAH🇮🇳</dc:creator>
      <pubDate>Thu, 18 Jan 2024 18:40:49 +0000</pubDate>
      <link>https://dev.to/er_saifullah/aws-services-in-nutshell-9mb</link>
      <guid>https://dev.to/er_saifullah/aws-services-in-nutshell-9mb</guid>
      <description>&lt;p&gt;Recently I have completed my AWS cloud practitioner essential from AWS builder, and I want to list out all the AWS services in a nutshell or I can say all the lecture modules in a nutshell.&lt;/p&gt;

&lt;p&gt;The heading in the &lt;strong&gt;bold&lt;/strong&gt; is the services provided by AWS.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Amazon Elastic Compute Cloud (Amazon EC2)&lt;/strong&gt;&lt;br&gt;
Amazon Ec2 provides secure, resizable compute capacity in the cloud as Amazon EC2 instances. &lt;br&gt;
Amazon Ec2 are optimized for different tasks and mainly divided into 5 categories:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;em&gt;General purpose instances&lt;/em&gt; provide a balance of compute, memory, and networking resources.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;em&gt;Compute optimized instances&lt;/em&gt; are ideal for compute-bound applications that benefit from high-performance processors.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;em&gt;Memory optimized instances&lt;/em&gt; are designed to deliver fast performance for workloads that process large datasets in memory.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;em&gt;Accelerated computing instances&lt;/em&gt; use hardware accelerators, or coprocessors, to perform some functions more efficiently than is possible in software running on CPUs.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Storage optimized instances are designed for workloads that require high, sequential read and write access to large datasets on local storage.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Elastic Load Balancing&lt;/strong&gt;&lt;br&gt;
Elastic Load Balancing is the AWS service that automatically distributes incoming application traffic across multiple resources, such as Amazon EC2 instances. &lt;br&gt;
A load balancer acts as a single point of contact for all incoming web traffic to your Auto Scaling group. This means that as you add or remove Amazon EC2 instances in response to the amount of incoming traffic, these requests route to the load balancer first. Then, the requests spread across multiple resources that will handle them.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;When designing applications on AWS, you can take a microservices approach with services and components that fulfill different functions. Two services facilitate application integration: Amazon Simple Notification Service (Amazon SNS) and Amazon Simple Queue Service (Amazon SQS).&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Amazon Simple Notification Service (Amazon SNS)&lt;/strong&gt;&lt;br&gt;
Amazon Simple Notification Service (Amazon SNS) is a publish/subscribe service. Using Amazon SNS topics, a publisher publishes messages to subscribers. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Amazon Simple Queue Service (Amazon SQS)&lt;/strong&gt;&lt;br&gt;
Amazon Simple Queue Service (Amazon SQS) is a message queuing service. &lt;br&gt;
Using Amazon SQS, you can send, store, and receive messages between software components, without losing messages or requiring other services to be available. In Amazon SQS, an application sends messages into a queue. A user or service retrieves a message from the queue, processes it, and then deletes it from the queue.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Serverless computing&lt;/em&gt;&lt;br&gt;
The term “serverless” means that your code runs on servers, but you do not need to provision or manage these servers.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AWS Lambda&lt;/strong&gt;&lt;br&gt;
An AWS service for serverless computing is AWS Lambda.&lt;br&gt;
AWS Lambda is a service that lets you run code without needing to provision or manage servers. &lt;br&gt;
While using AWS Lambda, you pay only for the compute time that you consume. Charges apply only when your code is running. You can also run code for virtually any type of application or backend service, all with zero administration. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Amazon Elastic Container Service (Amazon ECS)&lt;/strong&gt;&lt;br&gt;
Amazon Elastic Container Service (Amazon ECS) is a highly scalable, high-performance container management system that enables you to run and scale containerized applications on AWS. Amazon ECS supports Docker containers.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Amazon Elastic Kubernetes Service (Amazon EKS)&lt;/strong&gt;&lt;br&gt;
Amazon Elastic Kubernetes Service (Amazon EKS) is a fully managed service that you can use to run Kubernetes on AWS. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AWS Fargate&lt;/strong&gt;&lt;br&gt;
AWS Fargate(opens in a new tab) is a serverless compute engine for containers. It works with both Amazon ECS and Amazon EKS.&lt;br&gt;
When using AWS Fargate, you do not need to provision or manage servers.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Ways to interact with AWS services&lt;/em&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;The AWS Management Console&lt;/strong&gt; is a web-based interface for accessing and managing AWS services.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;To save time when making API requests, you can use the &lt;strong&gt;AWS Command Line Interface (AWS CLI)&lt;/strong&gt;. AWS CLI enables you to control multiple AWS services directly from the command line within one tool.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Another option for accessing and managing &lt;strong&gt;AWS services is the software development kits (SDKs)&lt;/strong&gt;. SDKs make it easier for you to use AWS services through an API designed for your programming language or platform.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;em&gt;Others,&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AWS Elastic Beanstalk&lt;/strong&gt;&lt;br&gt;
With AWS Elastic Beanstalk, you provide code and configuration settings, and Elastic Beanstalk deploys the resources necessary to perform the following tasks:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Adjust capacity&lt;/li&gt;
&lt;li&gt;Load balancing&lt;/li&gt;
&lt;li&gt;Automatic scaling&lt;/li&gt;
&lt;li&gt;Application health monitoring&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;AWS CloudFormation&lt;/strong&gt;&lt;br&gt;
With AWS CloudFormation, you can treat your infrastructure as code. This means that you can build an environment by writing lines of code instead of using the AWS Management Console to individually provision resources.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Networking and Security&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Amazon Virtual Private Cloud (Amazon VPC)&lt;/strong&gt;&lt;br&gt;
A networking service that you can use to establish boundaries around your AWS resources is Amazon Virtual Private Cloud (Amazon VPC).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AWS Direct Connect&lt;/strong&gt;&lt;br&gt;
AWS Direct Connect is a service that lets you to establish a dedicated private connection between your data center and a VPC.  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Amazon Route 53&lt;/strong&gt;&lt;br&gt;
Amazon Route 53 is a DNS web service. It gives developers and businesses a reliable way to route end users to internet applications hosted in AWS.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Instance Stores&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;An instance store provides temporary block-level storage for an Amazon EC2 instance. An instance store is disk storage that is physically attached to the host computer for an EC2 instance, and therefore has the same lifespan as the instance. When the instance is terminated, you lose any data in the instance store.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Amazon Elastic Block Store (Amazon EBS)&lt;/strong&gt; &lt;br&gt;
EBS is a service that provides block-level storage volumes that you can use with Amazon EC2 instances. If you stop or terminate an Amazon EC2 instance, all the data on the attached EBS volume remains available&lt;/p&gt;

&lt;p&gt;&lt;em&gt;An EBS snapshot&lt;/em&gt; is an incremental backup. This means that the first backup taken of a volume copies all the data. For subsequent backups, only the blocks of data that have changed since the most recent snapshot are saved. &lt;/p&gt;

&lt;p&gt;&lt;em&gt;Storage Services&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Amazon Simple Storage Service (Amazon S3)&lt;/strong&gt;&lt;br&gt;
Amazon Simple Storage Service (Amazon S3) is a service that provides object-level storage. Amazon S3 stores data as objects in buckets.&lt;br&gt;
You can upload any type of file to Amazon S3, such as images, videos, text files, and so on. For example, you might use Amazon S3 to store backup files, media files for a website, or archived documents.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Amazon Elastic File System (Amazon EFS)&lt;/strong&gt;&lt;br&gt;
Amazon Elastic File System (Amazon EFS) is a scalable file system used with AWS Cloud services and on-premises resources. As you add and remove files, Amazon EFS grows and shrinks automatically. It can scale on demand to petabytes without disrupting applications.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Amazon Relational Database Service (Amazon RDS)&lt;/strong&gt; &lt;br&gt;
Amazon RDS is a managed service that automates tasks such as hardware provisioning, database setup, patching, and backups. With these capabilities, you can spend less time completing administrative tasks and more time using data to innovate your applications. You can integrate Amazon RDS with other services to fulfill your business and operational needs, such as using AWS Lambda to query your database from a serverless application.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Amazon Aurora&lt;/strong&gt;&lt;br&gt;
Amazon Aurora is an enterprise-class relational database. It is compatible with MySQL and PostgreSQL relational databases. It is up to five times faster than standard MySQL databases and up to three times faster than standard PostgreSQL databases.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Nonrelational databases&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Amazon DynamoDB&lt;/strong&gt;&lt;br&gt;
Amazon DynamoDB is a key-value database service. It delivers single-digit millisecond performance at any scale.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Amazon Redshift&lt;/strong&gt;&lt;br&gt;
Amazon Redshift is a data warehousing service that you can use for big data analytics. It offers the ability to collect data from many sources and helps you to understand relationships and trends across your data.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AWS Database Migration Service (AWS DMS)&lt;/strong&gt;&lt;br&gt;
AWS Database Migration Service (AWS DMS) enables you to migrate relational databases, nonrelational databases, and other types of data stores.&lt;br&gt;
With AWS DMS, you move data between a source database and a target database.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Permissions and Management and Compliance&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AWS Identity and Access Management (IAM)&lt;/strong&gt;&lt;br&gt;
IAM gives you the flexibility to configure access based on your company’s specific operational and security needs. You do this by using a combination of IAM features, which are explored in detail in this lesson:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;IAM users, groups, and roles&lt;/li&gt;
&lt;li&gt;IAM policies&lt;/li&gt;
&lt;li&gt;Multi-factor authentication&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;AWS Organizations&lt;/strong&gt;&lt;br&gt;
AWS Organizations to consolidate and manage multiple AWS accounts within a central location.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AWS Artifact&lt;/strong&gt;&lt;br&gt;
AWS Artifact is a service that provides on-demand access to AWS security and compliance reports and select online agreements. AWS Artifact consists of two main sections: AWS Artifact Agreements and AWS Artifact Reports.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Security&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AWS Shield&lt;/strong&gt;&lt;br&gt;
AWS Shield is a service that protects applications against DDoS attacks. AWS Shield provides two levels of protection: Standard (free) and Advanced(paid).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AWS Key Management Service (AWS KMS)&lt;/strong&gt;&lt;br&gt;
AWS Key Management Service (AWS KMS) enables you to perform encryption operations through the use of cryptographic keys.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AWS WAF&lt;/strong&gt;&lt;br&gt;
AWS WAF is a web application firewall that lets you monitor network requests that come into your web applications. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Amazon Inspector&lt;/strong&gt;&lt;br&gt;
Amazon Inspector helps to improve the security and compliance of applications by running automated security assessments.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Amazon GuardDuty&lt;/strong&gt;&lt;br&gt;
Amazon GuardDuty is a service that provides intelligent threat detection for your AWS infrastructure and resources.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;AWS tools for monitoring and analytics.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Amazon CloudWatch&lt;/strong&gt;&lt;br&gt;
Amazon CloudWatch is a web service that enables you to monitor and manage various metrics and configure alarm actions based on data from those metrics.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AWS CloudTrail&lt;/strong&gt;&lt;br&gt;
AWS CloudTrail records API calls for your account. The recorded information includes the identity of the API caller, the time of the API call, the source IP address of the API caller, and more. You can think of CloudTrail as a “trail” of breadcrumbs (or a log of actions) that someone has left behind them.&lt;/p&gt;

&lt;p&gt;Bravo!! &lt;br&gt;
👏 You made it till here, hope it is helpful to you.&lt;/p&gt;

&lt;p&gt;To explore and gain certificate in cloud learn directly from AWS BUILDER &lt;a href="https://explore.skillbuilder.aws/learn/course/134/play/99519/aws-cloud-practitioner-essentials;lp=82"&gt;Cloud Practitioner&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks for reading 😀&lt;/p&gt;

</description>
      <category>aws</category>
      <category>cloud</category>
      <category>cloudcomputing</category>
      <category>learning</category>
    </item>
    <item>
      <title>07 Website's you will love as a dev.</title>
      <dc:creator>SAIFULLAH🇮🇳</dc:creator>
      <pubDate>Fri, 06 Oct 2023 04:15:57 +0000</pubDate>
      <link>https://dev.to/er_saifullah/10-websites-you-will-love-as-a-dev-24p7</link>
      <guid>https://dev.to/er_saifullah/10-websites-you-will-love-as-a-dev-24p7</guid>
      <description>&lt;p&gt;As a &lt;strong&gt;developer&lt;/strong&gt;, discovering a comprehensive online resource hub can be quite a challenge. In this article, I'll guide you through &lt;strong&gt;07 websites&lt;/strong&gt; tailored to cater to your developer needs and preferences, making them essential additions to your toolbox.&lt;/p&gt;

&lt;p&gt;&lt;a href="//ray.so"&gt;&lt;strong&gt;1. Ray.so&lt;/strong&gt;&lt;/a&gt;&lt;br&gt;
Turn your code into beautiful images using this site. You can choose from a range of syntax colors, hide or show the background, and toggle between a dark and light window. If you are a developer you can easily create beautiful screenshots of source code through this app and share on various social apps such as instagram, twitter and facebook.&lt;br&gt;
Here is my clone please visit&lt;br&gt;
&lt;a href="https://saifullah00.github.io/Code-Writer/" rel="noopener noreferrer"&gt;Ray.so clone&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdhzn7kzw5xaf6hb7hy3b.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdhzn7kzw5xaf6hb7hy3b.jpg" alt="Image Ray.so"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="//iconstore.co"&gt;&lt;strong&gt;2. Iconstore.co&lt;/strong&gt;&lt;/a&gt;&lt;br&gt;
IconStore is a library of free, vector (SVG) icons created by talented designers to download for commercial use.&lt;/p&gt;

&lt;p&gt;All the icons published on the IconStore are made to be used freely.&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fe493xr0h74gpg5a2iv2b.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fe493xr0h74gpg5a2iv2b.jpg" alt="Image IconStore"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="//readme.so"&gt;&lt;strong&gt;3. Readme.so&lt;/strong&gt;&lt;/a&gt;&lt;br&gt;
Use markdown editor and templates to easily create a ReadMe for your next projects. Easy way to create a README file using simple editor provided by the application. It allows you to quickly add and customize all the sections you need for your project’s readme.&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fk0j1ehc8rq85x760lyy8.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fk0j1ehc8rq85x760lyy8.jpg" alt="Image Readme.so"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="//picsum.photos"&gt;&lt;strong&gt;4. Lorem Picsum&lt;/strong&gt;&lt;/a&gt;&lt;br&gt;
Lorem Picsum provides random or specific uploaded images as placeholders. Here you can view all the images Lorem Picsum provides. Developers need to specify a desired image size (width &amp;amp; height) at the end of the request URL.&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9wkemezrmgcmny6oksyx.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9wkemezrmgcmny6oksyx.jpg" alt="Image Lorem Picsum"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="//gitbook.com"&gt;&lt;strong&gt;5. GitBook&lt;/strong&gt;&lt;/a&gt;&lt;br&gt;
GitBook is a modern documentation platform where teams can document everything from products to internal knowledge bases and APIs. It makes it easy to research, plan and document products, from start to ship.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7xkv1afsvxe4cp20v3m8.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7xkv1afsvxe4cp20v3m8.jpg" alt="Image GitBook"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="//figma.com"&gt;&lt;strong&gt;6. Figma&lt;/strong&gt;&lt;/a&gt;&lt;br&gt;
Figmais a collaborative web application for interface design, with additional offline features enabled by desktop applications for macOS and Windows. Build an iterative design flow with live collaboration that keeps you in the loop whether you’re working in the office or remotely.&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjwmh3e6oqaxh8xa2cymz.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjwmh3e6oqaxh8xa2cymz.jpg" alt="Figma image"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="//lottiefiles.com"&gt;&lt;strong&gt;7. LottieFiles&lt;/strong&gt;&lt;/a&gt;&lt;br&gt;
Lottie is a JSON-based animation file format that enables designers to ship animations on any platform as easily as shipping static assets. They are small files that work on any device and can scale up or down without pixelation. LottieFiles lets you create, edit, test, collaborate and ship a Lottie in the easiest way possible.&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1l9lpojmhdft2uosa3us.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1l9lpojmhdft2uosa3us.jpg" alt="Image LottieFiles"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;So that's it keep growing keep development.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>developers</category>
      <category>opensource</category>
      <category>coding</category>
    </item>
    <item>
      <title>All about Hactoberfest'23</title>
      <dc:creator>SAIFULLAH🇮🇳</dc:creator>
      <pubDate>Sat, 30 Sep 2023 06:00:35 +0000</pubDate>
      <link>https://dev.to/er_saifullah/all-about-hactoberfest23-2bb2</link>
      <guid>https://dev.to/er_saifullah/all-about-hactoberfest23-2bb2</guid>
      <description>&lt;p&gt;Are you the one who are newbie to development or a pro in it and wants to contribute in Open Source community?&lt;/p&gt;

&lt;p&gt;Don't know how and where to start?&lt;/p&gt;

&lt;p&gt;Then my friend this opportunity is for you.&lt;/p&gt;

&lt;p&gt;The Hactoberfest 2023 is here first of all what is Hactoberfest? &lt;/p&gt;

&lt;p&gt;"This year marks the 10th anniversary of Hacktoberfest, and we’re calling on your support! Whether it’s your first time participating—or your tenth—it’s almost time to hack out four pristine pull/merge requests as we continue our month of support for open source." &lt;br&gt;
&lt;strong&gt;Hactoberfest'23&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Hactoberfest is one of the best Beginner to Advanced level open source contribution program where dev participate in the platform for both Code and Non Code organisation as well as can introduce there own open source project using the tag #Hactoberfest further in there site.&lt;/p&gt;

&lt;p&gt;So where to kick off?&lt;br&gt;
No worries, below are the repos where you can find suitable open source platform to contribute.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/topics/hacktoberfest"&gt;OPEN SOURCE REPOSITORIES&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Little about prizes,&lt;br&gt;
There is digital badges from the partners Digital Ocean, illa, appwrite.&lt;/p&gt;

&lt;p&gt;Sadly there is no t-shirt 👕 this year 😞 because community has grown tremendously from few hundreds to millions 💯&lt;br&gt;
However we are here to contribute and learn not for gifts right?😁&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Note: You have to merge 4 Pull request in your favourite repos to won the badges.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;So that's it start the hacking (Development 💯)&lt;/p&gt;

&lt;p&gt;Stick with me press the follow button &lt;br&gt;
&lt;a href="https://dev.to/er_saifullah"&gt;er_saifullah&lt;/a&gt; ✅&lt;/p&gt;

&lt;p&gt;I'm going to share my first open source contribution experience and most importantly how to start your first Open Source contribution from scratch in one article.&lt;/p&gt;

&lt;p&gt;Register below 👇&lt;a href="https://hacktoberfest.com/"&gt;Registration link for Hactoberfest'23&lt;/a&gt;&lt;/p&gt;

</description>
      <category>hacktoberfest23</category>
      <category>opensource</category>
      <category>contributorswanted</category>
      <category>developers</category>
    </item>
    <item>
      <title>15 VS code Shortcuts</title>
      <dc:creator>SAIFULLAH🇮🇳</dc:creator>
      <pubDate>Fri, 26 May 2023 17:04:24 +0000</pubDate>
      <link>https://dev.to/er_saifullah/15-vs-code-shortcuts-49bn</link>
      <guid>https://dev.to/er_saifullah/15-vs-code-shortcuts-49bn</guid>
      <description>&lt;p&gt;15 useful shortcuts for Visual Studio Code (VS Code) that helps me alot 🙌:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Ctrl + B&lt;/strong&gt;: Toggle the sidebar visibility.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Ctrl + `&lt;/strong&gt;: Toggle the integrated terminal.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Ctrl + P&lt;/strong&gt;: Quick open a file by name.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Ctrl + Shift + N&lt;/strong&gt;: Create a new file.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Ctrl + Shift + W&lt;/strong&gt;: Close the current editor.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Ctrl + W&lt;/strong&gt;: Close the current tab.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Ctrl + Shift + T&lt;/strong&gt;: Reopen closed tab(s).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Ctrl + /&lt;/strong&gt;: Toggle line comment/uncomment.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Alt + Up/Down&lt;/strong&gt;: Move the current line up or down.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Alt + Shift + Up/Down&lt;/strong&gt;: Copy the current line up or down.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;*&lt;em&gt;Ctrl + Shift + \*&lt;/em&gt;: Jump to matching bracket.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Ctrl + Shift + L&lt;/strong&gt;: Select all occurrences of the current selection.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Ctrl + Shift + K&lt;/strong&gt;: Delete the current line.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;F12&lt;/strong&gt;: Go to the definition of a symbol.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Ctrl + Shift + F&lt;/strong&gt;: Search for text in the entire workspace.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;These shortcuts can greatly enhance your productivity when using Visual Studio Code as your code editor of choice. &lt;/p&gt;

</description>
      <category>vscode</category>
      <category>programming</category>
      <category>webdev</category>
      <category>javascript</category>
    </item>
    <item>
      <title>7 reasons to use Bard Over ChatGpt!</title>
      <dc:creator>SAIFULLAH🇮🇳</dc:creator>
      <pubDate>Mon, 15 May 2023 16:21:30 +0000</pubDate>
      <link>https://dev.to/er_saifullah/chatgpt-or-bard-4acn</link>
      <guid>https://dev.to/er_saifullah/chatgpt-or-bard-4acn</guid>
      <description>&lt;p&gt;Wherever you go there is &lt;strong&gt;AI&lt;/strong&gt;🙂&lt;br&gt;
So in the era of Ai, choosing which Ai is suitable for your task is difficult.&lt;/p&gt;

&lt;p&gt;And to make it easier we have several AI's in one of them there is king aka &lt;strong&gt;ChatGPT&lt;/strong&gt; no doubt it is brilliant invention 🙌 Eating white collar jobs 😀&lt;/p&gt;

&lt;p&gt;However in the race tech giant &lt;strong&gt;GOOGLE&lt;/strong&gt; too has came with there AI model as &lt;em&gt;bald&lt;/em&gt; oops  &lt;strong&gt;BARD&lt;/strong&gt; sounds wierd right?😂&lt;/p&gt;

&lt;p&gt;Ok no more cringe Jokes !!&lt;/p&gt;

&lt;p&gt;Let's compare why to use &lt;em&gt;BARD&lt;/em&gt; instead of &lt;em&gt;ChatGpt&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;So I have listed 7 reasons below 👇&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1.Take Voice input&lt;/strong&gt; - yes you read it right now no need to type lengthy prompts just tell the prompts using your voice only, which Chatgpt can't 👀&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2.Enhance your search with Google&lt;/strong&gt;- If he can't answer which is impossible but if it can't then it will enhance your result with Google page.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3.Integrate with Gmail&lt;/strong&gt;- Go update your Gmail asap, than see the magic of AI, give the prompts and it easily wrote email for you, as &lt;em&gt;"Help me write"&lt;/em&gt; &lt;br&gt;
&lt;a href="https://youtu.be/ixRanV-rdAQ"&gt;AI writing Email for you(YouTube)&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4.Generate multiple draft&lt;/strong&gt; - Yes it will generate multiple drafts of your prompts so vast opportunity to explore.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5.Support for different Plugins&lt;/strong&gt; - It supports multiple plugins either replit, Spotify or YouTube etc.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;6.Supports 20+ programming language&lt;/strong&gt;- Pain for us but it is truth Bard supports 20+ programming languages 🥹&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;7.Access to the internet&lt;/strong&gt; - It fetches the result from internet itself, so no more stack overflow 🦥 &lt;/p&gt;

&lt;p&gt;Fun fact after the introduction of ChatGpt I forgot to use Stack overflow. &lt;br&gt;
Is it end of Stack overflow what you guys think 🤔&lt;/p&gt;

&lt;p&gt;So that's all hope it is helpful and painful too 💔&lt;/p&gt;

</description>
      <category>ai</category>
      <category>chatgpt</category>
    </item>
    <item>
      <title>Spread and Rest operator in JS</title>
      <dc:creator>SAIFULLAH🇮🇳</dc:creator>
      <pubDate>Mon, 08 May 2023 19:11:48 +0000</pubDate>
      <link>https://dev.to/er_saifullah/spread-and-rest-operator-in-js-jgm</link>
      <guid>https://dev.to/er_saifullah/spread-and-rest-operator-in-js-jgm</guid>
      <description>&lt;p&gt;Make your &lt;strong&gt;JavaScript&lt;/strong&gt; code cleaner and less complex with spread &amp;amp; rest operators.&lt;/p&gt;

&lt;p&gt;Unlock the power of spread and rest operators in JavaScript:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Spread and Rest operators **are two important features in JavaScript introduced in **ECMAScript 6 (ES6)&lt;/strong&gt; that provide a concise and powerful way to work with arrays and objects.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Spread Operator&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;_The spread operator (…) _is used to spread the contents of an array or object into individual elements. This is useful when you want to combine multiple arrays or objects into a single array or object, Or when passing arrays or objects as arguments.&lt;/p&gt;

&lt;p&gt;We can also use the spread operator to add new elements to an array:&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--0-h5hIMy--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/q4j3c2c0uskc1ru34lqs.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--0-h5hIMy--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/q4j3c2c0uskc1ru34lqs.jpg" alt="Spread operator" width="800" height="461"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In the example below, we use the spread operator to add the element &lt;code&gt;0&lt;/code&gt; to the beginning of the &lt;code&gt;arr&lt;/code&gt; array.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--3UNTNifg--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8mmfg3pt5cpxyuq64jhk.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--3UNTNifg--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8mmfg3pt5cpxyuq64jhk.jpg" alt="Image eg" width="800" height="461"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The spread operator can also be used with objects.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Rest Operator&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;The rest operator (…)&lt;/em&gt; is used to represent an indefinite number of arguments as an array. This is useful when you want to pass a variable number of arguments to a function, or when you want to group a set of arguments into an array.&lt;/p&gt;

&lt;p&gt;In this example, we define a function called &lt;code&gt;sum&lt;/code&gt; that uses the rest operator to collect any number of arguments into an array called &lt;code&gt;numbers&lt;/code&gt;. We then use the &lt;code&gt;reduce&lt;/code&gt; method to sum up the numbers in the array and return the result.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--fA2h9tzx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1fiwfgmvu6tuoap2ozag.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--fA2h9tzx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1fiwfgmvu6tuoap2ozag.jpg" alt="Image" width="800" height="385"&gt;&lt;/a&gt;&lt;br&gt;
We can also use the rest operator to group a set of arguments into an array.&lt;br&gt;
So must use this two operators to ease your code.&lt;/p&gt;

&lt;p&gt;That's it!&lt;br&gt;
Thanks for reading 🙌&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>react</category>
      <category>javascriptlibraries</category>
    </item>
    <item>
      <title>Websites to practice anything(free), Tech only!</title>
      <dc:creator>SAIFULLAH🇮🇳</dc:creator>
      <pubDate>Sun, 07 May 2023 18:34:12 +0000</pubDate>
      <link>https://dev.to/er_saifullah/websites-to-practice-anythingfree-tech-only-3mkh</link>
      <guid>https://dev.to/er_saifullah/websites-to-practice-anythingfree-tech-only-3mkh</guid>
      <description>&lt;p&gt;A learner like me?&lt;/p&gt;

&lt;p&gt;Then you must read this post,&lt;br&gt;
In our technical world if we want to survive then we must learn new technologies and must practice by making Projects.&lt;/p&gt;

&lt;p&gt;So I came across with some websites to over come this fear,&lt;/p&gt;

&lt;p&gt;Use these sites for practicing&lt;br&gt;
 &lt;strong&gt;Web Development, &lt;br&gt;
Python, &lt;br&gt;
JavaScript, &lt;br&gt;
SQL, &lt;br&gt;
as well as DSA:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;The Odin Project&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Learn HTML, CSS, JavaScript, and Node.js while building projects.&lt;/p&gt;

&lt;p&gt;➟&lt;a href="//theodinproject.com"&gt;Link 🔗&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;GeeksforGeeks - Python Practice Exercises&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It helps you learn Python. Questions range from basic to advance on core Python concepts and applications of Python in various domains.&lt;/p&gt;

&lt;p&gt;➟ &lt;a href="//geeksforgeeks.org/python-exercis%E2%80%A6"&gt;Link 🔗&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;_JavaScript30 by Wes Bos
_&lt;/strong&gt;
Build 30 Vanilla JavaScript projects in 30 days.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;➟ &lt;a href="//javascript30.com"&gt;Link 🔗&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;SQL Zoo&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Learn SQL using practice methods.&lt;/p&gt;

&lt;p&gt;➟ &lt;a href="//sqlzoo.net"&gt;Link 🔗&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;&lt;em&gt;Pramp&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Practice Data Structures and Algorithms Interviews.&lt;/p&gt;

&lt;p&gt;➟ &lt;a href="//pramp.com/dev/uc-data-st%E2%80%A6"&gt;Link 🔗&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For Frontend project you can read this post too,&lt;br&gt;
&lt;a href="https://dev.to/saifullah/learn-programming-by-making-projects-3c1d"&gt;CODEMENTOR&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;So that's all stop scrolling and start hunting 🙌&lt;/p&gt;

</description>
      <category>programming</category>
      <category>webdev</category>
      <category>javascript</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Websites made by AI?</title>
      <dc:creator>SAIFULLAH🇮🇳</dc:creator>
      <pubDate>Sat, 06 May 2023 12:23:30 +0000</pubDate>
      <link>https://dev.to/er_saifullah/websites-made-by-ai-4n8p</link>
      <guid>https://dev.to/er_saifullah/websites-made-by-ai-4n8p</guid>
      <description>&lt;p&gt;Just a discussion post about the websites made by AI tools.&lt;/p&gt;

&lt;p&gt;Does it's really worthy to build a website using AI tools without coding?&lt;/p&gt;

&lt;p&gt;The tech influencers all over the platform use to promote various AI websites to build the web page,&lt;br&gt;
Without even trying them itself 🥹&lt;br&gt;
Websites like&lt;br&gt;
10web.io&lt;br&gt;
nocode.mba&lt;br&gt;
Appy pi etc..&lt;/p&gt;

&lt;p&gt;I tried one but it was not scalable at all.&lt;/p&gt;

&lt;p&gt;So what's your opinion please suggest.&lt;/p&gt;

&lt;p&gt;Thankyou &lt;/p&gt;

</description>
      <category>ai</category>
      <category>discuss</category>
      <category>programming</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Learn Programming by making Projects</title>
      <dc:creator>SAIFULLAH🇮🇳</dc:creator>
      <pubDate>Fri, 05 May 2023 08:51:14 +0000</pubDate>
      <link>https://dev.to/er_saifullah/learn-programming-by-making-projects-3c1d</link>
      <guid>https://dev.to/er_saifullah/learn-programming-by-making-projects-3c1d</guid>
      <description>&lt;p&gt;As we all know projects are very essential either for building our portfolio to show case our skills or about particular programming language.&lt;br&gt;
But we often get confused how to start where to go and by thinking all of this we again just sit and start to scroll the social media&lt;br&gt;
(we == I)🥹 &lt;/p&gt;

&lt;p&gt;So here I found a website call&lt;br&gt;
&lt;strong&gt;Codementor.io&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://www.codementor.io/"&gt;Codementor.io&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Why to choose this website btw it's totally free 🆓&lt;br&gt;
Here I found multiple ways to build multiple projects from scratch in multiple programming language from Python to Angular...&lt;/p&gt;

&lt;p&gt;It has user friendly UI, The site will guide you before starting a project what basic skills you first need to start a particular project, &lt;br&gt;
Then how to set up the environment, &lt;br&gt;
still stucked then it has discussion forum too,&lt;br&gt;
At the end if you still unable to build a project try to see the solution from mentors.&lt;/p&gt;

&lt;p&gt;So that's all keep hunting keep learning 💹&lt;/p&gt;

</description>
      <category>learning</category>
      <category>programming</category>
      <category>opensource</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Will Mojo🔥 Replace Python? 🤔</title>
      <dc:creator>SAIFULLAH🇮🇳</dc:creator>
      <pubDate>Fri, 05 May 2023 06:01:02 +0000</pubDate>
      <link>https://dev.to/er_saifullah/will-mojo-replace-python-47j8</link>
      <guid>https://dev.to/er_saifullah/will-mojo-replace-python-47j8</guid>
      <description>&lt;p&gt;Before diving into the purpose i.e will &lt;br&gt;
&lt;strong&gt;Mojo🔥&lt;/strong&gt; replace &lt;strong&gt;Python🐍&lt;/strong&gt; or not, first of all let see what is &lt;strong&gt;Mojo&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;According to Official &lt;em&gt;Docs&lt;/em&gt;&lt;br&gt;
&lt;em&gt;&lt;strong&gt;Mojo🔥 is a new programming language for all AI developers.&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;
Developed by former &lt;strong&gt;Swift devs&lt;/strong&gt;&lt;br&gt;
And it's says all.&lt;/p&gt;

&lt;p&gt;In the era of Artificial Intelligence and Machine learning we all need a scalable and fast programming language and according to Mojo developers,&lt;/p&gt;

&lt;p&gt;Mojo is &lt;strong&gt;&lt;em&gt;"An innovative and scalable programming model that could target accelerators and other heterogeneous systems that are pervasive in machine learning."&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
We can further read and try it through its official Modular docs.&lt;br&gt;
&lt;a href="https://docs.modular.com/mojo/why-mojo.html"&gt;Mojo🔥 official&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now come to our question will &lt;strong&gt;Python&lt;/strong&gt; fade away?&lt;br&gt;
Most likely for AI developers it will fade slowly because in Mojo they have many core features of Python including _async/await, error handling, variadics, etc, _but… it is still very early and missing many features - so today it isn’t very compatible. Mojo doesn’t support classes yet!&lt;br&gt;
But in future it may because Python is slow 🦥.&lt;/p&gt;

&lt;p&gt;So that's all if you think it will replace totally must share your knowledge below 💯&lt;/p&gt;

&lt;p&gt;Thank you &lt;/p&gt;

</description>
      <category>python</category>
      <category>ai</category>
      <category>machinelearning</category>
      <category>discuss</category>
    </item>
    <item>
      <title>Websites to find Dataset for your Data Engineering projects.</title>
      <dc:creator>SAIFULLAH🇮🇳</dc:creator>
      <pubDate>Sun, 17 Jul 2022 17:58:46 +0000</pubDate>
      <link>https://dev.to/er_saifullah/websites-to-find-your-dataset-for-your-data-engineering-projects-59d8</link>
      <guid>https://dev.to/er_saifullah/websites-to-find-your-dataset-for-your-data-engineering-projects-59d8</guid>
      <description>&lt;p&gt;&lt;strong&gt;Are you the one who is interested in Data Engineering career Like me!!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Then this post will be very beneficial for you.&lt;/p&gt;

&lt;p&gt;Below I'm going to list all time greatest websites to find the right datasets in every file format i.e &lt;em&gt;csv, xml, json&lt;/em&gt; etc. for your next &lt;strong&gt;DE a.k.a DATA ENGINEERING&lt;/strong&gt; project.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://datasetsearch.research.google.com/"&gt;Dataset search&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.kaggle.com/datasets"&gt;Kaggle&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.tourl"&gt;Uci machine learning repo&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://fivethirtyeight.com/"&gt;FiveThirtyEight&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://trends.google.com/trends/?geo=IN"&gt;Google Trends&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://datahub.io/"&gt;Datahub.io&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://data.gov/"&gt;Data.gov&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.census.gov/"&gt;The U.S. Census Bureau&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://aws.amazon.com/opendata/?wwps-cards.sort-by=item.additionalFields.sortDate&amp;amp;wwps-cards.sort-order=desc"&gt;Aws open data&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="//Google.com"&gt;Google&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;So, what you waiting for choose a dataset build data model connect with database and dive into the project.&lt;/p&gt;

&lt;p&gt;Stay connected to learn more about DE.&lt;/p&gt;

&lt;p&gt;Thank you!!&lt;/p&gt;

</description>
      <category>datascience</category>
      <category>dataengineering</category>
      <category>database</category>
      <category>dataset</category>
    </item>
    <item>
      <title>Revision Python</title>
      <dc:creator>SAIFULLAH🇮🇳</dc:creator>
      <pubDate>Sat, 25 Jun 2022 19:53:18 +0000</pubDate>
      <link>https://dev.to/er_saifullah/intro-to-python-52pf</link>
      <guid>https://dev.to/er_saifullah/intro-to-python-52pf</guid>
      <description>&lt;p&gt;&lt;strong&gt;Quick Summary on Python&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Invented By &lt;strong&gt;Guido Van Rossum&lt;/strong&gt; in 1989, but publicly Python was available in &lt;em&gt;20th February 1991&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Name Python was drived from a comedy circus show named &lt;strong&gt;&lt;em&gt;"Monty Python's Flying Circus"&lt;/em&gt;&lt;/strong&gt; which comes on BBC in late 1970s.&lt;/p&gt;

&lt;p&gt;The main purpose of this Intro is below ---&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;11 mind boggling Features of Python :-&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Simple and Easy to learn.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Free to use and huge community supported.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;High level language i.e Understandable to anyone.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Procedure as well as Object Oriented Programming language.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Extensible.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Portable.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Platform independent.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Interpreted language.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Dynamically typed language.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Embedded.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Extensive libraries.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Bonus&lt;/strong&gt; - Python idle shell works on a principle of REPL (Read Evaluate Print Loop)&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Thank you!&lt;/em&gt;&lt;br&gt;
Hope it's helpful.&lt;/p&gt;

&lt;p&gt;Stay tune for the next part about &lt;strong&gt;Basics of Python.&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>programming</category>
      <category>tutorial</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
