顯示具有 remote 標籤的文章。 顯示所有文章
顯示具有 remote 標籤的文章。 顯示所有文章

2013-04-09

AVStreamer - Remote Desktop HD 遠程控制您的PC或MAC

prod_p1_img1
AVStreamer 官方網站
http://www.eplayworks.com/section/product/avStreamer.php
客戶端下載(用於控制電腦的裝置)
伺服端(想要被控制的電腦)
基本上與大多的遠端控制軟體都差不多
但是這款支援自訂觸控板模式
也就是可以在畫面上自訂安排虛擬觸控按鈕然後來使用

將原本只能靠鍵盤滑鼠使用的軟體
變成像部分手機遊戲一樣有虛擬的觸控按鈕介面

將電腦遊戲當手機遊戲玩
prod_p1_img5

2011-06-13

[git] git-notes 同步到遠端的小技巧

參考 http://progit.org/2010/08/25/notes.html

以下設定據說可隨著 PUSH , FETCH 來同時做更新 notes 的動作(感覺不出作用)

.git/config
[remote "origin"]
    fetch = +refs/heads/*:refs/remotes/origin/*
   
    fetch = +refs/notes/*:refs/notes/*
    push = +refs/notes/*:refs/notes/*

以下為簡化打包實作 git notes push 的概念(自做的 並且實測過 確實可行)

 msysgit\local\bin\git-notes-push
#!/bin/sh

echo u can use git notes-push or git-notes-push

echo push notes now.......
git push origin refs/notes/*
當 notes 成功 push 遠端 github 後可在 github 上看到 notes 在黃色框內

可惜的是目前仍然不知道如何同步 github 網頁上 commit notes 的方法
變成只能由 git 去做 notes
而在 github 上做的 notes 則必須要在網頁上才能查閱