<?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: Trilochan Parida</title>
    <description>The latest articles on DEV Community by Trilochan Parida (@techparida).</description>
    <link>https://dev.to/techparida</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%2F399826%2F64636c6b-2988-4bfe-99a5-341eceebda6a.jpg</url>
      <title>DEV Community: Trilochan Parida</title>
      <link>https://dev.to/techparida</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/techparida"/>
    <language>en</language>
    <item>
      <title>How to Set up Laravel Queues on Production</title>
      <dc:creator>Trilochan Parida</dc:creator>
      <pubDate>Mon, 31 May 2021 14:53:31 +0000</pubDate>
      <link>https://dev.to/techparida/how-to-set-up-laravel-queues-on-production-4one</link>
      <guid>https://dev.to/techparida/how-to-set-up-laravel-queues-on-production-4one</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/iH4Skwaw-KU"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Hello everyone, in this article, you will learn how to set up Laravel Queues/Jobs on production&lt;/p&gt;

&lt;p&gt;Below steps to follow...&lt;/p&gt;

&lt;p&gt;1.Connect to your ubuntu server and go to your existing laravel project then run the below command to create required tables in the database.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;php artisan queue:table
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;2.Then migrate the tables with the help of the below command&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;php artisan migrate
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;3.Now, you can create Jobs controller through command so that you will get the basic format of jobs or queue in laravel&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;php artisan make:job SendNotification
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Here, SendNotification is a controller, where your main logic of queue/job will execute.&lt;/p&gt;

&lt;p&gt;Laravel queues provide a unified queueing API across a variety of different queue backends, such as Amazon SQS, Redis, or even a relational database.&lt;/p&gt;

&lt;p&gt;Now, we need to setup .env file to execute the jobs using database&lt;/p&gt;

&lt;p&gt;4.Go to .env file then change QUEUE_DRIVER=database or QUEUE_CONNECTION=database&lt;/p&gt;

&lt;p&gt;5.Go to the app/Jobs folder and write the task in the handle function of the SendNotification.php file and you can pass the variables from the controller and define them in the constructor in the Job file. (Refer to Video for better understanding)&lt;/p&gt;

&lt;p&gt;6.From any controller you can dispatch the job:  dispatch(new SendNotification($mobile, $msg));&lt;/p&gt;

&lt;p&gt;7.To automate the queue we have to install a supervisor&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;apt install supervisor
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;8.Create supervisor config file at /etc/supervisor/conf.d  queue-worker.conf&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;cd /etc/supervisor/conf.d
nano queue-worker.conf
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;queue-worker.conf&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[program:queue-worker]
process_name = %(program_name)s_%(process_num)02d
command=php /var/www/html/project-folder/artisan queue:listen
autostart=true
autorestart=true
user=root
numprocs=1
redirect_stderr=true
stdout_logfile=/var/www/html/project-folder/public/worker.log
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;9.Reread the supervisor the config file&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;supervisorctl reread
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;10.Activate the process&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;supervisorctl update
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://laravel.com/docs/8.x/queues"&gt;To know more about Laravel Queue&lt;/a&gt; &lt;/p&gt;

</description>
      <category>laravel</category>
      <category>queue</category>
      <category>programming</category>
    </item>
    <item>
      <title>How to Upload an Image in S3 Bucket using PHP/Laravel</title>
      <dc:creator>Trilochan Parida</dc:creator>
      <pubDate>Fri, 01 Jan 2021 13:18:03 +0000</pubDate>
      <link>https://dev.to/techparida/how-to-upload-an-image-in-s3-bucket-using-php-laravel-2nl0</link>
      <guid>https://dev.to/techparida/how-to-upload-an-image-in-s3-bucket-using-php-laravel-2nl0</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/FmspC3e2LEU"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;In this tutorial, you will learn how to upload an image S3 bucket using PHP/Laravel&lt;/p&gt;

