Posts
TensorFlow - Install TensorFlow on MAC
要在 MAC 下安裝 TensorFlow,可以直接透過 pip 安裝,也可以透過 Virtualenv 等方法安裝。
這邊筆者使用 Virtualenv,所以要先安裝 Virtualenv。
sudo pip install 00upgrade virtualenv 創建一個沙盒。
virtualenv --system-site-packages ~/tensorflow 啟動沙盒環境。
source ~/tensorflow/bin/activate 最後透過 pip 將 TensorFlow 安裝起來即可。
pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.11.0rc0-py2-none-any.whl 安裝完後可以使用 python 測試一下 TensorFlow 是否已可正常使用,輸入 python 命令進入交互模式,引用 tensorflow 套件,調用 version 查閱 TensorFlow 的版本。
import tensorflow as tf tf.__version__ Link 在Mac OS X上安装TensorFlow - 纯净的天空
read morePosts
TensorFlow - Installing TensorFlow on Ubuntu
要在 Ubuntu 下安裝 TensorFlow,可先用 apt-get 更新一下。
sudo apt-get update 更新完後使用 apt-get 安裝 python 與 pip。
sudo apt-get install python-pip python-dev 最後透過 pip 將 TensorFlow 安裝起來即可。
sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp27-none-linux_x86_64.whl 安裝完後可以使用 python 測試一下 TensorFlow 是否已可正常使用,輸入 python 命令進入交互模式,引用 tensorflow 套件,調用 version 查閱 TensorFlow 的版本。
import tensorflow as tf tf.__version__ 如果可以正常看到 TensorFlow 版本的話代表 TensorFlow 已被正常安裝完成。
Link 真正從零開始,TensorFlow安裝入門教程!(圖文版) | 香港矽谷
read morePosts
VisualCV - Online CV Builder and Professional Resume CV Maker
VisualCV 能將 LinkedIn Profile 匯入套用模版變成漂亮的個人化履歷。
使用時可按下首頁的 Import from LinkedIn 按鈕。
登入 VisualCV。
然後就可以開始進行履歷的編輯。
如果有在使用 LinkedIn,這邊可以回到 Dashboard。
按下 + New 按鈕。
點選 Import resume/CV 按鈕。
選取匯入從 LinkedIn 匯出的 Profile。
選取要套用的範本。
即會看到 VisualCV 幫我們產生好的 Resume,點選上方的 PDF 按鈕即可下載來使用。
Link Online CV Builder and Professional Resume CV Maker - VisualCV
read morePosts
'Resumonk - Resume Builder, Cover Letter Templates, CV Maker'
Resumonk 能將 LinkedIn Profile 匯入套用模版變成漂亮的個人化履歷。
使用時需先按下首頁上方的 Create your resume 按鈕。
點選 Import from LinkedIn 按鈕。
將 LinkedIn Profile 匯出成 PDF 檔,然後點選 Browse PDF File 按鈕。
選取匯出的 LinkedIn Profile 檔。
點選 Upload & Process LinkedIn PDF 按鈕。
匯入完後若有需要也可直接在 Resumonk 上做些編輯。
切至 Preview & Download 頁籤,可選取喜歡的 Resume 範本。
也可調整文字的字型/間隔/顏色。
都選好後點選 Download 按鈕。
點選要下載的檔案格式即可取得產出的 Resume 檔。
Link Resumonk - Resume Builder, Cover Letter Templates, CV Maker | Resumonk
read morePosts
LinkedIn - Saving a Profile in a PDF Format
要將 LinkedIn profile 匯出成 PDF 檔,可以點選 LinkedIn 右上角的帳號圖示,點選 View profile 按鈕切換至 LinkedIn profile。
點選 More… 按鈕。
再點選 Save to PDF。
LinkedIn profile 即會被下載成 PDF 檔。
值得注意的是該功能目前只支援英文的 profile。
Link Saving a Profile in a PDF Format | LinkedIn Help
read morePosts
Flutter - Drawer class
Flutter 的 Drawer widget 需搭配 Scaffold 使用,可用以設定 Scaffold 左側的選單。
其建構子如下:
Drawer({Key key, double elevation: 16.0, Widget child, String semanticLabel }) 屬性如下:
Name Type Description child Widget The widget below this widget in the tree. elevation double The z-coordinate at which to place this drawer. This controls the size of the shadow below the drawer. semanticLabel String The semantic label of the dialog used by accessibility frameworks to announce screen transitions when the drawer is opened and closed.
read morePosts
Flutter - BottomNavigationBar class
Flutter 的 BottomNavigationBar widget 需搭配 Scaffold 使用,可用以設定 Scaffold 下方的巡覽列。 其建構子如下:
BottomNavigationBar({Key key, @required List<BottomNavigationBarItem> items, ValueChanged<int> onTap, int currentIndex: 0, BottomNavigationBarType type, Color fixedColor, double iconSize: 24.0 }) 屬性如下:
Name Type Description currentIndex int The index into items of the current active item. fixedColor Color The color of the selected item when bottom navigation bar is BottomNavigationBarType.fixed. iconSize double The size of all of the BottomNavigationBarItem icons. items List The interactive items laid out within the bottom navigation bar.
read morePosts
Flutter - AppBar class
Flutter 的 AppBar widget 需搭配 Scaffold 使用。
其建構子如下:
AppBar({Key key, Widget leading, bool automaticallyImplyLeading: true, Widget title, List<Widget> actions, Widget flexibleSpace, PreferredSizeWidget bottom, double elevation: 4.0, Color backgroundColor, Brightness brightness, IconThemeData iconTheme, TextTheme textTheme, bool primary: true, bool centerTitle, double titleSpacing: NavigationToolbar.kMiddleSpacing, double toolbarOpacity: 1.0, double bottomOpacity: 1.0 }) 屬性如下:
Name Type Description actions List Widgets to display after the title widget. automaticallyImplyLeading bool Controls whether we should try to imply the leading widget if null.
read morePosts
Flutter - Scaffold class
Flutter 的 Scaffold widget 可用來實現基本的 material design layout。
其建構子如下:
Scaffold({Key key, PreferredSizeWidget appBar, Widget body, Widget floatingActionButton, FloatingActionButtonLocation floatingActionButtonLocation, FloatingActionButtonAnimator floatingActionButtonAnimator, List<Widget> persistentFooterButtons, Widget drawer, Widget endDrawer, Widget bottomNavigationBar, Color backgroundColor, bool resizeToAvoidBottomPadding: true, bool primary: true }) 屬性如下:
Name Type Description appBar PreferredSizeWidget An app bar to display at the top of the scaffold. backgroundColor Color The color of the Material widget that underlies the entire Scaffold. body Widget The primary content of the scaffold.
read morePosts
Flutter - ListView class
Flutter 的 ListView 元件是一具備捲軸的元件且能用來顯示多筆內容的元件。
其建構子如下:
ListView({Key key, Axis scrollDirection: Axis.vertical, bool reverse: false, ScrollController controller, bool primary, ScrollPhysics physics, bool shrinkWrap: false, EdgeInsetsGeometry padding, double itemExtent, bool addAutomaticKeepAlives: true, bool addRepaintBoundaries: true, List<Widget> children: const [] }) ListView.builder({Key key, Axis scrollDirection: Axis.vertical, bool reverse: false, ScrollController controller, bool primary, ScrollPhysics physics, bool shrinkWrap: false, EdgeInsetsGeometry padding, double itemExtent, @required IndexedWidgetBuilder itemBuilder, int itemCount, bool addAutomaticKeepAlives: true, bool addRepaintBoundaries: true }) ListView.
read more