Skip to content
View zhouqimark's full-sized avatar
🐶
No silver bullet
🐶
No silver bullet

Organizations

@Programming-With-Love
Block or Report

Block or report zhouqimark

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
zhouqimark/README.md

Hi there

zhouqi's unneutral stats

Pinned Loading

  1. z-perio-assis z-perio-assis Public

    生理期助手

    Kotlin 1

  2. Algorithm_Interview_Notes-Chinese Algorithm_Interview_Notes-Chinese Public

    Forked from vivienzou1/DL-Notes-for-Interview

    2018/2019/校招/春招/秋招/算法/机器学习(Machine Learning)/深度学习(Deep Learning)/自然语言处理(NLP)/C/C++/Python/面试笔记

    Python

  3. git命令大全 git命令大全
    1
    git init                                                  # 初始化本地git仓库(创建新仓库)
    2
    git config --global user.name "xxx"                       # 配置用户名
    3
    git config --global user.email "xxx@xxx.com"              # 配置邮件
    4
    git config --global color.ui true                         # git status等命令自动着色
    5
    git config --global color.status auto