Skip to content
View mturbe's full-sized avatar

Block or report mturbe

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. GoogleCloudPlatform/spring-cloud-gcp GoogleCloudPlatform/spring-cloud-gcp Public

    New home for Spring Cloud GCP development starting with version 2.0.

    Java 430 319

  2. duckduckgo/duckduckgo duckduckgo/duckduckgo Public archive

    DuckDuckGo Instant Answer Infrastructure

    Perl 1.8k 236

  3. pacmu pacmu Public

    A simple mirrorlist updater for pacman (Arch Linux) written in Bash. Inspired by https://wiki.archlinux.org/index.php/Mirrors#Script_to_automate_use_of_Pacman_Mirrorlist_Generator.

    Shell 2

  4. Simple Implementation of the Sieve o... Simple Implementation of the Sieve of Eratosthenes
    1
    # returns a list stripped of 0s a.k.a prime numbers
    2
    def remove_non_primes(potential_primes):
    3
        
    4
        # found at http://stackoverflow.com/questions/1157106/remove-all-occurences-of-a-value-from-a-python-list
    5