This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"globals": { | |
"alwaysShowTabs": true, | |
"defaultProfile": "{f39b6ee5-a01c-41e3-a652-b95a5f3de9ad}", | |
"initialCols": 120, | |
"initialRows": 30, | |
"keybindings": [ | |
{ | |
"command": "closeTab", | |
"keys": [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python3 | |
import math | |
import os | |
import random | |
import re | |
import sys | |
class Node: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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')) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
); | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# tasks.py | |
from celery import Celery | |
from utils import postgres_connector | |
app = Celery("tasks", backend="rpc://", broker="pyamqp://guest@localhost//") | |
@app.task |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from contextlib import contextmanager | |
from functools import wraps | |
from itertools import chain, islice | |
from time import time | |
import psycopg2 | |
def timing(f): | |
@wraps(f) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
OlderNewer