码迷,mamicode.com
首页 >  
搜索关键字:use    ( 28727个结果
安装Android-sdk需要的配置
下载打开sdk管理器,在菜单tool下面的option中。http proxy server填上 mirrors.neusoft.edu.cn http proxy port填上80并且勾选use download caheothers下面勾选第一个强制实行https请求。在磁盘C的目录下更改hos ...
分类:移动开发   时间:2016-05-02 11:37:08    阅读次数:202
[CareerCup] 18.1 Add Two Numbers 两数相加
18.1 Write a function that adds two numbers. You should not use + or any arithmetic operators. 这道题让我们实现两数相加,但是不能用加号或者其他什么数学运算符号,那么我们只能回归计算机运算的本质,位操作Bi ...
分类:其他好文   时间:2016-05-02 10:26:30    阅读次数:146
[python] xlrd
0.xlrd introduce Library for developers to extract data from Microsoft Excel (tm) spreadsheet files 1. install xlrd 2. use xlrd in python 1 import xlr ...
分类:编程语言   时间:2016-05-02 07:08:53    阅读次数:176
[AngularJS] Design Pattern: Simple Mediator
We're going to use rootScope emit here to send out events and then we're going to listen for them in the run block. We're going to use rootScope on do ...
分类:Web程序   时间:2016-05-02 07:07:35    阅读次数:156
how to use panda
0.Introduce pandas.read_csv(filepath_or_buffer,sep=', ', dialect=None, compression='infer', doublequote=True, escapechar=None, quotechar='"', quoting= ...
分类:其他好文   时间:2016-05-02 07:06:26    阅读次数:309
[Javascript] Add a browser build to an npm module
In this lesson, we're going to use webpack to create a UMD (Universal Module Definition) build of our module so users can consume it in a browser. Ins ...
分类:编程语言   时间:2016-05-02 00:37:59    阅读次数:243
MongoDB基础
一、基础语法 show dbs; 显示所有数据的列表db; 显示当前数据库对象或集合 use local; 如果数据库不存在,则创建数据库;否则切换到指定数据库。db.runoob.insert({"name":"ccc"}) db.dropDatabase();删除当前所在的数据库 db.col. ...
分类:数据库   时间:2016-05-01 19:15:04    阅读次数:157
nodejs 核心模块crypto
crypto用于加密解密 'use strict'var crypto=require('crypto'); var data={age:18}var key='dt';//定义一个钥匙var plaintext = JSON.stringify(data);var cryped = '';// a ...
分类:Web程序   时间:2016-05-01 14:56:35    阅读次数:439
SQL Server- 存储过程
-- ylb:存储过程创建与操作 use pubs go --一、无参存储过程 --1,创建存储过程 create procedure PTitles as select * from titles go --2,执行存储过程 execute PTitles go --3,移除存储过程 --drop ...
分类:数据库   时间:2016-05-01 12:19:32    阅读次数:253
Topological Sort
In what kind of situation will we need to use topological sort? Precedence(优先级) scheduling, say given a set of tasks to be completed with precedence c ...
分类:其他好文   时间:2016-05-01 12:12:17    阅读次数:117
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!