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個免費圖庫(電腦玩物 文章)