2021年10月31日

AI Machine Learning 機器學習教學與程式庫資源

 李弘毅老師 Youtube 機器學習課程

https://www.youtube.com/playlist?list=PLJV_el3uVTsMhtt7_Y6sgTHGHp1Vb2P2J


國家高速網路與計算中心 - AI技術高階研發人才課程清單

https://aiel.nchc.org.tw/researcher.aspx


PythonDataScienceHandbook - 免費Jupyter notebooks版本電子書

https://github.com/hindupuravinash/PythonDataScienceHandbook


the-gan-zoo (GAN動物園) GAN對抗生成網路的研究論文資源

https://github.com/hindupuravinash/the-gan-zoo


awesome-machine-learning 機器學習程式庫資源

https://github.com/hindupuravinash/awesome-machine-learning


機器學習高手 Avinash Hindupur,他個Github網站如下,看起來是位大神,前面三個Github資源(PythonDataScienceHandbook, GAN動物園, 機器學習程式資源)都是在他的Github中提供的...

https://github.com/hindupuravinash


PTT 自學AI資源分享

https://www.ptt.cc/bbs/DataScience/M.1565639939.A.F2F.html


2020年3月16日

在 Visual Studio 2019 設定 NuGet 套件取用來源 (第一次編譯GitHub 上微軟Visual Studio範例程式碼就會用到...)

第一次使用Visual Studio 2019 編譯 Github上的開源專案程式碼,
被出現 NuGet套件來源設定的錯誤訊息困擾了一陣子,

上網 Google 發現微軟或其他網頁的解釋說明不夠清楚,也可能是網路上中文說明網頁資源不足...

摸索了一陣子,發現如下方法,
直接設定 NuGet套件來源,完成NuGet 套件取用API 的路徑設定後,
以後編譯程式碼就不會再出現相關錯誤了。

可移動游標到方案總管的專案項目上,按滑鼠右鍵,產生專案的下拉選單,
或是 點選了專案項目後,到上方選單,點選"專案",展開專案的下拉選單。


專案的下拉選單如下...
點選 "管理NuGet套件(N)..."



在右邊"NuGet <專案名稱>"頁籤的內容視窗右上角,點選 "設定"的圖像按鈕...


打開選項設定視窗,
選擇 "NuGet 套件管理員" 下 的 "套件來源"...

檢視來源設定是否有 https://api.nuget.org/v3/index.json 類似的API路徑設定,

若要以 NuGet 用戶端來將 NuGet.org 作為套件存放庫使用,應使用下列 V3 API 端點:
https://api.nuget.org/v3/index.json

如果沒有設定,按下"+"加號按鈕,新增設定,名稱與來源設定如下,

名稱: nuget.org
來源: https://api.nuget.org/v3/index.json

按下"確定"按鈕後,即可完成設定。

之後編譯就不會出現NuGet套件來源設定相關的錯誤了!



2019年9月18日

SQL tip: SQL查詢時,多筆中如何只取最新的1筆資料(利用 left join 寫法)

=======================================================
SQL 查詢時,若特定欄位值有兩筆以上,如何只取最新的1筆資料
=======================================================

select * form Table1
left join Table2
 on Table1.[欄位A]=Table2.[欄位A]
    and
Table2.[時間欄位] = (select max([時間欄位]) from Table2 where [欄位A]=Table1.[欄位A])

2019年9月17日

3D Programming Resource (3D 程式設計資源) Part 2

這一篇內容大部份與3D Model (特別是人物模組)程式庫有關...

============================
3D Engine 程式庫
============================
Panda3D

Render Pipeline with Physically Based Shading for Panda3D

lyost/d3d12_framework

A free game engine - Amazon Lumberyard

Psychosynth ( arximboldi psychosynth GitHub code)

============================
3D Model 程式庫與範例程式
============================
Powerful 3D Viewer and basic editor for 40+ file formats, including OBJ, 3DS, BLEND, STL (more info), FBX, DXF, LWO, LWS, MD5, MD3, MD2, NDO, X, IFC and Collada. One of only a few independent FBX Viewers.

Alexander Gessler GitHub code - 3D Graphics, Game Programming. Used to be a freelancer, now at @google Munich.

Yuusha Modding Blog - Digital yuusha modding archives. Some AG3 clothes editor talk, but nothing about AG3 in general.

Floyd Project

enimaroah SB3Utility GitHub code
HF-Alamar SB3Utility GitHub code

============================
GUI 程式庫
============================
GiGi -  a GUI library for OpenGL

MyGUI
官網:
http://mygui.info/

GitHub code

介紹文章...
MyGUI 中文MYGUI在win7下的中文完美输入及其显示
MyGUI中文完美解决方案

CEGUI - a GUI C++ Library
CEGUI筆記
SpringEmbedders - a ceGUI sample
SpringEmbedders is a graph-visualization program based on the paper Non-Euclidean Spring Embedders, by Stephen G. Kobourov and Kevin Wampler, in INFOVIS 2004 pages 207-214.

=======================================
對應知名3D建模軟體之模組匯入/匯出程式庫
=======================================
NifTools is an open source project creating tools—such as an editor, C++ and Python libraries, and import/export plugins for Maya, 3ds Max, and Blender.
NifTools 資源網站:
http://niftools.sourceforge.net/wiki/NifTools

How to Write a Simple Maya Model Exporter

Skyrim:
How to export models from Blender to Skyrim
Blender NIF Import - Export Tutorial for Skyrim
3D Craftworks: From Blender To Skyrim

FBX:
How to Work with FBX SDK
lang1991/FBXExporter GitHub code
shaderjp/FBXLoader GitHub code

=======================================
3D/2D models research Forum 資源
=======================================

2019年8月19日

開發人工智慧 AI 程式的學習資源

從網路上陸續蒐集的一些AI學習教材資源與文章,包括AI程式開發 與 AI framework 程式學習等教學,參考如下...

科技報橘 : 扎實你的 AI Coding 基礎!GitHub 大神整理了一份新手易懂的學習課程

Kaggle 大神創辦!國外超火、全免費的 AI 學習課程「fast.ai」
Practical Deep Learning for Coders, v3

動手學深度學習 (深度學習中文教科書,線上電子書)

Google數位學程 - 機器學習基礎概念 (介紹機器學習觀念,值得一看!)

=========================
Google 語意分析框架 SyntaxNet
=========================
介紹文:
Google Research Blog: Announcing SyntaxNet: The World’s Most Accurate Parser Goes Open Source

程式碼:
SyntaxNet - Neural Models of Syntax

===============
TensorFlow 學習
===============
ITREAD01 : TensorFlow深度學習,一篇文章就夠了

TensorFlow - An open-source software library for Machine Intelligence
官網
程式碼
編譯: Build from source on Windows

PC組裝
100K 深度學習機

科技報橘 : 【微軟工程師教你做】自己組一台深度學習電腦,價錢是 Macbook Pro 三分之一!

軟體安裝
香港矽谷 : 真正從零開始,TensorFlow安裝入門教程!(圖文版)

2017年1月18日

Web 線上資源與工具網站筆記

Sketchfab - 3D model lib
介紹文章: Sketchfab 讓你的3D作品能撥放&預覽於臉書

2分鐘學會用Google My Maps規劃自由行旅遊行 (背包客棧 文章)

英文寫作不詞窮!台灣研發更強大語言學習搜尋引擎(電腦玩物 文章)

《Phootime》高速、高品質、無限流並支援RAW檔的免費網路相簿(MINTWT 文章)

Google 相簿團隊傳授10個私房密技,有些我也沒想到
http://www.playpcesor.com/2016/05/google-photos-10-tips.html

日系動畫遊戲影片配樂下載!免費背景音樂音效素材
http://www.playpcesor.com/2015/12/bgm-download.html

Download videos(影片網下載 ),支援上百影音網站 Youtube、臉書、Vimeo、Dailymotion…類繁不及備載 (內有臉書影片下載示範) (就是教不落 文章)

Mazwai 免費 CC 授權高畫質影片集散地!可自由下載使用的影片素材庫
https://free.com.tw/mazwai/?utm_content=buffer43e5b&utm_medium=social&utm_source=facebook.com&utm_campaign=buffer

GIFs – 將 YouTube 影片轉成 GIF 動畫,可自選影片位置,製作動畫無負擔
http://steachs.com/archives/16838
https://gifs.com/

拚命玩遊戲就能學寫程式! CodeCombat 還有中文版
http://www.playpcesor.com/2015/11/codecombat.html

最期待功能!Google 相簿一鍵釋放你的雲端硬碟空間
http://www.playpcesor.com/2015/11/google-photos-google-drive-storage-space.html

寫網誌報導
https://medium.com/

ISO Republic 免費高畫質相片圖庫,數百張可用於商業開發圖片下載(免費資源網路社群 文章)

Zillow - 美國房產資訊龍頭
http://mrjamie.cc/2011/09/18/zillow-ipo/

Google 讓你直接在雲端硬碟建立、分享自訂我的地圖(My Maps)(免費資源網路社群 文章)

比起安裝軟體更想用網頁版!單機軟體的網頁版懶人包
http://www.playpcesor.com/2015/08/freeware-web.html

網上賣照片 DreamsTime攻略
http://szszqy.com/archives/55
賣圖片網站大攻略
http://szszqy.com/archives/317

YouTube 推出全新音軌庫,免費下載高音質 MP3 背景音樂
https://free.com.tw/youtube-free-audio-library/?utm_content=buffer9a75c&utm_medium=social&utm_source=facebook.com&utm_campaign=buffer

Enable Copy 破解網頁鎖左右鍵、無法選取複製內容限制(Chrome 擴充功能)
https://free.com.tw/enable-copy/?utm_content=buffer3cc89&utm_medium=social&utm_source=facebook.com&utm_campaign=buffer

銀行匯率查詢
http://www.taiwanrate.org/

