A tweet-sized debugger for visualizing your CSS layouts. Outlines every DOM element on your page a random (valid) CSS hex color.
One-line version to paste in your DevTools
Use $$ if your browser aliases it:
~ 108 byte version
| Function Get-ProcessMemory { | |
| <# | |
| .SYNOPSIS | |
| Get a snapshot of a process' memory usage. | |
| .DESCRIPTION | |
| Get a snapshot of a process' memory usage based on its workingset value. You can get the same information using Get-Process or by querying the Win32_Process WMI class with Get-CimInstance. This command uses Invoke-Command to gather the information remotely. Many of the parameters are from that cmdlet. | |
| Technically you can use wildcards with process names, but because of how the function aggregates data, you might not see the results you expect. | |
| .EXAMPLE | |
| PS C:\> get-processmemory code,powershell,powershell_ise |
| (* | |
| F# Game of life | |
| Philip Jander | |
| @ph_j | |
| 2015 | |
| This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. | |
| https://creativecommons.org/licenses/by-nc-sa/3.0/ | |
| *) |
| var BlackBox = function() { | |
| var self = this; | |
| self._events = []; | |
| self.Record = function(event) { | |
| self._events.push(event); | |
| self.Recorded(event); | |
| }; |