JavaScript Memory Profiling - Google Chrome - 0 views
git-flow cheatsheet - 0 views
Code Signing Guide for Teams - 2 views
一位开发者的 Linux 容器之旅-技术 ◆ 学习|Linux.中国-开源社区 - 1 views
-
容器是一个 Linux 进程,Linux 认为它只是一个运行中的进程。该进程只知道它被告知的东西。
-
容器进程也分配了它自己的 IP 地址。
-
在容器化方面,容器进程有它自己的 IP 地址。一旦给予了一个 IP 地址,该进程就是宿主网络中可识别的资源
- ...20 more annotations...
七个你无法忽视的Git使用技巧| 编程派 | Coding Python - 0 views
-
撤销最近一次代码提交
-
$ git reset --soft HEAD~1 # 对工作文件进行必要的更改 $ git add -A . $ git commit -c ORIG_HEAD
Flynn: first preview release | Hacker News - 0 views
-
Etcd and Zookeeper provide essentially the same functionality. They are both a strongly consistent key/value stores that support notifications to clients of changes. These two projects are limited to service discovery
-
So lets say you had a client application that would talk to a node application that could be on any number of servers. What you could do is hard code that list into your application and randomly select one, in order to "fake" load balancing. However every time a machine went up or down you would have to update that list.
-
What Consul provides is you just tell your app to connect to "mynodeapp.consul" and then consul will give you the proper address of one of your node apps.
- ...9 more annotations...
-
" So lets say you had a client application that would talk to a node application that could be on any number of servers. What you could do is hard code that list into your application and randomly select one, in order to "fake" load balancing. However every time a machine went up or down you would have to update that list. What Consul provides is you just tell your app to connect to "mynodeapp.consul" and then consul will give you the proper address of one of your node apps."
创建 REST API 的最佳入门教程 | 程序员的资料库 - 1 views
Automated Docker-based Rails deployments - 0 views
-
how to automate the whole deployment process with a real world
-
use Unicorn as our webserver
Active Record Basics - Ruby on Rails Guides - 0 views
-
the model - which is the layer of the system responsible for representing business data and logic.
-
Active Record facilitates the creation and use of business objects whose data requires persistent storage to a database
-
Rails will pluralize your class names to find the respective database table.
- ...33 more annotations...
Docker ARG, ENV and .env - a Complete Guide · vsupalov.com - 1 views
-
understand and use Docker build-time variables, environment variables and docker-compose templating the right way.
-
ARG is only available during the build of a Docker image (RUN etc), not after the image is created and containers are started from it (ENTRYPOINT, CMD).
-
ENV values are available to containers, but also RUN-style commands during the Docker build starting with the line where they are introduced.
- ...20 more annotations...
Overview - CircleCI - 0 views
-
every code change triggers automated tests in a clean container or VM
-
CircleCI may be configured to deploy code to various environments
-
Other cloud service deployments are easily scripted using SSH or by installing the API client of the service with your job configuration.
- ...1 more annotation...
pre-commit - 0 views
-
a multi-language package manager for pre-commit hooks
-
pre-commit is specifically designed to not require root access
-
We copied and pasted unwieldy bash scripts from project to project and had to manually change the hooks to work for different project structures.
- ...3 more annotations...
Scrum懶人包 - 10分鐘讀懂Scrum與敏捷軟體開發入門(含中文英文名詞對照) - 敏捷進化趣 Agile FunEvo - 1 views
-
Daily Scrum(每日站立會議):每天10-15分鐘不能超時
-
Sprint(衝刺):顧名思義,當團隊決定要哪些 Item 後,就著手去衝。
-
大原則是 Sprint 內的 Sprint Backlog 不改變(有原則就有例外)。
- ...6 more annotations...
A Clear, Concise & Comfy Code Review Checklist - DEV Community - 0 views
-
2 blocks doing similar things might be allowable, but 3 or more is a definitive red cross from me!
-
This would ultimately be integrated into your CI/CD pipelines running on each build/commit/deploy too; stopping any rogue commits getting in.
-
not to say that every code block that is duplicated needs to be refactored
- ...13 more annotations...
« First
‹ Previous
121 - 140 of 192
Next ›
Last »
Showing 20▼ items per page