原文:http://javascriptissexy.com/ 翻译:http://blog.csdn.net/luoweifu/article/details/41466537 【建议阅读原文,以下为个人学习笔记,有部分知识点补充,不喜勿喷】 在JavaScrip中,function是内置的类对象 ...
分类:
编程语言 时间:
2017-10-19 12:47:18
阅读次数:
132
在过去的几年中,CSS已经成为一大部分开发者和设计者的最爱,因为它提供了一系列功能和特性。每个月都有无数个围绕CSS的工具被开发者发布以简化WEB开发。像CSS 库,框架,应用这样的工具能够为开发者做很多事,而且可以使开发者创造出创新立异的WEB应用。 在这篇文件章中我们找到了一系列对开发者有用的C ...
分类:
Web程序 时间:
2017-10-19 12:28:15
阅读次数:
171
本文地址:http://blog.csdn.net/mba16c35/article/details/54178067 思路主要来源于这篇文章:http://blog.httrack.com/blog/2013/08/23/catching-posix-signals-on-android/ 这篇文 ...
分类:
移动开发 时间:
2017-10-18 19:55:59
阅读次数:
726
Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive. Example: Note: 给定一个int数组,返回i和j之间的元素总和,注意时间复杂度 思路 ...
分类:
其他好文 时间:
2017-10-18 17:34:39
阅读次数:
187
26. Remove Duplicates from Sorted Array Given a sorted array, remove the duplicates in place such that each element appear only once and return the ne ...
分类:
其他好文 时间:
2017-10-18 13:15:39
阅读次数:
165
原题链接在这里:https://leetcode.com/problems/count-binary-substrings/description/ 题目: Give a string s, count the number of non-empty (contiguous) substrings ...
分类:
其他好文 时间:
2017-10-18 10:14:49
阅读次数:
163
一、输出十二星座 二、明文加密 三、九九乘法表 四、验证字符长度,填充字符 五、实例: 下载一首英文的歌词或文章,统计单词出现的次数,将所有,.?!替换为空格,将所有大写转换为小写。 六、用webbrowser,uweb.open_new_tab('url')打开校园新闻列表 七、格式化输出:中华人 ...
分类:
其他好文 时间:
2017-10-18 10:08:03
阅读次数:
174
配置网络以及远程连接虚拟机 cat /proc/version Linux version 3.10.0-693.2.2.el7.x86_64 (builder@kbuilder.dev.centos.org) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-1 ...
分类:
其他好文 时间:
2017-10-18 10:06:24
阅读次数:
374
个人说明:本文内容都是从为知笔记上复制过来的,样式难免走样,以后再修改吧。另外,本文可以看作官方文档的选择性的翻译(大部分),以及个人使用经验及问题。 其他说明:如果对Spring Boot没有概念,请先移步上一篇文章 Spring Boot 学习。本篇原本是为了深入了解下Spring Boot而出 ...
分类:
编程语言 时间:
2017-10-17 15:38:13
阅读次数:
320
1.from flask.ext.script import Manager 会报错; 改为 from flask_script import Manager 可解决(之后的其他插件也可以这样解决) 2.第32页,在页面上显示时间的按照书操作后并未显示; 原因:是因为index.html上没引用ba ...
分类:
编程语言 时间:
2017-10-17 15:02:54
阅读次数:
227