Search found 2390 matches

by tong
Sat 01 Aug 2020 1:47 pm
Forum: IT Technic
Topic: Windows 10 : รวมรายการที่ต้องปรับแต่ง
Replies: 23
Views: 28858

Re: Windows 10 : รวมรายการที่ต้องปรับแต่ง

Add Firewall Rules netsh.exe advfirewall firewall add rule name="EmEditor" dir=out action=block program="D:\software\PC-Doctor\tool\EmEditor\EmEditor.exe" netsh.exe advfirewall firewall add rule name="ClipCache" dir=out action=block program="D:\software\PC-Doctor\...
by tong
Sat 01 Aug 2020 1:46 pm
Forum: IT Technic
Topic: Windows 10 : รวมรายการที่ต้องปรับแต่ง
Replies: 23
Views: 28858

Re: Windows 10 : รวมรายการที่ต้องปรับแต่ง

Edit hosts file takeown /f %windir%\system32\drivers\etc\hosts icacls %windir%\system32\drivers\etc\hosts /grant administrators:F attrib -s -h -r %windir%\system32\drivers\etc\hosts notepad.exe %windir%\System32\drivers\etc\hosts 127.0.0.1 localhost 127.0.0.1 xrayz.co.uk 127.0.0.1 faststone.org 127...
by tong
Sat 01 Aug 2020 1:28 pm
Forum: IT Technic
Topic: Windows 10 : รวมรายการที่ต้องปรับแต่ง
Replies: 23
Views: 28858

Re: Windows 10 : รวมรายการที่ต้องปรับแต่ง

Add Control Panel to File Explorer For the standard Control Panel : reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{26EE0668-A00A-44D7-9371-BEB064C98683}" /f reg add "HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer...
by tong
Sat 01 Aug 2020 1:25 pm
Forum: IT Technic
Topic: Windows 10 : รวมรายการที่ต้องปรับแต่ง
Replies: 23
Views: 28858

Re: Windows 10 : รวมรายการที่ต้องปรับแต่ง

Hide Quick Access

Code: Select all

reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v HubMode /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer" /v HubMode /t REG_DWORD /d 1 /f
by tong
Sun 26 Jul 2020 9:31 pm
Forum: IT Technic
Topic: FireFox: Change Profile Directory
Replies: 5
Views: 11981

Re: FireFox: Change Profile Directory

Chrome : How to move any profile to Default 1. Exit Chrome. 2. Backup the source profile folder. E.g. "D:\data\Chrome\Profile 2". 3. Copy the source profile folder to the Default folder. E.g. "D:\data\Chrome\Default". 4. Access Default profile by: "C:\Program Files (x86)\Go...
by tong
Sat 25 Jul 2020 4:29 pm
Forum: IT Technic
Topic: Windows 10 : Update Channels
Replies: 1
Views: 3178

Re: Windows 10 : Update Channels

Windows 10 Update Channels เรียงลำดับตามความเสถียร 1. Windows Insider Program ได้ใช้ก่อนใคร บั๊กเยอะ สมัครแล้วถอยกลับไม่ได้ มี 3 แบบให้เลือก 1.1 Dev Channel (Fast Ring) 1.2 Beta Channel (Slow Ring) 1.3 Release Preview Channel (Release Preview Ring) 2. Semi-Annual Channel (Targeted) หรือ SAC-T เหมาะ...
by tong
Sat 25 Jul 2020 3:41 pm
Forum: IT Technic
Topic: Windows 10 : Update Channels
Replies: 1
Views: 3178

Windows 10 : Update Channels

Windows 10 Update Channels 1. Windows Insider Program 1.1 Dev Channel (Fast Ring) 1.2 Beta Channel (Slow Ring) 1.3 Release Preview Channel (Release Preview Ring) 2. Semi-Annual Channel (Targeted), SAC-T Semi-Annual Channel (Pilot) Current Branch (CB) Initial Public Release 3. Semi-Annual Channel, S...
by tong
Sun 28 Jun 2020 9:56 pm
Forum: \temp
Topic: sdfsdfsdf
Replies: 0
Views: 5396

