- 有新项目时,建立一个新的微信群,将相应的参与者拉到微信群,项目进展和协作都在微信群中进行。
- 需求文档、反馈文档记录在石墨文档,先写文档,然后将文档链接发到微信群。
- 阶段性工作产出会以私信或者邮件的形式发送给相关人员
This file contains 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
// 打开要导出的腾讯文档 Excel 页面 | |
// Control+Shift+I,打开 Chrome/Edge 网页调试工具 | |
// Control+Shift+F,源代码搜索 this.app.workbook.worksheetManager.activeSheet | |
// 双击搜索结果,在定位到的行的左侧加上断点(加完断点后,显示一个红色的点或者蓝色的标签) | |
// 刷新页面,等断点停止后,在控制台运行:window.workbook = this.app.workbook; | |
// 按下 F8 继续代码运行。等页面中表格全部显示后,控制台运行: | |
let lines = []; | |
window.workbook.worksheetManager.sheetList.forEach((sheet) => { | |
sheet.cellDataGrid.blockMatrix.forEach((row) => { |
This file contains 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
q |
This file contains 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 | |
/** | |
* Created by IntelliJ IDEA. | |
* User: bill | |
* Date: 2018/11/06 | |
* Time: 13:24 | |
*/ | |
use InvalidArgumentException; |
This file contains 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
#include <cstring> | |
#include <cstdlib> | |
#include <iostream> | |
using namespace std; | |
inline int rightshiftindex(int index,int offset, int len){ | |
if(index+offset>=len){ | |
return (index+offset)-len; | |
} |
This file contains 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
#!/bin/bash | |
site_available_dir=/etc/apache2/sites-available/ | |
site_enabled_dir=/etc/apache2/sites-enabled/ | |
[email protected] | |
action=() | |
name= | |
port= | |
usage (){ | |
echo "$0 -C|-R -N site_name -P port_number -D document_root" |
This file contains 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
/** | |
This snippet is a c++ version of the c# code from http://www.codeproject.com/Articles/13525/Fast-memory-efficient-Levenshtein-algorithm | |
*/ | |
#include <iostream> | |
#include <string> | |
#include <cmath> | |
using namespace std; | |
double LD(string sRow,string sCol){ |