今天主要学习了:写法分类: 1.内联(行内,写在标签里面,以属性的形式表现,属性名是style) 例:<table style=" <tr><td>123</td></tr> </table> 例:<span id="biaoqian" style="color: #F40F13 ;font-siz ...
分类:
其他好文 时间:
2018-07-11 18:00:35
阅读次数:
182
Write a function to find the longest common prefix string amongst an array of strings. If there is no common prefix, return an empty string "". Exampl ...
分类:
其他好文 时间:
2018-07-10 22:07:33
阅读次数:
153
大型网站架构从来都不是一个预先定义的架构,而是一个演进式的架构。很少有一个网站从建站开始,就能够因具备大型网站的所有属性而一成不变的,从最简单的LAMP架构,再到基于IOE的大型集中式应用架构,再演变成时下的分布式应用架构,随着网站用户规模的扩大,架构也在不断演进。从实体机到虚拟机再到当前流行的Docker技术,从单机房到同城多机房再到异地多活,从LAMP到J2EE再到各种分布式中间件如服务框架、分布式消息队列、配置管理中间件、分布式数据访问层,由简至繁的艰难蜕变,也正是一个网站从小变大由弱变强的成长历程,哪里有挑战,哪里才会有变革,这正是作为技术人建功立业的时刻。
分类:
Web程序 时间:
2018-07-10 14:36:50
阅读次数:
177
Given two strings A and B of lowercase letters, return true if and only if we can swap two letters in A so that the result equals B. Example 1: Input: ...
分类:
其他好文 时间:
2018-07-10 13:42:16
阅读次数:
180
转自https://www.cnblogs.com/emanlee/archive/2012/09/13/2683912.html % 获取字符串长度 length(a) % 连接两个字符串,每个字符串最右边的空格被裁切 d=strcat(a,c) length(d) % 连接多行字符串,每行长度可 ...
分类:
其他好文 时间:
2018-07-08 18:02:10
阅读次数:
162
sudo:控制用户对系统命令的使用权限,root允许的操作。通过sudo可以提高普通用户的操作权限,不过这个权限是需要进行配置才可使用。 常用的命令展示 配置sudo的2种方式1. visodu 编辑 visudo: 编辑sudo配置文件(相当于 vi /etc/sudoers,但是不建议用,注意检... ...
分类:
其他好文 时间:
2018-07-08 16:43:29
阅读次数:
183
一、模块、包 什么是模块? 模块实质上就是一个python文件,它是用来组织代码的,意思就是说把python代码写到里面,文件名就是模块的名称,test.py test就是模块名称。 什么是包? 包,package本质就是一个文件夹,和文件夹不一样的是它有一个__init__.py文件,包是从逻辑上 ...
分类:
其他好文 时间:
2018-07-06 22:23:40
阅读次数:
192
大前端应用开发与架构设计-书籍推荐大前端应用开发与架构设计 在学习新技能(无论是工作还是生活方面),书籍总是呈现知识最完善、系统的方式之一。接下来将推荐在前端领域的一些著作,如果你想成为一名优秀的前端工程师,那就去好好拜读它们吧。 HTML5+CSS3+JavaScriptWeb设计与前端开发秘籍:... ...
分类:
其他好文 时间:
2018-07-06 01:25:18
阅读次数:
259
Example: Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input woul ...
分类:
其他好文 时间:
2018-07-05 15:51:29
阅读次数:
162
codeforces 741D Arpa’s letter marked tree and Mehrdad’s Dokhtar kosh paths 题意 题解 代码 c++ include using namespace std; define fi first define se second ...
分类:
其他好文 时间:
2018-07-04 21:03:08
阅读次数:
204