&lt;p&gt;I assume you have installed laravel in your server.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Install S3 dependencies in laravel&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;composer require league/flysystem-aws-s3-v3~1
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Update .env file&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;AWS_ACCESS_KEY_ID=AKIA4BIXXXXXXXXXXX
AWS_SECRET_ACCESS_KEY=Ff8J1EQ74YowQxOhWxxxxxxxxxxxxxxx2
AWS_DEFAULT_REGION=ap-south-1
AWS_BUCKET=demo.codingx.in
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Route:(web.php)&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Route::get('/fileupload','FileUploadController@index');
Route::post('/save-image','FileUploadController@saveImage');
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;View:(fileupload.blade.php)&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang="{{ str_replace('_', '-', app()-&amp;gt;getLocale()) }}"&amp;gt;
    &amp;lt;head&amp;gt;
        &amp;lt;meta charset="utf-8"&amp;gt;
        &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1"&amp;gt;

        &amp;lt;title&amp;gt;File Upload to S3&amp;lt;/title&amp;gt;

    &amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;

    &amp;lt;form method="POST" action="/save-image" enctype="multipart/form-data"&amp;gt;
        @csrf
        &amp;lt;input type="file" name="image"&amp;gt;

        &amp;lt;button type="submit"&amp;gt;Upload&amp;lt;/button&amp;gt;

    &amp;lt;/form&amp;gt;

&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Controller:(FileUploadController.php)&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Illuminate\Support\Facades\Storage;

class FileUploadController extends Controller
{


    /**
     * Show the application dashboard.
     *
     * @return \Illuminate\Contracts\Support\Renderable
     */

    public function index()
    {
        return view('fileupload');
    }

    public function saveImage(Request $request)
    {
        $this-&amp;gt;validate($request,[
            'image' =&amp;gt; 'required|image|max:2048'
        ]);

        if($request-&amp;gt;hasFile('image')){
            $file = $request-&amp;gt;file('image');

            $name = time().$file-&amp;gt;getClientOriginalName();

            $filepath = $name;

            Storage::disk('s3')-&amp;gt;put($filepath,file_get_contents($file));

        }

        return back()-&amp;gt;with('success', 'Image uploaded successfully');
    }

}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>laravel</category>
      <category>aws</category>
      <category>php</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Youtube Video Downloader Application in Python</title>
      <dc:creator>Trilochan Parida</dc:creator>
      <pubDate>Wed, 16 Dec 2020 04:17:19 +0000</pubDate>
      <link>https://dev.to/techparida/youtube-video-downloader-application-in-python-1kpp</link>
      <guid>https://dev.to/techparida/youtube-video-downloader-application-in-python-1kpp</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/7VtV2keABNM"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;You need to install pytube package to download youtube videos&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;code&gt;pip3 install pytube&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;Then run below code and your youtube downloader is ready.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;from tkinter import *
from pytube import YouTube
import ssl

ssl._create_default_https_context = ssl._create_unverified_context

canv = Tk()
canv.geometry("400x350")
canv.title("Youtube Video Downloader")
Label(canv, text="Welcome to Youtube Downloader!!!").pack()
lvar = StringVar()
lvar.set("Enter the Youtube Video URL")
Label(canv, textvariable=lvar).pack()
url = StringVar()
Entry(canv, textvariable=url, width=30).pack(pady=10)

def download():
    try:
        lvar.set("Downloading...")
        canv.update()
        YouTube(url.get()).streams.first().download()
        lvar.set("Video Downloaded Successfully")
    except Exception as e:
        lvar.set("Error: " + str(e))
        canv.update()

Button(canv, text="Download", command=download).pack()

canv.mainloop()
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If any doubt, please comment below. &lt;/p&gt;

