E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
SEA
seajs的使用1.0
1、引入seajs:
sea.js">2、程序入口是一个use方法,2个参数,一个是主js引用,一个是回调方法:seajs.use(".
1年经验3年用的老菜
·
2015-11-11 22:00
构造 Codeforces Round #302 (Div. 2) B
Sea
and Islands
题目传送门 1 /* 2 题意:在n^n的海洋里是否有k块陆地 3 构造算法:按奇偶性来判断,k小于等于所有点数的一半,交叉输出L/S 4 输出完k个L后,之后全部输出S:) 5 5 10 的例子可以是这样的: 6 LSLSL 7 SLSLS 8 LSLSL 9 SLSLS 10 SSSSS 11 */ 12 #include <cst
·
2015-11-11 18:57
codeforces
学习
Sea
.js 笔记(三)
==require书写约定==必须名为require.define(function(require){ //正确写法... ...});不用修改,不要重命名require(可能构造工具会查找名字require?) 后续文档说是通过正则匹配require的方式来得到依赖信息. 因此必须遵守书写约定,否则无法获得依赖项[].require的参数值必须是直接量: require('modul
刘军兴
·
2015-11-11 16:00
nodejs4-模块和包
模块和包: 定义模块的方法跟
sea
.js类似,暴露一个接口也是使用exports.
·
2015-11-11 15:46
nodejs
记录:
sea
.js和require.js配置 与 性能对比
最近有点忙,很久无写博客,记录一下之前的配置require.js和
sea
.js的配置.
·
2015-11-11 15:42
require
putty实现自动登录的方法(ssh和ssh2)
ssh-keygen -t rsa 提示Enter file in which to save the key (/root/.ssh/id_rsa): 输入/root/.ssh/
sea
_rsa
·
2015-11-11 15:37
putty
sea
.js,spm学习
安装spm 下载
sea
.js 运行spm npm install
[email protected]
-g npm install spm-build -g 下载
sea
.js git clone
·
2015-11-11 14:37
js
Finding Nemo(bfs)
One day he went into the deep
sea
all by
·
2015-11-11 12:19
find
Seajs教程
API 快速参考 该页面列举了
Sea
.js 的常用 API。只要掌握这些用法,就可以娴熟地进行模块化开发。
·
2015-11-11 12:15
seajs
Paul Graham:未来的互联网创业(下)zz
The way to get really big returns is to do things that seem crazy, like starting a new
sea
·
2015-11-11 11:23
互联网
学习
Sea
.js 笔记(二)
写模块:define(function(require,exports,module){ 使用require(...)引入模块. 通过exports.something=...对外提供接口 或通过module.exports=...提供整个接口?});构建部署:需要使用spm或Grunt工具.spm标准构建工具(已经发布版本3):http://spmjs.io/项目标准目录结构: dist
刘军兴
·
2015-11-11 11:00
HDU 3665 Seaside(Dijkstra)
include <string.h> 3 #define N 1000000 4 int main() 5 { 6 int p[20][20],low[13],o[13],
sea
·
2015-11-11 10:55
dijkstra
[leetcode]Search in Rotated Sorted Array II
的时候会退化为O(n) public class Solution { public boolean search(int[] A, int target) { return
sea
·
2015-11-11 09:00
LeetCode
学习
Sea
.js 笔记(一)
为学习某开源项目,里面使用了
sea
.js,为此而学习,网址是:http://seajs.org/docs/#docs模块化的价值(解决什么问题):命名冲突问题.命名空间可缓解冲突,但太长难记忆.如何优雅地解决
刘军兴
·
2015-11-11 09:00
☀【SeaJS】
SeaJS - A Module Loader for the Webhttp://seajs.org/ Hello
Sea
.jshttps://github.com/island205
·
2015-11-11 09:15
seajs
seajs第二节,seajs各模块依赖关系
meta charset="utf-8"> <title>seaJS学习第二节</title> //加上 seajsnode 值,可以让
sea
.js
·
2015-11-11 08:09
seajs
Sea
.Js的运行原理
1.CMD(Common Module Definition)规范
Sea
.js采用了和Node相似的CMD规范,使用require、exports和module来组织模块。
·
2015-11-11 06:22
js
Sea
.Js使用入门
1.
Sea
.Js是什么 seajs相对于RequireJs与LabJS就比较年轻,2010年玉伯发起了这个开源项目,SeaJS遵循CMD规范,与RequireJS类似,同样做为模块加载器。
·
2015-11-11 06:21
js
四级高分作文词汇&模板
favorable,desirable,pleasurable2.bad=unfavorable,undesirable,unpleasurable,(be less impressive)3.many=a
sea
·
2015-11-11 05:03
模板
poj3525Most Distant Point from the
Sea
(半平面交)
链接 求凸多边形内一点距离边最远。 做法:二分+半平面交判定。 二分距离,每次让每条边向内推进d,用半平面交判定一下是否有核。 本想自己写一个向内推进。。仔细一看发现自己的平面交模板上自带。。 1 #include <iostream> 2 #include<cstdio> 3 #include<cstring> 4 #i
·
2015-11-11 05:07
ant
POJ 3525 Most Distant Point from the
Sea
(半平面交向内推进+二分半径)
题目链接 题意 : 给你一个多边形,问你里边能够盛的下的最大的圆的半径是多少。 思路 :先二分半径r,半平面交向内推进r。模板题 1 #include <stdio.h> 2 #include <string.h> 3 #include <iostream> 4 #include <math.h> 5 con
·
2015-11-11 04:28
ant
分享Silverlight/WPF/Windows Phone一周学习导读(11月14日-11月20日)
Silverlight App.xaml用途 Jason.Zeng Slverlight 自定义资源整理(待后续补充) niky Silverlight5.0现重大缺陷
sea
2988
·
2015-11-11 03:02
windows phone
js获取get方式提交的参数返回json格式数据
{ 7 var args = {}; 8 var match = null; 9 var search = decodeURIComponent(location.
sea
·
2015-11-11 02:45
返回JSON
Note: 常见.NET技术面试题
new、virtual、abstract、override、
sea
·
2015-11-11 01:48
.net
hdu 3665 Seaside floyd+超级汇点
pid=3665 题意分析:以0为起点,求到
Sea
的最短路径。 所以可以N为超级汇点,使用floyd求0到N的最短路径。
·
2015-11-11 00:37
floyd
POJ 3525 Most Distant Point from the
Sea
(半平面交)
题目链接:http://poj.org/problem?id=3525 题意:多边形内一个圆。该圆的最大半径是多少? 思路:二分半径r。将每条边向内移动r的距离。若得到的还是多边形则说明r可以。 int DB(double x) { if(x>1e-10) return 1; if(x<-1e-10) return -1; return
·
2015-11-09 14:09
ant
组合数学第一发 hdu 2451 Simple Addition Expression
Addition Expression Problem Description A luxury yacht with 100 passengers on board is sailing on the
sea
·
2015-11-09 13:02
express
Nigel Parker 40分钟视频演示了微软的 31 项技术(附下载)
Sea
Dragon (TED Video) (01:31) 3. Phot
·
2015-11-09 13:18
下载
CF
Sea
and Islands
Sea
and Islands time limit per test 1 second memory limit per test 256 megabytes input standard
·
2015-11-08 16:46
c
Radar Installation
Land is in one side of coasting,
sea
in the other.
·
2015-11-08 15:49
Install
codeforces-544B-
Sea
and Islands【构造】
codeforces-544B-SeaandIslandstimelimitpertest1secondmemorylimitpertest256megabytes Amapofsomeobjectisarectangularfieldconsistingofnrowsandncolumns.Eachcellisinitiallyoccupiedbytheseabutyoucancoversome
loy_184548
·
2015-11-08 12:00
544B
location.search在客户端获取Url参数的方法
cl=3 如: location.search.substr(1).split("&")[0]可以返回第一个参数:wd=baidu如: location.
sea
·
2015-11-08 10:32
location
SEA
教程
Sina App Engine(SAE)教程(11)- Yaf使用 Sina App Engine(SAE)入门教程(10)- Cron(定时任务)使用 Sina App Engine(SAE)入门教程(9)- SaeMail(邮件)使用 Sina App Engine(SAE)入门教程(8)- SaeFetchurl使用 
·
2015-11-08 09:27
教程
Nigel Parker 40分钟视频演示了微软的 31 项技术(附下载)
Sea
Dragon (TED Video) (01:31) 3. Photosy
·
2015-11-07 13:12
下载
程序员面试什么最重要?
发布者:
sea
_bug | 发布时间: 2014-1-8 00:19| 评论数: 4 程序员面试一直是社区乐于讨论的热门话题。
·
2015-11-07 11:08
程序员
Radar Installation
Land is in one side of coasting,
sea
in the other.
·
2015-11-07 11:25
Install
Oracle B-Tree Index 原理
satisfy all needs, but the self-balancing B-tree index comes closest to optimizing the performance of
sea
·
2015-11-07 11:45
oracle
.SharePoint 2010配置PDF文件全文检索
ftpID=4025 二、修改注册表2.1、修改位置一: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office Server\12.0\
Sea
·
2015-11-06 07:52
SharePoint
sonar使用Oracle数据库时报org.elasticsearch.transport.BindTransportException: Failed to bind to [9001]的错误
错误如下
sea
[o.s.p.ProcessEntryPoint]Failtostartsearchorg.elasticsearch.transport.BindTranspo
舟行于无涯之海
·
2015-11-04 14:38
Oracle B-Tree Index 原理
satisfy all needs, but the self-balancing B-tree index comes closest to optimizing the performance of
sea
·
2015-11-03 22:04
oracle
POJ1328——贪心——Radar Installation
Land is in one side of coasting,
sea
in the other.
·
2015-11-03 22:11
Install
[美国VPS]Ramnode测试
VPS提供商体验非常好,直接提供各个节点的测试纽约NewYorkCity- lg.nyc.ramnode.com亚特兰大Atlanta- lg.atl.ramnode.com西雅图Seattle- lg.
sea
.ramnode.com
丑矬穷
·
2015-11-03 11:00
被迫使用了坑爹
sea
.js后如何改造jquery插件
//jquery-plugin-abcdefine(function(require,exports,module){var$=require('$');//插件的代码$.fn.abc=function(){}; }); 包括bootstrap.js在内,都需要这样的包裹详情见 https://github.com/seajs/seajs/issues/971
lilugirl
·
2015-11-02 21:00
java搜索引擎: lucene学习笔记 1
top level的项目, 已经不在jakarta下面, 同时也有了python,perl,c++,.net, Ruby(进行中)多个版本 Lucene 主要的两个任务:indexing and
sea
·
2015-11-02 17:25
Lucene
URAL1586——DP——Threeprime Numbers
Description Rest at the
sea
is wonderful!
·
2015-11-02 16:00
number
Codeforces Round #302(Div. 2)——B——
Sea
and Islands
Each cell is initially occupied by the
sea
but you can cover some some cells of the map with sand so
·
2015-11-02 16:58
codeforces
Python post、get百度
""" url = "http://www.baidu.com/s"
sea
·
2015-11-02 16:03
python
出埃及记:摩西劈开红海
And Moses stretched out his had over the
sea
; and the LORD caused the
sea
to go back by a strong east
·
2015-11-02 15:56
LA 3890 (半平面交) Most Distant Point from the
Sea
题意: 给出一个凸n边形,求多边形内部一点使得该点到边的最小距离最大。 分析: 最小值最大可以用二分。 多边形每条边的左边是一个半平面,将这n个半平面向左移动距离x,则将这个凸多边形缩小了。如果这n个半平面交非空,则存在这样距离为x的点,反之则不存在。 半平面交的代码还没有完全理解。 和凸包类似,先对这些半平面进行极角排序。每次新加入的平面可能让队尾的平面变得“无用”,
·
2015-11-02 15:10
ant
Oracle B-Tree Index 原理
satisfy all needs, but the self-balancing B-tree index comes closest to optimizing the performance of
sea
·
2015-11-02 14:55
oracle
上一页
22
23
24
25
26
27
28
29
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他