Tekkaman

导航

 
上一页 1 2 3 4 5 6 7 8 9 ··· 42 下一页

2017年9月30日

摘要: 【加载 AssetBundle 的四种方法】 1、AssetBundle.LoadFromMemoryAsync(byte[] binary, uint crc = 0); 返回AssetBundleCreateRequest.Use assetBundle property to get an A 阅读全文
posted @ 2017-09-30 21:00 Tekkaman 阅读(1268) 评论(0) 推荐(0) 编辑
 

2017年9月29日

摘要: 【AssetBundle 策略】 1、Logical Entity Grouping。按逻辑功能分。 Examples Bundling all the textures and layout data for a User-Interface screen Bundling all the mod 阅读全文
posted @ 2017-09-29 11:21 Tekkaman 阅读(159) 评论(0) 推荐(0) 编辑
 

2017年9月26日

摘要: 【Rx操作符】 1、Observable.from()方法,它接收一个集合作为输入,然后每次输出一个元素给subscriber: 2、Observable.flatMap()接收一个Observable的输出作为输入,同时输出另外一个Observable。直接看代码: 3、getTitle()返回n 阅读全文
posted @ 2017-09-26 13:13 Tekkaman 阅读(213) 评论(0) 推荐(0) 编辑
 

2017年9月25日

摘要: 【生成Release apk】 1、使用Java SDK中的keytool生成keystore。 Java SDK一般位于:C:\Program Files\Java\jdkx.x.x_x\bin. Note: Remember to keep your keystore file private 阅读全文
posted @ 2017-09-25 20:19 Tekkaman 阅读(2359) 评论(0) 推荐(0) 编辑
 
摘要: 【await】 The await operator is used to wait for a Promise. It can only be used inside an async function. Returns the resolved value of the promise, or 阅读全文
posted @ 2017-09-25 15:07 Tekkaman 阅读(253) 评论(0) 推荐(0) 编辑
 
摘要: 【Using Fetch】 This kind of functionality was previously achieved using XMLHttpRequest. Fetch provides a better alternative that can be easily used. 需要 阅读全文
posted @ 2017-09-25 13:56 Tekkaman 阅读(233) 评论(0) 推荐(0) 编辑
 
摘要: 【Building Projects with Native Code】 1、安装Node(v4.0以上)、Python2、JDK(v8.0以上)。 添加 JAVA_HOME环境变量,指向 JDK 的安装目录。 2、安装 react-native-cli npm install -g react-n 阅读全文
posted @ 2017-09-25 02:34 Tekkaman 阅读(200) 评论(0) 推荐(0) 编辑
 

2017年9月24日

摘要: 【React Native 初步】 1、Create React Native App is the easiest way to start building a new React Native application. It allows you to start a project with 阅读全文
posted @ 2017-09-24 16:44 Tekkaman 阅读(216) 评论(0) 推荐(0) 编辑
 

2017年9月16日

摘要: 【Data URL】 Data URLs are composed of four parts: a prefix (data:), a MIME type indicating the type of data, an optional base64token if non-textual, an 阅读全文
posted @ 2017-09-16 01:32 Tekkaman 阅读(180) 评论(0) 推荐(0) 编辑
 

2017年9月14日

摘要: 【target=_blank攻击】 在<a>标签中加入 rel="noopener noreferrer" 来避免。 参考:https://mathiasbynens.github.io/rel-noopener/ 阅读全文
posted @ 2017-09-14 14:53 Tekkaman 阅读(211) 评论(0) 推荐(0) 编辑
 

2017年9月11日

摘要: 【justify-content & align-items & align-content】 三个属性均作用于container。 justify-content用于控制main-axis。 align-items用于控制元素在单选中cross-axis中的位置。 align-content用于控 阅读全文
posted @ 2017-09-11 15:43 Tekkaman 阅读(353) 评论(0) 推荐(0) 编辑
 
摘要: 【Flex Basis与Width的区别】 Flex Items的应用准则 Flex Items的应用准则 content –> width –> flex-basis (limted by max|min-width)也就是说, 如果没有设置flex-basis属性,那么flex-basis的大小 阅读全文
posted @ 2017-09-11 13:43 Tekkaman 阅读(509) 评论(0) 推荐(0) 编辑
 
摘要: 【flex-direction】 The flex-direction CSS property specifies how flex items are placed in the flex container defining the main axis and the direction 参考 阅读全文
posted @ 2017-09-11 13:11 Tekkaman 阅读(284) 评论(0) 推荐(0) 编辑
 
摘要: 【flex-grow】 指定宽度所占比,如一个flex中有三个item,这三个item的flex-grow均为1,则每个item占比为33.33%,如果一个是1,两个为2,则占比为20%,40%,40%。 参考:https://developer.mozilla.org/en-US/docs/Web 阅读全文
posted @ 2017-09-11 12:55 Tekkaman 阅读(206) 评论(0) 推荐(0) 编辑
 