Weflio 號稱免空界 Imgur,無單檔大小、容量限制,可批次打包下載檔案
https://free.com.tw/weflio/?utm_content=bufferf990e&utm_medium=social&utm_source=facebook.com&utm_campaign=buffer

Google 提供可用於商業用途的免費圖庫,做報告、簡報 PPT 找圖更輕鬆
https://free.com.tw/search-for-images-in-google-drive/?utm_content=buffer6b03a&utm_medium=social&utm_source=facebook.com&utm_campaign=buffer

適合程式設計師編寫程式的免費等寬字型(Monospaced Font)整理
https://free.com.tw/monospaced-font-for-programmers/

[下載] WinRAR 解壓縮軟體正式推出中文免費版,別再用盜版破解版了!(32、64 位元)
https://free.com.tw/winrar-free/

Google 閒置帳戶管理員,幫你處理身後的數位遺產繼承
https://free.com.tw/google-inactive-account-manager/

Archive.is 線上備份網頁工具,可下載完整網頁內容或將畫面轉為擷圖
https://free.com.tw/archive-is/

9 個尋找免費設計素材的超棒網站
https://free.com.tw/9-perfect-websites-to-find-free-design-resources/?utm_content=bufferfce85&utm_medium=social&utm_source=facebook.com&utm_campaign=buffer

Seeklogo 收錄全世界超過 30 萬個企業公司 Logo 設計,向量圖格式免費下載!(AI、EPS)
https://free.com.tw/seeklogo/?utm_content=bufferd9e03&utm_medium=social&utm_source=facebook.com&utm_campaign=buffer

Peggo 線上將 YouTube 影片錄音,下載為 MP3 或 MP4 等格式
https://free.com.tw/peggo/

Compressor.io 線上將圖片壓縮 90%,但不減損畫質(支援 JPEG、PNG、GIF、SVG)
https://free.com.tw/compressor-io/?utm_content=buffere010d&utm_medium=social&utm_source=facebook.com&utm_campaign=buffer

pixabay: 免費圖片商業用途使用
pixabay Apple電腦 圖片

voyagin - local 亞洲地陪導遊眾包
https://www.govoyagin.com/

誰都能隨時編輯 Office 了!就用 Google 文件簡報試算表
http://www.playpcesor.com/2014/06/office-google-drive.html

Musicshake online
http://eng.musicshake.com/

The Stocks 精選 16 個免費圖庫素材,收錄在一起更方便搜尋瀏覽
http://free.com.tw/the-stocks

這11個免費圖庫不再千篇一律!下載攝影師的私房照片
http://www.playpcesor.com/2015/03/11-free-photo-stock-download.html

Google+ 相簿是儲存旅遊照片最佳雲端硬碟,我的8個好理由
http://www.playpcesor.com/2013/10/google-8.html

就缺一張好照片?你會優先推薦的免費圖庫:Pixabay
http://www.playpcesor.com/2015/03/pixabay.html

Google Earth 4.2 用中文陪你看星星
http://www.playpcesor.com/2007/08/google-earth-42.html

雲端文書推薦:專業俐落 DocHub 免費 PDF 線上編輯
http://www.playpcesor.com/2015/03/dochub-pdf.html

線上免費學英文!10 個適合台灣用戶的語言學習服務
http://www.playpcesor.com/2015/02/10-free-learning-english.html

響應網路安全日,Google 送你 2GB 免費容量
http://chinese.vr-zone.com/143156/google-safer-internet-day-would-let-you-increse-2gb-google-drive-storage-02112015/

好用的多功能下載軟體《EagleGet》(獵鷹),輕鬆幫你下載檔案及YouTube影片!
http://blog.soft.idv.tw/?p=1443

工作室必備的 10 種讓辨公室變成咖啡館主題音樂音效
http://www.playpcesor.com/2015/01/relax-sound.html

TinyPNG JPG 最佳線上圖片壓縮工具!實測比較教學
http://www.playpcesor.com/2015/01/tinypng-jpg.html

google  Window 7 移除 不用檔案

「 Google 日曆」已經「內建」了台灣人事行政局正式公告的民國 104 年(2015年)的假期行事曆
http://www.playpcesor.com/2014/12/2015-calendar-holiday.html

連猴子都能懂的Git入門指南
http://backlogtool.com/git-guide/tw/

CS50:一堂超過 800 個哈佛學生選修的「硬課」,魅力何在?
http://www.inside.com.tw/2014/12/17/harvard-cs50?utm_source=feedburner&utm_medium=email&utm_campaign=Feed%3A+inside-blog-taiwan+%28%E7%B6%B2%E8%B7%AF%E8%B6%A8%E5%8B%A2%E8%A1%8C%E9%8A%B7%E8%88%87%E9%96%8B%E7%99%BC%29
CS50哈佛官網
https://cs50.harvard.edu/
美國大學線上課程
https://www.edx.org/

Open Web 3D
http://www.verold.com/
  http://www.verold.com/explore
  http://www.verold.com/learn

Phootime 相簿
http://www.phootime.com/zh-tw/pricing

Coggle - 心智圖工具
https://coggle.it/

PicMonkey 不死 Picnik 再生,打造最友善線上修圖驚奇
http://www.playpcesor.com/2012/03/picmonkey-picnik.html

Google Drive 文書之外幫你解決辦公室的10大問題教學
http://www.playpcesor.com/2013/02/google-drive-10.html

Write Space 一個讓你專心寫作、可自訂化的離線編輯器(Chrome 擴充功能)
http://free.com.tw/write-space/

Dropmark 將任何檔案保存到你的線上收藏庫,可視化的資料組織、多人協作及共享平台
http://free.com.tw/dropmark/

13 個我必備的免費線上工具,解決各種臨時工作問題!
http://www.playpcesor.com/2014/09/13-free-web-tools.html

建立個人商業網站
http://onepagerapp.com/
介紹
http://free.com.tw/onepaper/

Google教室
http://blog.soft.idv.tw/?p=1736

退休金試算專區
http://www.sitca.org.tw/PENSION/calculate.aspx

ExtractPDF 將 PDF 文件內的圖檔、文字完整擷取出來
http://free.com.tw/extractpdf/
20 個免費下載創用 CC 授權音樂的網站彙整
http://free.com.tw/creative-common-music-download/

ProxMate 輕鬆突破 Netflix、Hulu、Pandora 等台灣無法開啟的「區域限制」網站
http://free.com.tw/proxmate/

美國手作買賣平台 Etsy
https://www.etsy.com/browse/women/bags-purses?ref=br_nav_new_2

台灣手作買賣平台 Pinkoi
http://www.pinkoi.com/page/store-intro

思源黑體:開放原始碼 Pan-CJK 字型
http://blog.typekit.com/alternate/source-han-sans-cht/

限期免費獲得WonderFox DVD Video Converter序號
http://walker-a.com/archives/2383

Google 好手氣找下個便宜出國地點
http://www.playpcesor.com/2014/06/google-flights-travel.html

DVD 資料夾備份
http://webbbs.tnnua.edu.tw/viewtopic.php?t=765

設定Google Doc 文件下載連結的方法
http://gsyan888.blogspot.tw/2013/02/google-drive-download-link.html

想在網路打出品牌知名度,這 24 個工具你沒下載必後悔
http://techorange.com/2014/03/27/24-tools-take-your-brand-to-new-level/

3D即時顯示各國網路攻擊的狀況
http://cybermap.kaspersky.com/

超級大圖庫 Getty Images 開放你在部落格免費使用精美照片:http://www.playpcesor.com/2014/03/getty-images.html

全球最大圖庫 Getty Images 開放網友免費嵌圖:http://www.inside.com.tw/2014/03/06/the-worlds-largest-photo-service-just-made-its-pictures-free-to-use

天大好消息! 世界知名圖庫 Getty Images 開放嵌入網頁功能 (供非商業使用):http://julia00.blogspot.tw/2014/03/getty-image.html

文件證據儲存機制
http://www.proofofexistence.com

整合性留言管理系統
http://disqus.com/
  介紹
  http://sofree.cc/disqus/
  http://fundesigner.net/disqus-install/
創建網站的工具
http://www.squarespace.com

Youtube 影片英文學習
http://voicetube.tw/
Google+ 相簿是儲存旅遊照片最佳雲端硬碟,我的8個好理由
http://www.playpcesor.com/2013/10/google-8.html

查詢順向坡 - 經濟部中央地質調查所查詢功能
http://www.moeacgs.gov.tw/app/index.jsp
教學
http://www.mobile01.com/topicdetail.php?f=455&t=1539684

Wikimap - 使用者可以在Google Maps提供的地圖上標定一塊矩形區域,稱之為「hotspot」。使用者可替hotspot加上一段文字資訊。這段文字包含三個部分:標題、內容、標籤。三個部分都開放給不特定使用者編輯
http://wikimapia.org

Notepad.cc 線上文章分享服務,實用的雲端記事本
  http://notepad.cc
Gmail 雲端輸入(含日文輸入)
Gmail 與 Google Docs 內建雲端輸入法支援中文日文手寫輸入
  http://www.playpcesor.com/2013/10/gmail-google-docs.html

YouTube推出最新「音樂庫」功能,可免費下載各種背景音樂!
  http://blog.soft.idv.tw/?p=1602

Win7執行日文程式

真正完全免費的線上向量圖形庫—Open Clip Art
  http://blog.soft.idv.tw/?p=1227

Camlistore : your personal storage system for life
  http://camlistore.org/
雲端取得或編輯icon
  IcoMoon
  http://icomoon.io/#home

Web上使用 icon fonts
  http://pictos.cc/articles/using-icon-fonts/

ZeroPC - 雲端PC資源
  http://www.zeropc.com/

想寫出造福世界的程式?你得先通過著作權這關!
  http://techorange.com/2013/07/31/what-coders-should-know-about-copyright-licensing/