sdfsdfsdf

sdfsdfsdf กดกเดกเ
02.png
by tong
Wed 03 Jun 2020 3:37 pm
Forum: IT Technic
Topic: How to write uBlock Filters
Replies: 9
Views: 14284

Re: CSS Selector

How Element will be Selected

Code: Select all

example.com##table > tr > td:has-text(Sponsored)         Only <td> will be selected
example.com##table:has(> tr > td:has-text(Sponsored))    Full <table> will be selected
by tong
Wed 03 Jun 2020 3:30 pm
Forum: IT Technic
Topic: How to write uBlock Filters
Replies: 9
Views: 14284

Re: CSS Selector

Procedural Cosmetic Filters by uBlock Origin https://github.com/gorhill/uBlock/wiki/Procedural-cosmetic-filters Normal or standard cosmetic filters are declarative, i.e. they are used as selector in a CSS rule, and completely handled by browsers through style tag elements. Procedural means javascri...
by tong
Tue 02 Jun 2020 5:54 pm
Forum: IT Technic
Topic: How to write uBlock Filters
Replies: 9
Views: 14284

Re: CSS Selector

General Sibling Combinator (~) Sometime call as Following Sibling Combinator. Sibling means sharing the same parent. So the General Sibling Combinator means, The element being selected doesn’t need to immediately succeed the first element, but can appear anywhere after it in the same level. img ~ p...
by tong
Tue 02 Jun 2020 5:54 pm
Forum: IT Technic
Topic: How to write uBlock Filters
Replies: 9
Views: 14284

Re: CSS Selector

Adjacent Sibling Combinator (+) Select any tag that is directly follow after another tag (with nothing in between). Sibling selector the logic takes place within the same parent element. That’s what siblings means sharing the same parent. img + p {} <div> <p>Will NOT be selected</p> <img /> <p>Will...
by tong
Tue 02 Jun 2020 5:52 pm
Forum: IT Technic
Topic: How to write uBlock Filters
Replies: 9
Views: 14284

Re: CSS Selector

Child Combinator (>) > means it will only select tags that are direct children (direct descendant) of the parent tag. In otherwords, it only looks one level down the markup structure, no deeper. ol > li {} <ol> <li>WILL be selected</li> <li>WILL be selected</li> <ul> <li>Will NOT be selected</li> <...
by tong
Tue 02 Jun 2020 11:24 am
Forum: IT Technic
Topic: How to write uBlock Filters
Replies: 9
Views: 14284

Re: CSS Selector

Decendant Selector ( ) Any selector with white space between two selectors without a combinator. It will select any tags that are anywhere underneath (any level down, any deeper) of the parent tag in the markup structure. div span {} <div> <span>Will be selected</span> <ul> <li> <span>Will be selec...
by tong
Tue 02 Jun 2020 11:20 am
Forum: IT Technic
Topic: How to write uBlock Filters
Replies: 9
Views: 14284

Re: CSS Selector

CSS Combinators

Decendant Selector (whitespace) = Any child, any level
Child Combinator (>) = Direct child, first level only
Adjacent Sibling Combinator (+) = Next younger sibling only, same level, same parent
Following Sibling Combinator (~) = Any younger slibling, same level, same parent
by tong
Tue 02 Jun 2020 11:13 am
Forum: IT Technic
Topic: How to write uBlock Filters
Replies: 9
Views: 14284

Re: CSS Selector

Extended CSS selectors (uBlock Origin Specific) https://github.com/gorhill/uBlock/wiki/Procedural-cosmetic-filters subject:not() subject:has() subject:has-text() subject:matches-css() subject:matches-css-before() subject:matches-css-after() subject:min-text-length() subject:upward() subject:watch-a...
by tong
Tue 02 Jun 2020 11:07 am
Forum: IT Technic
Topic: How to write uBlock Filters
Replies: 9
Views: 14284