2017年9月10日

摘要: 【Push API】 The Push API gives web applications the ability to receive messages pushed to them from a server, whether or not the web app is in the fore 阅读全文
posted @ 2017-09-10 23:54 Tekkaman 阅读(295) 评论(0) 推荐(0) 编辑
 
摘要: 【ServiceWorker.state】 ServiceWorker.state The state read-only property of the ServiceWorker interface returns a string representing the current state 阅读全文
posted @ 2017-09-10 17:16 Tekkaman 阅读(168) 评论(0) 推荐(0) 编辑
 
摘要: 【Using Service Workers】 1、This is an experimental technology Because this technology's specification has not stabilized, check the compatibility table 阅读全文
posted @ 2017-09-10 10:29 Tekkaman 阅读(187) 评论(0) 推荐(0) 编辑
 

2017年9月9日

摘要: 【Promise.then】 1、If onFulfilled returns a promise, the return value of then will be resolved/rejected by the promise. 如果then的handler中返回一个promise(叫A),那 阅读全文
posted @ 2017-09-09 14:16 Tekkaman 阅读(259) 评论(0) 推荐(0) 编辑
 
摘要: 【Promise()】 The constructor is primarily used to wrap functions that do not already support promises. executor A function that is passed with the argu 阅读全文
posted @ 2017-09-09 00:23 Tekkaman 阅读(155) 评论(0) 推荐(0) 编辑
 

2017年9月8日

