[Comrade Xiao Hu] My creation anniversary - and the 128th day since I joined CSDN!

        On April 12, 2023, I joined CSDN, a large creative collective and family for the first time! It’s a real honor and a great honor! Before this, I had heard that CSDN is the cradle of Chinese developers. Today’s realization makes me feel like I belong!

 

opportunity

       128 days ago today, I was an IT novice who had just graduated, and I had no idea of ​​taking the postgraduate entrance examination. I was careful not to have any professional skills that I could use after graduation. I started to study operation and maintenance, and occasionally went online . I saw CSDN when searching for code problems. As the problem was solved, I took a closer look at Site C and found that it is a gathering place for developers. Many technical experts and high-quality technical articles have deeply attracted me.

        My thought at the time was "They must be helpful to me", so I registered an account and switched from taking notes on XMind to recording on CSDN blogs. My nickname at the time was Ada .

        Sharing your experiences while taking notes not only improves yourself, but also helps others. It gives me a sense of accomplishment while motivating me to keep creating.


 

reward

After so many days, I gained a lot:

  1. Compared with the XMind knowledge block diagram note form, blog posts can be more detailed and clear. For example, the operation steps require screenshots, but knowledge block diagrams are a bit inappropriate. For me, blog posts are undoubtedly the best form of recording. The most important thing is that the article is on an online platform and can be viewed and reviewed at any time. This format plays a great role in consolidating my knowledge.
  2. Gained 70,000+ views!
  3. The most important point is that I have met many big names in various fields at Station C (the WeChat friends from Station C now account for half of the total WeChat friends, some of whom communicate with each other, answer questions, etc.). They are undoubtedly important to me. is a fortune)
  4. After participating in the CSN offline AIPcon summit and meeting many big names, I have a better understanding of Station C. Especially after listening to the speeches of Dr. Chen Wei and CEO Zhang Luyu, I feel that the road to learning is difficult and difficult. I am really looking forward to it, and I have greater expectations for the future!

 

daily

        It is no exaggeration to say that technical creation has now become a part of my life. I currently create at least two articles a day, and the learning direction is no longer just Linux, cloud native, etc., but more challenging. Developer application innovations such as front-end development and AI large model building.

        My knowledge is also constantly expanding and I am making progress every day. For novices, now is the time for greatest improvement. I will also seize this opportunity and attend the 1024 Programmer Festival held in Changsha with a better attitude. !

 


Achievement

My own Dragon Boat Festival rice dumpling code! hey-hey

import math
from turtle import *
#胡阳
# 画粽子
def rice_dumpling():
    pensize(4) # 画笔宽度
    pencolor(4, 60, 12) # 画笔颜色
    fillcolor(4, 70, 19) # 填充色
    begin_fill()
    fd(200) # 向前
    circle(15, 120) #画圆弧
    fd(200)
    circle(15, 120)
    fd(200)
    circle(15, 120)
    fd(200)
    circle(15, 60)
    fd(100)
    circle(15, 90)
    fd(173)
    circle(1, 90)
    end_fill()
    penup()
    fd(100)
    right(60)
    back(105)
    a = pos()
    pendown()
    color(60, 67, 0)
    fillcolor(85, 97, 9)
    begin_fill()
    fd(120)
    goto(a)
    penup()
    back(15)
    left(90)
    fd(20)
    right(90)
    pendown()
    fd(150)
    right(120)
    fd(24)
    right(60)
    fd(120)
    right(60)
    fd(24)
    end_fill()
    begin_fill()
    left(110)
    fd(65)
    left(100)
    fd(24)
    left(80)
    fd(50)
    end_fill()
 
# 画盘子
def plate(a, b, angle, steps, rotateAngle):
    minAngle = (2 * math.pi / 360) * angle / steps
    rotateAngle = rotateAngle / 360 * 2 * math.pi
    penup() # 起笔
    setpos(b * math.sin(rotateAngle), -b * math.cos(rotateAngle))
    pendown() # 落笔
    for i in range(steps):
        nextPoint = [a * math.sin((i + 1) * minAngle), -b * math.cos((i + 1) * minAngle)]
        nextPoint = [nextPoint[0] * math.cos(rotateAngle) - nextPoint[1] * math.sin(rotateAngle),
                     nextPoint[0] * math.sin(rotateAngle) + nextPoint[1] * math.cos(rotateAngle)]
        setpos(nextPoint)
 
# 移动
def move(x, y):
    penup() # 起笔
    setpos(x, y) # 画笔位置
    pendown() # 落笔
 
# 祝福
def word():
    write("胡阳:祝大家端午安康!", move=False, align="center", font=("Comic Sans", 20, "bold"))
 
if __name__ == '__main__':
    colormode(255) # 颜色模式
    hideturtle() # 隐藏画笔
    fillcolor(153, 229, 153)
    begin_fill()
    plate(300, 200, 360, 300, 0)
    end_fill()
    move(40, -50)
    rice_dumpling()
    move(20, 100)
    rice_dumpling()
    move(-50, -70)
    rice_dumpling()
    move(10, 150)
    word()
    done()

yearning

        In the future, Comrade Xiao Hu will continue to work hard to create in CSDN. Learning is never-ending, not to mention the Internet field. If you don't learn, you will only be out. I hope that my technical level will continue to improve and I will have greater potential for career development.

        The future is promising!

 

Guess you like

Origin blog.csdn.net/2302_77582029/article/details/132354372