From selvi.dct at gmail.com Sun Feb 5 14:09:30 2023 From: selvi.dct at gmail.com (selvi dct) Date: Mon, 6 Feb 2023 00:39:30 +0530 Subject: [Chennaipy] Chennaipy - Monday Module - 6 Feb 2023 Message-ID: Date: 06 Feb 2022 Module : pyperclip Installation : pip install pyperclip About: Pyperclip is a cross-platform Python module for copy and paste clipboard functions. If something outside your program changes the clipboard contents, the paste() function will return it. For example, if this sentence is copied to the clipboard and then paste() is called, the output would be printed. Source: import pyperclip pyperclip.copy("Hello world !") pyperclip.paste() Reference: https://pypi.org/project/pyperclip/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From tshrinivasan at gmail.com Sun Feb 12 13:59:22 2023 From: tshrinivasan at gmail.com (Shrinivasan T) Date: Sun, 12 Feb 2023 13:59:22 -0500 Subject: [Chennaipy] Fwd: [kanchilug] [KANCHILUG][ILUGC] Learn Data Structures and Algorithms with us. In-Reply-To: References: Message-ID: ---------- Forwarded message --------- From: syed jafer Date: Sun, Feb 12, 2023, 5:14 AM Subject: [kanchilug] [KANCHILUG][ILUGC] Learn Data Structures and Algorithms with us. To: , Hi All, We plan to start a new chapter on Data structures and Algorithms in Python. *Why DSA?* DSA is among the essential aspects of computer science. It helps in solving great problems. Let's solve many problems as a community. *Target Audience* 1. Beginners 2. College students who want to learn DSA in a fun way. 3. Who wishes to refresh? (Like me.) 4. And who needs a reason to learn DSA. *Timings* Days: Since it's for beginners we are planning it for Mon, Wed, Fri; every week. Time: Evening (Stay tuned to kanchilug mailing list for updates...) *How do we practice?* Yeah, as of now I have planned for practising in hackerrank, leetcode, codechef. *Would you like any help?* Since we plan to take this to many students, we want you to spread the word. *Are you an expert?* No. but will learn together. *What do we get?* 1. Knowledge 2. Digital Bagde on successfully completing the assignments. Stay tuned to kanchilug mailing list for updates... -- Thanks and Regards, Syed Jafer, 9176409201 Personal Blog: https://makereading.com Personal Email: contact.syedjafer at gmail.com Mailing list: kanchilug at freelists.org Repository: https://gitlab.com/kanchilug Twitter handle: @kanchilug -------------- next part -------------- An HTML attachment was scrubbed... URL: From selvi.dct at gmail.com Mon Feb 13 11:11:59 2023 From: selvi.dct at gmail.com (selvi dct) Date: Mon, 13 Feb 2023 21:41:59 +0530 Subject: [Chennaipy] Fwd: Chennaipy - Monday Module - 13 Feb 2023 In-Reply-To: References: Message-ID: Date: 13 Feb 2023 Module : signal Installation : Default Python Module About: Signals are an operating system feature that provide a means of notifying your program of an event, and having it handled asynchronously. They can be generated by the system itself, or sent from one process to another. Since signals interrupt the regular flow of your program, it is possible that some operations (especially I/O) may produce error if a signal is received in the middle. Sample: import signal def alarm_received(n, stack): return signal.signal(signal.SIGALRM, alarm_received) signals_to_names = {} for n in dir(signal): if n.startswith('SIG') and not n.startswith('SIG_'): signals_to_names[getattr(signal, n)] = n for s, name in sorted(signals_to_names.items()): handler = signal.getsignal(s) if handler is signal.SIG_DFL: handler = 'SIG_DFL' elif handler is signal.SIG_IGN: handler = 'SIG_IGN' print('%-10s (%2d):' % (name, s), handler) Output: SIGHUP ( 1): SIG_DFL SIGINT ( 2): SIGQUIT ( 3): SIG_DFL SIGILL ( 4): SIG_DFL SIGTRAP ( 5): SIG_DFL SIGIOT ( 6): SIG_DFL SIGEMT ( 7): SIG_DFL SIGFPE ( 8): SIG_DFL SIGKILL ( 9): None SIGBUS (10): SIG_DFL SIGSEGV (11): SIG_DFL SIGSYS (12): SIG_DFL SIGPIPE (13): SIG_IGN SIGALRM (14): SIGTERM (15): SIG_DFL SIGURG (16): SIG_DFL SIGSTOP (17): None SIGTSTP (18): SIG_DFL SIGCONT (19): SIG_DFL SIGCHLD (20): SIG_DFL SIGTTIN (21): SIG_DFL SIGTTOU (22): SIG_DFL SIGIO (23): SIG_DFL SIGXCPU (24): SIG_DFL SIGXFSZ (25): SIG_IGN SIGVTALRM (26): SIG_DFL SIGPROF (27): SIG_DFL SIGWINCH (28): SIG_DFL SIGINFO (29): SIG_DFL SIGUSR1 (30): SIG_DFL SIGUSR2 (31): SIG_DFL Reference: https://docs.python.org/3/library/signal.html https://pymotw.com/2/signal/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From contact.syedjafer at gmail.com Wed Feb 22 08:37:56 2023 From: contact.syedjafer at gmail.com (syed jafer) Date: Wed, 22 Feb 2023 19:07:56 +0530 Subject: [Chennaipy] [KANCHILUG][ILUGC] Learn Data Structures and Algorithms with us. In-Reply-To: References: Message-ID: *Session 02 - Python Bootcamp | Va Nanba DSA Padikalam* Date and Time: Feb 24, 19:00 IST Meeting Link: Jitsi Meet See you guys in Friday?s session. Share this with anyone who can benefit from this! *Materials*: GitHub - makereading/Batch-1-DSA-with-python: Datastructures and Algorithms with Python *Youtube: * https://www.youtube.com/watch?v=pvVsnpYDqh8&list=PLiutOxBS1MiyuqZfRH-NGv2GcbIn1mmZ2 On Mon, 20 Feb 2023 at 19:10, syed jafer wrote: > Hi all, > > PFB details of the next session, > > *Session 01 - Python Bootcamp | Va Nanba DSA Padikalam* > > Date and Time: Feb 21, 19:00 IST > Meeting Link: Jitsi Meet > > See you guys in Tuesday?s session. > Share this with anyone who can benefit from this! > > Checkout TLC for more details - > https://forums.tamillinuxcommunity.org/t/va-nanba-dsa-padikalam-a-data-structure-algorithm-workshop-in-kanchilug-by-syed-jafer/1012/3 > > > On Wed, 15 Feb 2023 at 19:23, syed jafer > wrote: > >> Hi All, >> >> *Name*: "Va Nanba DSA Padikalam" >> *Poster Link* : >> https://github.com/makereading/Batch-1-DSA-with-python/blob/main/poster/poster.png >> *Syllabus*: [inprogress] >> https://github.com/makereading/Batch-1-DSA-with-python/blob/main/syllabus.md >> All the materials will be updated here : >> https://github.com/makereading/Batch-1-DSA-with-python >> >> Please share the poster with your friends. >> >> Stay tuned for Timings. >> >> -- >> Thanks and Regards, >> Syed Jafer, >> 9176409201 >> Personal Blog: https://makereading.com >> Personal Email: contact.syedjafer at gmail.com >> Mailing list: kanchilug at freelists.org >> Repository: https://gitlab.com/kanchilug >> Twitter handle: @kanchilug >> >> On Sun, 12 Feb 2023 at 15:43, syed jafer >> wrote: >> >>> Hi All, >>> >>> We plan to start a new chapter on Data structures and Algorithms in >>> Python. >>> >>> *Why DSA?* >>> DSA is among the essential aspects of computer science. It helps in >>> solving great problems. >>> Let's solve many problems as a community. >>> >>> *Target Audience* >>> 1. Beginners >>> 2. College students who want to learn DSA in a fun way. >>> 3. Who wishes to refresh? (Like me.) >>> 4. And who needs a reason to learn DSA. >>> >>> *Timings* >>> Days: Since it's for beginners we are planning it for Mon, Wed, Fri; >>> every week. >>> Time: Evening (Stay tuned to kanchilug mailing list for updates...) >>> >>> *How do we practice?* >>> Yeah, as of now I have planned for practising in hackerrank, leetcode, >>> codechef. >>> >>> *Would you like any help?* >>> Since we plan to take this to many students, we want you to spread the >>> word. >>> >>> *Are you an expert?* >>> No. but will learn together. >>> >>> *What do we get?* >>> 1. Knowledge >>> 2. Digital Bagde on successfully completing the assignments. >>> >>> Stay tuned to kanchilug mailing list for updates... >>> >>> >>> -- >>> Thanks and Regards, >>> Syed Jafer, >>> 9176409201 >>> Personal Blog: https://makereading.com >>> Personal Email: contact.syedjafer at gmail.com >>> Mailing list: kanchilug at freelists.org >>> Repository: https://gitlab.com/kanchilug >>> Twitter handle: @kanchilug >>> >> -------------- next part -------------- An HTML attachment was scrubbed... URL: From sureshkumarr.s at gmail.com Wed Feb 22 21:15:25 2023 From: sureshkumarr.s at gmail.com (S Suresh) Date: Thu, 23 Feb 2023 07:45:25 +0530 Subject: [Chennaipy] Python/Web Developer Opening - Fresher Message-ID: Hi, There is a Web developer opening in https://knetsolutions.in Job type: Semi Remote Experience: 0+ year (Freshers with Good knowledge in Python programming, Web/Front End development) Below skill sets are required 1. Good knowledge in Python 2. Good knowledge in HTML/CSS + Any one frontend framework 3. Understanding on Search engine optimization / Digital marketing Interested candidates, please send your profile to support at knetsolutions.in or contact +919445042007 Please don't send it to the group. Thanks Suresh -------------- next part -------------- An HTML attachment was scrubbed... URL: From contact.syedjafer at gmail.com Fri Feb 24 09:53:54 2023 From: contact.syedjafer at gmail.com (syed jafer) Date: Fri, 24 Feb 2023 20:23:54 +0530 Subject: [Chennaipy] [KANCHILUG][ILUGC] Learn Data Structures and Algorithms with us. In-Reply-To: References: Message-ID: *Session 03 - Python Bootcamp | Va Nanba DSA Padikalam* Date and Time: Feb 25, 19:00 IST Meeting Link: Jitsi Meet See you guys in Saturday?s session. Share this with anyone who can benefit from this! *Materials*: GitHub - makereading/Batch-1-DSA-with-python: Datastructures and Algorithms with Python *Youtube playlist: * https://www.youtube.com/playlist?list=PLiutOxBS1MiyuqZfRH-NGv2GcbIn1mmZ2 On Wed, 22 Feb 2023 at 19:07, syed jafer wrote: > *Session 02 - Python Bootcamp | Va Nanba DSA Padikalam* > > Date and Time: Feb 24, 19:00 IST > Meeting Link: Jitsi Meet > > See you guys in Friday?s session. > Share this with anyone who can benefit from this! > > *Materials*: GitHub - makereading/Batch-1-DSA-with-python: Datastructures > and Algorithms with Python > > > *Youtube: * > https://www.youtube.com/watch?v=pvVsnpYDqh8&list=PLiutOxBS1MiyuqZfRH-NGv2GcbIn1mmZ2 > > On Mon, 20 Feb 2023 at 19:10, syed jafer > wrote: > >> Hi all, >> >> PFB details of the next session, >> >> *Session 01 - Python Bootcamp | Va Nanba DSA Padikalam* >> >> Date and Time: Feb 21, 19:00 IST >> Meeting Link: Jitsi Meet >> >> See you guys in Tuesday?s session. >> Share this with anyone who can benefit from this! >> >> Checkout TLC for more details - >> https://forums.tamillinuxcommunity.org/t/va-nanba-dsa-padikalam-a-data-structure-algorithm-workshop-in-kanchilug-by-syed-jafer/1012/3 >> >> >> On Wed, 15 Feb 2023 at 19:23, syed jafer >> wrote: >> >>> Hi All, >>> >>> *Name*: "Va Nanba DSA Padikalam" >>> *Poster Link* : >>> https://github.com/makereading/Batch-1-DSA-with-python/blob/main/poster/poster.png >>> *Syllabus*: [inprogress] >>> https://github.com/makereading/Batch-1-DSA-with-python/blob/main/syllabus.md >>> All the materials will be updated here : >>> https://github.com/makereading/Batch-1-DSA-with-python >>> >>> Please share the poster with your friends. >>> >>> Stay tuned for Timings. >>> >>> -- >>> Thanks and Regards, >>> Syed Jafer, >>> 9176409201 >>> Personal Blog: https://makereading.com >>> Personal Email: contact.syedjafer at gmail.com >>> Mailing list: kanchilug at freelists.org >>> Repository: https://gitlab.com/kanchilug >>> Twitter handle: @kanchilug >>> >>> On Sun, 12 Feb 2023 at 15:43, syed jafer >>> wrote: >>> >>>> Hi All, >>>> >>>> We plan to start a new chapter on Data structures and Algorithms in >>>> Python. >>>> >>>> *Why DSA?* >>>> DSA is among the essential aspects of computer science. It helps in >>>> solving great problems. >>>> Let's solve many problems as a community. >>>> >>>> *Target Audience* >>>> 1. Beginners >>>> 2. College students who want to learn DSA in a fun way. >>>> 3. Who wishes to refresh? (Like me.) >>>> 4. And who needs a reason to learn DSA. >>>> >>>> *Timings* >>>> Days: Since it's for beginners we are planning it for Mon, Wed, Fri; >>>> every week. >>>> Time: Evening (Stay tuned to kanchilug mailing list for updates...) >>>> >>>> *How do we practice?* >>>> Yeah, as of now I have planned for practising in hackerrank, leetcode, >>>> codechef. >>>> >>>> *Would you like any help?* >>>> Since we plan to take this to many students, we want you to spread the >>>> word. >>>> >>>> *Are you an expert?* >>>> No. but will learn together. >>>> >>>> *What do we get?* >>>> 1. Knowledge >>>> 2. Digital Bagde on successfully completing the assignments. >>>> >>>> Stay tuned to kanchilug mailing list for updates... >>>> >>>> >>>> -- >>>> Thanks and Regards, >>>> Syed Jafer, >>>> 9176409201 >>>> Personal Blog: https://makereading.com >>>> Personal Email: contact.syedjafer at gmail.com >>>> Mailing list: kanchilug at freelists.org >>>> Repository: https://gitlab.com/kanchilug >>>> Twitter handle: @kanchilug >>>> >>> -------------- next part -------------- An HTML attachment was scrubbed... URL: From sakthirengaraj at gmail.com Fri Feb 24 19:11:20 2023 From: sakthirengaraj at gmail.com (Rengaraj D) Date: Sat, 25 Feb 2023 05:41:20 +0530 Subject: [Chennaipy] February meetup RSVP required Message-ID: Hi Everyone, Welcome to the February month meetup. # Schedule * Generators * Building fitness Apps using movenet * Debugging memory leak in Python application * Lightning talks (10 mins/talk) # Venue * Online * RSVP to get the meeting link https://www.meetup.com/chennaipy/events/291328580/ # Date & Time * 25/02/2023 * 3:00 PM to 5:00 PM # New to Python ? * Learn Python in 30 minutes https://learnxinyminutes.com/docs/python/ * How to think like a computer Scientist? http://openbookproject.net/thinkcs/python/english3e/ Regards Rengaraj -------------- next part -------------- An HTML attachment was scrubbed... URL: From contact.syedjafer at gmail.com Sat Feb 25 09:36:04 2023 From: contact.syedjafer at gmail.com (syed jafer) Date: Sat, 25 Feb 2023 20:06:04 +0530 Subject: [Chennaipy] [KANCHILUG][ILUGC] Learn Data Structures and Algorithms with us. In-Reply-To: References: Message-ID: *Session 04 - Python Bootcamp | Va Nanba DSA Padikalam* Date and Time: Feb 27, 19:00 IST Meeting Link: Jitsi Meet See you guys in Monday?s session. Share this with anyone who can benefit from this! *Materials*: GitHub - makereading/Batch-1-DSA-with-python: Datastructures and Algorithms with Python *Youtube playlist: * https://www.youtube.com/playlist?list=PLiutOxBS1MiyuqZfRH-NGv2GcbIn1mmZ2 On Fri, 24 Feb 2023 at 20:23, syed jafer wrote: > *Session 03 - Python Bootcamp | Va Nanba DSA Padikalam* > > Date and Time: Feb 25, 19:00 IST > Meeting Link: Jitsi Meet > > See you guys in Saturday?s session. > Share this with anyone who can benefit from this! > > *Materials*: GitHub - makereading/Batch-1-DSA-with-python: Datastructures > and Algorithms with Python > > > *Youtube playlist: * > https://www.youtube.com/playlist?list=PLiutOxBS1MiyuqZfRH-NGv2GcbIn1mmZ2 > > On Wed, 22 Feb 2023 at 19:07, syed jafer > wrote: > >> *Session 02 - Python Bootcamp | Va Nanba DSA Padikalam* >> >> Date and Time: Feb 24, 19:00 IST >> Meeting Link: Jitsi Meet >> >> See you guys in Friday?s session. >> Share this with anyone who can benefit from this! >> >> *Materials*: GitHub - makereading/Batch-1-DSA-with-python: >> Datastructures and Algorithms with Python >> >> >> *Youtube: * >> https://www.youtube.com/watch?v=pvVsnpYDqh8&list=PLiutOxBS1MiyuqZfRH-NGv2GcbIn1mmZ2 >> >> On Mon, 20 Feb 2023 at 19:10, syed jafer >> wrote: >> >>> Hi all, >>> >>> PFB details of the next session, >>> >>> *Session 01 - Python Bootcamp | Va Nanba DSA Padikalam* >>> >>> Date and Time: Feb 21, 19:00 IST >>> Meeting Link: Jitsi Meet >>> >>> See you guys in Tuesday?s session. >>> Share this with anyone who can benefit from this! >>> >>> Checkout TLC for more details - >>> https://forums.tamillinuxcommunity.org/t/va-nanba-dsa-padikalam-a-data-structure-algorithm-workshop-in-kanchilug-by-syed-jafer/1012/3 >>> >>> >>> On Wed, 15 Feb 2023 at 19:23, syed jafer >>> wrote: >>> >>>> Hi All, >>>> >>>> *Name*: "Va Nanba DSA Padikalam" >>>> *Poster Link* : >>>> https://github.com/makereading/Batch-1-DSA-with-python/blob/main/poster/poster.png >>>> *Syllabus*: [inprogress] >>>> https://github.com/makereading/Batch-1-DSA-with-python/blob/main/syllabus.md >>>> All the materials will be updated here : >>>> https://github.com/makereading/Batch-1-DSA-with-python >>>> >>>> Please share the poster with your friends. >>>> >>>> Stay tuned for Timings. >>>> >>>> -- >>>> Thanks and Regards, >>>> Syed Jafer, >>>> 9176409201 >>>> Personal Blog: https://makereading.com >>>> Personal Email: contact.syedjafer at gmail.com >>>> Mailing list: kanchilug at freelists.org >>>> Repository: https://gitlab.com/kanchilug >>>> Twitter handle: @kanchilug >>>> >>>> On Sun, 12 Feb 2023 at 15:43, syed jafer >>>> wrote: >>>> >>>>> Hi All, >>>>> >>>>> We plan to start a new chapter on Data structures and Algorithms in >>>>> Python. >>>>> >>>>> *Why DSA?* >>>>> DSA is among the essential aspects of computer science. It helps in >>>>> solving great problems. >>>>> Let's solve many problems as a community. >>>>> >>>>> *Target Audience* >>>>> 1. Beginners >>>>> 2. College students who want to learn DSA in a fun way. >>>>> 3. Who wishes to refresh? (Like me.) >>>>> 4. And who needs a reason to learn DSA. >>>>> >>>>> *Timings* >>>>> Days: Since it's for beginners we are planning it for Mon, Wed, Fri; >>>>> every week. >>>>> Time: Evening (Stay tuned to kanchilug mailing list for updates...) >>>>> >>>>> *How do we practice?* >>>>> Yeah, as of now I have planned for practising in hackerrank, leetcode, >>>>> codechef. >>>>> >>>>> *Would you like any help?* >>>>> Since we plan to take this to many students, we want you to spread the >>>>> word. >>>>> >>>>> *Are you an expert?* >>>>> No. but will learn together. >>>>> >>>>> *What do we get?* >>>>> 1. Knowledge >>>>> 2. Digital Bagde on successfully completing the assignments. >>>>> >>>>> Stay tuned to kanchilug mailing list for updates... >>>>> >>>>> >>>>> -- >>>>> Thanks and Regards, >>>>> Syed Jafer, >>>>> 9176409201 >>>>> Personal Blog: https://makereading.com >>>>> Personal Email: contact.syedjafer at gmail.com >>>>> Mailing list: kanchilug at freelists.org >>>>> Repository: https://gitlab.com/kanchilug >>>>> Twitter handle: @kanchilug >>>>> >>>> -------------- next part -------------- An HTML attachment was scrubbed... URL: From selvi.dct at gmail.com Mon Feb 27 02:39:02 2023 From: selvi.dct at gmail.com (selvi dct) Date: Mon, 27 Feb 2023 13:09:02 +0530 Subject: [Chennaipy] Chennaipy - Monday Module - 27 Feb 2023 Message-ID: Date: 27 Feb 2023 Module : scipy Installation : pip install scipy About: SciPy (pronounced ?Sigh Pie?) is an open-source software for mathematics, science, and engineering. It includes modules for statistics, optimization, integration, linear algebra, Fourier transforms, signal and image processing, ODE solvers, and more. SciPy uses NumPy arrays as the basic data structure, and comes with modules for various commonly used tasks in scientific programming. Sample: # Import the required libraries from scipy import linalg import numpy as np # The function takes two arrays a = np.array([[7, 2], [4, 5]]) b = np.array([8, 10]) # Solving the linear equations res = linalg.solve(a, b) print(res) Output: [0.74074074 1.40740741] Reference: https://pypi.org/project/scipy/ https://docs.scipy.org/doc/scipy/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From contact.syedjafer at gmail.com Mon Feb 27 09:46:44 2023 From: contact.syedjafer at gmail.com (syed jafer) Date: Mon, 27 Feb 2023 20:16:44 +0530 Subject: [Chennaipy] [KANCHILUG][ILUGC] Learn Data Structures and Algorithms with us. In-Reply-To: References: Message-ID: *Session 05 - GIT Bootcamp | Va Nanba DSA Padikalam* Date and Time: Mar 1, 19:00 IST Meeting Link: Jitsi Meet See you guys in Monday?s session. Share this with anyone who can benefit from this! *Materials*: GitHub - makereading/Batch-1-DSA-with-python: Datastructures and Algorithms with Python *Youtube playlist: * https://www.youtube.com/playlist?list=PLiutOxBS1MiyuqZfRH-NGv2GcbIn1mmZ2 On Sat, 25 Feb 2023 at 20:06, syed jafer wrote: > *Session 04 - Python Bootcamp | Va Nanba DSA Padikalam* > > Date and Time: Feb 27, 19:00 IST > Meeting Link: Jitsi Meet > > See you guys in Monday?s session. > Share this with anyone who can benefit from this! > > *Materials*: GitHub - makereading/Batch-1-DSA-with-python: Datastructures > and Algorithms with Python > > > *Youtube playlist: * > https://www.youtube.com/playlist?list=PLiutOxBS1MiyuqZfRH-NGv2GcbIn1mmZ2 > > On Fri, 24 Feb 2023 at 20:23, syed jafer > wrote: > >> *Session 03 - Python Bootcamp | Va Nanba DSA Padikalam* >> >> Date and Time: Feb 25, 19:00 IST >> Meeting Link: Jitsi Meet >> >> See you guys in Saturday?s session. >> Share this with anyone who can benefit from this! >> >> *Materials*: GitHub - makereading/Batch-1-DSA-with-python: >> Datastructures and Algorithms with Python >> >> >> *Youtube playlist: * >> https://www.youtube.com/playlist?list=PLiutOxBS1MiyuqZfRH-NGv2GcbIn1mmZ2 >> >> On Wed, 22 Feb 2023 at 19:07, syed jafer >> wrote: >> >>> *Session 02 - Python Bootcamp | Va Nanba DSA Padikalam* >>> >>> Date and Time: Feb 24, 19:00 IST >>> Meeting Link: Jitsi Meet >>> >>> See you guys in Friday?s session. >>> Share this with anyone who can benefit from this! >>> >>> *Materials*: GitHub - makereading/Batch-1-DSA-with-python: >>> Datastructures and Algorithms with Python >>> >>> >>> *Youtube: * >>> https://www.youtube.com/watch?v=pvVsnpYDqh8&list=PLiutOxBS1MiyuqZfRH-NGv2GcbIn1mmZ2 >>> >>> On Mon, 20 Feb 2023 at 19:10, syed jafer >>> wrote: >>> >>>> Hi all, >>>> >>>> PFB details of the next session, >>>> >>>> *Session 01 - Python Bootcamp | Va Nanba DSA Padikalam* >>>> >>>> Date and Time: Feb 21, 19:00 IST >>>> Meeting Link: Jitsi Meet >>>> >>>> See you guys in Tuesday?s session. >>>> Share this with anyone who can benefit from this! >>>> >>>> Checkout TLC for more details - >>>> https://forums.tamillinuxcommunity.org/t/va-nanba-dsa-padikalam-a-data-structure-algorithm-workshop-in-kanchilug-by-syed-jafer/1012/3 >>>> >>>> >>>> On Wed, 15 Feb 2023 at 19:23, syed jafer >>>> wrote: >>>> >>>>> Hi All, >>>>> >>>>> *Name*: "Va Nanba DSA Padikalam" >>>>> *Poster Link* : >>>>> https://github.com/makereading/Batch-1-DSA-with-python/blob/main/poster/poster.png >>>>> *Syllabus*: [inprogress] >>>>> https://github.com/makereading/Batch-1-DSA-with-python/blob/main/syllabus.md >>>>> All the materials will be updated here : >>>>> https://github.com/makereading/Batch-1-DSA-with-python >>>>> >>>>> Please share the poster with your friends. >>>>> >>>>> Stay tuned for Timings. >>>>> >>>>> -- >>>>> Thanks and Regards, >>>>> Syed Jafer, >>>>> 9176409201 >>>>> Personal Blog: https://makereading.com >>>>> Personal Email: contact.syedjafer at gmail.com >>>>> Mailing list: kanchilug at freelists.org >>>>> Repository: https://gitlab.com/kanchilug >>>>> Twitter handle: @kanchilug >>>>> >>>>> On Sun, 12 Feb 2023 at 15:43, syed jafer >>>>> wrote: >>>>> >>>>>> Hi All, >>>>>> >>>>>> We plan to start a new chapter on Data structures and Algorithms in >>>>>> Python. >>>>>> >>>>>> *Why DSA?* >>>>>> DSA is among the essential aspects of computer science. It helps in >>>>>> solving great problems. >>>>>> Let's solve many problems as a community. >>>>>> >>>>>> *Target Audience* >>>>>> 1. Beginners >>>>>> 2. College students who want to learn DSA in a fun way. >>>>>> 3. Who wishes to refresh? (Like me.) >>>>>> 4. And who needs a reason to learn DSA. >>>>>> >>>>>> *Timings* >>>>>> Days: Since it's for beginners we are planning it for Mon, Wed, Fri; >>>>>> every week. >>>>>> Time: Evening (Stay tuned to kanchilug mailing list for updates...) >>>>>> >>>>>> *How do we practice?* >>>>>> Yeah, as of now I have planned for practising in hackerrank, >>>>>> leetcode, codechef. >>>>>> >>>>>> *Would you like any help?* >>>>>> Since we plan to take this to many students, we want you to spread >>>>>> the word. >>>>>> >>>>>> *Are you an expert?* >>>>>> No. but will learn together. >>>>>> >>>>>> *What do we get?* >>>>>> 1. Knowledge >>>>>> 2. Digital Bagde on successfully completing the assignments. >>>>>> >>>>>> Stay tuned to kanchilug mailing list for updates... >>>>>> >>>>>> >>>>>> -- >>>>>> Thanks and Regards, >>>>>> Syed Jafer, >>>>>> 9176409201 >>>>>> Personal Blog: https://makereading.com >>>>>> Personal Email: contact.syedjafer at gmail.com >>>>>> Mailing list: kanchilug at freelists.org >>>>>> Repository: https://gitlab.com/kanchilug >>>>>> Twitter handle: @kanchilug >>>>>> >>>>> -------------- next part -------------- An HTML attachment was scrubbed... URL: From contact.syedjafer at gmail.com Mon Feb 27 09:47:44 2023 From: contact.syedjafer at gmail.com (syed jafer) Date: Mon, 27 Feb 2023 20:17:44 +0530 Subject: [Chennaipy] [KANCHILUG][ILUGC] Learn Data Structures and Algorithms with us. In-Reply-To: References: Message-ID: *[Typo in previous email]* *Session 05 - GIT Bootcamp | Va Nanba DSA Padikalam* Date and Time: Mar 1, 19:00 IST Meeting Link: Jitsi Meet See you guys in *Wednesday*?s session. Share this with anyone who can benefit from this! *Materials*: GitHub - makereading/Batch-1-DSA-with-python: Datastructures and Algorithms with Python *Youtube playlist: * https://www.youtube.com/playlist?list=PLiutOxBS1MiyuqZfRH-NGv2GcbIn1mmZ2 On Mon, 27 Feb 2023 at 20:16, syed jafer wrote: > *Session 05 - GIT Bootcamp | Va Nanba DSA Padikalam* > > Date and Time: Mar 1, 19:00 IST > Meeting Link: Jitsi Meet > > See you guys in Monday?s session. > Share this with anyone who can benefit from this! > > *Materials*: GitHub - makereading/Batch-1-DSA-with-python: Datastructures > and Algorithms with Python > > > *Youtube playlist: * > https://www.youtube.com/playlist?list=PLiutOxBS1MiyuqZfRH-NGv2GcbIn1mmZ2 > > On Sat, 25 Feb 2023 at 20:06, syed jafer > wrote: > >> *Session 04 - Python Bootcamp | Va Nanba DSA Padikalam* >> >> Date and Time: Feb 27, 19:00 IST >> Meeting Link: Jitsi Meet >> >> See you guys in Monday?s session. >> Share this with anyone who can benefit from this! >> >> *Materials*: GitHub - makereading/Batch-1-DSA-with-python: >> Datastructures and Algorithms with Python >> >> >> *Youtube playlist: * >> https://www.youtube.com/playlist?list=PLiutOxBS1MiyuqZfRH-NGv2GcbIn1mmZ2 >> >> On Fri, 24 Feb 2023 at 20:23, syed jafer >> wrote: >> >>> *Session 03 - Python Bootcamp | Va Nanba DSA Padikalam* >>> >>> Date and Time: Feb 25, 19:00 IST >>> Meeting Link: Jitsi Meet >>> >>> See you guys in Saturday?s session. >>> Share this with anyone who can benefit from this! >>> >>> *Materials*: GitHub - makereading/Batch-1-DSA-with-python: >>> Datastructures and Algorithms with Python >>> >>> >>> *Youtube playlist: * >>> https://www.youtube.com/playlist?list=PLiutOxBS1MiyuqZfRH-NGv2GcbIn1mmZ2 >>> >>> On Wed, 22 Feb 2023 at 19:07, syed jafer >>> wrote: >>> >>>> *Session 02 - Python Bootcamp | Va Nanba DSA Padikalam* >>>> >>>> Date and Time: Feb 24, 19:00 IST >>>> Meeting Link: Jitsi Meet >>>> >>>> See you guys in Friday?s session. >>>> Share this with anyone who can benefit from this! >>>> >>>> *Materials*: GitHub - makereading/Batch-1-DSA-with-python: >>>> Datastructures and Algorithms with Python >>>> >>>> >>>> *Youtube: * >>>> https://www.youtube.com/watch?v=pvVsnpYDqh8&list=PLiutOxBS1MiyuqZfRH-NGv2GcbIn1mmZ2 >>>> >>>> On Mon, 20 Feb 2023 at 19:10, syed jafer >>>> wrote: >>>> >>>>> Hi all, >>>>> >>>>> PFB details of the next session, >>>>> >>>>> *Session 01 - Python Bootcamp | Va Nanba DSA Padikalam* >>>>> >>>>> Date and Time: Feb 21, 19:00 IST >>>>> Meeting Link: Jitsi Meet >>>>> >>>>> See you guys in Tuesday?s session. >>>>> Share this with anyone who can benefit from this! >>>>> >>>>> Checkout TLC for more details - >>>>> https://forums.tamillinuxcommunity.org/t/va-nanba-dsa-padikalam-a-data-structure-algorithm-workshop-in-kanchilug-by-syed-jafer/1012/3 >>>>> >>>>> >>>>> On Wed, 15 Feb 2023 at 19:23, syed jafer >>>>> wrote: >>>>> >>>>>> Hi All, >>>>>> >>>>>> *Name*: "Va Nanba DSA Padikalam" >>>>>> *Poster Link* : >>>>>> https://github.com/makereading/Batch-1-DSA-with-python/blob/main/poster/poster.png >>>>>> *Syllabus*: [inprogress] >>>>>> https://github.com/makereading/Batch-1-DSA-with-python/blob/main/syllabus.md >>>>>> All the materials will be updated here : >>>>>> https://github.com/makereading/Batch-1-DSA-with-python >>>>>> >>>>>> Please share the poster with your friends. >>>>>> >>>>>> Stay tuned for Timings. >>>>>> >>>>>> -- >>>>>> Thanks and Regards, >>>>>> Syed Jafer, >>>>>> 9176409201 >>>>>> Personal Blog: https://makereading.com >>>>>> Personal Email: contact.syedjafer at gmail.com >>>>>> Mailing list: kanchilug at freelists.org >>>>>> Repository: https://gitlab.com/kanchilug >>>>>> Twitter handle: @kanchilug >>>>>> >>>>>> On Sun, 12 Feb 2023 at 15:43, syed jafer >>>>>> wrote: >>>>>> >>>>>>> Hi All, >>>>>>> >>>>>>> We plan to start a new chapter on Data structures and Algorithms in >>>>>>> Python. >>>>>>> >>>>>>> *Why DSA?* >>>>>>> DSA is among the essential aspects of computer science. It helps in >>>>>>> solving great problems. >>>>>>> Let's solve many problems as a community. >>>>>>> >>>>>>> *Target Audience* >>>>>>> 1. Beginners >>>>>>> 2. College students who want to learn DSA in a fun way. >>>>>>> 3. Who wishes to refresh? (Like me.) >>>>>>> 4. And who needs a reason to learn DSA. >>>>>>> >>>>>>> *Timings* >>>>>>> Days: Since it's for beginners we are planning it for Mon, Wed, Fri; >>>>>>> every week. >>>>>>> Time: Evening (Stay tuned to kanchilug mailing list for updates...) >>>>>>> >>>>>>> *How do we practice?* >>>>>>> Yeah, as of now I have planned for practising in hackerrank, >>>>>>> leetcode, codechef. >>>>>>> >>>>>>> *Would you like any help?* >>>>>>> Since we plan to take this to many students, we want you to spread >>>>>>> the word. >>>>>>> >>>>>>> *Are you an expert?* >>>>>>> No. but will learn together. >>>>>>> >>>>>>> *What do we get?* >>>>>>> 1. Knowledge >>>>>>> 2. Digital Bagde on successfully completing the assignments. >>>>>>> >>>>>>> Stay tuned to kanchilug mailing list for updates... >>>>>>> >>>>>>> >>>>>>> -- >>>>>>> Thanks and Regards, >>>>>>> Syed Jafer, >>>>>>> 9176409201 >>>>>>> Personal Blog: https://makereading.com >>>>>>> Personal Email: contact.syedjafer at gmail.com >>>>>>> Mailing list: kanchilug at freelists.org >>>>>>> Repository: https://gitlab.com/kanchilug >>>>>>> Twitter handle: @kanchilug >>>>>>> >>>>>> -------------- next part -------------- An HTML attachment was scrubbed... URL: