Skip to content
View darwingr's full-sized avatar

Block or report darwingr

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

    A cross-platform desktop GUI for statistical/ML analysis of volumetric brain data processed from fMRI scans of over 4,000 juvenile patients.

    Java 1 2

  2. xmoves xmoves Public

    Quarantine inspired healthy activities app for Kennedy Nangle, 2020 micro-grant recipient from StFX's Frank McKenna Centre for Leadership

    Dart

  3. BSc-Computer-Science BSc-Computer-Science Public

    A selection of my completed work from classroom assignments and lab submissions of as part of my bachelor's degree in computer science at St. Francis Xavier University (2017–2020), www.stfx.ca

    C++

  4. ontario_legislature ontario_legislature Public

    A website to practice remembering the faces of Ontario legislative members.

    Ruby

  5. aldercreek aldercreek Public

    A WordPress website for a sheep farm, setup using Docker.

    CSS

  6. Pointer to pointer: Unexpected way i... Pointer to pointer: Unexpected way it simplified my linked list code. See comments for visualization.
    1
    // Nice way to traverse a linked list,
    2
    // makes it easier to implement methods like deleteIthNode(i),
    3
    // as was done in assignment 2 and Lab 3 of CSCI 255.
    4
    // I never thought a "pointer to a pointer" would have ever
    5
    // made my code simpler to read and reason about but here we are.