Liunx : use port [ 443] to access https && ssh ...
分类:
系统相关 时间:
2016-05-31 12:07:22
阅读次数:
318
摘要: 谷歌是全球最大的互联网公司,甲骨文是全球最大的老牌数据库软件企业,两家的灵魂人物施密特和埃里森都是有故事的硅谷风云人物。这是一场重量级的较量,以谷歌单方面胜利作为结局,甲骨文定不会善罢甘休。 不久前,美国旧金山联邦法庭陪审团做出裁决,认定安卓操作系统合理利用(fair use)JavaAPI ...
分类:
编程语言 时间:
2016-05-31 10:10:25
阅读次数:
203
1.在https://github.com new repository 2.在eclipse中new project 比如:Test项目 3.右击"Test"->Team->share project... ->select a repository type:Git 勾选 Use or crea ...
分类:
系统相关 时间:
2016-05-31 00:51:41
阅读次数:
248
一.控制台操作mongodb 1.安装完后添加环境变量。 2.在某个根目录下新建data文件夹data下新建db文件夹cd到c:/data/db. 3.启动mongodb 打印以下消息说明连接成功 5.一些常用命令 (1)show dbs 查看所有数据库 (2)db 查看当前数据库 (3)use 数 ...
分类:
数据库 时间:
2016-05-30 23:07:13
阅读次数:
176
安装Mysql-python的时候,不能再注册表中识别出来python2.7 方法:新建一个register.py 文件,把以下代码贴进去,保存 ## script to register Python 2.0 or later for use with win32all# and other ex ...
分类:
编程语言 时间:
2016-05-30 22:55:11
阅读次数:
184
USE 数据库名BULK Insert dbo.表名From 'c:\CSV文件名.csv' WITH ( FIELDTERMINATOR = ',', ROWTERMINATOR = '\n' ) ...
分类:
数据库 时间:
2016-05-30 17:13:51
阅读次数:
239
题目链接:https://leetcode.com/problems/verify-preorder-serialization-of-a-binary-tree/
题目:
One way to serialize a binary tree is to use pre-order traversal. When we encounter a non-null node, we rec...
分类:
其他好文 时间:
2016-05-30 15:14:14
阅读次数:
138
MySQL常用指令,java,php程序员,数据库工程师必备。程序员小冰常用资料整理MySQL常用指令(备查)
最常用的显示命令:
1、显示数据库列表。show databases;2、显示库中的数据表:use mysql;show tables;3、显示数据表的结构:describe 表名;4、建库:create database 库名;5、建表:use 库名;create table 表名...
分类:
数据库 时间:
2016-05-30 14:51:54
阅读次数:
239
##用pandas分析电影数据Lift is short, use Python.用Python做数据分析,pandas是Python数据分析的重要包,其他重要的包:numpy、matplotlib .安装pandas(Linux, Mac, Windows皆同):pip install pandas电影数据来源:http://grouplens.org/datasets/movielens/
下载...
分类:
其他好文 时间:
2016-05-30 14:49:35
阅读次数:
546
1. 在main函数前面添加: int fputc(int ch,FILE *f){ uint8_t temp[1]={ch}; HAL_UART_Transmit(&huart1,temp,1,2); return(ch);} 2. USE Micro Lib ...
分类:
其他好文 时间:
2016-05-30 10:13:58
阅读次数:
221