Skip to content

Instantly share code, notes, and snippets.

View andreiavrammsd's full-sized avatar

Andrei Avram andreiavrammsd

View GitHub Profile
@dnozay
dnozay / _Jenkins+Script+Console.md
Last active October 5, 2022 21:50
jenkins groovy scripts collection.
@tejainece
tejainece / cgo1.go
Last active March 27, 2024 04:29
Examples of calling C code from Golang
package main
//#include<stdio.h>
//void inC() {
// printf("I am in C code now!\n");
//}
import "C"
import "fmt"
func main() {
@plentz
plentz / nginx.conf
Last active March 20, 2024 18:49
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