Vincent550102

@Vincent550102

Joined on Aug 9, 2019

  • ::: success 為了不要給錯誤準備方向,因此心得只釋出有錄取(正取/備取)的心得 ::: 榜 校系 狀態 清交學士百川資工 初試刷刷刷
     Like 5 Bookmark
  • contributed by < Vincent550102 > Reviewed by weihsinyeh Fix some implement mistake commit 66d7745 可以將具體修正寫在在 commit 的描述中。 commit cdb194b 沒有寫修改的原因。 commit 9126285 這裡參閱規格書中 free 的說明。 有一些中文字打錯字。 Reviewed by w96086123 在 q_free 中的實作註記的第一段有一個無意義的空格。
     Like  Bookmark
  • Outline 甚麼是 Docker Docker 與 VM 差在哪 Docker 基本概念 Docker Image 什麼是 docker image
     Like 3 Bookmark
  • # pygame 套件筆記 ## 基本模板 ```python import pygame as pg #pygame初始化 pg.init() #設定視窗 width, height = 640, 480 screen = pg.display.set_mode((width, height)) pg.display.set_caption("Sean's game") #建立畫布bg bg = pg.Surface(screen.get_size()) bg = bg.convert() bg.fill((255,255,255)) #白色 #顯示 screen.blit(bg, (0,0)) pg.display.update() #關閉程式的程式碼 running = True while running: for event in pg.
     Like  Bookmark