Skip to content
View kyurikotpq's full-sized avatar

Block or report kyurikotpq

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. substack-exports-to-md substack-exports-to-md Public

    Convert exported Substack posts to Markdown files for use in JAMstack

    Jupyter Notebook 3

  2. sshftp sshftp Public

    A collection of Python scripts that (run Bash commands to) easily create LAMP instances in Docker. You can easily create and delete users on your Linux machine; these users can deploy and manage th…

    Python 1

  3. mba-from-prior-scores mba-from-prior-scores Public

    Predicting MBA scores from Bachelor’s, Higher Secondary, and Secondary Scores using correlation and regression analyses.

    Jupyter Notebook

  4. brainjournal brainjournal Public

    WordPress Plugin that visualizes links between posts. Inspired by Roam Research, Obsidian, and Zettelkasten.

    PHP

  5. Render ebook highlights (exported fr... Render ebook highlights (exported from Libby app as JSON) using Obsidian's DataviewJS plugin.
    1
    ```dataviewjs 
    2
    // Change this to where your JSON file resides
    3
    const FILENAME = "book-highlights/libbyjourney-9818863-million-dollar-weekend.json";
    4
    5
    // Load and parse the JSON
  6. Extract OpenGraph tags from a given ... Extract OpenGraph tags from a given URL using Python requests and BeautifulSoup
    1
    # Lightly edited from ChatGPT's output.
    2
    # Tested with Python 3.9
    3
    import requests
    4
    from bs4 import BeautifulSoup
    5