Skip to content
View khalifaali's full-sized avatar

Block or report khalifaali

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

Pinned Loading

  1. gdtree gdtree Public

    Go Dependency Tree (gdtree) - Go module built to enhance readability of go mod graph by printing tree-like output.

    Go 1

  2. vscode_theme vscode_theme Public

    settings.json file with updated settings for a lighter material ocean theme

    1

  3. Here is a way to verify Github's sha... Here is a way to verify Github's sha256 hmac hexdigest in Flask
    1
    import hashlib
    2
    import hmac
    3
    import os
    4
    from flask import Flask
    5
    from flask import request
  4. voice_gen.py voice_gen.py
    1
    # Init TTS with the target model name
    2
    import torch
    3
    from TTS.api import TTS
    4
    device = "cuda" if torch.cuda.is_available() else "cpu"
    5