公告版位

沒有痛苦 就沒有收穫
若內容對你有幫助,可以留言讓我知道哦~
有問題想要諮詢可以請至這裡連絡我哦 =>不會就放這邊

 


【下載工具】

http://www.lab-z.com/wp-content/uploads/2018/07/changeacpi.7z

[以上工具配合下面指令 若失效改下方,指令改名即可]

文章標籤

JL8051 發表在 痞客邦 留言(0) 人氣()

#include <stdio.h>
union{
    int myint;
    struct {
        char char4;
        char char3;
        char char2;
        char char1;
    } myChars;
}myUnion;


union{
    char mychar;
    struct {
        unsigned  bit0 :1;
        unsigned  bit1 :1;
        unsigned  bit2 :1;
        unsigned  bit3 :1;
        unsigned  bit4 :1;
        unsigned  bit5 :1;
        unsigned  bit6 :1;
        unsigned  bit7 :1;
    }bits;
}cc;



int main()
{
    myUnion.myint = 0x11223344;
    printf("1=%x\n", myUnion.myChars.char1);
    printf("2=%x\n", myUnion.myChars.char2);
    printf("3=%x\n", myUnion.myChars.char3);
    printf("4=%x\n", myUnion.myChars.char4);
    //yourUnion.yourSplitInterger = 0x1234;
    
    cc.bits.bit0 = 1;
    return 0;
}

文章標籤

JL8051 發表在 痞客邦 留言(0) 人氣()

posted & non posted transaction
就其中posted 與non-posted transaction來說可以看PCI中的講解
PCI 總線規定了兩類數據傳送方式,分別是Posted 和Non-Posted 數據傳送方式。其中使用Posted 數據傳送方式的總線事務也被稱為Posted 總線事務;而使用Non-Posted 數據傳送方式的總線事務也被稱為Non-Posted 總線事務。

文章標籤

JL8051 發表在 痞客邦 留言(0) 人氣()

Constant/value

Description

VK_LBUTTON

文章標籤

JL8051 發表在 痞客邦 留言(0) 人氣()

Windows 10使用傳統的「相片檢視器」

步驟1.安裝 PhotoViewer.reg
方法是先下載(對這個連結按右鍵->另存新檔)

文章標籤

JL8051 發表在 痞客邦 留言(0) 人氣()

  1. 在 [設計] 索引標籤的 [變體] 群組中,選取能開啟色彩變化庫的向下箭號

    選取能開啟色彩變化庫的向下箭號
  2. 從下拉式功能表中,選取色彩,然後按一下 [自訂色彩] 功能表的底部。

    在 [色彩] 功能表底部,選取 [自訂色彩

    [建立新的佈景主題色彩] 對話方塊隨即開啟。

文章標籤

JL8051 發表在 痞客邦 留言(0) 人氣()

<?php
if(isset($_POST["action"])&&($_POST["action"]=="join")){
    

JL8051 發表在 痞客邦 留言(0) 人氣()

<?php
// 建立 MySQL 資料庫的連線
$connection = mysql_connect('localhost', 'root', '123');

JL8051 發表在 痞客邦 留言(0) 人氣()

1.2 先註冊NO-IP
3.填寫下列資料
4.填寫完後請按「I Accept, Create my Account」

JL8051 發表在 痞客邦 留言(0) 人氣()

找到的資料有
在[我的電腦]按右鍵選[管理]
在[電腦管理]頁面的下方點擊[網際網路資訊服務IIS管理員]的圖示

JL8051 發表在 痞客邦 留言(0) 人氣()

python太多語法,放這邊練習


filedialog 對話框函數測試

import tkinter as tk

JL8051 發表在 痞客邦 留言(0) 人氣()

更新: 原來是我read回來最後一個字串帶有換行

所以當我在寫入時,就會有多一個換行的\n寫入

如果在python 執行open

文章標籤

JL8051 發表在 痞客邦 留言(0) 人氣()

使用python 上傳資料到google excel上

https://sites.google.com/site/zsgititit/home/python-cheng-shi-she-ji/shi-yongpython-shang-chuan-zi-liao-daogoogle-shi-suan-biao

https://blog.cavedu.com/2020/03/09/app-inventor-google/

文章標籤

JL8051 發表在 痞客邦 留言(1) 人氣()

@echo off
cd /d "%~dp0"

\test\test.exe

文章標籤

JL8051 發表在 痞客邦 留言(0) 人氣()

照片轉成影片的軟體

image

https://www.4kdownload.com/zh-tw/products/product-slideshowmaker

文章標籤

JL8051 發表在 痞客邦 留言(0) 人氣()

方法與步驟

常用>尋找與選取 (下拉)選擇 選取物件

image

JL8051 發表在 痞客邦 留言(0) 人氣()

不知道哪個程式占用我的資料夾或檔案導致無法刪除或移動,使用系統perfmon 來解決方法

當要刪除資料夾或是重新命名時跳出有人在使用此資料夾

卻很頭痛到底是誰在佔用,我們可以使用以下方法

JL8051 發表在 痞客邦 留言(0) 人氣()

[MACBOOK] 資料夾顯示方式調整 設定初始值

以下圖如所示 finder/顯示方示/打開顯示方式選項

截圖 2021-01-16 下午3.52.36

JL8051 發表在 痞客邦 留言(0) 人氣()

everycircuit試用感想

Capture

若沒有付費 會出現這個畫面,限制是電路上不可以超過五個元件,如果超過就需要付費

文章標籤

JL8051 發表在 痞客邦 留言(0) 人氣()

spec.

http://cdn.sparkfun.com/datasheets/Sensors/ForceFlex/hx711_english.pdf

https://www.dfrobot.com.cn/images/upload/File/20131205193132g4ec38.pdf

JL8051 發表在 痞客邦 留言(0) 人氣()