2019年11月29日 星期五

Uranus 設定圖片路徑

  sbox := GetDocumentsPath + PathDelim;
  Delete (sbox,length(sbox)-10,10);
  sbox := sbox + 'res' + PathDelim;

2019年11月4日 星期一

Epitope Databases

2019年9月23日 星期一

出現安裝畫面時,按 Shift+F10 進入命令提示

diskpart
DISKPART> list disk
DISKPART> select disk 0
DISKPART> clean
DISKPART> convert mbr

完成後關閉視窗,繼續執行安裝到指定硬碟步驟。

2019年9月8日 星期日

當發生 adb server version doesn’t match this client; killing… 問題時,常常因為有別的軟體在使用 adb server


解決方法

1. 關閉常駐用使用 adb server adb server 的程式
2. 打開工作管理員 , 強制關閉 adb.exe 程式
3. 重新執行 Scrcpy.exe crcpy.exe 程式

若是為 adb interface adb interface 無法安裝, 可透過ADB Driver Installer安裝





2019年7月8日 星期一

Micro

F16 1/250 1/8

2019年6月27日 星期四

EXCEL 擇優計算成績

自B1至L1欄擇優計算5次成績

公式
=AVERAGE(LARGE(B1:L1,{1,2,3,4,5}))

2019年6月3日 星期一

第一步:下載 Anaconda (https://www.anaconda.com/)

1. 選擇 Python 3.7 Version
2. 點擊Anaconda3-2019.03-Windows-x86_64.exe 進行安裝
3. 建議此處全部打勾


第二步:下載最新的 Pymol 2.4

網址 https://www.lfd.uci.edu/~gohlke/pythonlibs/#pymol
檔名:pymol‑2.4.0a0‑cp37‑cp37m‑win_amd64.whl
將下載的檔案移至安裝目錄 (例如: D:\pymol_install)

第三步:安裝

1. 執行 Anaconda powershell prompt


2. 命令行輸入“pip install pmw”
3. 切換到安裝目錄 --> 命令行輸入“CD D:\pymol_install"
4. 命令行輸入“pip install pymol-2.4.0a0-cp37-cp37m-win_amd64.whl"
5. 進入 Anaconda 的安裝目錄,找到Anaconda3\Scripts文件夾(預設值在這C:\ProgramData\Anaconda3\Scripts),裡面有pymol.exe 拖一個快捷鍵到桌面

2019年4月18日 星期四

1. 開啟工作表
2. 點選"取代"工具
3. 游標移至"尋找目標"區,按 "ctrl + enter"
4. "取代成"區,保持不輸入任何符號
5. 點選全部取代

2019年3月6日 星期三

1. 下載程式 - Android Studio

2. 在 Android Studio 之中以 Empty Activity開啟新專案

3. 修改[app] --> [Manifest] 下的 AndroidManifest.xml,加入加入網路權限


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.XXX">
    <uses-permission android:name="android.permission.INTERNET"/>
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

4. 修改 [app] -->[res] --> [layout]下的 activity_main.xml,為Webview

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <WebView
        android:id="@+id/web_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

5. 修改主程式 [app] -->[java]-->[com.example.XXX]--> MainActivity ,匯入 webView,WebSettings , webViewClient;讓 JavaScript順利執行,呼叫 setJavaScriptEnabled;增加返回功能。
package com.example.xxx;

import android.app.ProgressDialog;
import android.content.pm.ActivityInfo;
import android.graphics.Bitmap;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.webkit.WebView;
import android.webkit.WebSettings;
import android.webkit.WebViewClient;

public class MainActivity extends AppCompatActivity {

    WebView web_view;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
        web_view = (WebView) findViewById(R.id.web_view);
        web_view.getSettings().setBuiltInZoomControls(true);
        web_view.getSettings().setJavaScriptEnabled(true);
        web_view.setWebViewClient(new WebViewClient());
        web_view.loadUrl("https://sites.google.com/");
    }

    public void onBackPressed() {
        if (web_view.canGoBack()) {
            web_view.goBack();
            return;
        }
        super.onBackPressed();
    }
}

6. 修改 [app] -->[res] --> [values] --> style.xml ,移除標題欄
<resources>
    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"></style>
</resources>

2019年1月21日 星期一

若要對檢查某個儲存格是否存在既存資料表二的某欄中,並進行提示,可設定如下
1. 指定要格式化的儲存格,例如 A1
2. 常用 --> 設定格式化的條件 --> 使用公式用決定要格式化些儲存格
3. 公式為 =A1=vlookup(A1,工作表2!$A$1:$A$15,1,0)
* 其中第一格A1為設定Vlookup的回傳值與那一格資料進行比對
* vlookup(想要查閱的值,工作表2!;被檢索資料庫範圍,範圍中傳回值的欄號,完全符合) 
4.  設定格式 --> 確定
5. 複製格式
6. 套用到A欄其它儲存格