Skip to content

Instantly share code, notes, and snippets.

View clong365's full-sized avatar
🎯
Focusing

Frank Chen clong365

🎯
Focusing
View GitHub Profile
# 甲方代表工作计划
## 正式营业前
- 配合乙方办理租赁标的经营所需证照,提供相关证件。
- 乙方首年更新改造竣工验收后,接收乙方竣工结算材料,送交领导,按工作量进行核算费用是否达到6000万。
## 合同执行期间
### 不定期
@clong365
clong365 / git-maven-howto.md
Created September 21, 2021 09:28 — forked from fernandezpablo85/git-maven-howto.md
how to create your own maven repository on github

How to create a maven repository for your github project step by step

Clone your project in a separate folder

(note: replace ORGANIZATION and PROJECT)

git clone git clone git@github.com:ORGANIZATION/PROJECT.git my-repository

Cd into it

@clong365
clong365 / build.gradle
Created March 9, 2019 08:06 — forked from thom-nic/build.gradle
find the largest classnames in Spring libraries. Also find FactoryFactories
/**
* 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, [])
@clong365
clong365 / bower.json
Created December 20, 2014 07:26
Let angular-sweetalert depends on bootstrap-sweetalert, not the original sweetalert.
{
"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");
}