&lt;p&gt;Watch the full course on Python: &lt;a href="https://www.youtube.com/playlist?list=PLpzY0hUPKIeeRj3jOdC2YRD_MfCtBgDEe"&gt;https://www.youtube.com/playlist?list=PLpzY0hUPKIeeRj3jOdC2YRD_MfCtBgDEe&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>tutorial</category>
      <category>codenewbie</category>
      <category>beginners</category>
    </item>
    <item>
      <title>How to Convert PNG to JPG using Python</title>
      <dc:creator>Trilochan Parida</dc:creator>
      <pubDate>Tue, 08 Dec 2020 11:07:20 +0000</pubDate>
      <link>https://dev.to/techparida/how-to-convert-png-to-jpg-using-python-11h0</link>
      <guid>https://dev.to/techparida/how-to-convert-png-to-jpg-using-python-11h0</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/Wp31LEMlt5I"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;You need to install Pillow package to convert PNG to JPG.&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;code&gt;pip3 install Pillow&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;Then run below code and your PNG to JPG Tool is ready.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import tkinter as tk
from tkinter import filedialog
from tkinter import messagebox
from PIL import Image

root = tk.Tk()
canvas1 = tk.Canvas(root, width=300, height=250, bg='gray', relief = 'raised')
canvas1.pack()

label1 = tk.Label(root, text='PNG to JPG Tool', bg='gray')
label1.config(font=('helvetica', 20))
canvas1.create_window(150,60,window=label1)


def getPNG():
    global im1
    import_file_path = filedialog.askopenfilename()
    im1 = Image.open(import_file_path).convert('RGB')

browseButton_PNG = tk.Button(text="   Import PNG file  ", command=getPNG)
canvas1.create_window(150,130,window=browseButton_PNG)

def convertToJPG():
    global im1

    export_file_path = filedialog.asksaveasfilename(defaultextension='.jpg')
    im1.save(export_file_path)

saveAsButton_JPG = tk.Button(text='Convert PNG to JPG', command=convertToJPG)
canvas1.create_window(150, 180, window=saveAsButton_JPG)

root.mainloop()
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If any doubt, please comment below. &lt;/p&gt;

&lt;p&gt;Watch the full course on Python: &lt;a href="https://www.youtube.com/playlist?list=PLpzY0hUPKIeeRj3jOdC2YRD_MfCtBgDEe"&gt;https://www.youtube.com/playlist?list=PLpzY0hUPKIeeRj3jOdC2YRD_MfCtBgDEe&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Python Full Tutorial for Beginners</title>
      <dc:creator>Trilochan Parida</dc:creator>
      <pubDate>Tue, 22 Sep 2020 02:38:21 +0000</pubDate>
      <link>https://dev.to/techparida/python-full-course-for-beginners-free-b4g</link>
      <guid>https://dev.to/techparida/python-full-course-for-beginners-free-b4g</guid>
      <description>&lt;p&gt;I have gone many Youtube channels and found so many tutorials on python but no one is discussing straight forward about the concept. &lt;br&gt;
I thought I needed to share my knowledge of python for beginners. In this series, we will discuss nothing nonsense here, only concepts and in last we will do 10 projects in python to understand it better. Then we will prepare for interviews so that after completing this course you will be job-ready. &lt;/p&gt;

