Tekkaman

导航

 
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 42 下一页

2017年1月31日

摘要: 【MySQL Keynote】 1、Keywords may be entered in any lettercase. The following queries are equivalent: 2、Here is another query. It demonstrates that you c 阅读全文
posted @ 2017-01-31 00:08 Tekkaman 阅读(428) 评论(0) 推荐(0) 编辑
 

2017年1月30日

摘要: 【express 中间件】 中间件(Middleware) 是一个函数,它可以访问请求对象(request object (req)), 响应对象(response object (res)), 和 web 应用中处于请求-响应循环流程中的中间件,一般被命名为 next 的变量。 1、应用级中间件 阅读全文
posted @ 2017-01-30 15:55 Tekkaman 阅读(254) 评论(0) 推荐(0) 编辑
 
摘要: 【app.route()】 可使用 app.route() 创建路由路径的链式路由句柄。由于路径在一个地方指定,这样做有助于创建模块化的路由,而且减少了代码冗余和拼写错误。请参考 Router() 文档 了解更多有关路由的信息。 下面这个示例程序使用 app.route() 定义了链式路由句柄。 参 阅读全文
posted @ 2017-01-30 13:03 Tekkaman 阅读(838) 评论(0) 推荐(0) 编辑
 

2017年1月29日

摘要: 【app.use】 app.use([path,] function [, function...]) Mounting a middleware at a path will cause the middleware function to be executed whenever the bas 阅读全文
posted @ 2017-01-29 23:47 Tekkaman 阅读(217) 评论(0) 推荐(0) 编辑
 
摘要: 【利用 Express 托管静态文件】 通过 Express 内置的 express.static 可以方便地托管静态文件,例如图片、CSS、JavaScript 文件等。 将静态资源文件所在的目录作为参数传递给 express.static 中间件就可以提供静态资源文件的访问了。例如,假设在 pu 阅读全文
posted @ 2017-01-29 19:39 Tekkaman 阅读(265) 评论(0) 推荐(0) 编辑
 
摘要: 【==与 】 ==, 两边值类型不同的时候,要先进行类型转换,再比较。 ,不做类型转换,类型不同的一定不等。 参考:http://relucent.iteye.com/blog/835521 阅读全文
posted @ 2017-01-29 19:30 Tekkaman 阅读(134) 评论(0) 推荐(0) 编辑
 
摘要: 【Debug模块】 一个用于控制日志输出的模块。 参考: 1、http://www.jianshu.com/p/6b9833748f36 2、https://www.npmjs.com/package/debug 阅读全文
posted @ 2017-01-29 15:17 Tekkaman 阅读(354) 评论(0) 推荐(0) 编辑
 

2017年1月28日

摘要: 【Node KeyNote】 1、实际上,.node文件在windows下它是一个.dll文件,在*nix下则是一个.so文件。 2、默认变量 function(exports, require, module, __filename, __dirname){ } 3、通过dlopen()方法加载. 阅读全文
posted @ 2017-01-28 21:56 Tekkaman 阅读(207) 评论(0) 推荐(0) 编辑
 
摘要: 【javascript中所有函数的参数都是按值传递的】 参考:http://www.jb51.net/article/89297.htm 阅读全文
posted @ 2017-01-28 20:48 Tekkaman 阅读(219) 评论(0) 推荐(0) 编辑
 

2017年1月26日

摘要: 【LayoutInflater】 参考:http://blog.csdn.net/guolin_blog/article/details/12921889 阅读全文
posted @ 2017-01-26 22:32 Tekkaman 阅读(117) 评论(0) 推荐(0) 编辑
 
摘要: 【CircleImageView of Android】 github上有一个开源的圆角图片项目。地址:https://github.com/hdodenhof/CircleImageView 使用分两步: 1、配置依赖。 2、在Layout中加入CircleImageView 阅读全文
posted @ 2017-01-26 19:43 Tekkaman 阅读(253) 评论(0) 推荐(0) 编辑
 
摘要: 【layout_weight 全解析】 参考:http://www.cnblogs.com/net168/p/4227144.html 阅读全文
posted @ 2017-01-26 00:43 Tekkaman 阅读(223) 评论(0) 推荐(0) 编辑
 

2017年1月25日

摘要: 【 去掉Android新建项目的顶部标题】 使用NoActionBar的Theme即可。 参考:http://blog.csdn.net/u012246458/article/details/52997727 阅读全文
posted @ 2017-01-25 22:38 Tekkaman 阅读(295) 评论(0) 推荐(0) 编辑
 
