-
Recent Posts
Recent Comments
Categories
Archives
Meta
friend
- 后援团 可以挣钱的论坛
Author Archives: admin
带上电饭煲的美东自驾游之1
(大都汇博物馆也可以叫做 大都会博物馆,THE MET) 因为去纽约参加一个EXPO, 所以顺便PTO了一周,带上电饭煲开始了为期8天的美东之行。 (Elliot:2013年曾经带着家人共3口,带着电饭煲,一路美西自驾游,那时就带着个电饭煲,这一次其实没带,但算一个系列的 season 2 吧~~) 第一天的行程在纽约,主要泡了一天的大都汇博物馆和中央公园,顺便走了第五大街和时代广场,在时代广场附近的意大利餐厅吃了 Mix Seafood + Lobster + 意面,很大的一盘,足够我们一家4口吃撑。 先嗮下吃的, 分餐后 4个人还是没有吃完因为这件饭店的每个盘,都是供2-3个人的分量,我们2大2小,可见……. 文末有该餐馆的名称与地址 //================================ New York Public Library: NYC 的 Museum 很多,下面是美国土著人博物馆 NYC 的国家自然历史博物馆 在门口匆匆拍了一个,计划在自驾环东到boston 后再回纽约的时候,要单独去一下这个博物馆: 在NYC 这块宝地里的肺地,Central … Continue reading
Posted in aisnote
Leave a comment
test.webrtc.org
use firefox2 to open http://test.webrtc.org then click Right-top: START, will get below: Then to disable the playback device as below: make sure you get: then refresh http://test.webrtc.org on FF52: you will get below, and on UI … Continue reading
Posted in 技术开发
Leave a comment
how to build Mozzila Firefox on Windows
https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Build_Instructions/Windows_Prerequisites Please follow the above link carefully, you can make it. Enjoy and hope you have a good performance PC. ~Elliot //=====some tips I learned=============== 1. wrapper one setup-package for build-tools. 2. utilize the script esp. for bash shell. // … Continue reading
delete all history of one file with sensitive data
一个命令一个命令的敲吧。这个试过是可以work的,记下来, 以备需要。 步骤一: 从你的资料库中清除文件 以Windows下为例(Linux类似), 打开项目的Git Bash,使用命令: git filter-branch –force –index-filter ‘git rm –cached –ignore-unmatch path-to-your-remove-file’ –prune-empty –tag-name-filter cat — –all 其中, path-to-your-remove-file 就是你要删除的文件的相对路径(相对于git仓库的跟目录), 替换成你要删除的文件即可. 如果你要删除的文件很多, 可以写进一个.sh文件批量执行, 如果文件或路径里有中文, 由于MinGW或CygWin对中文路径设置比较麻烦, 你可以使用通配符*号, 例如: sound/music_*.mp3, 这样就把sound目录下以music_开头的mp3文件都删除了. 例如这样, del-music-mp3.sh: #!/bin/bash # git filter-branch –force –index-filter ‘git rm –cached … Continue reading
Posted in 技术开发
2 Comments