Skip to content
View shhider's full-sized avatar
  • Hangzhou / 杭州

Organizations

@52FeidianStudio

Block or report shhider

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
shhider/README.md

Building...

Hi there 👋

🌟 I am OPEN TO WORK now. I was a senior front-end engineer at Alibaba.

I have been focusing on Collaborative Online Document for 6+ years, having worked on Dingtalk Sheet and Dingtalk Notable at DingTalk Docs of Alibaba, and Shimo Sheet at Shimo Docs. And I have always been responsible for the core layers of these applications, especially data models, calculation engines and so on.

My Posts

My Apps/Tools

  • MDLink: A Chromium extension to quickly copy page title and url;

Pinned Loading

  1. shhider.github.io shhider.github.io Public

    我的博客。前端内容正在迁移到 Issues 🔝

    HTML 1

  2. mdlink mdlink Public

    MDLink 是一个 Chrome 扩展,可以一键复制当前页面的标题和链接,支持 Markdown 等格式

    CSS 2

  3. faster-js-cases faster-js-cases Public

    相同的逻辑的不同实现方式,性能可能天壤之别。本仓库做一些相关记录。

    JavaScript

  4. algorithm-exercises algorithm-exercises Public

    算法练习记录

    JavaScript

  5. [Git Lite Docs] #git #litedoc #commands [Git Lite Docs] #git #litedoc #commands
    1
    # 只 clone 最新的代码,不要 commits/tags...
    2
    git clone https://xxx/xxx.git --depth 1
    3
    # 这称为 shallow clone
    4
    # 如果后面又需要完整的仓库
    5
    git pull --unshallow
  6. [NPM Lite Docs] #npm #litedoc [NPM Lite Docs] #npm #litedoc
    1
    
                  
    2
    # update version
    3
    npm version patch <=> z++
    4
    npm version minor <=> y++ && z=0
    5
    npm version major <=> x+= && y=0 && z=0