摘要: 安装app到真机,遇到 Failure [INSTALL_CANCELED_BY_USER] 错误。 解决方法:将手机的USB安装权限打开即可。设置->更多设置->开发者选项->USB安装。 阅读全文
posted @ 2017-01-25 21:34 Tekkaman 阅读(280) 评论(0) 推荐(0) 编辑
 

2017年1月24日

摘要: 【Multiple APK Support】 Multiple APK support is a feature on Google Play that allows you to publish different APKs for your application that are each t 阅读全文
posted @ 2017-01-24 12:50 Tekkaman 阅读(420) 评论(0) 推荐(0) 编辑
 
摘要: 【Gradle with Android】 The Android Studio build system is based on Gradle, and the Android plugin for Gradle adds several features that are specific to 阅读全文
posted @ 2017-01-24 10:54 Tekkaman 阅读(272) 评论(0) 推荐(0) 编辑
 
摘要: 【ActionBar】 The ActionBar APIs were first added in Android 3.0 (API level 11) but they are also available in the Support Library for compatibility wit 阅读全文
posted @ 2017-01-24 02:20 Tekkaman 阅读(202) 评论(0) 推荐(0) 编辑
 
摘要: 【What is API Level?】 参考:http://android.xsoftlab.net/guide/topics/manifest/uses-sdk-element.html#ApiLevels 阅读全文
posted @ 2017-01-24 01:58 Tekkaman 阅读(131) 评论(0) 推荐(0) 编辑
 

2017年1月23日

摘要: 【protobuf】 1、下载页 https://github.com/google/protobuf/releases 2、支持的语言 C++ Java Python PHP Objective-C Javascript Ruby C# 3、入口 https://github.com/google 阅读全文
posted @ 2017-01-23 10:33 Tekkaman 阅读(190) 评论(0) 推荐(0) 编辑
 
摘要: 【Alpha、Beta、RC、GA版本的区别】 参考:http://www.blogjava.net/RomulusW/archive/2008/05/04/197985.html 阅读全文
posted @ 2017-01-23 10:26 Tekkaman 阅读(149) 评论(0) 推荐(0) 编辑
 

2017年1月10日

摘要: 【convertView】 BaseAdapter适配器里有个getView()需要重写public View getView(int position,View converView,ViewGroup parent){ //省略。。}请问这个方法的三个参数是什么意思? 参考:https://zh 阅读全文
posted @ 2017-01-10 10:16 Tekkaman 阅读(1238) 评论(0) 推荐(0) 编辑
 

2017年1月8日

摘要: 【Layouts】 Each layout file must contain exactly one root element, which must be a View or ViewGroup object. After you've declared your layout in XML, 阅读全文
posted @ 2017-01-08 22:41 Tekkaman 阅读(350) 评论(0) 推荐(0) 编辑
 
摘要: 【Styles and Themes】 A 样式 is a collection of properties that specify the look and format for a View or window. A style can specify properties such as h 阅读全文
posted @ 2017-01-08 18:50 Tekkaman 阅读(246) 评论(0) 推荐(0) 编辑
 
摘要: 【Android Studio】 1、Ctrl+N:打开class Shift+Ctrl+N:打开file 2、通过Alt+F7,寻找class、method、variable引用 3、Ctrl+Q:快速查看class、method的文档 4、Ctrl+B:跳转到定义。或者 Ctrl+鼠标。 5、C 阅读全文
posted @ 2017-01-08 14:04 Tekkaman 阅读(236) 评论(0) 推荐(0) 编辑
 

2017年1月5日

摘要: 【Promise.race】 返回最先完成的promise https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/race 阅读全文
posted @ 2017-01-05 14:43 Tekkaman 阅读(199) 评论(0) 推荐(0) 编辑
 

2017年1月4日

摘要: 【Base64】 如果一个字符串末尾有'=',则很大概率这个字符串是Base64编码。 http://blog.csdn.net/xuefeng0707/article/details/19845111 阅读全文
posted @ 2017-01-04 10:16 Tekkaman 阅读(126) 评论(0) 推荐(0) 编辑
 

2017年1月3日

摘要: 【NodeJS搭建HTTPS服务器】 1、创建服务端证书。 服务器代码: 2、创建客户端证书。 客户端代码: 参考: 1、http://cnodejs.org/topic/54745ac22804a0997d38b32d 阅读全文
posted @ 2017-01-03 18:44 Tekkaman 阅读(329) 评论(0) 推荐(0) 编辑
 
摘要: 【CoreSeek】 CoreSeek有两个核心模块Indexer和Search。 Indexer:负责从MySQL拉取数据源,把数据源分词,建立索引。 Search:搜索模块。 CoreSeek工作流程如下: 1)Indexer模块从MySQL中拉取数据。 2)Indexer模块用经过中文分词后的 阅读全文
posted @ 2017-01-03 17:05 Tekkaman 阅读(197) 评论(0) 推荐(0) 编辑
 