&lt;p&gt;So let's learn together:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[0] What is Python and Why You Should Learn it:&lt;/strong&gt; &lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/dAHpP9oET0o"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[1] Installing Python &amp;amp; VS Code:&lt;/strong&gt; &lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/vNN8Txi8Tp8"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[2] Getting started with Python:&lt;/strong&gt; &lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/D7zCRrnQCV0"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[3] Variables in Python with Example:&lt;/strong&gt; &lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/AXF8iY_w76E"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[4] Data Types in Python with Example:&lt;/strong&gt; &lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/vxRaIGQ46cM"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[5] Numbers in Python with Example:&lt;/strong&gt; &lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/BU7cZr3q2G0"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[6] Strings in Python with Example:&lt;/strong&gt; &lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/fssTjXfzQ94"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[7] List in Python with Example:&lt;/strong&gt; &lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/_l2rxtnhMpA"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[8] Tuple in Python with Example:&lt;/strong&gt; &lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/3fWqsfCpRw0"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[9] Sets in Python with Example:&lt;/strong&gt; &lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/LvHFUxVm4mg"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[10] Dictionaries in Python with Example:&lt;/strong&gt; &lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/7yQZ2hxoxcY"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[11] If...Else Statement in Python with Example:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/hG1AaQQWtcA"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[12] While Loop in Python in Example:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/xnhNQ47tOD4"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[13] For Loop in Python with Example:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/CgdiJcxfuKk"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[14] What is &lt;strong&gt;name&lt;/strong&gt;  in Python Explained with Example:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/MN9knCUTgwE"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[15] List Comprehension in Python with Example:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/GCsimB4ScQQ"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[16] Lambda Functions in Python with Example:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/AWx0AghrJoY"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[17] break, continue and pass statements in Python with Example:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/mNlnmJOnrXU"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[18] Walrus Operator in Python with Example:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/fy6s2NoVS4E"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[19] 6 Ways to Format a String in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/wRinWlUFpLM"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[20] Functions in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/u5u-uVKvqhA"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[21] 5 Ways to Copy a List in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/ttnVuhwVkI4"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[22] Recursion in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/PdIJvdCX-gM"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[23] How to Sum Elements of Two Lists in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/s7pbHysT0j4"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[24] Global, Local, Nonlocal Variables in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/krYf05WvB-o"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[25] Python Modules:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/SK8cpZgD76k"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[26] Building a Mad Libs Game in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/LIAQMPfDaoY"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[27] Dice Rolling Simulator Game in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/KxMQeK09d2k"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[28] Object-Oriented Programming(OOP) in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/KGRR-ULEdcg"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[29] Objects and Classes in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/wXher2UB09w"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[30] Inheritance in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/EfsJimN9g_w"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[31] Method Overriding with super() in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/cm9ebLli2y8"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[32] Polymorphism and Operator Overloading in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/owqUuzZ1vok"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[33] How to Build Hangman Game in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/7DJ9qa3nNZ4"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[34] Files in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/OYysCCbVZ4c"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[35] Errors and Exceptions in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/7r8fC8K2q70"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[36] Iterator in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/KT8Vl4jq1Jo"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[37] Email Slicer in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/A7Vo73csE8I"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[38] Binary Search Algorithm in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/TpmvTrKW-Ro"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[39] How to Merge Two Dictionaries in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/B4vyjHyITCQ"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[40] Generators in Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/nCtMv-xpQ9c"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;[41] Email Extraction using Python:&lt;/strong&gt;&lt;br&gt;
&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/zFJ309LaJoY"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Stay tuned for more tutorials 🙏🏻&lt;/p&gt;

&lt;p&gt;Full Playlist: &lt;a href="https://www.youtube.com/playlist?list=PLpzY0hUPKIeeRj3jOdC2YRD_MfCtBgDEe"&gt;https://www.youtube.com/playlist?list=PLpzY0hUPKIeeRj3jOdC2YRD_MfCtBgDEe&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I hope you will enjoy this series but make sure that you subscribe to my channel before going forward and also share with your friends let everyone learn python programming.&lt;/p&gt;

</description>
      <category>python</category>
      <category>tutorial</category>
      <category>codenewbie</category>
      <category>beginners</category>
    </item>
    <item>
      <title>AWS Route 53 Crash Course: Hands-on</title>
      <dc:creator>Trilochan Parida</dc:creator>
      <pubDate>Mon, 24 Aug 2020 00:36:20 +0000</pubDate>
      <link>https://dev.to/techparida/aws-route-53-crash-course-hands-on-5d82</link>
      <guid>https://dev.to/techparida/aws-route-53-crash-course-hands-on-5d82</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/e1MPBnOMFg0"&gt;
&lt;/iframe&gt;
&lt;br&gt;
In this video, We will learn what is DNS, different terms like Top Level Domain, Domain Registrar and SOA with Route 53 hands-on. I will show you, how to set up different routing policies in route 53 with example.&lt;/p&gt;

&lt;h2&gt;
  
  
  CONTENT:
&lt;/h2&gt;

