Skip to content
View ohaval's full-sized avatar
πŸ’­
Code can be a piece of art
πŸ’­
Code can be a piece of art

Highlights

  • Pro

Block or report ohaval

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
ohaval/README.md

πŸ‘‹ Hello! My name is Ohav.

πŸ”­ I am working as a software engineer and do mainly whatever I am being asked to do, but also backend development in cloud environments and DevOps.

🌱 I am amazed by the beautiful things that can be done with code in 2024, and I am always looking for new things to learn and improve my skills.

πŸ“œ Here are some blog posts I wrote:

Pinned Loading

  1. auto-doh auto-doh Public

    A Python package which serves as an API client, with a scheduled task (cronjob) and a Telegram bot to automate the daily process of doh.

    Python 5

  2. sheilta-autofill sheilta-autofill Public

    This Chrome extension will automatically fill the ID number on the Sheilta login page

    JavaScript 1

  3. An example shows how to push a singl... An example shows how to push a single commit with multiple files to an existing branch using PyGithub
    1
    """
    2
    Main Steps:
    3
    4
    1. Create blob for each file
    5
    2. Create tree with the blobs on top of the specific branch
  4. An example of Terraform code shows h... An example of Terraform code shows how to integrate AWS API Gateway V2 with Event Bridge
    1
    # 3 important steps:
    2
    #
    3
    # A) Create a role for the integration (allowing PutEvents)
    4
    # B) Create the integration resource (specify that role)
    5
    # C) Create a route targeting that integration
  5. Generate and export ECDSA public and... Generate and export ECDSA public and private keys in Python.
    1
    """This example shows how easy it is to generate and export ECDSA keys with python.
    2
    3
    This program is similar to `ssh-keygen -t ecdsa` with no passphrase.
    4
    To export the private key with a passphrase, read paramiko.pkey.PKey._write_private_key method.
    5
    """
  6. Save an image from the clipboard to ... Save an image from the clipboard to a file
    1
    /*
    2
    I wanted to play with the clipboard via Windows API so I wrote a small program that
    3
    checks if the clipboard contains an image, and if so saves the image as a .bmp file.
    4
    5
    This program obtains the handle on the clipboard data, put together all of the