Research and Publications

Decentralized applications: The blockchain-empowered software system
Wei Cai, Zehua Wang, Jason B Ernst, Zhen Hong, Chen Feng, Victor CM Leung
2018
It's time to do something: Mitigating the negative impacts of computing through a change to the peer review process
Brent Hecht, Lauren Wilcox, Jeffrey P Bigham, Johannes Schöning, Ehsan Hoque, Jason Ernst, Yonatan Bisk, Luigi De Russis, Lana Yarosh, Bushra Anjum, Danish Contractor, Cathy Wu
2021
A survey and taxonomy of classifiers of intrusion detection systems
Tarfa Hamed, Jason B Ernst, Stefan C Kremer
2018
A survey of QoS/QoE mechanisms in heterogeneous wireless networks
Jason B Ernst, Stefan C Kremer, Joel JPC Rodrigues
2014
Danish Contractor, and Cathy Wu. 2018. It’s time to do something: Mitigating the negative impacts of computing through a change to the peer review process
Brent Hecht, Lauren Wilcox, Jeffrey P Bigham, Johannes Schöning, Ehsan Hoque, Jason Ernst, Yonatan Bisk, Luigi De Russis, Lana Yarosh, Bushra Anjum
2018
Creature learning to cross a ca simulated road
Anna T Lawniczak, Jason B Ernst, Bruno N Di Stefano
2012
Algorithms and implementation for interconnection graph problem
Hongbing Fan, Christian Hundt, Yu-Liang Wu, Jason Ernst
2008
Simulated naïve creature crossing a highway
Anna T Lawniczak, Jason B Ernst, Bruno N Di Stefano
2013
2014
Naïve creature learns to cross a highway in a simulated CA-like environment
Anna T Lawniczak, Bruno N Di Stefano, Jason B Ernst
2014
The diverse technology of MANETs: a survey of applications and challenges
Fatemeh Safari, I Savić, Herb Kunze, D Gillis
2023
It’s time to do something: mitigating the negative impacts of computing through a change to the peer review process. 2018
Brent Hecht, L Wilcox, JP Bigham, J Schöning, E Hoque, J Ernst, Y Bisk, L De Russis, L Yarosh, B Anjum, D Contractor, C Wu
2019
Biomimicry Based Learning Outcomes of Simple Cognitive Agents
Anna T Lawniczak, Jason B Ernst, Bruno N Di Stefano
2014
A review of ai-based MANET routing protocols
Fatemeh Safari, Izabela Savić, Herb Kunze, Jason Ernst, Daniel Gillis
2023
A Decentralized Mobile Mesh Networking Platform Powered by Blockchain Technology and Tokenization
Jason Ernst, Zehua David Wang, Saju Abraham, John Lyotier, Chris Jensen, Melissa Quinn, Dana Harvey
2019
It’s Time to Do Something: Mitigating the Negative Impacts of Computing Through a Change to the Peer Review Process. ACM Future of Computing Blog (2018)
Brent Hecht, Lauren Wilcox, JP Bigham, J SchÃűning, Eshan Hoque, Jason Ernst, Yonatan Bisk, Luigi De Russis, Lana Yarosh, Bushra Anjum, D Contractor, C Wu
2018
Stochastic model of cognitive agents learning to cross a highway
Anna T Lawniczak, Bruno N Di Stefano, Jason B Ernst
2015
Autonomic and Pervasive Networking
Thabo KR Nkwe, Mieso K Denko, Jason B Ernst
2011
M-ODD: A standard protocol for reporting MANET related models, simulations, and findings
Izabela Savić, Marshall Asch, Keefer Rourke, Fatemeh Safari, Patrick Houlding, Jeremie Fraeys de Veubeke, Jason Ernst, Daniel Gillis
2021
Data ubiquity in autonomic wireless mesh networks
Thabo KR Nkwe, Mieso K Denko, Jason Ernst
2010
Incorporation of node mobility in data replication schemes in mobile ad hoc networks
Marshall Asch, P Frazer Seymour, Jason Ernst, Daniel Gillis
2019
Co-designing a community-led Internet assessment tool in Rigolet, Nunatsiavut, Canada
Nic Durish, Rekkab Gill, Patrick Houlding, Charlie Flowers, Inez Shiwak, Jason Ernst, Daniel Gillis
2021
2017
Improved performance of naïve creature learning to cross a highway
Anna T Lawniczak, Jason B Ernst, Bruno N Di Stefano
2014
Naïve Creature with Fear and Desire Learning to Cross a Highway
Anna T Lawniczak, Jason B Ernst, Bruno N Di Stefano
2014

Most Recent Post

Configuring Plex on UGreen NAS with Docker and Ansible

Previously I had a plex setup on a dedicated computer in my house, however, I recently purchased a Ugreen NAS, and wanted to migrate plex to the Ugreen machine since it supports docker. Here are the steps to get it working. 1. Install the docker app on the Ugreen. 2. Ensure SSH is enabled, and optionally setup SSH certs (see: https://www.jasonernst.com/posts/2024/07/18/UGreen-NAS-SSH-certs) 2.a Ensure your user is able to access docker, either manually, or via ansible: ``` - name: adding {{ username }} to group docker tags: docker become: true ansible.builtin.user: name: "{{ userna ...