英文字母

英文字母
英文字母

2025年7月26日 星期六

split pdf

 https://dn2esinfo.blogspot.com/2025/03/pdf-on-ubuntu.html

how to split a pdf file on ubuntu ==>pdftk


we can see it below:

pdftk test.pdf cat 24-43 output part01_foundations.pdf


2025年7月8日 星期二

開啓 網路芳鄰 測試中

 win11更新後網路芳鄰無法連  從chatgpt 得到的解法

下載  FirewallSettings.ps1

使用powershell

powershell -ExecutionPolicy Bypass -File "C:\Users\Administrator\Desktop\FirewallSettings.ps1"


2025年5月25日 星期日

how to mirror videos

 from   https://www.flexclip.com/tw/learn/how-to-mirror-a-video.html

2025年5月14日 星期三

PDF embed in html page

 reference from https://forum.blocsapp.com/t/pdf-embed-in-html-page/9916/1

===========

<style>

.embed-responsive-210by297 {

  padding-bottom: 141.42%;

}

</style>


<div class="embed-responsive embed-responsive-210by297">

<iframe class="embed-responsive-item" src="https://MY_PDF_URL_GOES_HERE"></iframe>

</div>

===========

If you’re using a different paper size, divide the width by the height and you get the padding % you need. eg. A4 is 210 / 297 * 100 = 141.42 %