我是... 如何參與黑客松
https://hackpad.com/...--ZYU6qiYaQLo
線上學習
  【點矽成章:鄭志凱專欄】過了 200 年,教育還是沒創新!線上遊戲的多玩家 online 概念也許能解
  http://techorange.com/2013/07/17/online-education/
  Coursera
  https://www.coursera.org/

Windows 8的檔案自動備份系統(上)
  http://walker-a.com/archives/2090

線上產生數學公式
http://fcamel-scholar.blogspot.tw/2011/10/blog-post.html

Sound Cloud - Recording and uploading sounds to SoundCloud lets people easily share them privately with their friends or publicly to blogs, sites and social networks.

咖啡店情境 - boost your workday creativity
  http://coffitivity.com/
  http://techorange.com/2013/06/21/coffitivity/

Code for Tomorrow
  http://codefortomorrow.org/
SketchUp 3D模型庫
   http://sketchup.google.com/3dwarehouse/
網路空間 bitshare - 提供下載抽成收入
   http://bitshare.com/faq.html
   http://download.ithome.com.tw/BitShare/8855
免費且功能強大!集儲存、文件應用與協同作業於一身的雲端服務:Google Drive
   http://www.axiang.idv.tw/blog/archives/5910

玩賺部落格
   http://www.blogfuntw.com/

如何利用Google Map在部落格中製作玩樂遊記地圖效果
  http://www.blogfuntw.com/2012/02/google-map1/

Make your map interactive with shape editing and drawing tools
   http://googlegeodevelopers.blogspot.tw/2011/11/make-your-map-interactive-with-shape.html

音樂、音效資源列表
  http://animapp.tw/forum.html?view=topic&catid=31&id=56#803

數位美術教學達人
  http://www.stval.fr/

Plane Finder - 即時飛機雷達地圖
   http://planefinder.net/

公元前4000年到今天的時間軸之人類國家疆域圖
   http://x768.com/wh/?x=5871&y=1153&yr=-4000&z=2&lg=2

線上音效產生器(可播放音效與產生音效檔, open source)
   http://www.bfxr.net/

技術/商業/設計 的社群網站
   http://generalassemb.ly/
Facebook Panda - 把臉書的 Bing 地圖換成 Google 地圖
   http://www.freegroup.org/2012/12/facebook-panda/
分享製作創意
   http://www.instructables.com/
943的窮學生超省錢旅行祕笈
   http://blog.xuite.net/iq943/ez37
動漫資訊
   http://news.aniarc.com/
Miku Images
   http://www.zerochan.net/Hatsune+Miku
Google街景圖快速檢視
http://notlion.github.com/streetview-stereographic

Getty Images - 圖片影音庫授權網站, 全球最大的圖片和視頻代理機構
   http://www.gettyimages.com/
SoundCloud - Share sound & music
   http://soundcloud.com/

TIOBE Programming Community Index for October 2012
   http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html

Youmodm 在線漫畫
   http://www.youmodm.com/

bijin-tokei 美人時計 程式語法產生器
   http://www.bijint.com/jp/pages/gadget/
   http://www.bijint.com/
放入網頁之教學文章(隨意窩 文章)

免費相片搜尋服務
   http://photopin.com/
   http://blog.soft.idv.tw/?p=1301

TeachersPayTeachers 創業,助老師販售自製教材,破千萬美金營業額
   http://mrjamie.cc/2012/09/26/teacherspayteachers/
  TeachersPayTeachers
     http://www.teacherspayteachers.com/
建立HTML 5 + javascript 的網站 (a Browser-based editor, 可以用iPad)
   http://jsdo.it/

Google Drive
   http://playpcesor.blogspot.com/2012/04/google-drive.html

自由世界地圖
   http://www.openstreetmap.org

HTML to PDF
   http://html-pdf-converter.com/
 5個轉換服務網站評比
   http://kewang.pixnet.net/blog/post/25729053-%E4%BA%94%E5%A4%A7html-to-pdf%E7%B6%B2%E7%AB%99%E8%A9%95%E8%AB%96

推薦:7 個有趣好用的旅行工具
   http://techorange.com/2012/06/05/7-traveling-tools/
   http://mashable.com/2012/06/03/travel-tools/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Mashable+%28Mashable%29#666676-Gogobot

設計訂製布料
   Spoonflower
      http://www.spoonflower.com/welcome
   Fabric on demand
      http://www.fabricondemand.com/
   http://wired.tw/2012/08/20/spoonflowers-diy-textiles/index.html?utm_medium=referral&utm_source=pulsenews

自助出版
   http://www.lulu.com/

分析網站服務

Google Analytics 流量分析新增網站速度統計,安裝追蹤碼教學
http://playpcesor.blogspot.com/2011/05/google-analytics.html
Google Page Speed Online 知名網站測速工具推出更易用線上版
http://playpcesor.blogspot.com/2011/04/google-page-speed-online.html
https://developers.google.com/pagespeed/
GTmetrix 線上免費分析網站效能缺陷,根治拖慢網頁速度元兇
http://playpcesor.blogspot.com/2010/05/gtmetrix.html
http://gtmetrix.com/
即時追蹤網站統計服務
https://mixpanel.com/

查詢世界各地歷史天氣
http://www.wunderground.com/

自製 Google 離線地圖:沒網路照用 Google Maps
   http://3c.msn.com.tw/View.aspx?ArticleID=55835&pageIndex=1
使用 Galileo 與 Mobile Atlas Creator 之離線地圖測試心得
   http://changyy.pixnet.net/blog/post/28560101-%E4%BD%BF%E7%94%A8-galileo-%E8%88%87-mobile-atlas-creator-%E4%B9%8B%E9%9B%A2%E7%B7%9A%E5%9C%B0%E5%9C%96%E6%B8%AC
Ptt
    http://disp.cc/
網路集資
   Kickstarter
       http://www.kickstarter.com/
       介紹文章...
          http://www.bnext.com.tw/article/view/cid/0/id/10932
          http://www.inside.com.tw/2010/11/30/kickstarter-funding-platform-for-creative-projects
   線上募款服務平台 Razoo.com
      http://www.razoo.com/
   網路讀者捐一塊錢
      http://www.dideo.com/
      介紹
      http://techorange.com/2012/05/31/dideo/

Google以圖搜尋
  http://www.techbang.com.tw/posts/6134-google-images-search-in-an-attempt-to-search-on-line-there-are-pictures-to-help-you-find-people
以圖找網站
  http://www.techbang.com.tw/posts/3634-find-out-who-copied-pictures-of-my-work

HTML5 繪圖範例
   http://hakim.se/experiments

「中文全字庫」免費的書法字型下載
   http://www.cns11643.gov.tw/AIDB/welcome.do
   簡介
   http://key.chtouch.com/ContentView.aspx?P=316

Mixpanel:即時性的Web與Mobile流量分析服務
   http://www.inside.com.tw/2010/11/09/mixpanel-realtime-analytics-for-web-and-mobile-applications
Picasa 儲存空間變為技術性無上限
   http://playpcesor.blogspot.com/2011/02/google-picasa.html
   http://www.instantfundas.com/2011/02/picasa-web-album-storage-space-now.html

Youtube轉影片下載
   方便好用的免費YouTube音樂下載器YouTube Song Downloader 2013
     http://blog.soft.idv.tw/?p=912
   http://www.convertvideotoaudio.com
  12個線上影片下載網站
     http://www.freegroup.org/2010/01/12-online-video-downloader/#.UNUT7uSt_Xc

免費線上影片轉MP3服務
  http://www.listentoyoutube.com/

  SimpleShare 上傳與螢幕操作截圖
      http://sites.box.net/apps/web/simpleshare/
      教學
         http://playpcesor.blogspot.com/2011/06/boxnet-simpleshare-5gb.html

自製離線版手機地圖
  http://www.techbang.com.tw/posts/2236-operation-to-save-money-made-off-line-3g-mobile-phone-version-of-the-map
  iphone
  http://www.techbang.com.tw/posts/3512-iphone-can-play-off-the-map

免費相片
   http://www.gettyimages.com

買賣程式碼的服務
  binpress
      http://www.binpress.com/

C# Codeing Style Guide
  http://www.csharpfriends.com/articles/getarticle.aspx?articleid=336

DAZ Studio 4 限時免費下載
  http://www.freegroup.org/2011/06/free-daz-studio-4-giveaway/

free image
    http://ookaboo.com/o/pictures/

free music
    http://www.jamendo.com/

bbs
  如何在Windows 7下開啟Telnet功能上BBS?
     http://steachs.com/archives/1559


檔案上傳下載空間
 Minus
   http://minus.com/
 教學
   http://playpcesor.blogspot.com/2011/08/minus-200mb10gb.html

  http://www.freegroup.org/2010/03/freakshare/

  http://freakshare.com/
      FreakShare
         單檔大小:未註冊 250MB / 註冊用戶 1500GB
  http://oron.com/
         單檔大小:未註冊 200MB / 註冊用戶 400MB
      下載限制:註冊用戶可下載 2000MB / 3天
         檔案類型:支援所有類型的檔案
         刪除時間:30天無人下載
         必須註冊:免費註冊
         收益
           使用你的網站、部落格或微網誌,推薦使用者加入Oron.com。
           上傳有趣的檔案,分享到其他網站讓其他使用者下載,無論哪個國家下載檔案都會列入計算。
           每 1000 次下載可以賺取 $10 美金(很划算喔!)。
           推薦連結進入Oron.com並付費購買會員,推薦者可以獲得50%收益。

  72dpi.cc 最簡單的 10GB 檔案分享空間,流量無限制
    http://www.freegroup.org/2011/09/free-file-hosting-72dpi-cc/

原文連結: http://www.freegroup.org/2010/04/oron/#ixzz1EBbUcGZj

原文連結: http://www.freegroup.org/2010/04/oron/#ixzz1EBb4X4Cr
電子書
  http://www.mobile01.com/newsdetail.php?id=9443
 好讀網站
     http://www.haodoo.net/?M=hd&P=welcome