Re: CSS Selector

CSS Selectors https://www.w3.org/TR/selectors-3/#selectors https://adblockplus.org/filter-cheatsheet example.com###advert matches the element with the unique id "advert" example.com##.advert matches elements with the class "advert" example.com##div[title="advert"] matc...
by tong
Tue 02 Jun 2020 11:03 am
Forum: IT Technic
Topic: How to write uBlock Filters
Replies: 9
Views: 14284

How to write uBlock Filters

Filters https://help.eyeo.com/adblockplus/how-to-write-filters https://github.com/DandelionSprout/adfilt/blob/master/Wiki/SyntaxMeaningsThatAreActuallyHumanReadable.md https://github.com/Sappurit/Sappurit-uBlock-Filters/blob/master/Filter_Basic.md Network Filters (Simple blocking rules) Cosmetic Fi...
by tong
Sat 09 May 2020 2:27 pm
Forum: Review รีวิวสินค้า
Topic: เปรียบเทียบ tracking ขนส่ง Kerry, SCG, J&T, Flash, Shopee, Best Express, Ninja Van, DHL, Speed-D
Replies: 10
Views: 10707

Re: เปรียบเทียบ tracking ขนส่ง Thailand Post, SCG Express, J&T Express, Best Express, Ninja Van

Shopee Xpress

- กดดู tracking จาก URL ได้ https://spx.co.th/#/detail/TH206183247
- เลือกจัดส่งได้ 2 แบบคือ เฉพาะวันทำงาน และแบบส่งทุกวัน
- บอกรายละเอียดไม่ชัดเจน เข้าใจยาก
snap4713.png
by tong
Sat 02 May 2020 2:55 pm
Forum: General
Topic: ยาฉลาด Ritalin Adderall Provigil Nicotine Caffeine
Replies: 0
Views: 6630

ยาฉลาด Ritalin Adderall Provigil Nicotine Caffeine

ยา Ritalin (methylphenidate) ช่วยกระตุ้นจิตใจและสมอง เวลาต้องส่งรายงานและเวลาสอบ แม้แต่ Hillary Clinton ก่อนเข้าพิธีโต้วาทีกับ Donald Trump ทางโทรทัศน์ก็กินยา Ritalin เพื่อให้เธอมีสมาธิและสามารถตอบคำถามได้อย่างฉะฉาน ยา Adderall (methamphetamine) นักเคมีสังเคราะห์ได้เมื่อปี 1919 และให้นักบิน kamikaze...
by tong
Sat 02 May 2020 11:47 am
Forum: Review รีวิวสินค้า
Topic: เปรียบเทียบ tracking ขนส่ง Kerry, SCG, J&T, Flash, Shopee, Best Express, Ninja Van, DHL, Speed-D
Replies: 10
Views: 10707

Re: เปรียบเทียบ tracking ขนส่ง Thailand Post, SCG Express, J&T Express, Best Express, Ninja Van

Kerry Express - ผู้รับสามารถแจ้งเลื่อนนัดรับพัสดุได้ไม่เกิน 7 วันทำการ โดยติดต่อ 1217 กด 2 - ไม่สามารถ tracking แบบ URL ต้องกรอกในหน้าเวปเอง - อัพเดท 20 ก.ย. 2563 สามารถ direct tracking ผ่านเบต้าเวปได้แล้ว https://th.kerryexpress.com/th/track/beta/search?tracking=SDOF502478706 https://th.kerryexpre...
by tong
Sat 02 May 2020 11:24 am
Forum: Review รีวิวสินค้า
Topic: เปรียบเทียบ tracking ขนส่ง Kerry, SCG, J&T, Flash, Shopee, Best Express, Ninja Van, DHL, Speed-D
Replies: 10
Views: 10707

