Skip to content
View eeriks's full-sized avatar
Block or Report

Block or report eeriks

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. erepublik erepublik Public

    Python script for automated eRepublik playing

    Python 7

  2. discord_bot discord_bot Public

    eRepublik medal notifier on discord

    Python 1

  3. Generate User-Agent strings Generate User-Agent strings
    1
    import random
    2
    
                  
    3
    
                  
    4
    def get_random_user_agent() -> str:
    5
        windows_x64 = 'Windows NT 10.0; Win64; x64'
  4. Filesystem recursive copy Filesystem recursive copy
    1
    #!/usr/bin/python3
    2
    import os
    3
    import pathlib
    4
    import shutil
    5
    import sys
  5. compile_python.sh compile_python.sh
    1
    #!/bin/bash
    2
    VERSION=$1
    3
    
                  
    4
    if [[ ! -n "$VERSION" ]]; then
    5
      echo "Please provide version e.g. ${0} '3.10.2'"