測試OpenMP功能
   http://www.cnblogs.com/oomusou/archive/2008/03/05/1091619.html

Google GData
  http://michaeljoking.myip.org/modules/tadnews/index.php?nsn=156
  http://code.google.com/p/google-gdata/

部落格觀察
 http://look.urs.tw/

Open Source 儲存空間
 GitHub
   http://github.com/

ShareThis
  Get Button
       http://sharethis.com/publishers/get-sharing-button

頁籤訪客雷達
   http://radarurl.com/
3D訪客地圖
   http://www.revolvermaps.com/?target=home

天氣Web元件
   http://www.tenki.tw/index.php

free online database
  Grubba
      http://grubba.net/


資訊交換
 http://www.linkedin.com
      James Lu, aery.scope@gmail.com, li76190239

Tumblr 部落格平台

freeGROUP 免費資源網路社群平台

How-to Guides - 操作指引資源平台

Free Icons
   http://www.iconspedia.com/

免費火柴盒式紙玩具,輕鬆製作可愛紙模型
     http://readymech.com/
免費圖示、桌布和 Paper toys
   http://www.iconbulk.com/
hobikitkertas : 紙模型展開圖手作資源網站

身份證字號產生
  http://people.debian.org/~paulliu/ROCid.html

http://www.google.com/friendconnect/home/intro

http://tech.cipper.com/index.php/archives/325

http://www.codeplex.com/touchless/Release/ProjectReleases.aspx?ReleaseId=17986

YUI : a free, open source JavaScript and CSS library for building richly interactive web applications.

BloggerAds - 一個國內Web廣告平台

Vibrant - 提供從文字內容連結廣告的 solution

Scribd - Web Publish 平台

免費網頁與相關編輯功能
  http://www.edicy.com/zh

免費PHP 500MB網頁空間
   http://www.hostinginfive.com/index.php

免費 DNS
   https://dns.he.net/

免費放自己開發之下載軟體檔案Web空間
   http://www.free-downloads.net/developers.php

2GB免費網路硬碟, 支援同步自動備份
   https://www.sugarsync.com/

免費1GB相簿中文介面, 圖片可外連.
  http://www.pikeo.com/

FreeMarker 提供一個簡單的方法,讓你將要表現的資料嵌入到網頁上,它讓你將應用軟體的邏輯與畫面設計分開,使用它,你就可以封裝HTML變成一個Wizard來使用。
      http://www.freemarker.org/

人臉搜尋
    輸入關鍵字
        http://www.facesaerch.com/

資安
    Blog
        網路功防戰
                   http://anti-hacker.blogspot.com/

部落格觀察
    http://look.urs.tw/

XSS攻擊防禦技術白皮書
    http://anti-hacker.blogspot.com/2008/11/xss.html

解決網站被 SQL injection 攻擊
   http://blog.wu-boy.com/2008/06/26/285/

How addons.mozilla.org defends against XSS attacks
  http://micropipes.com/blog/2009/02/23/how-addonsmozillaorg-defends-against-xss-attacks/

AMO 防範 XSS 的方式
   http://twpug.net/modules/newbb/viewtopic.php?topic_id=3964

臺灣PHP聯盟
  http://twpug.net/

CakePHP
  http://code.cakephp.org/

CodeIgniter - CodeIgniter is a powerful PHP framework with a very small footprint, built for developers who need a simple and elegant toolkit to create full-featured web applications.
   [CodeIgniter] Open Source PHP Web Framework 系列講座(AppleBOY 文章)

WordPress

貼Source Code 的工具網站

Maker Shed - Arduino 產品商店

網路雲端與Linux操作達人-阿舍 blog

數位教育能賺錢!Treehouse 實現 360 萬美元營收(科技報橘 文章)

icon 圖示免費下載!介面設計師用得到的9個免費圖庫(電腦玩物 文章)

2016年3月19日

為了讓Windows10可以玩上古卷軸5 天際 Skyrim...

因為裝了Windows 10,原來可以玩的Skyrim會閃退無法執行,先在官網找到這篇文章
What do I do if The Elder Scrolls V: Skyrim is crashing on my Windows 10 machine?
照做了一遍,NVidia繪圖卡驅動程式也更新了,還是不行...
後來又google到一篇,
DirectX 9 and Direct Play on Windows 10 and Windows 8

想說是不是Windows 10 的 DirectX 12不支援DirectX 9的程式,結果也照著文章所說,把 DirectX 9的程式也裝了,還是無法執行...

正當無技可施之際,後來去Steam的Skyrim介面,發現有檢查檔案正確性的功能,把語言從中文轉為英文,檢查發現需更新遊戲檔案,更新檔案後,就可以正確執行 Skyrim 了。

2014年11月13日

Javascript, PHP, HTML5 & Web網頁與程式開發學習資源

推薦18個基於 HTML5 Canvas 開發的圖表庫

15個網上免費圖片庫
http://seeddauding.blogspot.tw/2014/09/blogging-free-pics.html

Brace.io 以 Dropbox 架設靜態網頁,直接網上編修程式碼
http://free.com.tw/brace-io/

EnjouCSS - CSS3 Code Generator
http://enjoycss.com/

Become a Web Designer, Start Here
http://www.1stwebdesigner.com/resource/become-web-designer/

架設PHP環境 on Windows (使用 EasyPHP)
http://fstoke.me/blog/?page_id=198

How to Call a PHP Function on the Click of a Button
http://stackoverflow.com/questions/20738329/how-to-call-a-php-function-on-the-click-of-a-button

CSS 技巧網站
http://www.oxxostudio.tw/
http://www.oxxostudio.tw/articles/201408/sticky-ball.html

CALLING OPENGL FROM C ON THE WEB BY USING EMSCRIPTEN, SHARING COMMON CODE WITH ANDROID AND IOS
http://www.learnopengles.com/calling-opengl-from-c-on-the-web-by-using-emscripten-sharing-common-code-with-android-and-ios/

Build WebGL applications with C++ and asm.js
http://www.slideshare.net/Minko3D/minko-build-webgl-applications-with-casmjs

Deploying C++ to JavaScript using Emscripten
http://www.joshuagranick.com/blog/2013/04/21/deploying-cpp-to-javascript-using-emscripten/

Using Emscripten on Windows
https://github.com/kripken/emscripten/wiki/Using-Emscripten-on-Windows

3D development with WebGL, Part 1: Introducing WebGL
  http://www.ibm.com/developerworks/web/library/wa-webgl1/index.html

glsl.js - glsl.js, a Javascript + GLSL library = DRY & efficient
  http://greweb.me/2013/02/glsl-js-a-javascript-glsl-library-dry-efficient/

webgl-loader
   https://code.google.com/p/webgl-loader/
webgl samples
   https://code.google.com/p/webglsamples/

Phaser - A fast and free open source framework supporting Javascript
http://www.phaser.io/
Orbital Debris – Making an HTML5 Game With Phaser
http://www.gamedev.net/page/resources/_/technical/game-programming/orbital-debris-%E2%80%93-making-an-html5-game-with-phaser-r3666

Construct 2(C2)教學
  http://www.memoryabc.com/joomla/index.php/2013-07-31-09-53-12/2013-07-31-10-10-33/construct2-1
Flat UI Kits 資源
  http://www.script-tutorials.com/flat-ui-kits/

Three.js 個人網站範例
  http://mystaticself.com/#/work

3D Eye
  http://vill.ee/eye/

20個 jQuery 教學範例
  http://www.hksilicon.com/kb/articles/355101/Web-20-jQuery
教學影片
  https://www.khanacademy.org/hour-of-code/hour-of-code-tutorial/v/welcome-hour-of-code

上傳檔案範例
  http://www.codeproject.com/Tips/700593/FileUpload-Filter-File-Type-File-Extension-File-Si

Libchart - PHP 圖表 Lib
  http://naku.dohcrew.com/libchart/pages/samplecode/

Writing Fast JavaScript For Games & Interactive Applications
  http://www.gamedev.net/page/resources/_/technical/game-programming/writing-fast-javascript-for-games-interactive-applications-r3516

SyntaxHighlighter  顯示程式碼的 free 網頁元件程式庫
  http://alexgorbatchev.com/SyntaxHighlighter/
  教學
  http://blog.xuite.net/andy19890411/Orz/37326267-%E3%80%90Blog%E3%80%91Blogger%E4%B8%8A%E5%AE%89%E8%A3%9DSyntaxHighlighter
  http://www.inote.tw/2009/02/blogger.html

Socket.IO
   http://socket.io/
Build algorithmic 3D structures with JavaScript - grow3.js
  http://grow3.zyxxy.de/index.html
Google Maps API
  https://developers.google.com/maps/?hl=zh-TW
Google Maps JavaScript API 第3版
  https://developers.google.com/maps/documentation/javascript/?hl=zh-TW

打造個人地圖!利用Google Maps分享你的吃喝玩樂
  http://sofree.cc/mymaps/

code school - 邊做邊學
http://www.codeschool.com/
   git 操作課程
   http://try.github.io/levels/1/challenges/1
   http://gitreal.codeschool.com/?utm_source=github&utm_medium=codeschool_option&utm_campaign=trygit

jQuery版台灣地區地址輸入輔助元件
   http://blog.darkthread.net/post-2013-05-26-twaddrhelper-github.aspx?utm_source=feedly

Word套表與轉存PDF
  http://blog.darkthread.net/post-2013-06-01-word-to-pdf.aspx

我的JSDC 2013筆記
  http://blog.darkthread.net/post-2013-05-20-my-jsdc2013-notes.aspx

使用OpenSSL建立CA及簽發SSL憑證
  http://blog.darkthread.net/post-2013-05-17-iis-ssl-cert-by-openssl.aspx

黑暗執行緒 - Programming 達人blog
http://blog.darkthread.net/

