原创 【Error】Java RMI Error: remote object implements illegal remote interface; nested exception is

錯誤日誌: Exception in thread "main" java.rmi.server.ExportException: remote object implements illegal remote interface; n

原创 【轉載】Java 14都快出來了,爲什麼還有那麼多人執着於Java 8?

作者:blindpirate 鏈接:https://www.zhihu.com/question/360985479/answer/956242314 來源:知乎 著作權歸作者所有。商業轉載請聯繫作者獲得授權,非商業轉載請註明出處。  

原创 【轉載】Java最新常見面試題 + 答案彙總

1、面試題模塊彙總 面試題包括以下十九個模塊:Java 基礎、容器、多線程、反射、對象拷貝、Java Web 模塊、異常、網絡、設計模式、Spring/Spring MVC、Spring Boot/Spring Cloud、Hiberna

原创 【Error】IDEA報錯: Some classes have changed message

IDEA報錯: Some classes have changed message 解決辦法:查找是否在IDEA中有其他的debug程序在運行,有的話關掉即可。 參考:https://stackoverflow.com/questions

原创 【Error】 Java can not access a member of class java.lang.Runtime with modifiers "private"

Java中的System類是final的,不能被繼承。同時System類的構造函數爲private,因此不能被實例化。Runtime的構造函數也爲private,不能被實例化。 Class class1 = C

原创 【MISC】關於nmap的SERVICE tcpwrapped

nmap的掃描結果如果STATE是open,但是SERVICE是tcpwrapped。 說明tcp在建立之後迅速斷開。該端口實際上是開放的,但是訪問的ip不在允許的列表中。例如:該端口可能僅對部分C段開放。   參考:https://se

原创 【Error】RSS atom.xml 解析錯誤:Input is not proper UTF-8, indicate encoding !

打開RSS的鏈接:atom.xml,報錯如下: This page contains the following errors: error on line 20 at column 16: Input is not proper UT

原创 【Error】解決ubuntu 18.04 dns故障

vps從snap恢復數據之後,發現dns有問題,導致docker pull用不了。 ubuntu 18.04上,/etc/resolv.conf 是 /run/systemd/resolve/stub-resolv.conf的一個軟連接。

原创 centos 圖形界面(VNC)

由頭: 本文介紹一下centos圖形界面的安裝方法。 後來發現在命令行下有一個links的工具,用了一下不是很方便。於是想裝一個firefox瀏覽器,那麼就需要安裝圖形界面。 本來想用nomanchine(速度快),可惜更新到了4.0,服

原创 【Error】 apt-get update failed : repo xxx does not have a Release file.

apt-get update 出錯,問題在於pwntools $ apt-get update && apt-get upgrade Hit:1 https://download.docker.com/linux/ubuntu bion

原创 【轉載】如何成爲一個優秀的程序員(宋勁杉)

https://blog.csdn.net/lin111000713/article/details/54943796 轉自:http://www.akaedu.org/pages/news_detail.php?id=294  我們的老

原创 【Error】github pages error

之前子域名A記錄解析到github的ip,最近發現github pages打不開了。報錯: Fastly error: unknown domain: xxxxxxxx. Please check that this domain has

原创 【Error】AFL triage_crashes.sh 報錯 virtual memory exhausted解決辦法

使用AFL的triage_crashes.sh腳本查看crash原因時遇到了如下錯誤: /build/gdb-nKO2sj/gdb-8.2/gdb/utils.c:749: internal-error: virtual memory e

原创 【Error】start Starting MySQL .. * The server quit without updating PID file (/usr/loc

安裝lnmp之後,發現mysql沒起。 $ service mysql  報錯: Starting MySQL .. * The server quit without updating PID file (/usr/local/mysq

原创 【Error】vscode 解決 python unindent does not match any outer indentation level

如何解決python對齊問題?一個函數中同時有tab和空格,就會導致報錯:python unindent does not match any outer indentation level 解決辦法一:顯示所有的tab和空格,手動修改。