บทความ

แก้ vps ubuntu 18.04 ของ netdesign สั่ง apt-get upgrade ไม่ได้

 .. https://snappytux.com/how-to-fix-e-could-not-get-lock-var-lib-dpkg-lock-error-on-ubuntu/ ..

Ms Word : Macro : resize image

 .. ' CentimetersToPoints(), InchesToPoints Sub abc() Dim shp As Word.Shape Dim ishp As Word.InlineShape If Word.Selection.Type <> wdSelectionInlineShape And _ Word.Selection.Type <> wdSelectionShape Then Exit Sub End If If Word.Selection.Type = wdSelectionInlineShape Then Set ishp = Word.Selection.Range.InlineShapes(1) ishp.LockAspectRatio = False ishp.Height = InchesToPoints(1.78) ishp.Width = InchesToPoints(3.17) Else If Word.Selection.Type = wdSelectionShape Then Set shp = Word.Selection.ShapeRange(1) shp.LockAspectRatio = False shp.Height = InchesToPoints(1.78) shp.Width = InchesToPoints(3.17) End If End If End Sub ..

raspberry-pi เสียงไม่ออกลำโพง

 .. https://funconsumertech.com/no-audio-on-raspberry-pi-a-helpful-illustrated-guide/#:~:text=The%20most%20likely%20cause%20of,Config%20to%20adjust%20your%20settings. ..

swift xcode : สี uicolor

 .. https://www.ralfebert.com/ios/swift-uikit-uicolor-picker/ ..

Google Apps Script: สร้าง download link

 .. https://jeffreyeverhart.com/2017/10/17/outsmarting-google-generating-download-links-google-app-script/ download file จากที่อื่นมาเก็บใน drive https://stackoverflow.com/questions/14573055/can-i-download-file-from-url-link-generated-by-google-apps-script ..

PowerShell : การรัน Script *.ps1

 .. ใช้คำสั่ง powershell ./xxx.ps1 แต่ปกติจะรันไม่ได้ เกิด Error: cannot be loaded because running scripts is disabled on this system ต้องเปิด PowerShell ด้วยสิทธิ Administrator แล้วพิมพ์คำสั่ง  Set-ExecutionPolicy -Scope CurrentUser RemoteSigned แล้วพิมพ์ A การเปิดและ ปิด https://stackoverflow.com/questions/4037939/powershell-says-execution-of-scripts-is-disabled-on-this-system cannot be loaded because running scripts is disabled on this system ..

JS : แปล CSV

 .. https://stackoverflow.com/questions/1293147/example-javascript-code-to-parse-csv-data ..