Skip to content

Instantly share code, notes, and snippets.

View powerdefy's full-sized avatar

Peerachai Deesongkram powerdefy

View GitHub Profile
@powerdefy
powerdefy / Main.scala
Created April 24, 2022 11:23 — forked from jpallari/Main.scala
Ways to pattern match generic types in Scala
object Main extends App {
AvoidLosingGenericType.run()
AvoidMatchingOnGenericTypeParams.run()
TypeableExample.run()
TypeTagExample.run()
}
class Funky[A, B](val foo: A, val bar: B) {
override def toString: String = s"Funky($foo, $bar)"
}
@powerdefy
powerdefy / nginx.conf
Created February 10, 2020 00:49 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@powerdefy
powerdefy / profile.json
Created January 22, 2020 04:16 — forked from fcharlie/profile.json
My Windows Terminal profile.json
{
"globals": {
"alwaysShowTabs": true,
"defaultProfile": "{f39b6ee5-a01c-41e3-a652-b95a5f3de9ad}",
"initialCols": 120,
"initialRows": 30,
"keybindings": [
{
"command": "closeTab",
"keys": [
@powerdefy
powerdefy / pysmb.py
Created December 26, 2019 08:46 — forked from joselitosn/pysmb.py
Python SMB Example
from smb.SMBConnection import SMBConnection
userID = 'user'
password = 'password'
client_machine_name = 'localpcname'
server_name = 'servername'
server_ip = '0.0.0.0'
domain_name = 'domainname'