2016年12月15日

摘要: 【Ping of Death】 The ping of death attack, or PoD, can cripple a network based on a flaw in the TCP/IP system. The maximum size for a packet is 65,535 阅读全文
posted @ 2016-12-15 22:37 Tekkaman 阅读(1033) 评论(0) 推荐(0) 编辑
 
摘要: 【ICMP Protocol】 参考: 1、ICMP Types and Codes:http://www.nthelp.com/icmp.html 2、RFC 792 - Internet Control Message Protocol:http://www.faqs.org/rfcs/rfc7 阅读全文
posted @ 2016-12-15 22:07 Tekkaman 阅读(264) 评论(0) 推荐(0) 编辑
 

2016年12月14日

摘要: 【HRS(CRLF Injection)】 CRLF是”回车 + 换行”(\r\n)的简称。在HTTP协议中,HTTP Header与HTTP Body是用两个CRLF分隔的,浏览器就是根据这两个CRLF来取出HTTP 内容并显示出来。 一旦我们能够控制HTTP 消息头中的字符,注入一些恶意的换行, 阅读全文
posted @ 2016-12-14 13:30 Tekkaman 阅读(791) 评论(0) 推荐(0) 编辑
 
摘要: 【HTML 字符实体】 在 HTML 中,某些字符是预留的。 在 HTML 中不能使用小于号(<)和大于号(>),这是因为浏览器会误认为它们是标签。 如果希望正确地显示预留字符,我们必须在 HTML 源代码中使用字符实体(character entities)。 字符实体类似这样: 如需显示小于号, 阅读全文
posted @ 2016-12-14 11:25 Tekkaman 阅读(251) 评论(0) 推荐(0) 编辑
 

2016年12月13日

摘要: 【javascript 伪协议】 将javascript代码添加到客户端的方法是把它放置在伪协议说明符javascript:后的URL中。这个特殊的协议类型声明了URL的主体是任意的javascript代码,它由javascript的解释器运行。如果javascript:URL中的javascrip 阅读全文
posted @ 2016-12-13 20:23 Tekkaman 阅读(4467) 评论(0) 推荐(0) 编辑
 
摘要: 【委托】 public delegate void GreetingDelegate(string name); 1、委托在编译的时候会被编译成类(class)。因为Delegate是一个类,它定义了方法的类型,所以在任何可以声明类的地方都可以声明委托。 2、第一次就使用"+=",将出现“使用了未赋 阅读全文
posted @ 2016-12-13 18:35 Tekkaman 阅读(160) 评论(0) 推荐(0) 编辑
 

2016年12月11日

摘要: 【X-Frame-Options 响应头】 参考:https://developer.mozilla.org/zh-CN/docs/Web/HTTP/X-Frame-Options 阅读全文
posted @ 2016-12-11 20:13 Tekkaman 阅读(511) 评论(0) 推荐(0) 编辑
 
摘要: 【frame busting】 参考:http://book.51cto.com/art/201204/330076.htm 阅读全文
posted @ 2016-12-11 20:10 Tekkaman 阅读(225) 评论(0) 推荐(0) 编辑
 

2016年12月8日

摘要: 【AJAX - onreadystatechange】 参考:http://www.w3school.com.cn/ajax/ajax_xmlhttprequest_onreadystatechange.asp 阅读全文
posted @ 2016-12-08 16:22 Tekkaman 阅读(107) 评论(0) 推荐(0) 编辑
 
摘要: 【AJAX - 向服务器发送请求】 参考:http://www.w3school.com.cn/ajax/ajax_xmlhttprequest_send.asp 阅读全文
posted @ 2016-12-08 15:50 Tekkaman 阅读(141) 评论(0) 推荐(0) 编辑
 

2016年12月7日

摘要: 【XML】 1、以下语句中“<”与xml尖括号冲突。因此需要一个替代符号。 <tag>1<x<10</tag> 2、CDATA <![CDATA[文本]]> 阅读全文
posted @ 2016-12-07 13:05 Tekkaman 阅读(175) 评论(0) 推荐(0) 编辑
 

2016年12月5日

摘要: 【可空类型】 可空类型可以表示基础类型的所有值,另外还可以表示 null 值。可空类型可通过下面两种方式中的一种声明: System.Nullable<T> variable - 或 - T? variable T 是可空类型的基础类型。T 可以是包括 struct 在内的任何值类型;但不能是引用类 阅读全文
posted @ 2016-12-05 20:45 Tekkaman 阅读(288) 评论(0) 推荐(0) 编辑
 
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 42 下一页