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

Block or report analogue

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

    Forked from xboxdrv/xboxdrv

    Xbox Gamepad Userspace Driver for Linux

    C++ 1

  2. bravado bravado Public

    Forked from Yelp/bravado

    Python client library for Swagger 2.0

    Python

  3. bravado-core bravado-core Public

    Forked from Yelp/bravado-core

    Python

  4. strace an existing process tree strace an existing process tree
    1
    #!/usr/bin/python
    2
    # strace an existing process tree. `strace -f` only follows newly spawned
    3
    # processes which is not always what you want.
    4
    import os
    5
    import sys
  5. eatmemory eatmemory
    1
    #!/bin/bash
    2
    # Spawn a process that eats memory by the gigabyte. 
    3
    # Useful for testing ulimits and other such nonsense.
    4
    if [ $# -ne 1 ]; then
    5
        echo "Usage: $0 <gigabytes>"