Writing Testable JavaScript
  http://alistapart.com/article/writing-testable-javascript/

20 Fresh JavaScript Data Visualization Libraries
  http://sixrevisions.com/javascript/20-fresh-javascript-data-visualization-libraries/

如何在 Google Drive 建立 HTML 網頁?
  http://steachs.com/archives/2961

內嵌網頁指定位置
   http://blog.csdn.net/xb5186/article/details/8065168

Javascript 參考讀物清單
    https://docs.google.com/document/d/1PVhqArmOoTDrZ9KW2PheQNYd8-8m_Rbx6WtiKeQSupM/edit

JavaScript 教學
   電子書
      http://jsbooks.revolunet.com/
   線上範例實作學習
    http://www.w3schools.com/js/js_examples.asp
   http://taiwantc.com/js/index.html
 Javascript 教學文章庫
   http://www.study-area.org/coobila/category_Javascript_u6559_u5B78.html
 javascript 教材
   http://www.w3schools.com/js/default.asp
 教學入口
   http://net.tutsplus.com/
video style tutorials
  http://thecodeplayer.com/

  設計師的 JavaScript 繪卷:與眾不同的 JS 物件
      http://ithelp.ithome.com.tw/question/10092226
  ETBlue the Programmer
      http://etblue-programmer.blogspot.tw/

  你其實並不懂JavaScript
     http://ideasnow.diggbooks.net/?p=263
     http://www.w2lessons.com/2011/04/you-dont-know-javascript.html

用HTML和Javascript開發iPhone/Android原生軟體-Mobile Web App Framework總整理
  http://www.lis186.com/?p=2030

PhoneGap - An Open Source Mobile Framework
  官網
     http://phonegap.com/
  介紹
     http://www.bnext.com.tw/article/view/cid/103/id/19558
     http://www.youtube.com/watch?v=E0UV5i5jY50&feature=player_embedded

CoffeePhysics. A JavaScript / CoffeeScript Physics Engine
 http://soulwire.co.uk/coffeephysics/#

js + HTML 翻頁範例
http://www.turnjs.com/#home

Webkit 內核探究
  http://www.cnblogs.com/jyli/archive/2010/01/31/1660355.html
  http://www.cnblogs.com/jyli/archive/2010/01/31/1660364.html

HTML5 Polyfill自動補完函式庫:Webshims Lib
  http://jas9.blogspot.com/2012/04/html5-polyfillwebshims-lib.html

jQuery 教學
  http://abgne.tw/

jQuery Mobile Resource
  http://jquerymobile.com/resources/

使用 jQuery Mobile 快速開發 mobile 網站
  http://brooky.cc/2011/04/18/jquery-mobile-for-fast-mobile-website-development/

AwesomeChartJS is a simple Javascript library that can be used to create charts based on the HTML 5 canvas element.
  http://cyberpython.github.io/AwesomeChartJS/

Highcharts - javascript 互動圖表 library
  http://www.highcharts.com/
  demo
    Highcharts
      http://www.highcharts.com/demo/
    Highstock
      http://www.highcharts.com/stock/demo/
  blog
   強大的jQuery圖表套件-Highcharts
     http://www.dotblogs.com.tw/lastsecret/archive/2011/01/30/21137.aspx
   一款漂亮的jQuery Chart Plug-in-Highcharts
     http://www.dotblogs.com.tw/jimmyyu/archive/2010/03/21/jquery-plug-in-highcharts.aspx

   教學
     Highcharts 使用指南 + 教學
       http://www.cnblogs.com/liuhaorain/archive/2012/01/24/2311352.html

     PHP
      HighChartsPHP
        https://github.com/ghunti/HighchartsPHP
      HighChartWrapper
        https://code.google.com/p/highchartwrapper/

JsFiddle - 雲端Web開發工具
  官網
   http://doc.jsfiddle.net/
  進入
   http://jsfiddle.net/
  blog
   http://blog.jsfiddle.net/

網頁後端
   nodeJS Taiwan
      http://nodejs.tw/

2011網頁開發熱門技術 – Node.js
   http://www.inside.com.tw/2011/03/13/new-tech-nodejs
很屌的 Node.JS (1)
   http://syshen.cc/post/5452172966/node-js-1

不規則向量圖形檢查 Raphael-JavaScript Library
   http://raphaeljs.com/

javascript函數進階教學
   http://msdn.microsoft.com/zh-tw/magazine/cc163419.aspx

Popular Watched (javascript 佔大宗)
   https://github.com/popular/watched

學習HTML5
http://www.html5rocks.com/en/

Fluent 2012-O'Reilly首度舉辦的JS研討會部份影片資訊
   http://ithelp.ithome.com.tw/question/10093421
   youtube 影片列表
   http://www.youtube.com/view_play_list?p=PL75AC4484E6866741

2011年度優秀Mozilla Demoparty賞析
   http://tech.blog.ithome.com.tw/trackbacks/2767/124868

Three.js
   http://threejs.org/
   http://mrdoob.github.com/three.js/
   https://github.com/mrdoob/three.js

   海浪與水上摩托車的DEMO
      http://inear.se/breaking_waves/#
   3D 達人作品
      http://www.inear.se/

Data-Driven Documents
   http://d3js.org/

HTML 簡報正夯:html5slides, deck.js, impress.js 使用心得
   http://www.icoding.co/2012/07/html-html5slides-deckjs-impressjs.html

Javascrpit Blog
   iCoding
      http://www.icoding.co/

WebGL中文教程
   http://www.hiwebgl.com/?p=42

Oak3D 免費WebGL javascript library
   http://www.oak3d.com/

開發者的技能樹
  http://www.dungeonsanddevelopers.com/

2014年11月6日

3D Programming Resource (3D 程式設計資源)

微軟線上教材: DirectX 程式設計的基礎

Dynamic vertex pulling with D3D11

Good resources for game/3D development

Building an Open-Source, Cross-Platform 3D Game with C++, OpenGL and GLSL, from the Ground Up

Three.js terrain 物理碰撞

How To Make WebGL Animations
Youtube 教學影片
Blog 教學文章

three.js 教學資源

Real-time GPU Ray-Tracer

Volume Rendering - GigaVoxels
   http://realtimevoxels.blogspot.tw/2012/09/introduction-to-gigavoxels-and-sparse.html
  http://maverick.inria.fr/Publications/2011/Cra11/

Cyril Crassin 網站
  http://www.icare3d.org/
  http://www.reddit.com/r/VoxelGameDev/comments/122qv0/realtime_voxels_extending_gigavoxels_and_sparse/
官網:
  http://gigavoxels.inrialpes.fr/index.htm

Perspective projections in LH and RH systems
http://www.gamedev.net/page/resources/_/technical/graphics-programming-and-theory/perspective-projections-in-lh-and-rh-systems-r3598

A Blending Animation Controller for a Skinned Mesh
  http://www.gamedev.net/page/resources/_/technical/graphics-programming-and-theory/a-blending-animation-controller-for-a-skinned-mesh-r3592

WebGL 教學
  http://coderellis.blogspot.tw/2014/02/webgl-demo01-3d-transformation-and.html

0 A.D. open source
http://os.wildfiregames.com/
http://www.wildfiregames.com/

Project Tango - Google 行動3D專案
http://www.google.com/atap/projecttango/

Humus - 提供 DirectX10/OpenGL 框架與範例程式
Humus - 3D, DX10/OpenGL code sample

OpenGL Charting Library / stock chart
  Champion Stock Chart Viewer Version 1.01
    https://github.com/Xangis/StockViewer
    http://zetacentauri.com/software_stockchartviewer.htm
  MathGL
    http://sourceforge.net/projects/mathgl/?source=pdlp

DirectX 11 engine
  http://hieroglyph3.codeplex.com/

OCEAN WAVE SIMULATION 海水海浪模擬動畫
A ocean wave simulation in WebGL with a CSS 3D and Canvas UI by David Li.

Building a 3D MMO using Websockets
  http://www.gamedev.net/page/resources/_/technical/multiplayer-and-network-programming/building-a-3d-mmo-using-websockets-r3392
Game Programming Spatial Partition
  http://gameprogrammingpatterns.com/spatial-partition.html
8個驚艷的HTML5 和 JavaScript 特效
  http://www.cnblogs.com/lhb25/archive/2011/08/09/awesome-html5-and-javascript-effects.html

Game Physics - 遊戲程式設計的物理學知識介紹

Polygonising a scalar field
  http://paulbourke.net/geometry/polygonise/
BVH File Loading and Displaying
  http://www.gamedev.net/page/resources/_/technical/game-programming/bvh-file-loading-and-displaying-r3295
Loading OBJ model to VBO
  http://www.gamedev.net/topic/646328-loading-obj-model-to-vbo/
Designing Parametric Animation Systems
  http://www.gamedev.net/page/resources/_/technical/graphics-programming-and-theory/designing-parametric-animation-systems-r3241

Hide Objects Blocking Player View
  http://www.gamedev.net/page/resources/_/technical/game-programming/hide-objects-blocking-player-view-r3215

Rendering and Simulation in an Off-Road Driving Game
  http://www.gamedev.net/page/resources/_/technical/game-programming/rendering-and-simulation-in-an-off-road-driving-game-r3216

Useless Snippet #1: Transform Vec3f by Matrix4x4f
  http://www.gamedev.net/page/resources/_/technical/general-programming/useless-snippet-1-transform-vec3f-by-matrix4x4f-r3208

Ten Things to Achieve When Starting 3D Programming
  http://www.gamedev.net/page/resources/_/technical/game-programming/ten-things-to-achieve-when-starting-3d-programming-r3209

Free 3D Model Download
  3D Freebie Model Download
    http://3dfreebie.com/home.aspx
  3D Model World
    http://3dmodelworld.com/downloads.aspx

