Getting Start With Docker Getting Start With Docker This blog is the personal summary of Docker’s official document named Getting Started Demo ApplicationFor the rest of this tutorial, we will be working with a simple todo li 2022-03-29 Docker #Docker
Software Prototyping (Ⅵ) - Continuous integration with Github Actions Software Prototyping (Ⅵ) - Continuous integration with Github ActionsContinuous integration (CI) servers are a great way to make sure that all changes to master are tested before deploying. CI servers 2021-11-11 Software Prototyping #CI
git 基础操作使用总结 git 基础操作使用总结Git 创建/克隆仓库git initgit init 命令用于在目录中创建新的 Git 仓库。在目录中执行 git init 就可以创建一个 Git 仓库了 mkdir test cd test/ git init # 可以在项目中看到生成的.git子目录,初始化完成 git clonegit clone 命令用于拷贝一个 Git 仓库到本地 git clon 2021-11-08 Git #Git
Software Prototyping (Ⅴ) - Cypress Usage for Beginner Software Prototyping (Ⅴ) - Cypress Usage for BeginnerRequirement and IntroductionTo follow along you need a working installation of Node.js on your system. Also, a basic understanding of a newer versi 2021-11-08 Software Prototyping #Cypress
Software Prototyping (IV) - Set up Firebase Software Prototyping (IV) - Set up FirebaseIn this tutorial, I will demonstrate how to set up firebase for creating & reading database and adding authentitation. Read from a databaseIn this step, 2021-11-03 Software Prototyping #firebase
Software Prototyping (II) - React & Firebase start code Software Prototyping (II) - React & Firebase start codeThis article shows how to create an application using React, and make it public using Firebase. The following articles of Software Prototypi 2021-11-01 Software Prototyping #firebase #React
Software Prototyping (I) - npm & firebase Software Prototyping (I) - npm & firebaseIntroduction: 本系列博客写作灵感来源于 Northwestern Universally :COMP_SCI 397/497 Rapid Software Protyping 这门课,也就是博主现在在上的课程。任课老师是Chris Riesbeck,教授在耶鲁做了15年研究过来的,人很好上课非常 2021-10-01 Software Prototyping #npm #firebase
Software Prototyping (Ⅲ) - Get to know React Software Prototyping (Ⅲ) - Get to know React 2021-10-01 Software Prototyping #React
github配置SSH免密登录 github配置SSH免密登录github官方在2021年8月14日这一天,把终端push时的身份认证从password换成了token,就会遇到这个问题:remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. 为了 2021-09-28 Git #Git
IDEA 快捷键整理 IDEA 快捷键整理常用快捷键总结 快捷键 功能介绍 Alt + Insert 代码自动生成,如生成对象的 set / get 方法,构造函数,toString() 等 (必备) Alt + Enter IntelliJ IDEA 根据光标所在问题,提供快速修复选择,光标放在的位置不同提示的结果也不同 (必备) Alt + ←/→ 按切换当前已打开的窗口中的子 2021-07-14 Java, IDEA #Java #IDEA