#pt

张小龙《微信背后的产品观》之PPT完整文字版

微信回顾433天,一亿用户成为移动互联网的新入口启动(2010年11月19日)用户数突破1亿1.01月26日2.05月10日语音对讲2.58月3日查看那附近的人3.010月1日摇一摇漂流瓶3.512月20日二维码4.04月19日朋友圈开放接口4.27月19日语音通话视频通话用户篇产品经理是站在上帝身边的人了解人性了解群...

JavaScript千分符---正则实现

一般在JavaScript中实现千分符,是使用切割+连接一顿操作这里尝试一下使用正则快速实现千分符-----支持小数1letnum0='12'2letnum1='123'3letnum2='1234'4letnum3='123456789'5letnum4='1234567890'6letnum5='123456789...

UEFI+GPT引导基础篇 :什么是GPT,什么是UEFI?

GUIDPartitionTable(GPT)isastandardforthelayoutofthepartitiontableonaphysicalstoragedeviceusedinadesktoporserverPC,suchasaharddiskdriveorsolid-statedrive,usinggl...

DHCP Option 60 的理解

 原文地址:http://blog.163.com/chenqioulin_1983/blog/static/83216232010109104430251/ 首先还是看看RFC咋说的吧。DHCP是RFC2131定义,DHCP2132定义了dhcpoption.9.13.Vendorclasside...
代码星球 ·2020-04-17

LaTeX 使用:itemize,enumerate,description 用法

itemize和enumerate还有description是LaTeX里列举的三种样式,分别讲一些使用技巧。itemize(意为分条目):egin{itemize}item[*]aitem[*]bend{itemize}这样出来的形式为  *a  *bitem的方括号里的内容...

java CountDownLatch报错java.lang.IllegalMonitorStateException: null

笔者使用websocket进行通信,服务器异步返回。websocket服务器又异步调用其他websocket,也是异步访问。由于无法预测服务器调用第三方websocket什么时候调用结束,使用了CountDownLatch。每次报错都如下:java.lang.reflect.InvocationTargetExcept...

10013: An attempt was made to access a socket in a way forbidden by its access permissions

以上是nginx报错,原因:端口被占用。查看nginx.conf都监听了哪些端口,比如笔者配置如下:     查询端口被占用的命令:windows下根据tcp端口查询对应的进程id(端口被占用)netstat-navo|find/i"listen"|find/i":44...
代码星球 ·2020-04-17

Linux下使用iptables配置防火墙端口转发

一些情况下,在linux上面我们想使用80-1024之间的端口,这个时候需要root权限。当时root权限容易被提权,特别是早起那些Struct2,漏洞爆出的时候,一抓一个准-root权限,然后系统沦陷,被黑客控制住了。开启端口转发:vim/etc/sysctl.conf#前面的#注释去掉net.ipv4.ip_for...

Text Prompted Remote Speaker Authentication : Joint Speech and Speaker Recognition/Verification System :: Major Project ::: Introduction

转载自:http://ganeshtiwaridotcomdotnp.blogspot.com/2010/12/text-prompted-remote-speaker.htmlBiometricsis,inthesimplestdefinition,somethingyouare.Itisaphysicalchara...

Java Sound Capture from Microphone working code

转载自:http://ganeshtiwaridotcomdotnp.blogspot.com/2011/12/java-sound-capture-from-microphone.htmlSound Capture/RecordfromMicrophoneandSave:workingjavasourcec...

js怎么动态加载js文件(JavaScript性能优化篇)

下面介绍一种JS代码优化的一个小技巧,通过动态加载引入js外部文件来提高网页加载速度 【基本优化】将所有需要的<script>标签都放在</body>之前,确保脚本执行之前完成页面渲染而不会造成页面堵塞问题,这个大家都懂的。 【合并JS代码,尽可能少的使用script标签】最...

javascript模拟生成uuid

functionguid(){return'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g,function(c){varr=Math.random()*16|0,v=c=='x'?r:(r&0x3|0x8);returnv.toString(16);...
代码星球 ·2020-04-17

springboot下jar包方式运行Caused by: java.lang.ExceptionInInitializerError: null

idea调试过程中不会出现此问题,异常如下org.springframework.beans.factory.BeanCreationException:Errorcreatingbeanwithname'apiNotificationController'definedinURL[jar:file:/E:/aipla...

javascript从网络下载随机笑话

/****讲笑话函数(调试用)*@paramcallback回调函数*/functionrandomText(callback){varresult='';$.ajax({type:"get",url:"http://www.mxnzp.com/api/jokes/list/random",dataType:"json...

java.lang.IllegalStateException: No primary or default constructor found for class java.time.LocalDate

转载自:https://blog.csdn.net/Coder_Arley/article/details/81910705springboot中报错如下:springmvc也可以使用类似处理方法。其他参考:SrpingMVC通过JSON注入from数据到实体自定义(LocalDateTime,LocalDate,Bo...
首页上一页...220221222223224...下一页尾页