2019年2月28日 星期四
2019年2月27日 星期三
[DNS] non-www和www指到同一台主機
第一個是DNS需要設定
包括WWW用CNAME指到主機,再增加一筆A record指到主機IP,A record可用空白或是@
第二個是Apache設定
主要是設定主機名稱和別名,例如
ServerName foo.com
ServerAlias www.foo.com
Redirect permanent / http://www.foo.com/
包括WWW用CNAME指到主機,再增加一筆A record指到主機IP,A record可用空白或是@
第二個是Apache設定
主要是設定主機名稱和別名,例如
ServerName foo.com
ServerAlias www.foo.com
Redirect permanent / http://www.foo.com/
2019年2月25日 星期一
[RPi] 多個程序存取相機
尚未成功
https://www.timdejong.nl/blog/use-webcam-two-applications-under-linux-simultaneously-using-v4l2loopback
https://www.timdejong.nl/blog/use-webcam-two-applications-under-linux-simultaneously-using-v4l2loopback
2019年2月24日 星期日
[Ubuntu] 將 Ubuntu 桌面投影到 iPhone
Ubuntu
cvlc screen:// :screen-fps=15 :screen-caching=100 --sout '#transcode{vcodec=MJPG,vb=0,acodec=none}:http{mux=ogg,dst=:8888/m}'
iPhon
安裝VLC,使用串流連接到 http://ip/to/ubuntu:8888/m
cvlc screen:// :screen-fps=15 :screen-caching=100 --sout '#transcode{vcodec=MJPG,vb=0,acodec=none}:http{mux=ogg,dst=:8888/m}'
iPhon
安裝VLC,使用串流連接到 http://ip/to/ubuntu:8888/m
[Ubuntu] 使用 iPhone 在 Ubuntu 投影桌面
爬文要使用Reflector,但 Windows 軟體比較麻煩免費的不多,找到一個看起來已經破解了
https://bestwhere.wixsite.com/page/single-post/Reflector-3
下載網址
https://drive.google.com/open?id=1mlDPQYprGiIsudzDZeXPhIPPOKvyANuZ
開開心心的要安裝,發現需要使用 Win7 以上。原本的 wine 是 1.6,看來要升級了...
http://ubuntuhandbook.org/index.php/2014/06/install-wine-1-7-20-ubuntu-linux/
sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update; sudo apt-get install wine1.8
裝好 wine1.8 之後 ,結果還是不行 QQ,只好找找看有沒有 Reflector 2 的版本
剛剛看到其實有 2 的版本...
https://drive.google.com/uc?id=1QmNja7K8tdv6uYuhYWOmgLkX6rfa9V86&export=download
後來又發現,其實 wine 可以直接設定 Windows 的版本...
https://bestwhere.wixsite.com/page/single-post/Reflector-3
下載網址
https://drive.google.com/open?id=1mlDPQYprGiIsudzDZeXPhIPPOKvyANuZ
開開心心的要安裝,發現需要使用 Win7 以上。原本的 wine 是 1.6,看來要升級了...
http://ubuntuhandbook.org/index.php/2014/06/install-wine-1-7-20-ubuntu-linux/
sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update; sudo apt-get install wine1.8
裝好 wine1.8 之後 ,結果還是不行 QQ,只好找找看有沒有 Reflector 2 的版本
剛剛看到其實有 2 的版本...
https://drive.google.com/uc?id=1QmNja7K8tdv6uYuhYWOmgLkX6rfa9V86&export=download
後來又發現,其實 wine 可以直接設定 Windows 的版本...
2019年2月21日 星期四
[科技新知] Ambidio
也不算新聞了,但剛好看到有人筆記 Ambidio 的影片
https://musictech.tw/history-of-stereo-961d54426b14
https://musictech.tw/ambidio-a761256f0155
https://musictech.tw/history-of-stereo-961d54426b14
https://musictech.tw/ambidio-a761256f0155
2019年2月19日 星期二
[Python] Singleton
直接看扣吧
來源:https://stackoverflow.com/questions/6760685/creating-a-singleton-in-python
class Singleton(object): _instances = {} def __new__(class_, *args, **kwargs): if class_ not in class_._instances: class_._instances[class_] = super(Singleton, class_).__new__(class_, *args, **kwargs) return class_._instances[class_] class MyClass(Singleton): pass c = MyClass()
來源:https://stackoverflow.com/questions/6760685/creating-a-singleton-in-python
2019年2月14日 星期四
2019年2月11日 星期一
訂閱:
文章 (Atom)