Skip to content
View lobennett's full-sized avatar
  • Stanford University
  • Palo Alto, CA

Highlights

  • Pro

Block or report lobennett

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
lobennett/README.md

Hi there 👋, I'm Logan

Research Coordinator @ Poldrack Lab, Stanford University

  • 🌱 learning .go
  • ⚙️ use daily: .js, .html, .css, .py
  • ⚡️ passionate about reproducibility, open-source science, naturalistic neuroimaging

💭 About me

TS interfaces
interface Job {
employer: string;
department: string;
mentors: string[];
}

interface Seeking {
actively: boolean;
ofInterest: string[];
}

interface Interests {
research: string[];
seeking: Seeking;
communities: string[];
}

interface Education {
degree: string;
institution: string;
year: number;
honors: string;
}

interface Me {
code: string[];
tools: string[];
research: string[];
job: Job;
interests: Interests;
hobbies: string[];
education: Education;
}
const Logan: Me = {
  code: ["JavaScript", "TypeScript", "HTML", "CSS", "Python"],
  tools: ["Tailwind CSS", "React", "Node", "Next.js", "Styled-Components", "Docker", "Singularity"],
  research: ["fMRI", "EEG", "open-source", "reproducibility", "cognitive tasks"],
  job: {
    employer: "Stanford University",
    department: "Psychology",
    mentors: ["Patrick Bissett", "Russell Poldrack"],
  },
  interests: {
    research: ["software for science", "cognitive neuroscience", "neuroimaging"],
    seeking: {
      actively: false,
      ofInterest: ["PhD", "Software Engineer", "Data Engineer"]
    },
    communities: ["US-RSE", "Stanford Data Science", "OpenSource@Stanford"]
  },
  hobbies: ["biking", "hiking", "volleyball"],
  education: {
      degree: "BSc in Neuroscience",
      institution: "Temple University",
      year: 2023,
      honors: "Summa Cum Laude"
  }
};

Popular repositories Loading

  1. expfactory-experiments-rdoc expfactory-experiments-rdoc Public

    Forked from csiyer/expfactory-experiments-rdoc

    Experiment code for Poldrack Lab RDoC grant behavioral tasks.

    JavaScript 1

  2. expfactory-battery expfactory-battery Public

    Forked from poldracklab/expfactory-battery

    version 1.0 expfactory battery template used with psiturk, django, and expfactory.github.io

    JavaScript

  3. expfactory-surveys expfactory-surveys Public

    Forked from poldracklab/expfactory-surveys

    experiment factory surveys

    CSS

  4. expfactory-experiments-network expfactory-experiments-network Public

    Forked from Rios-Jaime/expfactory-experiments-network

    JavaScript

  5. expfactory-experiments expfactory-experiments Public

    Forked from expfactory/expfactory-experiments

    version 1.0 javascript experiments that can be deployed to run in an experiment infrastructure

    JavaScript

  6. rdoc_beh_qc rdoc_beh_qc Public

    Forked from Rios-Jaime/rdoc_beh_qc

    This repo contains scripts for doing a quick rt/acc qc across the 11 cognitive tasks used in our rdoc profific acquisition.

    Jupyter Notebook