Giter Club home page Giter Club logo

Comments (12)

nelsonni avatar nelsonni commented on July 18, 2024 1

All of them should be in chronological order based on graduation year. Anita's website has them grouped by graduate and undergraduate students, but that is unnecessary for the EPICLab website. So for example, the first few alumni would be:

Caius Brindescu
PhD, Oregon State University (2020)
Technical Staff, Etleap

Manideepa Saginatham
MS, Oregon State University (2020)

Leif Tsang
BE, Oregon State University (2020)
Recent Graduate Program, Naval Undersea Warfare Center (NUWC)

from epiclab.github.io.

nelsonni avatar nelsonni commented on July 18, 2024 1

No. Per item 3 in #6, we are using the following code to dynamically pull GitHub profile photos for each current student:

<img src="https://github.com/nelsonni.png" class="profileimg">

This allows students to quickly and easily change their own pictures on the EPICLab website (through changing their GitHub profile photo). If a student doesn't set a profile photo, we respect the desire for privacy and opt for the EPICLab logo instead via the alternative code:

<img src="https://github.com/EPICLab.png" class="profileimg">

from epiclab.github.io.

audreyau avatar audreyau commented on July 18, 2024

For the Alumni section, do you want the students in the same order as Anita's website (Graduate Students from most recent to least recent and then Undergraduate Students from most recent to least recent), or do you want them all in order of year graduated (from most recent to least recent)?

from epiclab.github.io.

audreyau avatar audreyau commented on July 18, 2024

I got Ayda's GitHub username, but she doesn't have a profile picture. Should I user her LinkedIn profile picture instead?

from epiclab.github.io.

audreyau avatar audreyau commented on July 18, 2024

Also, since Turgay does not have a profile picture, should I use his GitHub username as the custom link?

from epiclab.github.io.

audreyau avatar audreyau commented on July 18, 2024

Should I also remove Jett Seale from Current Undergraduate Students since he is under "Alumni"?

from epiclab.github.io.

nelsonni avatar nelsonni commented on July 18, 2024

Jett is still a current undergraduate student working with us. I just checked both the current https://epiclab.github.io/people.html and https://web.engr.oregonstate.edu/~sarmaa/students/ sites, and neither shows him as alumni. Is there a third location in which you're seeing him listed as alumni?

from epiclab.github.io.

audreyau avatar audreyau commented on July 18, 2024

Yes, on Anita's website, which is probably my bad. I'll update hers afterwards too haha! Also, I messaged Turgay, and he wants to use his LinkedIn profile picture. Also, since I'm collecting all of these GitHub usernames, what should I do with them?

from epiclab.github.io.

nelsonni avatar nelsonni commented on July 18, 2024

Okay, then in order to use Turgay's LinkedIn profile picture, use the following code (instead of the code referenced above):

<img src="https://www.linkedin.com/in/turgay-caglar-6a2780a0/detail/photo/" class="profileimg">

For anyone that isn't a member of the EPICLab GitHub organization, I will need their GitHub username in order to invite them to join. So please send them to me.

from epiclab.github.io.

audreyau avatar audreyau commented on July 18, 2024

Screen Shot 2020-07-29 at 3 58 10 PM
Screen Shot 2020-07-29 at 3 59 19 PM
Is there a way we can change the code for those who opt for an EpicLab profile picture? It seems that it adjusts the dimension of this picture according to how long the text is (since Catherine has a long title, it stretched out the photo a lot). This also causes slight problems because the photos aren't aligned properly (the red lines in this screenshot shows this).
Screen Shot 2020-07-29 at 4 00 48 PM

also, Ayda's GitHub username is @aydamannan

from epiclab.github.io.

nelsonni avatar nelsonni commented on July 18, 2024

I'm not 100% certain about the cause, but there are a few things going on that might need to be investigated. The person profiles are setup to use CSS Flexbox so that they flow onto new rows when the available window width is resized (i.e. if only 4 profile images will fit on a row, all other profile images move to the second row, and the remaining profile images then try to fit onto the second row until full, and so on). Most of this is setup and controlled through CSS, which would be in the full-width-pics.css file.

As for profile images maintaining their aspect ratios, there was a previous issue #8 that described a similar problem. The fix for that was to set the following .profileimg CSS class:

.profileimg{
  max-width:100%;
  height:262px;
  margin-right:20px;

This was a partial adaptation from the discussions in this StackOverflow post: https://stackoverflow.com/questions/12991351/css-force-image-resize-and-keep-aspect-ratio.

My initial thoughts are that we either need to:

  1. Update the max-width to be a specific px value instead of 100%, or
  2. Set .name-box to have text wrap when it reaches the boundaries of it's parent div element (via the overflow-wrap property).

from epiclab.github.io.

audreyau avatar audreyau commented on July 18, 2024

That worked perfectly! I changed max-width to 262px and margin-right to 50px (really any number worked here as long as it was 30px or more), and everything aligned properly! I've finished all the issues, but I will make the pull request tomorrow since I'm still waiting for Catherine to give me her GitHub username.

from epiclab.github.io.

Related Issues (12)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.