Re: เปรียบเทียบ tracking ขนส่ง Thailand Post, SCG Express, J&T Express, Best Express, Ninja Van

Flash Express - บริการส่ง 365 วัน ไม่มีวันหยุด - สามารถเลื่อนเวลารับพัสดุด้วยตัวคุณเอง - ดูรูปใบเซ็นรับได้ - ไม่สามารถ tracking แบบ URL ต้องกรอกในหน้าเวปเอง snap4679.png อัพเดท 28 พ.ค. 2564 tracking แบบ URL ได้แล้ว แต่ต้องระวังถ้ากรอกเลขใหม่ ตรง URL จะไม่เปลี่ยน https://www.flashexpress.co.th/track...
by tong
Fri 01 May 2020 8:55 pm
Forum: Review รีวิวสินค้า
Topic: เปรียบเทียบ tracking ขนส่ง Kerry, SCG, J&T, Flash, Shopee, Best Express, Ninja Van, DHL, Speed-D
Replies: 10
Views: 10707

Re: เปรียบเทียบ tracking ขนส่ง Thailand Post, SCG Express, J&T Express, Best Express, Ninja Van

Ninja Van - ช้า ไม่ได้มาส่งจริง แทรคกิ้งบอกมั่วๆว่ามาส่งตอน 4 ทุ่ม และไม่โทรนัดล่วงหน้า - สามารถกำหนดเวลาจัดส่งใหม่ได้ 7 วัน (แต่คนส่งก็ยังมาส่งซ้ำมั่ว และบอกว่าเก็บเกิน 3 วันแล้วจะตีคืน) - อนุญาตให้วางพัสดุได้ที่ประตู - สามารถเปลี่ยนแปลงที่อยู่ในการจัดส่ง - สมัคร SMS แจ้งได้ - กดดู tracking จาก UR...
by tong
Fri 01 May 2020 8:48 pm
Forum: Review รีวิวสินค้า
Topic: เปรียบเทียบ tracking ขนส่ง Kerry, SCG, J&T, Flash, Shopee, Best Express, Ninja Van, DHL, Speed-D
Replies: 10
Views: 10707

Re: เปรียบเทียบ tracking ขนส่ง Thailand Post, SCG Express, J&T Express, Best Express, Ninja Van

Best Express

- ส่งจากโคราชใช้เวลา 1 คืน
- Tracking บอกละเอียดดีพร้อมเบอร์โทร บอกชื่อผู้ส่งและผู้รับ
- ดูรูปใบเซ็นรับได้
- กดดู tracking จาก URL ได้ https://www.best-inc.co.th/track?bills=66858032934
snap4670.png
by tong
Fri 01 May 2020 8:27 pm
Forum: Review รีวิวสินค้า
Topic: เปรียบเทียบ tracking ขนส่ง Kerry, SCG, J&T, Flash, Shopee, Best Express, Ninja Van, DHL, Speed-D
Replies: 10
Views: 10707

Re: เปรียบเทียบ tracking ขนส่ง Thailand Post, SCG Express, J&T Express, Best Express, Ninja Van

J&T Express - บริการส่ง 366 วัน ไม่มีวันหยุด - ส่งซ้ำให้ 3 ครั้งจากนั้นจะเก็บไว้ให้ 7 วัน - ส่งจากภาคกลางใช้เวลา 1 คืน - ส่งจากภาคใต้ใช้เวลา 2 คืน - บางครั้งจะโทรมาถามก่อนส่ง - ถ้าของมาถึงสาขาปลายทางไม่เกิน 11 AM จะได้ของประมาณ 3 PM - กดดู tracking จาก URL ได้ แต่ต้องใส่เพิ่มเองดังตัวอย่างนี้ h...
by tong
Fri 01 May 2020 8:22 pm
Forum: Review รีวิวสินค้า
Topic: เปรียบเทียบ tracking ขนส่ง Kerry, SCG, J&T, Flash, Shopee, Best Express, Ninja Van, DHL, Speed-D
Replies: 10
Views: 10707