Recast - An open source navigation mesh construction toolset library for games.
   https://code.google.com/p/recastnavigation/
 blog
   http://digestingduck.blogspot.tw/

Gildor's Homepage tools download (Unreal model viewer, max importer)
  http://www.gildor.org/downloads
UE Viewer
  http://www.gildor.org/en/projects/umodel

The Free 3D Models 資源
  http://thefree3dmodels.com/

Real-Time Rendering 資源
  http://www.realtimerendering.com/

GarageGames Torque 3D 開始Open Source
   http://www.garagegames.com/community/blogs/view/21952
 Torque 3D source code
   https://github.com/GarageGames/Torque3D

LOL
  自製skin與3D model
    http://skins.freebbs.tw/forumdisplay.php?fid=53&page=1
    3D Model
    http://skins.freebbs.tw/viewthread.php?tid=205&extra=page%3D1
  如何安裝自製的skin
    http://www.gamebase.com.tw/forum/60895/topic/95851564/1#95851564
  lol file importer/exporter for Blender 2.5
    https://code.google.com/p/lolblender/
  lol file format
    https://code.google.com/p/lolblender/wiki/fileFormats
  lol model viewer from google code
     http://code.google.com/p/lolmodelviewer/
  RAF manager project
     http://www.itzwarty.com/RAF/
     https://code.google.com/p/raf-manager/
  LOLKING Web Character Viewer
     http://www.lolking.net/models

Game File Format Central
   http://wiki.xentax.com/index.php?title=Game_File_Format_Central

Free Miku Max model
   http://xenoaisam.com/2011/01/12/free-miku-model/
   from
      http://xenoaisam.com/

MikuMikuDance (MMD) 介紹
   http://en.wikipedia.org/wiki/MikuMikuDance
   http://dontshow.pixnet.net/blog/post/37292538-niconico%E5%82%B3%E8%AA%AA%E4%B9%8B%E4%BB%80%E9%BA%BC%E6%98%AFmmd%EF%BC%9F--xd
Motion舞步的Nico神人-百舌谷??所製作的MMD動作描繪教學動畫
   http://blog.xuite.net/kitsunesaru/kaito/63161121-MMD+-+%E7%A5%9EMotion%E7%9A%84%E8%A3%BD%E4%BD%9C%E6%B5%81%E7%A8%8B%E6%95%99%E5%AD%B8%E5%8B%95%E7%95%AB%E7%BF%BB%E8%AD%AF%E5%AE%8C%E7%95%A2!
  MMM - MikuMikuMoving
     https://sites.google.com/site/moggproject/mmm_eng
巴哈姆特初音討論區
   http://forum.gamer.com.tw/A.php?bsn=60499

Miku 3D 全息投影
    http://home.gamer.com.tw/creationDetail.php?sn=1558954
  全息投影DIY
    http://forum.gamer.com.tw/C.php?page=1&bsn=60499&snA=13631
    http://www.putpi.com/xin/652.html
    http://news.17173.com/content/2012-05-25/20120525110608971_1.shtml
    http://forum.gamer.com.tw/Co.php?bsn=60499&sn=65060
    倒三角全息投影器DIY
    http://news.17173.com/content/2012-06-27/20120627012416789_all.shtml

3D Tech News and 3D Programming
   http://www.geeks3d.com/
Programming
  PMD format
    https://sites.google.com/site/moggproject/mmm_eng

MikuMikuDance簡易圖文教學其之1 - MMD 模型導入&持物配件固定 (含軟體下載教學)
   http://blog.xuite.net/kitsunesaru/kaito/22036344
MMD下載英文網頁 (VPVP英文官網,VocaloidPromotionVideoProject)
   http://www.geocities.jp/higuchuu4/index_e.htm
  官方教學資源
    http://www.geocities.jp/higuchuu4/index_e.htm
  專文介紹
     http://digitdream-land.blogspot.com/2009/07/incredible-mikumikudance.html
  學習資源網站
    http://learnmmd.com/
    MikuMikuBeat
    https://sites.google.com/site/mikumikubeat/bulletin-board
  forum
    http://www.vocaforum.com/forum.php
  MMD:FAQ (編輯中)
    http://mikumikudance.wikia.com/wiki/MMD:FAQ
  PMD Editor 教材
    https://sites.google.com/site/mikumikubeat/tutorials/pmdedit/01
  Guide Making a simple PMD Model (for Mikumikudance)
    http://www.vocaforum.com/showthread.php?t=183
  MikuMikuDance(MMD)暨中文化推廣
    http://forum.gamer.com.tw/Co.php?bsn=60499&sn=33184

MMD <---> Blender
   http://www.oogtech.org/content/tag/import-from-mmd-to-blender/
plugins:
 VMDImporter (for Blender v2.49?) 把MMD用的動作模組讀進Blender
   https://sites.google.com/a/render.jp/vmdimporter/
   教材與資源
   https://sites.google.com/a/render.jp/vmdimporter/Home/hontai-to-tsukaikata
 Blender2pmd - 把Blender的3D模型轉換成MMD人物模組

 MMD Tuto : Import Models In Blender
   http://kukla-factory.deviantart.com/art/MMD-Tuto-Import-Models-In-Blender-302877409
 Blender2PMD Installation Tut (for Blender v2.49)
   http://jerisenigma.deviantart.com/art/Blender2PMD-Installation-Tut-293622388
Miku & Blender 2.52
   https://sites.google.com/site/khuuyjblend/home/blender
 
Blender 教材資源
  初學教學資源
     2.4X
        http://wiki.blender.org/index.php/Doc:2.4/Books/Essential_Blender
    http://digitized-life.blogspot.tw/2012/04/blender.html
    http://blendertips.com/tutorials.html
  Blender Cookie
   http://cgcookie.com/blender/
  用Blender建立一個森林場景
   http://www.gamedev.net/blog/33/entry-2254908-creating-a-forest-scene-in-blender/

兩張照片產生3D Model
   http://www.photosculpt.net/
CGTextures - CG/3D Model Texture
   http://www.cgtextures.com/
Fix Your Timestep!
  http://gafferongames.com/game-physics/fix-your-timestep/
Main Loop with Fixed Time Steps
  http://www.flipcode.com/archives/Main_Loop_with_Fixed_Time_Steps.shtml

OpenGL 教學
   設定Visual C++ express
       http://openglbook.com/setting-up-opengl-glew-and-freeglut-in-visual-c/
   OpenGL 3.3+ 教學資源
       http://www.opengl-tutorial.org/
       教學: 使用cmake
       http://www.opengl-tutorial.org/beginners-tutorials/tutorial-1-opening-a-window/
   CMake
     http://www.cmake.org/cmake/resources/software.html
     入門/建置執行檔 http://zh.wikibooks.org/wiki/CMake_%E5%85%A5%E9%96%80/%E5%BB%BA%E7%BD%AE%E5%9F%B7%E8%A1%8C%E6%AA%94

Books
  OpenGLBook.com (OpenGL 4.0)
       http://openglbook.com/the-book/
  OpenGL Insights - OpenGL, OpenGL ES, and WebGL community experiences
    http://openglinsights.com/
  GPU Gems 3 線上版
    http://http.developer.nvidia.com/GPUGems3/gpugems3_ch01.html

  Learning Modern 3D Graphics Programming 網頁版
    http://www.arcsynthesis.org/gltut/

3D model file compression
   http://lspiroengine.com/?p=36
OpenCTM - the Open Compressed Triangle Mesh file format
   http://openctm.sourceforge.net/

3D 繪圖範例
   http://www.iquilezles.org/www/index.htm
 
SCEngine - Voxel Engine
   http://www.scengine.org/index
   code
   https://gitorious.org/scengine
Open Game Engine
   hmrEngine
       http://www.hmrengine.com/blog/

Windows Voxel Game
   http://www.indiedb.com/games/lemma
   blog
      http://et1337.wordpress.com/2013/05/06/lemma-alpha-3-ready-to-play/
   code
      https://github.com/et1337/Lemma

GPU based simulation and visualization of fluids with free surfaces
   http://www.martin-schreiber.info/diplomathesis.html
   Youtube
      http://www.youtube.com/watch?v=RKjLlejwRoo&feature=related

Floyd is a collection of 3D libraries, mathematics and scene libraries and utilities. The main parts of it are geometry library Elea, OpenGL scene graph library Miletos and posing application Khayyam.
     http://sourceforge.net/projects/floyd/
     http://floyd.sourceforge.net/

react3d : an open-source library for producing real-time dynamic 2d and 3d character animations on-the-fly
   http://code.google.com/p/react3d/

Cal3D : a skeletal based 3d character animation library
   http://gna.org/projects/cal3d/
DANCE is a software package for physics-based character animation and simulation
   http://www.arishapiro.com/dance/

a young man work - animadead : a skeletal animation library
   http://animadead.sourceforge.net

Digital yuusha modding archives. Some AG3 clothes editor talk, but nothing about AG3 in general.
   http://xtsukihime.blogspot.com/
Importing characters from games
   http://xtsukihime-cc.blogspot.tw/
3D Models format 入門學習 - 3D model reversing
   http://xtsukihime-3d.blogspot.tw/

Experimentation with 3D posing and animation blog - Khayyam
   http://khayyam.kaplinski.com/

free 3D resource
   http://opengameart.org/
   http://www.turbosquid.com/
   http://www.deviantart.com/
   http://lauris71.deviantart.com/gallery/
Where to find free 3D models?
   http://khayyam.kaplinski.com/2011/03/where-to-find-free-3d-models.html

   http://www.turbosquid.com/3d-models/tween-girl-blend-free/583223

Rendering Water as a Post-process Effect
      http://www.gamedev.net/page/resources/_/technical/graphics-programming-and-theory/rendering-water-as-a-post-process-effect-r2642

nGENE
   Creator's Blog
       http://wtomandev.blogspot.com/
   Web
       http://ngene.wikidot.com/

