繼續往下一階段邁進

好久沒有更新部落格了
發現進了新公司後,許多時間是被綁住的

雖然持續學習laravel、swift、android以及raspberry、arduino等技術

不過新公司這些一些也沒有特別用到XDDD

這陣子在準備換新的網域空間,到時候再分享囉!

RAD Studio 10.2.1 Release 1出爐了!

父親節Embarcadero捎來了一份禮物,在官方部落格上宣布RAD Studio 10.2.1 Release1可以下載了(RAD Studio 10.2.1 Released Today),主要當然是一些bug fix外,也多了一些功能。

    • Delphi Linux server performance enhancements for both RAD Server and DataSnap.

    1. Delphi and C++ compiler and linker updates that resolve issues loading packages, especially when debugging, on Windows 10 Creators Update.

    1. Support for latest versions of iOS and Xcode (iOS 10.3 and XCode 8.3.2) when targeting the iOS App Store.

    1. FireDAC support for MSSQL 2012, 2014, 2016, and ODBC Driver 13.

    1. Significant C++ linker improvements pertaining to linking larger projects.

    1. Fixes and enhancements to the Runtime Library and VCL.

    1. Additional Android enhancements around control rendering and performance, and fixes for TEdit issues with Android N.

    1. FireDAC Support for InterBase 2017 Exclusive Isolation Level and Transaction Wait Time.

    1. Changes in DataSize for fields of type ftInteger and ftLongWord to avoid using the platform-dependent LongInt and LongWord type (the change affects only 64-bit Linux and 64-bit iOs platforms), and related changes for SetFieldData and GetFieldData

    Fixes for over 140 issues reported by customers in Quality Portal.

樹莓派(Raspberry)建置Lazarus(Linux版Delphi)環境

cmd模式 arp-a
B8-27-EB是Raspberry Pi的MAC起始位址
透過putty連入(預設帳密 pi/raspberry)
sudo apt-get update 更新
sudo apt-get -y install xrdp 安裝遠端桌面
sudo apt-get update 取得遠端更新伺服器的套件檔案清單
sudo apt-get -y install fpc 安裝FreePascalComplier
sudo apt-get -y install lazarus 安裝Linux上的免費Delphi開發工具 Lazarus

AngularJS 學習筆記(一) – 建置

一、到 https://nodejs.org/en/download/ 下載 node.js 及npm套件

二、安裝完後到命令字元(WIN+R) 輸入 npm -v  以及 node -v 確認版本

三、命令字元

npm install -g @angular/cli

四、切換至專案目錄,建立一個新的專案happyweb

ng new happyweb

五、切換到 happyweb目錄下,開啟服務並打開瀏覽器檢視(打開瀏覽器為 –open 或 –o) 埠為4200

cd my-app
ng serve --open

六、成功的話會看到畫面如下