Thursday, January 26, 2023

Set hotspot iphone 7 sim My

  • ประเด็นมีอยู่ว่า option สำหรับ share hotspot ของ  iphone ไม่มีซะงั้น ทำไมน้อ
  • ปัญหาเกิดจาก sim my นี่เอง

Solved

  • เลือก SIM แล้วเข้าไปจัดการ APN ตั้งชื่อเป็น internet บันทึก
  • แล้วย้อนกลับไปหน้าแรก ไป setting เมนุ share hotspot ก็จะปรากฏขึ้นให้เราใช้งานได้เลย

Ref

https://pantip.com/topic/32713879

Reduce file size of PDF in Ubuntu 22.04 by GS

  • คือต้องการลดขนาดไฟล์ pdf ขึ้นเว็บแต่มันใหญ่ไป
  • หาเครื่องมือใน Ubuntu เค้าแนะนำ Ghostscript
  • ซึ่งมันติดตั้งมาให้เรียบร้อยแล้วใน Ubuntu 22.04
Solved
  • อันแรกความละเอียดไม่ลดมาก
  • Low compression: 300 dpi (large file size)
$ gs -sDEVICE=pdfwrite -dPDFSETTINGS=/printer -dNOPAUSE -dBATCH \
-sOutputFile=
output.pdf input.pdf
  • อันที่สองน่าใช้ที่สุด
  • [BEST in my testing] Medium compression (recommended): 150 dpi (medium file size)
$ gs -sDEVICE=pdfwrite -dPDFSETTINGS=/ebook   -dNOPAUSE -dBATCH \
-sOutputFile=output.pdf input.pdf
  • อันสุดท้ายบีบไฟล์แล้วอ่านไม่ค่อยออก
  • High compression: 72 dpi (small file size--may produce grainy or unreadable results in some cases, so try it and give it a shot)
$ gs -sDEVICE=pdfwrite -dPDFSETTINGS=/screen  -dNOPAUSE -dBATCH \
-sOutputFile=output.pdf input.pdf
Ref
  • https://askubuntu.com/questions/113544/how-can-i-reduce-the-file-size-of-a-scanned-pdf-file

Monday, January 2, 2023

Set path or set alias command for Mac OS

  • ประเด็นคือ จะ set path สำหรับ mac ยังไง
  • ใน ubuntu มันจะตั้งค่าที่ ~/.bashrc หรือ ~/.bash_profile แต่ใน Mac OS ทำไงล่ะ
  • มันก็สายพันธ์ เดียวกันนะ คงทำคล้ายๆ กัน

Solved
  • เปิด terminal ขึ้นมาสร้างไฟล์ชื่อ ~/.zshrc
$ nano ~/.zshrc
  • ตั้งค่าพาธ หรือ set alias ตามต้องการ
alias ll='ls -l'
alias la='ls -a'
export PATH="$PATH:/Users/youruser/flutter/bin"
  • จากนั้นบันทึก ปิด และ เปิด terminal ใหม่อีกครั้ง
Ref
  • https://wpbeaches.com/make-an-alias-in-bash-or-zsh-shell-in-macos-with-terminal/

Popular Posts