6/30/2022

How to disable firefox browser cache

 How to disable firefox browser cache
เวลาเขียนโปรแกรม ตัวโปรแกรมถูกแต่ผลใน browser ไม่เปลี่ยนตาม จึงต้องปิดไม่ให้เก็บ cache

https://support.mozilla.org/en-US/questions/905902

1. type in the address bar about:config
2. then press the button i'l be careful i promise
3. then type in the bar browser.cache.disk.enable
4. then double click on it, to make it false
5. do the same with browser.cache.memory.enable
6. exit firefox and restart-it.

6/25/2022

Linux mint : Shutter hotkey

Linux mint : Shutter hotkey
https://shutter-project.org/faq-help/set-shutter-as-the-default-screenshot-tool/

1. Keyboard --> Shortcuts  --> Add custom shortcut


2. แก้ด้านล่าง กด Key ที่เราต้องการ



6/10/2022

Axapta : หาค่าสูงสูดในตัวแปร Max

 

Axapta : หาค่าสูงสูดในตัวแปร Max

  1. static void MyMaxJob(Args _args)
  2. {
  3.     int test;
  4. ;
  5.  
  6.     test = max (100,120,300,400,500);
  7.  
  8.     info(int2str(test));
  9. }