Skip to content
View LPX55's full-sized avatar

Block or report LPX55

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. D3Cngo/dao-transparency-index D3Cngo/dao-transparency-index Public

    A proposed framework for a fair and standardized transparency index for DAOs.

    Python 2

  2. BTTSpeed-API BTTSpeed-API Public

    Unofficial Python API Wrapper for the BitTorrent Speed Token WebUI (uTorrent 3.5.5+ and BitTorrent 7.10.5+)

    Python 6 3

  3. IncentivizedDelegations IncentivizedDelegations Public

    Incentivizing Redelegations for Greater Network Decentralization and Security

    Solidity

  4. D3Cngo/ibc-autostake D3Cngo/ibc-autostake Public

    Auto-Compounding Tool for DAOs and Organizations with Numerous Validators on Cosmos

    JavaScript 2

  5. Extracting Chrome Passwords with Pyt... Extracting Chrome Passwords with Python | Demonstration for hackernoon.com/@hanyoon
    1
    # os and sqlite3 ships with Python by default. If you get import errors for win32crypt use "pip install pypiwin32" to install the dependency.
    2
    import os, sqlite3, win32crypt
    3
    
                  
    4
    # Automatically get the logged in user's default folder
    5
    data = os.path.expanduser('~')+"\AppData\Local\Google\Chrome\User Data\Default\Login Data"
  6. Multi-Threaded Python Downloader Multi-Threaded Python Downloader
    1
    """ Import """
    2
    import sys
    3
    import os
    4
    import time
    5
    from threading import Thread