Skip to content

Instantly share code, notes, and snippets.

View kjegru's full-sized avatar

Kjetil Grun kjegru

  • NINA Norsk Institutt for Naturforskning
  • Trondheim
View GitHub Profile
@hperantunes
hperantunes / tail-grep.ps1
Created February 25, 2016 16:45
tail + grep powershell equivalent
Get-Content C:\temp\mylogfile.log -tail 100 –wait | Select-String 'search'
@plentz
plentz / nginx.conf
Last active May 21, 2025 05:22
Best nginx configuration for improved security(and performance)
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048