&lt;p&gt;00:00 Welcome&lt;br&gt;
00:21 What is Route53?&lt;br&gt;
01:14 DNS 101&lt;br&gt;
06:07 Register a Domain in Amazon Route53&lt;br&gt;
08:26 Create Simple Routing Policy&lt;br&gt;
11:05 Create Weighted Routing Policy&lt;br&gt;
16:33 Create Geolocation Routing Policy&lt;br&gt;
21.25 Create Latency Routing Policy&lt;br&gt;
24:31 Create Failover Routing Policy&lt;br&gt;
28:03 Create Multivalue Routing Policy&lt;br&gt;
31:30 Create Geoproximity Routing Policy&lt;/p&gt;

&lt;p&gt;------------------------------SOCIAL------------------------------&lt;br&gt;
Github: &lt;a href="https://github.com/codingx01"&gt;https://github.com/codingx01&lt;/a&gt;&lt;br&gt;
Twitter: &lt;a href="https://twitter.com/TechParida"&gt;https://twitter.com/TechParida&lt;/a&gt;&lt;br&gt;
Linkedin: &lt;a href="https://www.linkedin.com/company/codingx/"&gt;https://www.linkedin.com/company/codingx/&lt;/a&gt;&lt;br&gt;
Facebook: &lt;a href="https://www.facebook.com/codingx"&gt;https://www.facebook.com/codingx&lt;/a&gt;&lt;br&gt;
Instagram: &lt;a href="https://www.instagram.com/coding.x/"&gt;https://www.instagram.com/coding.x/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Leave any questions in the comments section and don't forget to subscribe to be notified of new content! :)&lt;/p&gt;

</description>
      <category>aws</category>
      <category>tutorial</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>How to Schedule Backup of MySQL DB and Store it in S3 using Cron Job</title>
      <dc:creator>Trilochan Parida</dc:creator>
      <pubDate>Thu, 20 Aug 2020 02:27:01 +0000</pubDate>
      <link>https://dev.to/techparida/how-to-schedule-backup-of-mysql-db-and-store-it-in-s3-using-cron-job-49o7</link>
      <guid>https://dev.to/techparida/how-to-schedule-backup-of-mysql-db-and-store-it-in-s3-using-cron-job-49o7</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/6Ccoa9jNI7c"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;In this video, Learn How to schedule your MySQL backup in EC2 instance and store it in S3 bucket using Cron job &lt;/p&gt;

&lt;p&gt;------------------------------SOCIAL------------------------------&lt;br&gt;
Github: &lt;a href="https://github.com/codingx01"&gt;https://github.com/codingx01&lt;/a&gt;&lt;br&gt;
Twitter: &lt;a href="https://twitter.com/TechParida"&gt;https://twitter.com/TechParida&lt;/a&gt;&lt;br&gt;
Linkedin: &lt;a href="https://www.linkedin.com/company/codingx/"&gt;https://www.linkedin.com/company/codingx/&lt;/a&gt;&lt;br&gt;
Facebook: &lt;a href="https://www.facebook.com/codingx"&gt;https://www.facebook.com/codingx&lt;/a&gt;&lt;br&gt;
Instagram: &lt;a href="https://www.instagram.com/coding.x/"&gt;https://www.instagram.com/coding.x/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Leave any questions in the comments section and don't forget to subscribe to be notified of new content! :)&lt;/p&gt;

</description>
      <category>mysql</category>
      <category>tutorial</category>
      <category>aws</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>What is a Web Application Firewall? Explained with Example</title>
      <dc:creator>Trilochan Parida</dc:creator>
      <pubDate>Sun, 16 Aug 2020 06:04:22 +0000</pubDate>
      <link>https://dev.to/techparida/what-is-a-web-application-firewall-explained-with-example-26a1</link>
      <guid>https://dev.to/techparida/what-is-a-web-application-firewall-explained-with-example-26a1</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/nDFLdmIUZCo"&gt;
&lt;/iframe&gt;
&lt;br&gt;
In this video, We will discuss what is a Web application firewall with example. &lt;/p&gt;

