Skip to content
View mmadil's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report mmadil

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. Some useful aliases to use when deve... Some useful aliases to use when developing locally with pydanny/django-cookiecutter
    1
    # using --user=`id -u`:`id -g` to avoid file permission issues after creating migrations, dumpdata, etc.
    2
    alias djman="docker-compose -f local.yml run --run --user=`id -u`:`id -g` django python manage.py"
    3
    alias djshell="docker-compose -f local.yml run --rm --user=`id -u`:`id -g` django python manage.py shell_plus"
    4
    alias djmkmi="docker-compose -f local.yml run --rm --user=`id -u`:`id -g` django python manage.py makemigrations"
    5
    alias djmig="docker-compose -f local.yml run --rm --user=`id -u`:`id -g` django python manage.py migrate"
  2. Simplest RPG game deployable on Remi... Simplest RPG game deployable on Remix - Solidity IDE (https://remix.ethereum.org)
    1
    pragma solidity ^0.4.18;
    2
    
                  
    3
    // import './SafeMath.sol';
    4
    
                  
    5
    import 'github.com/OpenZeppelin/zeppelin-solidity/contracts/math/SafeMath.sol';
  3. pwnage pwnage Public

    Sample container image to demonstrate attack scenarios in containerized cluster environments.

    Dockerfile 2

  4. tweepy tweepy Public

    Simple twitter clone built on Flask

    Python 11 6