I hereby claim:
- I am saidbysolo on github.
- I am saidbysolo (https://keybase.io/saidbysolo) on keybase.
- I have a public key ASDePNxfaxwkL75pas6FGgRG9WzfS5OB-Iee6YbyO6Zw5Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
import binascii | |
import math | |
from random import Random | |
from qiskit import ( | |
IBMQ, | |
ClassicalRegister, | |
QuantumCircuit, | |
QuantumRegister, | |
BasicAer, |
from socket import AF_INET, SO_BROADCAST, SOCK_DGRAM, socket, SOL_SOCKET | |
class WOL: | |
def __init__(self, ip_address: str, mac_address: str, port: int = 6) -> None: | |
self.ip_address = ip_address | |
self.port = port | |
for char in [":", "-"]: | |
if char in self.mac_address: |
# Simple Github action snippet | |
# Author: Ryu juheon(SaidBySolo) | |
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] |
from hashlib import md5 | |
from typing import Any, Coroutine, Union, cast | |
from js2py.evaljs import EvalJs # type: ignore | |
from js2py.translators.translating_nodes import trans # type: ignore | |
from js2py.translators.translator import DEFAULT_HEADER # type: ignore | |
def make_js_program(body: list[Any]) -> dict[str, Any]: | |
return {"type": "Program", "body": body} |
from asyncio import run | |
from contextlib import suppress | |
from multiprocessing import freeze_support | |
from os import mkdir | |
from os.path import exists | |
from re import findall | |
from typing import Optional, Union | |
from aiofile import async_open # type: ignore | |
from aiohttp import ClientSession |
# coding: UTF-8 | |
# title: Hiyobi.me 북마크 다운로드 스크립트 | |
# comment: Hiyobi.me 북마크를 다운로드합니다 | |
# author: SaidBySolo | |
""" | |
MIT License | |
Copyright (c) 2020 Saebasol |
# coding: UTF-8 | |
# title: Discord 서버 커스텀 이모지 다운로드 | |
# author: SaidBySolo | |
""" | |
MIT License | |
Copyright (c) 2020 SaidBySolo | |
Permission is hereby granted, free of charge, to any person obtaining a copy |