1. 在通过控制面板的程序中删除瑞星杀毒软件后,发现其没有被彻底删除。重启系统后发现仍然有瑞星的后台程序在运行,并访问瑞星网站,发出一堆请求后下载一些不知名的程序。 通过fiddler可以清楚的看到。 于是搜了下如何彻底删除瑞星. 方法: 1. 首先找到目录C:\Program Files (x86)\Rising\RSD 2. 然后运行 Setup.exe /UNINSTALL /PRODUCT=RAV Setup.exe /UNINSTALL /P ...

    阅读全文
  2. 使用POI最新版本时遇到一些版本重构带来的小问题,纪录下: 问题一: 在使用poi-3.15-beta2版本解析excel时, 发现并有网友所说的WorkbookFactory类. 原因 从poi-3.7.jar开始, WorkbookFactory类已经放进poi-ooxml-XXX.jar中了. 解决方法 同时引入这两个jar包: poi-3.15-beta2.jar, poi-ooxml-3.15-beta2.jar 问题二:异常 Exc ...

    阅读全文
  3. Mac下安装了Google Chrome后会发现每次重启后,Chrome都被自启动了,只是默认是不显示,隐藏了的。但是小黑点还是暴露了问题。 那如何取消Chrome autoload的问题呢? 首先了解Mac的启动项设置,这样就可以尝试来取消自动加载的情况了。 三种方式尝试一下: 1. LoginItems 通过(系统便好System preferences->用户users & Groups -> 登录项 LoginItems)进入登录 ...

    阅读全文
  4. mysql_connect报告”No such file or directory”错误的解决方法。调试后确认host,username,password都是正确的。但myssql_connect还是连接不上。 原因一般都是mysql.socket找不到的问题。 解决方法: 1、写个phpinfo页面,找到mysql.default_socket、mysqli.default_socket、pdo_mysql.default_socket。 2、 ...

    阅读全文
  5. 先来段闲话 这两天在学《王者荣耀》的配音,一时兴起,被荣耀里的界面吸引住了,里面的那种气焰效果随风飘飘,很适合我的性格。于是来段js fire effective的研究。 google带我来到了http://creativejs.com/ 认识了creativejs,被它的首页里的logo展示吸引了,于是看了下去源码实现,然后,然后就返现了THREE这个Object, 再然后就在相关的google中发现了http://jeromeetienne.github.io/fireworks ...

    阅读全文
  6. 有一分数序列:2/1,3/2,5/3,8/5,13/8,21/13...求出这个数列的前20项之和 无聊,写个js玩玩. 递归写法 function a(n){ if(n==1){return 1;} else if(n==2){return 2;} else{ return a(n-1)+a(n-2);} } function b(n){ return a(n+1)/a(n); } function sum(n){ ...

    阅读全文
  7. https://www.djangoproject.com/ Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design. Built by experienced developers, it takes care of much of the hassle of Web development, so you can focus on ...

    阅读全文
  8. 本文摘自官网,WEBLOGIC 版本为12.1.1 Roadmap for Understanding WebLogic Server Domains Table-Roadmap for Understanding WebLogic Server Domains Major Task Subtasks and Additional Information 关于Weblogic Server Domai ...

    阅读全文
  9. 学习下PHP处理图片的函数GD函数库。 第一步来到http://php.net/manual/zh/ref.image.php,函数很多,头很疼。 第二步,头疼医头,整理函数,分类: 已有图片,获取图片信息的函数 imagesx — 取得图像宽度 imagesy — 取得图像高度 getimagesize — 取得图像大小 getimagesizefromstring — 从字符串中获取图像尺寸信息 im ...

    阅读全文
  10. Between the quotation marks of export PS1=” “, you can add the following lines to customize your Terminal prompt: \d – Current date \t – Current time \h – Host name \# – Command number \u – User ...

    阅读全文
  11. 38640

    转载这边关于meta的详细解释。meta是html语言head区的一个辅助性标签。也许你认为这些代码可有可无。其实如果你能够用好meta标签,会给你带来意想不到的效果,meta标签的作用有:搜索引擎优化(SEO),定义页面使用语言,自动刷新并指向新的页面,实现网页转换时的动态效果,控制页面缓冲,网页定级评价,控制网页显示的窗口等! meta标签的组成:meta标签共有两个属性,它们分别是http-equiv属性和name属性,不同的属性又有不同的参数值,这些不同的参数值就实现了不同的网页功 ...

    阅读全文
  12. 找不到AVD or SDK manager in Eclipse,网上查了一下,解决办法很简单: 进入Window --> Customize Perspective...-->Command Groups Availablity->选中Andriod SDK and AVD Manager即可。 原先工作的挺好的,后来重新安装了SDK后,就发现SDK Manager不工作,然后进入Eclipse后就找不到SDK Manager和AVM Manager.不知道是不是 ...

    阅读全文
  13. 学习Android的hello Android时,遇到一个主题相关的错误如下: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.soosmart.hellomobile/com.soosmart.hellomobile.AboutActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat the ...

    阅读全文
  14. 780

    Exam Dumps Planet The proof of ExamDumpsPlanet's efficacy lies in the success stories of its users. From students acing their final exams to professionals securing coveted certifications, the platform has played a pivotal role in countless a ...

    阅读全文
  15. 本文转自官网 https://mp.weixin.qq.com/debug/wxadoc/dev/framework/app-service/app.html  App App() App() 函数用来注册一个小程序。接受一个 object 参数,其指定小程序的生命周期函数等。 object参数说明: 属性 类型 描述 触发时机 onLaunch ...

    阅读全文
  16. Spring configuration property的优先级官方说明:https://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#boot-features-external-config Externalized Configuration Spring Boot lets you externalize your configuration so that you can ...

    阅读全文
  17. XHR = XMLHttpRequest SKU = Stock Keeping Unit(最小存货单位),这显然我看到的语义不一样。我的示例中SKU与NEW PRODUCT相对应,我的理解可能是类似于维护中的已有产品。 TCO = Total Cost of Ownership 总体拥有成本 ROI = Return On Investment 投资回报率 TOI = Transfer of Information 交接信息,交接文档,交接培训 TTM ...

    阅读全文
  18. #1.下载jdk(jdk1.8) wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u60-b27/jdk-8u60-linux-x64.tar.gz #2.安装jdk echo "正在创建/usr/ ...

    阅读全文
  19. 配置jenkins的一个简单的SVN的project,运行时build fail。   org.tmatesoft.svn.core.SVNException: svn: E204900: Error writing entries file for '/test/.jenkins/workspace/test' svn: E204900: Entry '' has inconsistent repository root and ur ...

    阅读全文
  20. 下面这篇文章对Controller的方法参数工作原理解释的非常不错,值得参阅。 https://www.cnblogs.com/fangjian0423/p/springMVC-request-param-analysis.html   另外,此处可以配合spring framework的官方文档中的Spring Web MVC->Annotation Controller->Handler Methods中的Method Arguments和Return ...

    阅读全文