2019年9月23日 星期一
出現安裝畫面時,按 Shift+F10 進入命令提示
diskpart
DISKPART> list disk
DISKPART> select disk 0
DISKPART> clean
DISKPART> convert mbr
完成後關閉視窗,繼續執行安裝到指定硬碟步驟。
標籤: Windows
2019年9月8日 星期日
當發生 adb server version doesn’t match this client; killing… 問題時,常常因為有別的軟體在使用 adb server
2019年7月8日 星期一
2019年6月27日 星期四
自B1至L1欄擇優計算5次成績
公式
=AVERAGE(LARGE(B1:L1,{1,2,3,4,5}))
標籤: Office, Statistics
2019年6月3日 星期一
第一步:下載 Anaconda (https://www.anaconda.com/)
1. 選擇 Python 3.7 Version2. 點擊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)
標籤: Bioinfo
2019年4月18日 星期四
1. 開啟工作表
2. 點選"取代"工具
3. 游標移至"尋找目標"區,按 "ctrl + enter"
4. "取代成"區,保持不輸入任何符號
5. 點選全部取代
2019年3月6日 星期三
1. 下載程式 - Android Studio
<?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>
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>
標籤: App
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欄其它儲存格
2018年12月24日 星期一
一、上課時
1. 使用oCam 進行上課PPT錄製
- Menu --> 選項 -->
- (1) effect --> 加入滑鼠游標醒目效果
- (2) 儲存路徑一定要重新指定到已存在目錄
- 錄製區域選擇全螢幕
2. 使用錄音機隨身收音
二、後製階段
- 先使用 Audacity 將所需聲音片段匯出(刪除不需要處)
- 使用 Openshot 進行影音對齊, 找到待會在 XMedia Recode 影像切割開始與結束的時間點
- 使用 Losslesscut 將影片的前後不需要處刪除
- 使用 MKVToolNix進行影音封裝為 MKV格式
PS. 依此模式所製作1024x768清晰影音檔案大小約 180M/小時
標籤: Teach


