-
ไม่สามารถใช้ touchpad(trackpad) “tap to Click” ได้ [เครื่อง MacBook ใน Bootcamp ที่ติดตั้ง Windows 8]
Posted on August 27th, 2019 No comments1. ที่มุมขวาล่าง Click ที่ไอคอน สามเหลี่ยม ซึ่งจะปรากฏสัญลักษณ์รูป ข้าวหลามตัดที่แสดงว่า “Boot Camp”
2. เลือก “Boot Camp Control Panel…”
3.ตอบตกลงเมื่อมี pop up menu ถามว่าจะอนุญาตการเปลี่ยนแปลง
4.ที่ Boot Camp Control Panel จะมี tab 3 อัน ให้เลือกที่ “Trackpad”
5. ตอนนี้ก็จะสามารถเลือกการใช้งาน เช่น “Tap to Click” ใช้งานได้แล้ว
==> แม้ว่าจะไม่ได้ Full Feature แบบของการใช้ trackpad ของ MacOS แต่ก็สามารถได้ดีพอควรเลยครับ27 สค. 2562
-
Soft link / Symbolic link
Posted on September 27th, 2018 No commentsln -s /path/file/ mylink
มีประโยชน์ในการสร้าง link ไปที่ที่ใช้งานบ่อย แม้จะอยู่บน Harddisk คนละลูกกัน
ตัวอย่าง command
ln -s /Volumes/DataJetDrive/Archive/ MyClass
หลังจากสร้าง soft link เสร็จแล้ว
Anans-MacBook-Air:DataDoc Anan$ ls -l
total 0
drwxr-xr-x 6 Anan staff 192 Sep 15 2017 1-Teaching
drwxr-xr-x 17 Anan staff 544 Aug 21 14:33 2-Research-Collaboration
drwxr-xr-x 8 Anan staff 256 Sep 3 09:47 3-Contribution
drwxr-xr-x 9 Anan staff 288 Oct 13 2015 4-Task
lrwxr-xr-x 1 Anan staff 33 Sep 27 13:22 5-Personal -> /Volumes/DataJetDrive/5-Personal/
lrwxr-xr-x 1 Anan staff 31 Sep 27 13:23 6-Travel -> /Volumes/DataJetDrive/6-Travel/
lrwxr-xr-x 1 Anan staff 33 Sep 27 13:23 7-Learning -> /Volumes/DataJetDrive/7-Learning/
lrwxr-xr-x 1 Anan staff 38 Sep 27 13:23 8-Entertainment -> /Volumes/DataJetDrive/8-Entertainment/
lrwxr-xr-x 1 Anan staff 33 Sep 27 13:23 9-Archieve -> /Volumes/DataJetDrive/9-Archieve/
-
ติดตั้ง ns3 บน Mac OSX
Posted on April 21st, 2016 No commentsติดตั้ง ns3 เพื่อใช้งานบนเครือง MAC สามารถทำได้ตาม link ของ “GRAPEFRUITHOLIC’S STUDY ROOM”
-
การจัดการ PDF ด้วย PDF Labs
Posted on May 29th, 2014 No commentsDownload and Install from PDF Labs [http://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/]
PDFtk Server Examples
[http://www.pdflabs.com/docs/pdftk-cli-examples/]
These examples show you how to perform common PDF tasks from the command-line using pdftk.
Collate scanned pages
pdftk A=even.pdf B=odd.pdf shuffle A B output collated.pdf
or if odd.pdf is in reverse order:
pdftk A=even.pdf B=odd.pdf shuffle A Bend-1 output collated.pdf
Decrypt a PDF
pdftk secured.pdf input_pw foopass output unsecured.pdf
Encrypt a PDF using 128-bit strength (the default), withhold all permissions (the default)
pdftk 1.pdf output 1.128.pdf owner_pw foopass
Same as above, except password baz must also be used to open output PDF
pdftk 1.pdf output 1.128.pdf owner_pw foo user_pw baz
Same as above, except printing is allowed (once the PDF is open)
pdftk 1.pdf output 1.128.pdf owner_pw foo user_pw baz allow printing
Join in1.pdf and in2.pdf into a new PDF, out1.pdf
pdftk in1.pdf in2.pdf cat output out1.pdf
or (using handles):
pdftk A=in1.pdf B=in2.pdf cat A B output out1.pdf
or (using wildcards):
pdftk *.pdf cat output combined.pdf
Remove page 13 from in1.pdf to create out1.pdf
pdftk in.pdf cat 1-12 14-end output out1.pdf
or:
pdftk A=in1.pdf cat A1-12 A14-end output out1.pdf
When using the Windows command-prompt, it helps to use drag-and-drop from the file manager: drag the input PDF file from the file manager onto the command-prompt, and its full pathname will appear at the prompt.
Apply 40-bit encryption to output, revoking all permissions (the default). Set the owner PW to foopass.
pdftk 1.pdf 2.pdf cat output 3.pdf encrypt_40bit owner_pw foopass
Join two files, one of which requires the password foopass. The output is not encrypted.
pdftk A=secured.pdf 2.pdf input_pw A=foopass cat output 3.pdf
Uncompress PDF page streams for editing the PDF in a text editor (e.g., vim, emacs)
pdftk doc.pdf output doc.unc.pdf uncompress
Repair a PDF’s corrupted XREF table and stream lengths, if possible
pdftk broken.pdf output fixed.pdf
Burst a single PDF document into pages and dump its data to doc_data.txt
pdftk in.pdf burst
Burst a single PDF document into encrypted pages. Allow low-quality printing
pdftk in.pdf burst owner_pw foopass allow DegradedPrinting
Write a report on PDF document metadata and bookmarks to report.txt
pdftk in.pdf dump_data output report.txt
Rotate the first PDF page to 90 degrees clockwise
pdftk in.pdf cat 1east 2-end output out.pdf
Rotate an entire PDF document to 180 degrees
pdftk in.pdf cat 1-endsouth output out.pdf
Article Author: Sid Steward