Skip to content

Instantly share code, notes, and snippets.

View NazCodeland's full-sized avatar

Nazar NazCodeland

View GitHub Profile
@NazCodeland
NazCodeland / performance_factors.md
Created October 28, 2024 12:36
The scope of factors to keep an eye on when assessing and optimizing performance
  1. Network Latency: Speed of data travel between client and server.
  2. Server Load: Concurrent users and requests.
  3. Bandwidth: Data transfer rate.
  4. Code Efficiency: Optimization of application code.
  5. Database Performance: Query efficiency and load.
  6. Disk I/O: Speed of disk read/write operations.
  7. Memory Usage: RAM consumption.
  8. CPU Load: Processing power for requests.
  9. Concurrency Handling: Managing multiple operations.
  10. Caching: Reducing load times with caches.
@NazCodeland
NazCodeland / pwsh.ps1
Created November 12, 2024 16:28
Helpful Powershell Snippets
Get-ChildItem -Path "C:\Program Files" -Recurse -Filter "*Bit*" | Select-Object FullName
@NazCodeland
NazCodeland / css-units.css
Last active February 11, 2025 14:16
css units
{
"absolute": ["px", "deg", "in", "cm", "mm", "pt", "pc", "ex"],
"relative": ["rem", "em", "%", "ch"],
"viewport": {
"inline": ["vi", "dvi", "svi", "lvi", "vw", "dvw", "svw", "lvw"],
"block": ["vb", "dvb", "svb", "lvb", "vh", "dvh", "svh", "lvh"],
"size": ["vmin", "dvmin", "svmin", "lvmin", "vmax", "dvmax", "svmax", "lvmax"]
},
"container": ["cqi", "cqw", "cqb","cqh", "cqmin", "cqmax"]
}