2020年10月21日 星期三

[Ubuntu 14.04] 遠端桌面使用原生ubuntu14.04桌面

方法1: 

1. 要先在原始VGA下打開terminal console

2. 輸入

    $  gsettings set org.gnome.Vino require-encryption false                                                                 

這個方式每次reboot系統之後要重新再做一次,可以寫在開機執行script裡面

方法2:

$ sudo apt-get install dconf-editor

$ dconf-editor

進入 org -> gnome -> desktop -> remote-access 將require-encryption關掉

2020年10月4日 星期日

2020年9月15日 星期二

[linux script] 多行文字輸出

使用cat和EOF來多行顯示輸出文字訊息到標準輸出
EOF可以改用其他文字來代替,不一定要使用EOF字樣
另外,結尾的EOF一定要靠在最左邊,不可以有任何tab或是空格



function usage()
{
cat << EOF

This is a test to show multi line.
It is goog.


EOF


}

2020年8月18日 星期二

[Javascript] codePen

方便練習 Javascript / HTML/ CSS 

codePen進入網址https://codepen.io/


進入後可以建立一個自己的帳號,方便管理自己寫好的一些程式


這邊要ˇ說明的是如果要使用cdn,可以在js窗格左上角開啟選項


開啟之後可以在這邊編輯你想要的cdn,例如jQuery,這樣再Javascript裡面撰寫的時候就可以使用$功能



2020年7月23日 星期四

[英文] 單字篇 2

They're strolling on the street.          他們正在街上漫步
fall over
The cargo is being loaded onto the ship.     貨物

2020年7月10日 星期五

[暫存] Canvas

underscorejs pluck
https://underscorejs.bootcss.com/#pluck

Canvas
https://developer.mozilla.org/zh-TW/docs/Web/API/Canvas_API/Tutorial

https://developer.mozilla.org/zh-TW/docs/Web/API/Canvas_API/Tutorial/Using_images

https://www.runoob.com/html/html5-canvas.html

折線
https://www.itread01.com/content/1547427089.html

https://www.itread01.com/article/1489371811.html

2020年6月24日 星期三

[Lua] 新增 require 的搜尋路徑

尋找 .lua
package.path = '/usr/local/share/lua/5.1/?.lua;/home/resty/?.lua;'

尋找 so檔
package.cpath = '/usr/local/lib/lua/5.1/?.so;'

[Ubuntu 14.04] 遠端桌面使用原生ubuntu14.04桌面

方法1:  1. 要先在原始VGA下打開terminal console 2. 輸入     $  gsettings set org.gnome.Vino require-encryption false                                     ...