CryENGINE 3 Free SDK
   http://www.crydev.net/dm_eds/download_detail.php?id=4

線上編輯人物動作, 人物動作商店
   http://www.mixamo.com/

a free open-source 3D application framework
  PixelLight
     http://www.pixellight.org/site/index.php/page/1.html

3D大頭照製作
   http://www.techbang.com.tw/posts/2072-3d-bulk-of-photographs-with-one-set-of-hair-cosmetics

Open Source Game Development
    http://www.devmaster.net/

物理運算教學 電子書 The Nature of Code
   免費網頁版
      http://natureofcode.com/book/
   官網
      http://natureofcode.com/

3D World Simulation
   http://www.euclideanspace.com/
3D Physics
   http://www.euclideanspace.com/physics/index.htm

Physics Engine
    Newton Dynamics - an accurate 3d Physics Library for real-time simulation of physics environments
         http://newtondynamics.com/forum/newton.php
         http://code.google.com/p/newton-dynamics/
Scythe - a modeling tool for physics engines
    http://www.physicseditor.com/index.shtml

Open Source Rendering Engine
   CG_GL
      http://mion.elka.pw.edu.pl/~sgasioro/

Open Source Game Engine
   Maratis3D
        http://www.maratis3d.com/
   3DVIA
        http://www.3dvia.com/

Assimp
    http://assimp.sourceforge.net/index.html
    內含(Irrlicht Engine Irr file importer)

自然場景
    Gugila, GroundWiz
      http://www.gugila.com/index.html

人體建模
     Make Human - Open Source
       http://www.makehuman.org/
       http://makehuman.blogspot.com/
       http://droger.pixnet.net/blog/post/6771895
       http://en.wikipedia.org/wiki/MakeHuman
       http://www.macuknow.com/node/212
       http://hammerbchen.blogspot.tw/2007/02/human-anatomy.html

人臉建模
     FaceGen
       http://www.facegen.com/index.htm

以Boujou製作實拍與電腦動畫合成
   http://hammerbchen.blogspot.tw/2007/05/boujou.html


Kinect

 Kinect 的軟體開發方案:OpenNI 簡介
  http://kheresy.wordpress.com/2011/01/19/openni_1st/

 透過 OpneNI 讀取 Kinect 深度影像資料
  http://kheresy.wordpress.com/2011/01/20/read_kinect_depth_data_via_openni/

 在 WIndows 上安裝 Kinect(含 MMD 使用 Kinect 簡易教學)
  http://kheresy.wordpress.com/2010/12/25/use_kinect_on_windows/

多線程遊戲引擎

    Intel Demo
      http://software.intel.com/en-us/articles/colony/
      http://software.intel.com/en-us/articles/parallel-programming-vc/
      http://software.intel.com/en-us/articles/tickertape/
      http://software.intel.com/en-us/articles/multi-threaded-fluid-simulation-for-games/

    articles
      http://www.geeks3d.com/20100418/game-engine-multi-threading-programming-resources/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+TheGeeksOf3d+%28The+Geeks+Of+3D%29&utm_content=Google+Reader

http://www.bennychen.cn/2011/01/%e5%85%b3%e4%ba%8e%e6%b8%b8%e6%88%8f%e5%bc%95%e6%93%8e%e5%a4%9a%e7%ba%bf%e7%a8%8b%e7%9a%84%e4%b8%80%e4%ba%9b%e6%95%b4%e7%90%86%e5%92%8c%e6%80%9d%e8%80%83/

3D RAD - Free 3D Game Maker:
   http://www.3drad.com/

Open Asset Import Library
   http://sourceforge.net/projects/assimp/
   http://assimp.sourceforge.net/index.html

OGRE
   http://www.ogre3d.org/

Irrlicht Engine
   http://irrlicht.sourceforge.net/index.html

Make3D - Convert your image into 3d model
    http://make3d.cs.cornell.edu/index.html

Efficient Sparse Voxel Octrees
    http://code.google.com/p/efficient-sparse-voxel-octrees/

Real-time ray tracing
  the Arauna real-time ray tracer
      http://igad.nhtv.nl/~bikker/

  Tachyon
      http://jedi.ks.uiuc.edu/~johns/raytracer/

  OpenRT
      http://openrt.de/

  POV-Ray
      http://www.povray.org/

  Ray Tracing News Guide
      http://tog.acm.org/resources/RTNews/html/index.html

Real-time radiosity
   Molecular Musings
       http://molecularmusings.wordpress.com/

Google Web 3D
     http://code.google.com/intl/zh-TW/apis/o3d/
     http://www.youtube.com/watch?v=uofWfXOzX-g&feature=channel

a bvh animation editor
     http://www.avimator.com/
     http://qavimator.org/

3D Game Maker
   Platinum Arts Sandbox Free 3D Game Maker 2.4 Release!
      http://sandboxgamemaker.com/

open free 3D flash engine
    Papervision3D
       http://dev.papervision3d.org/
       http://code.google.com/p/papervision3d/
       http://blog.papervision3d.org/

3D共用檔案格式
  COLLADA
        http://www.khronos.org/collada/
        https://collada.org/mediawiki/index.php/COLLADA_-_Digital_Asset_and_FX_Exchange_Schema
        http://en.wikipedia.org/wiki/COLLADA

MS SDK Mesh file format
    http://msdn.microsoft.com/en-us/library/ee417522(VS.85).aspx

Blog
   Maya 每日一招
    http://maya-tricks.blogspot.com/

素材買賣服務
  http://www.the3dstudio.com/

Blender
    http://www.blender.org/
    http://blender.tw/news.php
    Building Blender
         http://www.blender.org/development/building-blender/
         http://wiki.blender.org/index.php/Dev:Doc/Building_Blender

face recognition
   http://www.face-rec.org/algorithms/
   http://www.facedetection.com/facedetection/software.htm
   http://www.shervinemami.co.cc/faceRecognition.html

即時戰略Open Source
   Warzone 2100
       http://wz2100.net/

MyGUI is a library for creating Graphical User Interfaces (GUIs) for games and 3D applications.
   http://mygui.info/
賽車Game
    StuntRally
       https://code.google.com/p/vdrift-ogre/
Blog
  Illumination
    http://blog.icare3d.org/

Sean Hand-painting Tutorial
   http://goraaz.se/SeanTutorial.html

3D
   第4點D投影到前3個點(A,B,C)所構成的平面,找出投影點D' 的座標。
   
Tinkercad - a CAD model editor for a 3D printer
   https://tinkercad.com/

OPL2 - An open source replacement for the Polygon Love 2 game engine
   http://sourceforge.net/projects/opl2/?source=navbar
opl2 - Multi-platform open-source engine for "Polygon Love 2"
   http://code.google.com/p/opl2/
open-pl2 - Open source 3D engine supporting 'PL2' resource files
   http://code.google.com/p/open-pl2/

OpenGL Shading code
   http://pastebin.com/YXP6j9vN

免費免安裝 建模工具軟體 - Sculptris
  http://www.pixologic.com/sculptris/

Game Research Forum - XeNTaX
  http://forum.xentax.com/viewforum.php?f=24

Ogre3d 達人blog - 與食人魔獸之間的恩怨情仇
   http://makedreamvsogre.blogspot.tw/
zevoid blog - .serializeTo(blog)
   http://zevoid.blogspot.tw/
lookof blog - ?限?光 : 近?地形算法??小?
  http://www.cnblogs.com/lookof/archive/2009/12/30/1636289.html
痞子?3D?程 blog
  http://blog.csdn.net/pizi0475

me3explorer - Game Model Exporting
  http://me3explorer.freeforums.org/index.php

Bioshock infinite shader
   https://drive.google.com/folderview?id=0BzqpBc4MrAMXYzQyY1VYQVBMR2c&usp=sharing

Unreal Forum
  Unreal coding
    http://www.gildor.org/smf/index.php/board,21.0.html
  UE Viewer / Umodel
    http://www.gildor.org/smf/index.php/board,3.0.html
  Bioshock
    http://www.gildor.org/smf/index.php/board,24.0.html

Game Engine
  GTGameEngine - someone free game engine
    http://mackron.github.io/GTGameEngine/

BVH File Loading and Displaying
http://www.gamedev.net/page/resources/_/technical/game-programming/bvh-file-loading-and-displaying-r3295

Writing Endian Independent Code in C++
http://www.gamedev.net/page/resources/_/technical/general-programming/writing-endian-independent-code-in-c-r3301

True3F*Shell, open source 3D desktop
    http://www.sixtyfourbit.org/3dshell.htm
  MQ4CPP, Message Queuing for C++, open source implementation
    http://www.sixtyfourbit.org/mq4cpp.htm

Build algorithmic 3D structures with JavaScript - grow3.js
  http://grow3.zyxxy.de/index.html

3D檔案格式與工具資源 - David Henry's homepage
  http://tfc.duke.free.fr/

Ogre骨架動畫分析 from 夸父的筆記
  http://www.cppblog.com/flyindark/archive/2012/07/25/OgreSkeletonAnimation.html
CEGUI 筆記
  http://www.cppblog.com/flyindark/archive/2011/06/13/148586.aspx

從Depth map取得Eye-Space空間座標
http://briclin.blogspot.tw/2012/02/depth-mapeye-space.html

如何利用RGBA_8888,壓縮浮點RGBA [0.0, 1.0]數值
http://briclin.blogspot.tw/2011/01/rgba8888rgba-00-10.html

Game Development with Win32 and DirectX 11 - Part 00: Setup
http://www.gamedev.net/page/resources/_/technical/game-programming/game-development-with-win32-and-directx-11-part-00-setup-r3032

opengl freetype 中文顯示 學習
http://huangchunquanmaker.blog.163.com/blog/static/1074084832011526112724145/

glut 教學 - glPrintf() 秀中文字
http://www.programmer-club.com/showsametitlen/opengl/2650.html

SDL2 教學範例
http://lazyfoo.net/tutorials/SDL/index.php

