Skip to content

Instantly share code, notes, and snippets.

View nsuvorov83's full-sized avatar

Nikolay Suvorov nsuvorov83

  • VTB
  • Moscow
View GitHub Profile
@voyager123bg
voyager123bg / helm-cheatsheet.md
Created June 4, 2021 11:49 — forked from tuannvm/argo.md
#Helm #Kubernetes #cheatsheet, happy helming!
@stek29
stek29 / proxygram-nginx.conf
Created February 24, 2019 21:52
config for nginx to proxy webogram
server {
server_name gram.com;
location / {
root /var/www/gram;
try_files $uri $uri/index.html;
# protect with basic auth, we don't want to get banned by rkn
auth_basic "webogram";
auth_basic_user_file /var/www/gram.htpasswd;
@mrowles
mrowles / ExcelErrorHandler.bas
Last active February 13, 2016 22:59
Microsoft Excel: Central Error Handler
'Global Error Varibles
Public bDisplayError As Boolean
Public sProcName, sDetails As String
Public iErrorCount As Integer
Public Function bCentralErrorHandler(ByVal sModule$, ByVal sSub$, ByVal sDetails$) As Boolean
'Make sure there is no errors in the Error Handling system
On Error Resume Next