NaoCoding

@om56OsAHTP6kPVpeCY8IXA

Joined on Jul 4, 2022

  • #include <math.h> #include <stdio.h> #include <stdint.h> #include <stdlib.h> #include <time.h> static int64_t height = 0,width = 0,obstacles = 0,player_alive = 1,bot_left = 3; static int64_t bot[3][2][2],player[2][2],frame = 1,bomb[2] = {0,0}; static int64_t bomblocation[4][2],bombdirection[4][2],botalive[3] = {1,1,1}; static char **map = NULL;
     Like  Bookmark
  • Author 師大資工 116 盧昱安 撰寫日期:2023/09/06 原理說明 解決方式為把locale的語言改成 en_US.UTF-8 先在 Ubuntu 裡面按 Ctrl + Shift + (F1~F5) 其中一個 就會有其中一個成功進入終端 接著打下面提供的代碼就完成了 最後記得重開一下 Ubuntu 才會運作
     Like 4 Bookmark
  • 作者 : 師大資工 116級 盧昱安 NaoCoding 的程式小天地 https://hackmd.io/@om56OsAHTP6kPVpeCY8IXA/ryriILgR2 文章撰寫日期:2023/09/03 用途 讓你可以實現在Colab上面進行動態爬蟲或是腳本。 據我說知Colab 的 Selenium 應該只能在Headless模式下進行,所以我通常會透過 Selenium 內建的 Screenshot 來看看自己爬蟲有沒有成功或是程式碼有沒有到我想要的網頁,在Debug或是被擋下來的時候也比較方面去查看狀況。
     Like 5 Bookmark