&lt;p&gt;------------------------------SOCIAL------------------------------&lt;br&gt;
Github: &lt;a href="https://github.com/codingx01"&gt;https://github.com/codingx01&lt;/a&gt;&lt;br&gt;
Twitter: &lt;a href="https://twitter.com/TechParida"&gt;https://twitter.com/TechParida&lt;/a&gt;&lt;br&gt;
Linkedin: &lt;a href="https://www.linkedin.com/company/codingx/"&gt;https://www.linkedin.com/company/codingx/&lt;/a&gt;&lt;br&gt;
Facebook: &lt;a href="https://www.facebook.com/codingx"&gt;https://www.facebook.com/codingx&lt;/a&gt;&lt;br&gt;
Instagram: &lt;a href="https://www.instagram.com/coding.x/"&gt;https://www.instagram.com/coding.x/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Leave any questions in the comments section and don't forget to subscribe to be notified of new content! :)&lt;/p&gt;

</description>
      <category>tutorial</category>
      <category>waf</category>
      <category>codenewbie</category>
      <category>security</category>
    </item>
    <item>
      <title>What is __name__  in Python Explained with Example</title>
      <dc:creator>Trilochan Parida</dc:creator>
      <pubDate>Wed, 12 Aug 2020 03:23:51 +0000</pubDate>
      <link>https://dev.to/techparida/what-is-name-in-python-explained-with-example-4hok</link>
      <guid>https://dev.to/techparida/what-is-name-in-python-explained-with-example-4hok</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/MN9knCUTgwE"&gt;
&lt;/iframe&gt;
&lt;br&gt;
In this video, We will understand what is &lt;strong&gt;name&lt;/strong&gt; in python and how it is working with an example.&lt;/p&gt;

&lt;p&gt;------------------------------SOCIAL------------------------------&lt;br&gt;
Github: &lt;a href="https://github.com/codingx01"&gt;https://github.com/codingx01&lt;/a&gt;&lt;br&gt;
Twitter: &lt;a href="https://twitter.com/TechParida"&gt;https://twitter.com/TechParida&lt;/a&gt;&lt;br&gt;
Linkedin: &lt;a href="https://www.linkedin.com/company/codingx/"&gt;https://www.linkedin.com/company/codingx/&lt;/a&gt;&lt;br&gt;
Facebook: &lt;a href="https://www.facebook.com/codingx"&gt;https://www.facebook.com/codingx&lt;/a&gt;&lt;br&gt;
Instagram: &lt;a href="https://www.instagram.com/coding.x/"&gt;https://www.instagram.com/coding.x/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Leave any questions in the comments section and don't forget to subscribe to be notified of new content! :)&lt;/p&gt;

</description>
      <category>python</category>
      <category>tutorial</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>What is Edge Computing? Explained with Example.</title>
      <dc:creator>Trilochan Parida</dc:creator>
      <pubDate>Sun, 09 Aug 2020 08:45:29 +0000</pubDate>
      <link>https://dev.to/techparida/what-is-edge-computing-explained-with-example-2epa</link>
      <guid>https://dev.to/techparida/what-is-edge-computing-explained-with-example-2epa</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/aoyjwEpt22s"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;In this video, We will discuss what is edge computing and benefits of edge computing with example&lt;/p&gt;

&lt;p&gt;------------------------------SOCIAL------------------------------&lt;br&gt;
Github: &lt;a href="https://github.com/codingx01"&gt;https://github.com/codingx01&lt;/a&gt;&lt;br&gt;
Twitter: &lt;a href="https://twitter.com/TechParida"&gt;https://twitter.com/TechParida&lt;/a&gt;&lt;br&gt;
Linkedin: &lt;a href="https://www.linkedin.com/company/codingx/"&gt;https://www.linkedin.com/company/codingx/&lt;/a&gt;&lt;br&gt;
Facebook: &lt;a href="https://www.facebook.com/codingx"&gt;https://www.facebook.com/codingx&lt;/a&gt;&lt;br&gt;
Instagram: &lt;a href="https://www.instagram.com/coding.x/"&gt;https://www.instagram.com/coding.x/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Leave any questions in the comments section and don't forget to subscribe to be notified of new content! :)&lt;/p&gt;

