Skip to content

Instantly share code, notes, and snippets.

View powerdefy's full-sized avatar

Peerachai Deesongkram powerdefy

View GitHub Profile
@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'
@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 / 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 / subset.py
Created April 17, 2020 07:10
get all subset
ccc = 'abcd'
def get_item_from_number(ite, number):
bin_number = f'{number:b}'.zfill(len(ite))
s = ''
for i, c in enumerate(bin_number):
if c == '1':
s += ite[i]
@powerdefy
powerdefy / a_star.py
Created April 18, 2020 17:42
a star implementation
#!/bin/python3
import math
import os
import random
import re
import sys
class Node:
def make_str(string: str) -> str:
r = []
w = len(string)
for i in range(w):
for j in range(w-i):
s = string[i:i + j + 1]
r.append(s)
return r
# print(make_str('ABC'))
import sqlite3
conn = sqlite3.connect('test.db')
c = conn.cursor()
query = """
CREATE TABLE IF NOT EXISTS contacts (
contact_id INTEGER PRIMARY KEY,
first_name TEXT NOT NULL,
last_name TEXT NOT NULL
);
"""
# tasks.py
from celery import Celery
from utils import postgres_connector
app = Celery("tasks", backend="rpc://", broker="pyamqp://guest@localhost//")
@app.task
from contextlib import contextmanager
from functools import wraps
from itertools import chain, islice
from time import time
import psycopg2
def timing(f):
@wraps(f)
import csv
from faker import Faker
fake = Faker()
csv_file_path = "test.csv"
with open(csv_file_path, "w") as csv_file:
writer = csv.DictWriter(csv_file, fieldnames=["first_name", "last_name"])
writer.writeheader()