Skip to content

Commit

Permalink
🚀 Commit by: 重装小杰 <[email protected]>
Browse files Browse the repository at this point in the history
📝 Changes:
M githubpush.py
?? "beiklive/_post/\351\232\217\347\254\224/00.\344\270\252\344\272\272\345\274\200\345\217\221\350\200\205\347\232\204\346\212\211\346\213\251\357\274\232\344\270\252\344\272\272\345\267\245\344\275\234\345\256\244 vs \345\205\254\345\217\270\344\270\273\344\275\223.md"
  • Loading branch information
beiklive committed May 22, 2024
1 parent ae6a021 commit 08b10e6
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 33 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
title: 个人开发者的抉择:个人工作室 vs 公司主体 🤔
permalink: /pages/61fa815ff1644280921a058a0c044367/
date: 2024-05-22 07:44:37
categories:
- 个人开发
- 随笔
tags:
- 创业
- 个人
author:
name: beiklive
link: https://github.com/beiklive
---

总结自: https://v2ex.com/t/1042647

<!-- more -->

在个人开发的世界里,选择以何种身份开展业务,就像选择一把合适的工具一样重要。是选择灵活轻便的个人工作室,还是更正式、结构化的公司主体?这个问题没有一成不变的答案,但我们可以来探讨一下各自的利弊。

## 个人工作室:自由与风险并存 🚀

**优点**
- **自由度高**:作为个人工作室,你可以按照自己的想法来运营业务,没有太多条条框框。
- **成本可控**:相比成立公司,个人工作室的初始投入和运营成本通常更低。
- **简单直接**:管理起来简单,没有复杂的公司治理结构,适合快速反应市场变化。

**缺点**
- **无限责任**:个人资产和业务资产不分离,一旦出现问题,个人资产可能会受到牵连。
- **资质限制**:一些需要特定资质的业务,如游戏开发,可能就不适合个人工作室了。
- **形象问题**:对于一些需要正式合同和公司形象的客户来说,个人工作室可能不够正式。

## 公司主体:稳定但代价 🏢

**优点**
- **有限责任**:公司形式可以保护你的个人资产,风险更加可控。
- **资质完备**:公司可以申请更多的业务资质,适合开发需要特殊许可的产品。
- **形象加分**:公司形象更正式,有助于赢得客户和合作伙伴的信任。

**缺点**
- **成本较高**:注册公司和后续的运营成本都比较高。
- **管理复杂**:需要遵守更多的法律法规,管理起来也更复杂。
- **持续投入**:需要定期进行会计审计、税务申报等,这些都是持续的投入。

## 微信小程序:看情况而定 📱

如果你打算开发微信小程序,那么情况会有所不同。如果是工具类小程序,个人工作室也能满足要求,甚至可以开通微信支付等功能。但如果是游戏类小程序,可能就需要公司主体来支撑了。
34 changes: 1 addition & 33 deletions githubpush.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import subprocess
from openai import OpenAI

def get_git_user_info():
# 获取用户姓名和邮箱
Expand All @@ -20,37 +19,6 @@ def format_commit_message(user_name, user_email, diff_info):
return commit_message


def kimi_robot(commit_message):

client = OpenAI(
api_key = "sk-QWBokCyfC7eGQ5DGh9aHRgz18vS4mgpZsztEQhvu1zwXGRij",
base_url = "https://api.moonshot.cn/v1",
)

sys_msg = """
请你作为AI助手,根据提供的Git提交变更摘要,使用中文润色成一份详略得当的提交信息并添加恰当的emoji表情。
要求如下
1. .obsidian/ 下的所有修改请忽略不要润色
2. ??开头的所有修改请忽略不要润色
3. 不要出现可能、应该之类推测性质的词汇
4. 不要出现请注意之类的内容
"""

user_msg = commit_message

completion = client.chat.completions.create(
model = "moonshot-v1-8k",
messages = [
{"role": "system", "content": sys_msg},
{"role": "user", "content": user_msg}
],
temperature = 0.3,
)

return completion.choices[0].message.content




def main():
try:
Expand All @@ -67,7 +35,7 @@ def main():
subprocess.run(['git', 'add', '-A'])

# 提交到本地仓库
subprocess.run(['git', 'commit', '-m', kimi_robot(final_commit_message)])
subprocess.run(['git', 'commit', '-m', final_commit_message])

# 推送到远程仓库
subprocess.run(['git', 'push'])
Expand Down

0 comments on commit 08b10e6

Please sign in to comment.