摘要: 【Using promises】 过去,异步方法这样写: function successCallback(result) { console.log("It succeeded with " + result); } function failureCallback(error) { consol 阅读全文
posted @ 2017-09-08 23:43 Tekkaman 阅读(184) 评论(0) 推荐(0) 编辑
 

2017年9月7日

摘要: 【node-rsa】 引用 生成一个私钥长度为512的key(同时生成公钥) 使用公钥加密(当然,加密都是指用公钥加密) 使用私钥解密(当然,解密都是指用私钥解密) 导出公钥、私钥 导入公钥、私钥 参考:https://www.npmjs.com/package/node-rsa 阅读全文
posted @ 2017-09-07 22:35 Tekkaman 阅读(543) 评论(0) 推荐(0) 编辑
 
摘要: 【async.waterfall】 if any of the tasks pass an error to their own callback, the next function is not executed, and the main callback is immediately cal 阅读全文
posted @ 2017-09-07 17:26 Tekkaman 阅读(231) 评论(0) 推荐(0) 编辑
 
摘要: 【async.series】 series适用于顺序执行异步且前后无关联的调用。对于顺序执行异步且前后有叛逆的调用,则需要使用waterfall。 If any functions in the series pass an error to its callback, no more functi 阅读全文
posted @ 2017-09-07 17:14 Tekkaman 阅读(957) 评论(0) 推荐(0) 编辑
 

2017年8月25日

摘要: 【React设置宽度的坑】 我们知道通过ref可以获取DOM元素,通过style属性可以给此DOM元素添加样式。 但下面两行的赋值是无效的: 因为style中的width、height是有单位的,必须加上px才是有效的赋值。所以要改成下面这样 阅读全文
posted @ 2017-08-25 21:38 Tekkaman 阅读(2166) 评论(0) 推荐(0) 编辑
 
摘要: 【不可重复读和幻读的区别】 在可重复读中,该sql第一次读取到数据后,就将这些数据加锁,其它事务无法修改这些数据,就可以实现可重复 读了。但这种方法却无法锁住insert的数据,所以当事务A先前读取了数据,或者修改了全部数据,事务B还是可以insert数据提交,这时事务A就会 发现莫名其妙多了一条之 阅读全文
posted @ 2017-08-25 20:10 Tekkaman 阅读(1020) 评论(0) 推荐(0) 编辑
 

2017年8月24日

摘要: 【ReactCSSTransitionGroup】 ReactCSSTransitionGroup is a high-level API based on ReactTransitionGroup and is an easy way to perform CSS transitions and 阅读全文
posted @ 2017-08-24 23:02 Tekkaman 阅读(259) 评论(0) 推荐(0) 编辑
 
摘要: 【CSS Transition】 CSS transitions provide a way to control animation speed when changing CSS properties. Instead of having property changes take effect 阅读全文
posted @ 2017-08-24 22:36 Tekkaman 阅读(169) 评论(0) 推荐(0) 编辑
 
摘要: 【CSS3动画】 首先通过@keyframe创建动画 或 然后通过animation属性来指定动画 【animation-fill-mode】 参考: 1、http://www.w3school.com.cn/css3/css3_animation.asp 2、http://www.w3school 阅读全文
posted @ 2017-08-24 22:01 Tekkaman 阅读(117) 评论(0) 推荐(0) 编辑
 
摘要: 【prompt】 prompt() 方法用于显示可提示用户进行输入的对话框。 如果用户单击提示框的取消按钮,则返回 null。如果用户单击确认按钮,则返回输入字段当前显示的文本。 在用户点击确定按钮或取消按钮把对话框关闭之前,它将阻止用户对浏览器的所有输入。在调用 prompt() 时,将暂停对 J 阅读全文
posted @ 2017-08-24 21:33 Tekkaman 阅读(1099) 评论(0) 推荐(0) 编辑
 
摘要: 【Binary Logging Formats】 The server uses several logging formats to record information in the binary log. The exact format employed depends on the ver 阅读全文
posted @ 2017-08-24 13:47 Tekkaman 阅读(737) 评论(0) 推荐(0) 编辑
 
摘要: 【Physical (Raw) Versus Logical Backups】 Physical backups consist of raw copies of the directories and files that store database contents. This type of 阅读全文
posted @ 2017-08-24 02:35 Tekkaman 阅读(210) 评论(0) 推荐(0) 编辑
 
摘要: 【React Mixins】 ES6 launched without any mixin support. Therefore, there is no support for mixins when you use React with ES6 classes. We also found nu 阅读全文
posted @ 2017-08-24 01:35 Tekkaman 阅读(230) 评论(0) 推荐(0) 编辑
 

2017年8月23日

摘要: 【预览InputFile】 通过input的files属性,可以取到选择的File对象,通过FileReader可以将File对象读取出来。 参考:https://zhidao.baidu.com/question/872147854254047812.html 阅读全文
posted @ 2017-08-23 17:59 Tekkaman 阅读(175) 评论(0) 推荐(0) 编辑
 

2017年8月18日

摘要: 【Base64 Encoding / Decoding in Node.js】 Here is how you encode normal text to base64 in Node.js: And here is how you decode base64 encoded strings: If 阅读全文
posted @ 2017-08-18 23:21 Tekkaman 阅读(238) 评论(0) 推荐(0) 编辑
 

2017年8月12日

摘要: 【node-pre-gyp install --fallback-to-build 错误】 npm install bcrypt时遇上错误 此时,安装node-gyp 然后,再安装bcrypt即可。 【node-gyp】 Node.js native addon build tool node-gy 阅读全文
posted @ 2017-08-12 23:03 Tekkaman 阅读(16546) 评论(0) 推荐(1) 编辑
 
摘要: 【login shell 和 non-login shell 的区别】 login shell:去的bash时需要完整的登录流程。就是说通过输入账号和密码登录系统,此时取得的shell称为login shell non-login shell:取得sbash接口的方法不需要重复登录的举动。如以X W 阅读全文
posted @ 2017-08-12 21:35 Tekkaman 阅读(782) 评论(0) 推荐(0) 编辑
 

2017年8月10日

摘要: 【JavaScript Drag处理】 在拖动目标上触发事件 (源元素): ondragstart - 用户开始拖动元素时触发 ondrag - 元素正在拖动时触发 ondragend - 用户完成元素拖动后触发 释放目标时触发的事件: ondragenter - 当被鼠标拖动的对象进入其容器范围内 阅读全文
posted @ 2017-08-10 23:35 Tekkaman 阅读(603) 评论(0) 推荐(0) 编辑
 

2017年8月4日

摘要: 【Linux下SVN server 的使用及权限配置】 参考:http://www.cnblogs.com/heinoc/p/3805779.html 阅读全文
posted @ 2017-08-04 21:03 Tekkaman 阅读(154) 评论(0) 推荐(0) 编辑
 
摘要: 【Linux系统服务之inetd】 inetd的角色是作为Telnet和FTP等与网络服务器相关的进程的“超级服务器”。这是一个简单的道理:并不是全部的服务器进程(包括那些接受新的Telnet和FTP连接的进程)都会如此频繁地被调用,以至于必须要有一个程序随时运行在内存中。因此为了避免出现可能有几十 阅读全文
posted @ 2017-08-04 19:22 Tekkaman 阅读(600) 评论(0) 推荐(0) 编辑
 

2017年7月26日

摘要: 【react input的几个坑】 1、input标签中设置value后,input进入controlled模式,valuechange由自动变为手动,导致input无法编辑。如: <input value="xxx"/> // 导致无法编辑 解法:使用代码来对input.value赋值即可。如 t 阅读全文
posted @ 2017-07-26 02:36 Tekkaman 阅读(804) 评论(0) 推荐(1) 编辑
 
上一页 1 2 3 4 5 6 7 8 9 ··· 42 下一页