摘要:
css编码规范 https://segmentfault.com/a/1190000002460968 常用样式测试工具 W3C CSS validator:http://jigsaw.w3.org/css-validator/ CSS Lint:http://csslint.net/ CSS Us 阅读全文
摘要:
1.接口测试工具 DHC REST Client Chrome浏览器插件 地址: https://chrome.google.com/webstore/detail/dhc-rest-client/aejoelaoggembcahagimdiliamlcdmfm 阅读全文
摘要:
azure git上传部署步骤:(首次提交)cd 至本地代码路径git initgit add .git commit –m "initial commit"git remote add azure https://jinjunyao@testnodejs.scm.chinacloudsites.c 阅读全文
摘要:
对普通的网站有一个统一的思路,就是尽量向前端优化、减少数据库操作、减少磁盘IO。 向前端优化指的是,在不影响功能和体验的情况下:能在浏览器执行的不要在服务端执行,能在缓存服务器上直接返回的不要到应用服务器,程序能直接取得的结果不要到外部取得,本机内能取得的数据不要到远程取,内存能取到的不要到磁盘取, 阅读全文
摘要:
题目描述看着就乐了,死板得只按着题意来写了ps: tequi是escape的方言版.. #include <iostream> using namespace std; int main() { int line,i,k; int ln[250]; //This is the number of l 阅读全文
摘要:
#include "stdafx.h" #include <iostream> #include <string> using namespace std; int main() { string tol,result; while(getline(cin,tol)) { unsigned i=0; 阅读全文
摘要:
-- =============================================-- Author: <Author,Name,龙鸿轩>-- Create date: <Create Date,2016-01-30>-- Description: <Description,清除数据库 阅读全文
摘要:
Eclipse 背景色: Preference -> General -> Editors -> Text Editors Background color -> 84:91:205 字体: Preference -> General -> Appearance -> Colors and Font 阅读全文
摘要:
环境变量 JAVA_HOME , PATH 都已配置完毕,并且 java -version也显示正确如下 E:\apache-tomcat-8.0.30-windows-x64\apache-tomcat-8.0.30\bin>java -versionjava version "1.8.0_71" 阅读全文