Last active
September 10, 2025 05:34
-
-
Save SteveLauC/7b43c09e69b254c9a921ae2335ccd711 to your computer and use it in GitHub Desktop.
Revisions
-
SteveLauC revised this gist
Sep 10, 2025 . 2 changed files with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ select ROUND(SUM(resident_size)/1024.0/1024.0, 2) as 'Memory (in MiB)', COUNT(*) as 'Processes Count' from processes WHERE name = 'Google Chrome' OR name LIKE '%Google Chrome%' File renamed without changes. -
SteveLauC created this gist
Sep 10, 2025 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ select ROUND(SUM(resident_size)/1024.0/1024.0, 2) as 'Memory (in MiB)', COUNT(*) as 'Processes Count' from processes WHERE name = 'Code' OR name LIKE 'Code Helper%';