blog
VISUAL REVOLUTION OF THE VANISHING OF ETHAN CARTER
http://www.theastronauts.com/2014/03/visual-revolution-vanishing-ethan-carter/

Agisoft Photoscan - 從照片轉成3D模型的軟體
http://www.agisoft.ru/

2014年4月3日

顯示網路圖的工具軟體

因為工作的關係,需要透過網路圖分析不同項目彼此連結的程度,尋找網路上可用的網路圖顯示工具軟體。
在相關的wiki網頁有相關介紹...
 http://en.wikipedia.org/wiki/Graph_drawing

發現有兩套似乎不錯: Gephi & Cytoscape

Gephi
    http://en.wikipedia.org/wiki/Gephi
    http://gephi.org/users/download/
    source code
    https://wiki.gephi.org/index.php/Checkout_Code


2013年6月9日

軟體開發基礎開源程式庫 #1 - zlib

zlib 程式庫提供打包檔案與加解密的功能,是許多軟體的基礎元件,許多開源程式庫皆使用並已內含於專案檔案中。

透過官網可下載取得zlib原始碼與執行版本:
http://zlib.net/

研讀 zlib 原始碼與說明文件,練習編譯與使用 zlib,可學習到軟體專案的目錄架構編排方式。目前的版本已支援 64 bit,zlib 的跨平台程式碼、文件說明都是不錯的範例教材,值得想開發開源專案的朋友們學習。

如何用Visual Studio 2010 編譯ZLib Lib:
http://blog.sina.com.cn/s/blog_6e0693f70100sjgj.html

編譯好的Windows DLL:
http://www.winimage.com/zLibDll/index.html

2013年5月14日

3D程式開發準備(3D Programming Beginning) #2 OpenGL 程式庫編譯設定與四種可用資源(freeglut,SDL, Allegro, GLFW)



各種Open GL程式庫編譯環境設定:

GLUT與GLEW:  使用早期的 glew 與 freeglut 程式庫
   Setting up OpenGL, GLEW, and FreeGLUT in Visual C++
       
   亦可參考這篇...
   Compiling OpenGL Progams at Home Using Visual Studio


隨著OpenGL的版本與功能演進,可以用的程式庫資源如下...

freeglut - 支援 Windows
     http://freeglut.sourceforge.net

SDL - 支援 Windows, Linux, OSX
     http://www.libsdl.org/

Allegro - 支援 Windows, Linux, OSX, IOS(iPhone/iPad)
     http://alleg.sourceforge.net/

GLFW - 支援 Windows, Linux, OSX
      http://www.glfw.org/index.html

2013年4月15日

3D程式開發準備(3D Programming Beginning) #1 OpenGL 學習資源

OpenGL 學習資源

編譯環境設定:

  使用早期的 glew 與 freeglut 程式庫
   Setting up OpenGL, GLEW, and FreeGLUT in Visual C++
       http://openglbook.com/setting-up-opengl-glew-and-freeglut-in-visual-c/

   可參考第二篇相關文章" #2 OpenGL 程式庫編譯設定與四種可用資源(freeglut,SDL, Allegro, GLFW)"

線上網頁版電子書 :

   OpenGLBook.com (OpenGL 4.0) - A Free OpenGL Programming Book
       http://openglbook.com/the-book/

   OpenGL Insights - OpenGL, OpenGL ES, and WebGL community experiences
       http://openglinsights.com/

   GPU Gems 3 線上版
       http://http.developer.nvidia.com/GPUGems3/gpugems3_ch01.html

   Learning Modern 3D Graphics Programming 網頁版
       http://www.arcsynthesis.org/gltut/

2013年3月12日

Visual Studio Express 與 Professional (專業版) 的差異


最近安裝了Visual Studio 2010 Express的軟體(C++, C#),想了解與專業版(Professional)的差異,於是編譯測試了一些程式碼範例。

Visual Studio C++ Express為例,我發現可產生Lib, DLL, EXE等檔案,也可以透過內附的 MASM ml.exe 編譯 x86 組合語言的 asm 程式,但只能產生32位元版本的程式檔案。
從 UI 介面上亦發現支援編譯產生 Mutl-Threaded 或 Open MP 的 Code

其他較清楚的差異說明資訊,終於在網路上發現微軟官方的說明,分享給大家參考。
(下次如果老闆或主管問為什麼要買專業版而不用免費版時,這些資訊就可以拿出來用。)

上述網頁中微軟的相關說明文字摘錄於下:

QVisual Studio Express Professional 以上版本的主要功能差異?

AExpress僅提供最基本開發功能供學習及上手用,Professional/Premium/Ultimate 主要是供專業開發者/企業及團隊開發用,因功能差異點很多,但對於專業開發者實務開發上,在此列出 Express 版的主要差異,
1. 有限的專案範本與專案類型的支援
Visual Studio Express 版大多內建於各式 Microsoft 開發套件 (SDK),例如 Visual Studio 2010 Express for Windows Phone 內建於 Windows Phone SDK 7.1。還有些是可以獨立安裝的,如開發 ASP.NET / ASP.NET MVC Visual Web Developer Express,或開發 Windows Form 應用程式的 Visual Basic Express, Visual C++ ExpressVisual C# Express
依據不同的用途,Express 版僅提供最基本的專案範本,從網路上下載的一些專案類型或程式碼範例很有可能無法開啟,原因可能是少了專案範本、項目範本,例如:安裝專案 (Setup Project)、單元測試專案、WCF 服務、SQL Server 報表應用程式、工作流程應用程式等。
除此之外,像是類別設計師 (Class Designer)、程式碼定義視窗 ( Code Definition Window ) 等則無法使用。
2. 缺少巨集功能
一般在開發專案時,會利用巨集功能處理一些重複性的編輯工作,在 Visual Studio 2010 Express 無法使用。
3. 缺少 Visual Studio 2010 擴充管理員 ( Add-Ins, Wizard, VSPackages … )
Visual Studio 2010 擴充管理員提供 Visual Studio 2010 的擴充能力,可以下載並安裝許多好用的免費元件、擴充套件及範本、範例程式等,使用 Express 版無法使用擴充管理員。
關於一些常用的擴充套件,可以參考 Visual Studio 2010 開發技巧文章  Visual Studio Gallery,可以找到很多非常實用的套件。
4. 缺乏版本控管及完整軟體生命週期管理機制
Visual Studio 2010 Professional / Premium/ Ultimate 內建了與 Team Foundation Server (TFS) 伺服器整合的相關功能,但是在 Visual Studio 2010 Express 裡是不支援的。
5. 偵錯工具(Debugging Tools)
偵錯功能是開發過程中極其重要的功能,Visual Studio 2010 Express 裡有基本的功能,例如設定中斷點、單步執行、監看式視窗 (Watch Window)、本地變數視窗 (Local Window)、呼叫堆疊視窗 (Call Stack Window)、即時視窗 (Immediate Window)、輸出視窗 (Output Window) 等。
但還有一些常見的偵錯功能在 Visual Studio 2010 Express 並不提供,例如:附加至處理序 (Attach to process)、自動視窗 (Autos Window)、中斷點視窗 (Breakpoints Window)、呼叫瀏覽器 (Call Browser)JIT 偵錯 (Just-In-Time Debugging)
6. 單元測試 (Unit Test) - Express 版不提供單元測試功能
7. 64 位元程式開發  – Express 版不支援 64 位元應用程式開發
8. 若是 Web 開發者 - 下表列出 Visual Studio 2010 Professional 中可用的額外功能。更高階版本 – Premium Ultimate 亦包含 Professional 版的全功能,詳細功能比較,請參考 - Visual Studio 2010 版本比較表
功能
詳細資料
Web 控制項程式庫範本
Web 控制項程式庫專案範本可讓開發人員撰寫自訂的 Web 伺服器控制項。範本會加入建立控制項所需的專案項目,接著才能將控制項加入至任何 Web 專案。
Windows Presentation Foundation (WPF)
Windows Presentation Foundation (WPF) 提供統一的程式撰寫模型 (Programming Model),可為使用者建置豐富的 Windows 用戶端,在其中整合 UI、媒體和文件。
ASP.NET Crystal Reports
Crystal Reports Visual Studio 的報表工具,可讓開發人員建立互動、具簡報品質的內容。
SQL Server Compact Edition
SQL Server Compact Edition 是一款免費且容易使用的內嵌式資料庫引擎,可讓您建置穩固的 Windows 桌面及行動應用程式,以在所有 Windows 作業系統 (包括 Windows XPVistaPocket PC 以及 Smartphone) 上執行。
其他XML 功能
Visual Studio 包含 XML 支援,例如:
·         XSLT 偵錯工具。
·         XSD 結構描述設計工具。
·         XML 執行個體建立 XML 結構描述的能力。
·         XML 編輯器檢視 XSLT 輸出的能力。
·         編輯 XSLT 樣式表時的智慧驗證支援。
·         用於 XML 編輯的即時線上工具列。
其他程式碼編輯功能
Visual Studio 包含其他程式碼相關功能,例如 [程式碼定義] 視窗和更多的重構 (Refactoring) 支援。
[程式碼定義] 視窗是唯讀的編輯器檢視,可顯示使用中專案儲存在程式碼檔案中或加以參考之符號的定義。
重構 (Refactoring) 是在程式碼撰寫之後,藉由變更程式碼內部結構來改善程式碼的程序,這項程序不會變更程式碼的外部行為。
其他建置支援
Visual Studio 包含其他建置支援,包含定義建置前和建置後命令的功能、強式名稱簽署,與程式碼存取安全性 (CAS) 設定。
其他程式碼撰寫公用程式
Visual Studio 包含其他程式碼撰寫公用程式,例如原始檔控制的整合支援。它同時含轉換公用程式,可將 Visual Basic 6.0 專案轉換為 Visual Studio 中的 Visual Basic 專案。