码迷,mamicode.com
首页 > 2015年08月17日 > 全部分享
学习使用MEAN开发RESTful WEB api,实现数据的CRUD
MEANM=MongoDB非关系型数据库E=ExpressNode中的web开发模块A=Angular.jsGoogle的javascript开发框架N=Node.jsjavascript的服务端运行环境下面通过youtube上的一个教程来学习使用MEAN来做一个list的CRUD。1、安装node...
分类:Windows程序   时间:2015-08-17 18:49:21    阅读次数:1011
Unix IPC之Posix信号量实现生产者消费者
采用多生产者,多消费者模型。1234567891011121314151617/** * 生产者 */P(nempty);P(mutex);// 写入一个空闲位置V(mutex);V(nstored); /** * 消费者 */P(nstored);P(mutex):// 清空一个非空闲位置V(mu...
分类:其他好文   时间:2015-08-17 18:48:12    阅读次数:211
css文字两端对齐
css文字两端对齐text-align:Justify(火狐);text-justify:inter-ideograph(IE)text-justify(IE)基本语法text-justify : auto |distribute | distribute-all-lines | distribut...
分类:Web程序   时间:2015-08-17 18:48:41    阅读次数:133
根据已有MySQL数据库库反向生成实体类
最近在维护一个网站,打算进行一些改进,使用Entity Framework来进行数据库操作。网站的数据库已经有了,但是又一百多张表,手动去写实体类有些麻烦,打算用一些现成工具来做。首先可以考虑用EntityFramework Reverse POCO Code First Generator其次也可...
分类:数据库   时间:2015-08-17 18:48:11    阅读次数:379
node.js中模块报错【window is not defined】的解决方法
(function(window) {/* Keep source code the same */// })(typeof window == "undefined" ? global : window);// or })(this);
分类:Windows程序   时间:2015-08-17 18:46:03    阅读次数:648
【LeetCode】Delete Node in a Linked List
题目:Write a function to delete a node (except the tail) in a singly linked list, given only access to that node.Supposed the linked list is1 -> 2 -> 3 ...
分类:其他好文   时间:2015-08-17 18:48:03    阅读次数:103
STL - 常用关联容器代码 - set & multiset
代码如下:/* 5. set & multiset */ set cities{ "Braunschweig", "Hanover", "Frankfurt", "New York", "Chicago", "Toronto", "Paris",...
分类:其他好文   时间:2015-08-17 18:48:05    阅读次数:119
Knockout.js hasFocus
Knockout.js hasFocus
分类:Web程序   时间:2015-08-17 18:47:34    阅读次数:122
POJ-2415 Hike on a Graph (BFS)
Description"Hike on a Graph" is a game that is played on a board on which an undirected graph is drawn. The graph is complete and has all loops, i.e. ...
分类:其他好文   时间:2015-08-17 18:47:04    阅读次数:105
javascript的面向对象编程
面象对象编程技术的核心理念:封装、继承、多态;在一些主流的高级编程语言中,比如:C#,VB.NET,JAVA,PHP等都是很容易实现的,而如果要在javascript中实现面象对象编程,可就不那么直接和容易了,因为javascript并不是面向对象的语言,所以我们只能通过javascript的一些特...
分类:编程语言   时间:2015-08-17 18:45:38    阅读次数:164
android中使用gdbserver调试c程序
先废话两句,这篇文章可能有所缺陷,因为我并没有条件去测试动态库的调试。(主要是因为是自己的手机不想乱放各种so)所以我只能说有空的话我会去进行下测试,这里就先这样了。1、测试代码gdb-test.c#include int main() { printf("this is gdb test !!!\...
分类:移动开发   时间:2015-08-17 18:44:49    阅读次数:141
Hbase shell使用
Hbase shell详情HBase 为用户提供了一个非常方便的使用方式, 我们称之为“HBase Shell”。HBase Shell 提供了大多数的 HBase 命令, 通过 HBase Shell 用户可以方便地创建、删除及修改表, 还可以向表中添加数据、列出表中的相关信息等。备注:写错 HB...
分类:系统相关   时间:2015-08-17 18:45:47    阅读次数:146
PAT 1085. Perfect Sequence (25)
1085. Perfect Sequence (25)Given a sequence of positive integers and another positive integer p. The sequence is said to be a "perfect sequence" if M ...
分类:其他好文   时间:2015-08-17 18:46:10    阅读次数:91
明明的随机数
1075: 【明明的随机数】Time Limit: 1 SecMemory Limit: 128 MBDescription明明想在学校中请一些同学一起做一项问卷调查,为了实验的客观性,他先用 计算机生成了N个1到1000之间的随机整数(N≤100),对于其中重复的数字,只保留一个,把其余相同的数去...
分类:其他好文   时间:2015-08-17 18:45:00    阅读次数:110
使用GDB 单步调试Android本地代码
转载:http://www.360doc.com/content/12/1228/11/9462341_256747689.shtml下面就以GDB调试Rild为例,来说明如何调试Native进程。说明#cmd 表明该命令运行于android设备控制台上$cmd 表明该命令运行于Linux PC控制...
分类:移动开发   时间:2015-08-17 18:46:41    阅读次数:129
[LeetCode]Add Digits
Add DigitsGiven a non-negative integernum, repeatedly add all its digits until the result has only one digit.For example:Givennum = 38, the process is...
分类:其他好文   时间:2015-08-17 18:44:52    阅读次数:130
Emmet的高级功能与使用技巧
前端开发工具Emmet的介绍,Emmet快速编写HTML代码和Emmet快速编写CSS样式分别介绍了Emmet的用途,编写HTML代码和CSS样式,今天再来介绍下Emmet的一些高级功能和使用技巧。编写好HTML和CSS代码时,我们也需要修改或添加一些内容,Emmet提供了很多非常独特的工具,可以大...
分类:其他好文   时间:2015-08-17 18:43:42    阅读次数:119
2350条   上一页 1 ... 51 52 53 54 55 56 57 ... 139 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!