Skip to content

Instantly share code, notes, and snippets.

View appleboy's full-sized avatar
🔥
On Fire

Bo-Yi Wu appleboy

🔥
On Fire
View GitHub Profile
@appleboy
appleboy / gitea_install.md
Last active January 20, 2024 09:48
how to install gitea in Ubuntu/Debian.

Gitea

Gitea is a painless self-hosted Git service. It is similar to GitHub, Bitbucket or Gitlab. The initial development have been done on Gogs but we have forked it and named it Gitea. If you want to read more about the reasons why we have done that please read this blog post.

Run Gitea service

Download Gitea binary from download page first.

$ wget https://dl.gitea.io/gitea/1.1.0/gitea-1.1.0-linux-amd64 -O gitea
@appleboy
appleboy / backend.md
Last active October 17, 2023 14:55
[徵才] AI 前沿技術新創團隊後端工程師 (月薪 8 萬起)

團隊簡介

  • 我們是一個專注於 Technology intelligence 的早期 AI SaaS 新創公司,運用先進的 AI 大型語言模型(LLM)技術,專為企業、研究人員和政策制定者提供全球研究數據庫中最新的技術趨勢和關鍵技術搜尋。我們的產品解決了多個痛點,包括手動搜索和識別寶貴技術的耗時過程,缺乏系統性監控新興關鍵技術趨勢的方法,以及在特定時間點驗證技術成熟度的挑戰。
  • 團隊背景: 創始團隊來自全球頂級的 Tier 1 公司,具有豐富的產業經驗和專業知識。我們決定跳出舒適圈,因為我們看到了在解決當前市場痛點方面的全球巨大潛力。
  • 我們採用敏捷開發模式,以使用者故事(user story)作為開發依據,這樣可以更快速地迭代和改進我們的產品。我們的核心價值觀是以數據為基礎,驅動創新和決策。這不僅適用於我們的產品,也適用於我們的開發過程。我們相信,數據能夠帶來更精確、更具影響力的解決方案。

加入我們的團隊,您將有機會參與這一切,並在這個快速發展的市場中扮演關鍵角色。我們正在尋找像您一樣充滿熱情和優秀的人才,一起來改變世界。

能力需求

@appleboy
appleboy / golang.md
Last active August 9, 2023 14:53
Go 語言基礎課程

Go 語言開發實戰從入門到進階

課程說明

Go 語言 (又稱 Golang) 是 Google 推出新一代的強大語言,2019 年 3 月 Google 公佈了去年底統計的問卷結果,發現 65% 用 Go 來寫網站,39% 用來開發系統程式,41% 用來做 DevOps (多重選擇),可想而知 Go 語言可以拿來從底層寫到上層。高效能的 Goroutine (併發) 表現優於 Parallelism (並行),語法上簡潔又簡單,這也就是為什麼我們要來嘗試 Go 語言。

Go 語言入門

時間 課程 時數
@appleboy
appleboy / copy_content.mkd
Last active May 18, 2023 07:03
Copy all branch from another repository?

Repository url

origin: https://github.com/appleboy/git-test
remote: https://github.com/appleboy/html5-template-engine

Copy all branch from another repository

@appleboy
appleboy / lab.md
Last active May 11, 2023 02:23
開源 Gitea 推出 Actions 整合 CI/CD 流程

Gitea 1.19.0 版本新增了 Gitea Actions 的功能,這是內建於 Gitea 的 CI 系統,與 GitHub Actions 相似且相容。帶您如何用開源專案 Gitea 導入 CI/CD 流程。

課程目標

  • 認識開源 Git Hosting 平台 Gitea
  • 了解 Gitea Actions 的基本概念

課程綱要

  • 安裝 Gitea + Action Runner
@appleboy
appleboy / git.md
Last active November 12, 2022 18:30
常用的 git 指令

git 常用指令

團隊常常需要切換或合併 branch,底下是常用 git 指令

git pull

拉最新的 master 程式碼到目前 branch。不管是在任何 branch 都是執行底下指令

$ git pull --rebase origin master
@appleboy
appleboy / golang-web-benchmark.txt
Last active March 9, 2022 10:38
Golang web framework benchmark
## Gin v1.6.3
#GithubAPI Routes: 203
Ace: 48688 Bytes
Aero: 318568 Bytes
Bear: 84248 Bytes
Beego: 150936 Bytes
Bone: 100976 Bytes
Chi: 95112 Bytes
Denco: 36736 Bytes
@appleboy
appleboy / setting.json
Created February 20, 2022 00:27
vscode config
{
"workbench.iconTheme": "vscode-icons",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"workbench.colorTheme": "1337",
"window.nativeTabs": true,
"editor.fontWeight": "400", // Bold
"go.useLanguageServer": true,
"go.docsTool": "gogetdoc",
"go.autocompleteUnimportedPackages": true,

Keybase proof

I hereby claim:

  • I am appleboy on github.
  • I am appleboy (https://keybase.io/appleboy) on keybase.
  • I have a public key ASAWcKvwqTldOPPWnlob3Hqeu8pMfz4wwhvDM2Rn0B0s4Ao

To claim this, I am signing this object:

@appleboy
appleboy / laravel.md
Last active May 4, 2019 02:39
Laravel 新手學習資源