Re: เปรียบเทียบ tracking ขนส่ง Thailand Post, SCG Express, J&T Express, Best Express, Ninja Van

SCG Express - ตรงเวลา ไว้ใจได้ - คิดค่าส่งตามขนาดกล่อง บางสาขาปัดลงให้ - สามารถติดตามพัสดุได้จาก Tracking No. หรือหมายเลขโทรศัพท์ - จดจำเลข tracking ได้ - กดดู tracking จาก URL ได้ แต่มีการเข้ารหัส ต้องก๊อปจากในเวป https://www.scgexpress.co.th/tracking/detail/ITM2MDEyMDMzEzNjA= snap4672.png
by tong
Fri 01 May 2020 8:19 pm
Forum: Review รีวิวสินค้า
Topic: เปรียบเทียบ tracking ขนส่ง Kerry, SCG, J&T, Flash, Shopee, Best Express, Ninja Van, DHL, Speed-D
Replies: 10
Views: 10707

Re: เปรียบเทียบ tracking ขนส่ง Thailand Post, SCG Express, J&T Express, Best Express, Ninja Van

Thailand Post - EMS

- ตรงเวลา ไว้ใจได้
- ดู GPS แต่ละขั้นตอนได้
- ดูรูปลายเซ็นได้
- กดดู tracking จาก URL ได้ https://track.thailandpost.co.th/?trackNumber=RF3260263TH
snap4677.png
by tong
Fri 01 May 2020 8:17 pm
Forum: Review รีวิวสินค้า
Topic: เปรียบเทียบ tracking ขนส่ง Kerry, SCG, J&T, Flash, Shopee, Best Express, Ninja Van, DHL, Speed-D
Replies: 10
Views: 10707

Re: เปรียบเทียบ tracking ขนส่ง Thailand Post, SCG Express, J&T Express, Best Express, Ninja Van

Thailand Post - Registered Mail

- tracking ได้คร่าวๆ ไม่เรียล
- ดู GPS แต่ละขั้นตอนได้
- ดูรูปลายเซ็นได้
- กดดู tracking จาก URL ได้ https://track.thailandpost.co.th/?trackNumber=RF3260263TH
snap4678.png
by tong
Fri 01 May 2020 8:11 pm
Forum: Review รีวิวสินค้า
Topic: เปรียบเทียบ tracking ขนส่ง Kerry, SCG, J&T, Flash, Shopee, Best Express, Ninja Van, DHL, Speed-D
Replies: 10
Views: 10707

เปรียบเทียบ tracking ขนส่ง Kerry, SCG, J&T, Flash, Shopee, Best Express, Ninja Van, DHL, Speed-D

เปรียบเทียบ tracking ขนส่ง Best Express https://www.best-inc.co.th/track https://www.best-inc.co.th/track?bills=66819072401473 Flash Express https://www.flashexpress.co.th/tracking/ https://www.flashexpress.co.th/tracking/?se=TH01421D7Y13A J&T Express https://jtexpress.co.th/index/query/gzquery...
by tong
Sun 26 Apr 2020 12:54 pm
Forum: IT Technic
Topic: Windows 10 : รวมรายการที่ต้องปรับแต่ง
Replies: 23
Views: 28858

Re: Windows 10: รวมรายการที่ต้องปรับแต่ง

How to Turn Off Require Sign-in on Wakeup in Windows 10 https://www.tenforums.com/tutorials/11129-turn-off-require-sign-wakeup-windows-10-a.html reg add "HKLM\SOFTWARE\Policies\Microsoft\Power\PowerSettings\0e796bdb-100d-47d6-a2d5-f7d2daa51f51" /v DCSettingIndex /t REG_DWORD /d 0 /f reg a...