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安裝入門教程!(圖文版)