原创 【不看後悔哦~】教你免費輕鬆下載百度文庫的文件【使用代碼搞定非藉助第三方】【附攔截網頁廣告插件】

轉自:https://www.jianshu.com/p/6c689cab7076 廣告攔截插件:https://download.csdn.net/download/qq_36396104/10718880 這兩天,都不記得我是因爲裝了

原创 JavaScript調試:使用Google Chrome Debugger【簡潔;高效;易學】

在 Chrome DevTools 中調試 JavaScript 入門 一共兩節(基本上調試JavaScript夠用了) 本交互式教程循序漸進地教您在 Chrome DevTools 中調試 JavaScript 的基本工作流程。 雖然教

原创 JavaScript調試:Pause Code With Breakpoints in Google Chrome Debugger

上一節:JavaScript調試:使用Google Chrome Debugger【簡潔;高效;易學】 一共兩節(基本上調試JavaScript夠用了) 使用斷點暫停JavaScript代碼。本指南介紹了DevTools中可用的每種類型的

原创 windows 10 取消更新 刪除已下載更新 防止自動回恢復

win10系統怎麼刪除自動更新(防自動恢復,修改更新並關機按鍵): 轉自百度經驗: https://jingyan.baidu.com/article/f79b7cb333fa1a9145023e43.html https://jingy

原创 【Error】:BeanCreationException: Error creating bean(Could not resolve resource location)

 遇到的一個javaweb的error: [org.springframework.web.context.ContextLoader] - Context initialization failed org.springframewo

原创 javaweb項目:用戶(登錄和註銷)實現 SSM框架(mybatis-generator自動生成代碼)

SSM框架的搭建環境(Spring,SpringMVC,Mybatis) 使用工具:maven、idea、tomcat用的是8、jdk版本1.8 一、整個項目的結構: 用戶模塊流程 pom.xml -> web.xml -> db->m

原创 [不用回退keras版本的解決方法]AttributeError: module 'tensorflow.python.ops.nn' has no attribute 'leaky_relu'

首先遇到問題後查到的是這個解決方法:https://github.com/keras-team/keras/issues/9349 方法很簡單:回退keras到版本2.1.2 但是我個人覺得既然有新版爲什麼要回退版本呢,然後查了一下,發現

原创 win10 pycharm debug tensorflow-gpu [Process finished with exit code -1073741819 (0xC0000005)【已解決】

windows上使用pycharm debug  project  with  tensorflow-gpu error: 這個問題還是蠻水逆的,網上有說是: 1、這個好像是環境變量的問題,pycharm在獲取環境變量時,估計用了WIN

原创 通過 Git 將代碼提交到 GitHub(上)

版權聲明:Follow your heart and intuition. https://blog.csdn.net/qq_35246620/article/details/69230109 1 前言 在「利用 SSH 完成 Git

原创 項目代碼重構【Mybatis的學習】

一、Mybatis的學習 0. MyBatis Generator【詳解】 【轉自http://luoxianming.cn/about/的博文】 Mybatis MyBatis是一個支持普通SQL查詢,存儲過程和高級映射的優秀的持久化框

原创 win10+cuda9.0+cuDNN 7.0+TensorFlow-gpu install steps

 Official Tutorials: 4. Installing cuDNN on Windows 4.1. Prerequisites Ensure you meet the following requirements befo

原创 python錯誤:TypeError: 'module' object is not callable 解決方法

轉自:http://www.phperz.com/article/14/1208/39955.html 本文爲大家講解的是python錯誤:TypeError: 'module' object is not callable 解決方法,感

原创 IntelliJ IDEA 控制檯中文亂碼解決方案

出處:https://blog.csdn.net/wo541075754/article/details/51150035 配置Intellij的配置文件   打開Intellij的根目錄,找到下圖的兩個文件(根據你的系統是32位或64位

原创 深入理解Java內存模型(六)——final

轉自:http://www.infoq.com/cn/articles/java-memory-model-6 與前面介紹的鎖和volatile相比較,對final域的讀和寫更像是普通的變量訪問。對於final域,編譯器和處理器要遵守兩個

原创 How does one instantiate an array of maps in Java?

Question: I can declare an array of maps using generics to specify the map type: private Map<String, Integer>[] myMaps