- D
- D
- B
- A
- B
- B
- D
- C
- B
- A
1)团队两名成员不能协作,也不能一起参加团队会议,这影响了团队和项目进展。项目经理或主管应该怎么做?
- A. 为每名资源分配不同的时间进度计划
- B. 设法寻找替代资源,规避协作交集
- C. 将该问题上报给上级职能经理
- D. 使用缓和/包容冲突解决方法
2)有效的沟通对于项⽬的成功⾄关重要。范围变更、条件限制、临时假设、功能要求变化、重叠的⻆⾊和责任(KPI),以及其它许多因素都对沟通提出了挑战。沟通上的障碍很可能导致:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "h5-t", | |
"version": "0.1.0", | |
"description": "a clam project", | |
"author": { | |
"name": "", | |
"email": "" | |
}, | |
"repository": { | |
"type": "git", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function parse_git_branch { | |
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/' | |
} | |
export PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]: \[\033[01;31m\]\w\[\033[00m\] \[\033[0;32m\]$(parse_git_branch)\[\033[00m\]> ' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 遍历当前目录的文件 | |
function walk(uri, files) { | |
var stat = fs.lstatSync(uri); | |
if (stat.isFile() && !/(build|node_modules|demo|doc|\.git|\.+)[\\|\/]/i.test(uri) && !/grunt.+/i.test(uri)) { | |
switch (path.extname(uri)) { | |
case '.css': | |
files.css.push(uri); | |
break; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var getScript = function(url,cb){ | |
var script = document.createElement("script") | |
script.type = "text/javascript"; | |
if (script.readyState){ //IE | |
script.onreadystatechange = function(){ | |
if(script.readyState == "loaded" || | |
script.readyState == "complete"){ | |
script.onreadystatechange = null; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 'use strict'; | |
var util = require('util'); | |
var fs = require('fs'); | |
var path = require('path'); | |
var pwd = process.cwd(); | |
var reg = /<!--#([a-z]+)(\s([a-z]+)="(.+?)")* -->/; | |
var p = '/dev/gst/src/header-nav/index.html'; | |
var CTS = {}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// U2A('博时货'); | |
// return '\u234A\u3BaD\u42EA\u1BC3' | |
var U2A = function(s){ | |
var r = s.replace(/&#(\d+);/ig,'\\u{$1}'); | |
var A = r.match(/\d+/ig); | |
for(var i = 0;i<A.length;i++){ | |
r = r.replace('\\u{'+A[i].toString()+'}',String.fromCharCode(A[i])); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
* delay.php?f=file.js&t=100 | |
* | |
* 延时100毫秒加载file.js | |
* | |
* */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* @author bachi@taobao.com | |
* @info https://gist.github.com/2485984 | |
* | |
* @useage | |
* url/combine.php?file1.js,file2.js?t={$date} | |
* url/combine.php?file1.js&file2.js&t=100 | |
* @more |
NewerOlder