Skip to main content

Posts

PYTHON TURTLE CHALLENGE

On day 43 of the 365 days of code, I am still on the turtle documentation. Using turtle to draw a square: from turtle import Turtle, Screen maddy = Turtle() maddy.shape( "turtle" ) maddy.color( "blue" ) for i in range ( 4 ): maddy.forward( 100 ) maddy.left( 90 ) screen = Screen() screen.exitonclick()  
Recent posts

I'M BACK - DAY 42

I'm back.  I'm back.  I'm back. After a not so long break and some soul searching, I'm back on my Python journey. Today we'll be learning about the turtle documentation. I've tried going through documentations before (even Pytorch's ) but could not really understand them. Maybe I did not try enough or maybe I just lacked experience. It is the later. I do lack experience. :) I am quite excited for today's class.

A JILL OF ALL TRADES

I guess our ancestors we're right, although I don't really want to admit it. I like to disagree with stuff like this. It's hard to accept defeat sometimes. These days I've been struggling with having a lot of interests. I think I always have. So many things to do. So many things I want to do. So many things I wish I could do. It's a plus one whenever I see something I like. I proceed to wish I could do it and most times actually add it to my learning list. Out of my learning list is the priority list. There was definitely a time I decided to focus on just one thing (i.e., Python) till I mastered it. It sounds easy because why would somebody want to learn a couple of things when they could just stick with one. It's less work to do. I have always struggled to stick to one hobby or activity or whatever. I have too many interests making it difficult. I did fail to stick it out till the end with my new companion Python. One was just not enough. I wanted more. And why...

Figuring out what the "학교 독서교육 활성화 방안" is all about

I cannot view .hwpx files on my PC, so I made use of vertopal.com The Korean Ministry of Education provided 2 files . I will be going through these files to get the message and kickstart my daily 10 minutes Korean Reading Practice. I read about 2.5 pages today, although the font size was 14, it is something. I got compelled to keep on reading. At least finish the remaining 2 paragraphs under the current subheading I thought. I could do it but I did not.  태스트 파학해야돼서

365 DAYS OF CODE - DAY 40

  Watched this video and was thinking of what path to branch into. I would have loved web dev but Machine Learning is calling to me. Tensorflow vs Pytorch?? I will start with Pytorch. How about my Udemy course?? I will keep on taking it. So help me God.

365 DAYS OF CODE - DAY 39

Still working on projects from pynative.com Progress so far (17) TODO .17 Full-Time vs Part-Time Employee Pay Logic class Employee: def __init__ ( self , name): self .name = name class FullTimeEmployee(Employee): def __init__ ( self , name, salary): super (). __init__ (name) self .salary = salary monthly_pay = self .salary / 12 print ( f" { self .name } 's monthly pay: { monthly_pay } " ) class PartTimeEmployee(Employee): def __init__ ( self , name, salary, hours): super (). __init__ (name) self .salary = salary self .hours = hours monthly_pay = self .salary * self .hours print ( f" { self .name } 's monthly pay: { monthly_pay } " ) FullTimeEmployee( "Alice" , 60000 ) PartTimeEmployee( "Bob" , 500 , 20 )