WordPress powers over 25% of all websites on the internet, making it the world’s most popular blogging and content management platform. It is free and open source software developed entirely by its community, who have contributed over 45,000 themes, plugins, and widgets that enable an unlimited combination of features. Users can easily create and edit static webpages and blog posts using its intuitive editor. Without even thinking about details like browser compatibility or responsiveness, content creators are free to create and format text, images, and layout on every page and post.More tech savvy will appreciate having the ability to easily switch back and forth between a WYSIWYG editor and raw html for every page, and the underlying PHP that runs it all is available right through the interface. Why use Bitnami Certified Apps? Bitnami certifies that our images are secure, up-to-date, and packaged using industry best practices. With Bitnami you can trust what’s in the app you’re launching. We monitor all components and libraries for vulnerabilities, outdated components, and application updates. When one is reported, we update and release every affected listing within a couple days at most.

來源: WordPress Certified by Bitnami | Google Cloud Launcher – KC0401 GCP

現今的NAS似乎已不是我們想像中的NAS而已,各家廠商所推出的NAS功能越來越多、速度越來越快,且支援更多的服務,可說是包羅萬象,不管BT、網站、電子郵件、FTP、UPNP、VPN、AD、雲端與多媒體播串流都納入了,不過價格往往令人咋舌,其實只要將報廢的一台PC搭配免費的FreeNAS,即可搖身一變成為一台不折不扣的NAS伺服器哦!

來源: 舊PC搭配免費的FreeNAS也能搖身一變為NAS主機 – 電腦王阿達

https://myip.tw/itsmw/index.php?title=VI

來源: VI – Itsmw

Vi 編輯器令初學者最大的困擾就是:「怎麼有的時候可以輸入文字,有的時候不行?」。那是因為它分成兩種模式,在使用者按了關鍵字「i」(游標處插入)、「o」(插入一行)、「a」(游標處之後插入),就進入了文字編輯模式,可以輸入/刪除文字。

在文字輸入狀態下,按了「Esc」鍵,就會回到「命令列模式」,在此模式下。是無法輸入文字的,但可以:存檔、離開、尋找/替代、整列剪下/複製/貼上、復原等。

功能解說 命令
存檔 :w
存檔後離開 :wq
強制離開 :q!
強制存檔並離開(若設成唯讀, 但以 root 身份, 仍能強制寫入) :wq!
尋找 /字串
繼續尋找
(使用 「 /字串 」找出第一個符合的點後,可再按【 n 】繼續找)
n
替代
(如果字串中有 “/” 符號,要加跳脫符號 “\” → ” \/ “)
:%s/舊字串/新字串/g
整列剪下(可再加數字,如:「5dd → 刪除5列」) dd
整列複製(可再加數字,如:「5yy → copy 5列」) yy
貼上(可把 dd 及 yy 的東西貼上) p
復原(可再加數字,如:「5u → 復原前5個動作」) u