Jamie Mahoney

12 papers A* 5Journal 2Unranked 5
YearRankTypeTitle / Venue / Authors
2026 A* conf
CHI
Rochelle Campbell-Esen, Jamie Mahoney, Reem Talhouk
2025 conf
EuroS&P (Workshops)
Oluwamayowa Tijani, Jamie Mahoney, Santosh Vijaykumar, James Nicholson
2023 J jnl
CoRR
Jamie Mahoney, Kahina Le Louvier, Shaun W. Lawson
2020 A* conf
CHI
Jayne Wallace, Kyle Montague, Trevor Duncan, Luís P. Carvalho, Nantia Koulidou, Jamie Mahoney, Kellie Morrissey, Claire Craig, Linnea Iris Groot, Shaun W. Lawson, Patrick Olivier, Julie Trueman, Helen Fisher
2019 J jnl
Comput. Hum. Behav.
Jamie Mahoney, Effie Le Moignan, Kiel Long, Mike Wilson, Julie Barnett, John Vines, Shaun W. Lawson
2018 A* conf
CHI
Gavin Wood, Kiel Long, Tom Feltwell, Scarlett Rowland, Phillip Brooker, Jamie Mahoney, John Vines, Julie Barnett, Shaun W. Lawson
2017 A* conf
CHI
Effie Le Moignan, Shaun W. Lawson, Duncan A. Rowland, Jamie Mahoney, Pam Briggs
2016 A* conf
CHI
Jamie Mahoney, Tom Feltwell, Obinna Ajuruchi, Shaun W. Lawson
2015 conf
BCS HCI
Tom Feltwell, Jamie Mahoney, Shaun W. Lawson
2014 conf
CHI Extended Abstracts
Jamie Mahoney, Shaun W. Lawson, Rufus Stone
2014 conf
CSCW Companion
Sue Jamison-Powell, Lucy Bennett, Jamie Mahoney, Shaun W. Lawson
2013 conf
GRAPP/IVAPP
Jamie Mahoney
docker-build.sh
← Index docker-build.sh bash
#!/bin/bash

set -e

echo "Building REDB Docker image for linux/amd64 platform..."

# Function to tag the most recent <none> image
tag_unnamed_image() {
    local tag_name=$1
    local expected_size=$2
    
    # Get the most recent <none> image
    local image_id=$(docker images --filter "dangling=true" --format "{{.ID}}" | head -1)
    
    if [ -z "$image_id" ]; then
        echo "ERROR: No unnamed image found. Build may have failed."
        return 1
    fi
    
    local actual_size=$(docker images --format "table {{.ID}}\t{{.Size}}" | grep $image_id | awk '{print $2}')
    echo "Found image $image_id with size: $actual_size (expected: $expected_size)"
    
    # Tag the image
    echo "Tagging as $tag_name..."
    docker tag $image_id $tag_name
    
    return 0
}

# Build single unified image
echo ""
echo "Building REDB unified image - Supports both feature extraction and decompilation..."
echo "NOTE: If build hangs at 'exporting to image', press Ctrl+C - the image will still be created!"
echo ""

docker build --platform linux/amd64 -f Dockerfile -t redb:latest . || echo "Build interrupted (this is expected due to Docker Desktop bug)"

# Tag the image if it was built as unnamed
if docker images --filter "dangling=true" --format "{{.ID}}" | head -1 | grep -q "."; then
    tag_unnamed_image "redb:latest" "500MB"
fi

echo ""
echo "Docker build completed!"
echo ""
echo "Available images:"
docker images | grep redb

echo ""
echo "Image size:"
echo "REDB unified image: $(docker images redb:latest --format "{{.Size}}")"

echo ""
echo "Usage:"
echo "  Feature extraction: docker run redb:latest python3 start.py --nomad-job"
echo "  Decompilation:      docker run redb:latest python3 start.py --nomad-job --decompile"
echo "  Custom modules:     docker run redb:latest python3 start.py --nomad-job --modules BasicPropertiesExtractor,PEFeaturesExtractor"