(note: replace ORGANIZATION
and PROJECT
)
git clone git clone git@github.com:ORGANIZATION/PROJECT.git my-repository
# 甲方代表工作计划 | |
## 正式营业前 | |
- 配合乙方办理租赁标的经营所需证照,提供相关证件。 | |
- 乙方首年更新改造竣工验收后,接收乙方竣工结算材料,送交领导,按工作量进行核算费用是否达到6000万。 | |
## 合同执行期间 | |
### 不定期 |
/** | |
* Find the longest class names in Spring. | |
* Also find FactoryFactory classes. | |
* a goof-off project by @thom_nic | |
*/ | |
import java.util.jar.* | |
defaultTasks 'longest', 'factoryfactory' |
const pluckDeep = key => obj => key.split('.').reduce((accum, key) => accum[key], obj) | |
const compose = (...fns) => res => fns.reduce((accum, next) => next(accum), res) | |
const unfold = (f, seed) => { | |
const go = (f, seed, acc) => { | |
const res = f(seed) | |
return res ? go(f, res[1], acc.concat([res[0]])) : acc | |
} | |
return go(f, seed, []) |
{ | |
"name": "ngSweetAlert", | |
"version": "1.0.3", | |
"main": "./SweetAlert.js", | |
"authors": [ | |
"pedro@oitozero.com", | |
"gnick666@gmail.com" | |
], | |
"description": "AngularJS wrapper for SweetAlert", | |
"keywords": [ |
/* Now how many lines of code is this? */ | |
for (i = 0; i < 100; i++) | |
{ | |
printf("hello"); | |
} |