Skip to content

A Webring for UTD CS students & Alumni

License

Notifications You must be signed in to change notification settings

ryanpolasky/utdring

 
 

Repository files navigation

GitHub code size in bytes W3C Validation - https://validator.nu/ GitHub stars

Thumbnail logo

A webring for Computer Science students and alumni at the University of Texas at Dallas. If you're one of us, we welcome you with open arms. Visit our live site here.

Joining the Webring

  1. Add the webring widget to your website HTML (template below). Generally, you should add it to the footer.
  2. Clone this repo, branch, and add your information to the BOTTOM of webringData[] in index.html following this format:
    {
      "name": "Your Name",
      "website": "https://your-website.com",
      "year": "20XX"
    }
  3. Submit a Pull Request! We'll try to review as fast as we can.

Widget template

image

Since every website is unique, we suggest you add your own flair to the lion. We also know that design is hard, so here are some examples to get you started:

HTML:

<div style="display: flex; align-items: center; gap: 8px;">
    <a href="https://cs.utdring.com/#your-site-here?nav=prev"></a>
    <a href="https://cs.utdring.com/#your-site-here" target="">
        <img src="https://cs.utdring.com/icon.black.svg" alt="CS Webring" style="width: 24px; height: auto; opacity: 0.8;"/>
    </a>
    <a href="https://cs.utdring.com/#your-site-here?nav=next"></a>
</div>
<!-- Replace 'your-site-here' with your actual site URL -->

JSX:

<div style={{ display: 'flex', alignItems: 'center', gap: '8px' }}>
    <a href='https://cs.utdring.com/#your-site-here?nav=prev'></a>
    <a href='https://cs.utdring.com/#your-site-here' target=''>
        <img
            src='https://cs.utdring.com/icon.black.svg'
            alt='CS Webring'
            style={{ width: '24px', height: 'auto', opacity: 0.8 }}
        />
    </a>
    <a href='https://cs.utdring.com/#your-site-here?nav=next'></a>
</div>
// Replace 'your-site-here' with your actual site URL

For dark-themed websites, use icon.white.svg. Feel free to host the icon locally if you encounter HTTPS issues / styling issues.

Alternative Icons Sources

  • Black: https://cs.utdring.com/icon.black.svg
  • White: https://cs.utdring.com/icon.white.svg
  • Red: https://cs.utdring.com/icon.red.svg

If none of these quite work for you, feel free to make your own. If you're using React, start with icon.custom.tsx.

Q&A

I'm not in CS. Can I still join?

No :)

In all realness, this is the only existing webring at UT Dallas as far as I'm aware. They aren't too complex to make & can be a great way to connect with bright minds, so consider creating your own!

Do you accept alumni and post-grad students?

Yep, as long as you studied Computer Science or are currently studying it

What about minors, double degrees (ie CS BBA), etc?

👍

Credits & Inspiration

This project is (obviously) forked from the UWaterloo CS webring, so credit goes to them for creating such a well polished site!

I (Ryan) currently maintain the site, so if you see any bugs please let me know by making an issue. I'll try to respond as fast as I can :)

About

A Webring for UTD CS students & Alumni

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 43.0%
  • TypeScript 31.6%
  • HTML 13.3%
  • JavaScript 12.1%