</description>
      <category>edgecomputing</category>
      <category>tutorial</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>How to Deploy a Node.js App on Heroku: Hands-on!</title>
      <dc:creator>Trilochan Parida</dc:creator>
      <pubDate>Wed, 05 Aug 2020 03:54:45 +0000</pubDate>
      <link>https://dev.to/techparida/how-to-deploy-a-node-js-app-on-heroku-hands-on-1mp9</link>
      <guid>https://dev.to/techparida/how-to-deploy-a-node-js-app-on-heroku-hands-on-1mp9</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/w3S03IDIljM"&gt;
&lt;/iframe&gt;
&lt;br&gt;
In this video, you will learn how to deploy your nodejs app on Heroku. I will show you a simple chat app will deploy on Heroku using VSCode.&lt;/p&gt;

&lt;p&gt;Code: &lt;a href="https://github.com/codingx01/node-heroku"&gt;https://github.com/codingx01/node-heroku&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;------------------------------SOCIAL------------------------------&lt;br&gt;
Github: &lt;a href="https://github.com/codingx01"&gt;https://github.com/codingx01&lt;/a&gt;&lt;br&gt;
Twitter: &lt;a href="https://twitter.com/TechParida"&gt;https://twitter.com/TechParida&lt;/a&gt;&lt;br&gt;
Linkedin: &lt;a href="https://www.linkedin.com/company/codingx/"&gt;https://www.linkedin.com/company/codingx/&lt;/a&gt;&lt;br&gt;
Facebook: &lt;a href="https://www.facebook.com/codingx"&gt;https://www.facebook.com/codingx&lt;/a&gt;&lt;br&gt;
Instagram: &lt;a href="https://www.instagram.com/coding.x/"&gt;https://www.instagram.com/coding.x/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Leave any questions in the comments section and don't forget to subscribe to be notified of new content! :)&lt;/p&gt;

</description>
      <category>node</category>
      <category>heroku</category>
      <category>tutorial</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Limitation Of HTTP/2 That Led To HTTP/3: Explained with Example</title>
      <dc:creator>Trilochan Parida</dc:creator>
      <pubDate>Sun, 02 Aug 2020 05:26:42 +0000</pubDate>
      <link>https://dev.to/techparida/limitation-of-http-2-that-led-to-http-3-explained-with-example-1el1</link>
      <guid>https://dev.to/techparida/limitation-of-http-2-that-led-to-http-3-explained-with-example-1el1</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/AIDkSTiknLg"&gt;
&lt;/iframe&gt;
&lt;br&gt;
In this video, We will discuss the limitation of http2 that led to http/3, http/3 will solve the TCP level Head Of Line Blocking.&lt;/p&gt;

&lt;p&gt;------------------------------SOCIAL------------------------------&lt;br&gt;
Github: &lt;a href="https://github.com/codingx01"&gt;https://github.com/codingx01&lt;/a&gt;&lt;br&gt;
Twitter: &lt;a href="https://twitter.com/TechParida"&gt;https://twitter.com/TechParida&lt;/a&gt;&lt;br&gt;
Linkedin: &lt;a href="https://www.linkedin.com/company/codingx/"&gt;https://www.linkedin.com/company/codingx/&lt;/a&gt;&lt;br&gt;
Facebook: &lt;a href="https://www.facebook.com/codingx"&gt;https://www.facebook.com/codingx&lt;/a&gt;&lt;br&gt;
Instagram: &lt;a href="https://www.instagram.com/coding.x/"&gt;https://www.instagram.com/coding.x/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Leave any questions in the comments section and don't forget to subscribe to be notified of new content! :)&lt;/p&gt;

</description>
      <category>tutorial</category>
      <category>quic</category>
      <category>codenewbie</category>
      <category>http3</category>
    </item>
  </channel>
</rss>
