Giter Site home page Giter Site logo

paramt.github.io's Introduction

Hi there ๐Ÿ‘‹

Hi there! I'm a CS student @ UWaterloo with a passion for exploring technology!

Links

ย  ย  ย 

paramt.github.io's People

Contributors

dependabot[bot] avatar imgbotapp avatar paramt avatar rdil avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

paramt.github.io's Issues

Dynamically generate projects section

Move projects to their own csv files in /_data and dynamically generate site files:

{% for project in site.data.projects limit:3 %}
[...]
{% endfor %}

Advantages:

Easier to update and maintain

Make each achievement a Jekyll post

Move each achievement to their own markdown file in /_posts and dynamically generate site files:

Advantages:

Easier to update and maintain

Redirect 404 page to similar URLs

For example: Since /MemeAdvisor doesn't exist, it will load /404.html which should recognize the spelling error in the request and redirect to /MemeAdviser

One possible way to go about this would be to calculate the Levenshtein distance between the requested page that doesn't exist (like MemeAdvisor) to a list of existing pages that do exist (like ['MemeAdviser', '1pt', 'meme'] and redirect to the page that is the closest to the user's request, but only if it isn't too far off.

The ideal end result would be something like this:

MemeAdvisor โ†’ MemeAdviser
indexs.htm โ†’ index.html
somerandomgibberish.txt โ†’ 404.html

Since nothing close to somerandomgibberish.txt exists, it should redirect to 404.html

Move to Netlify

To take advantages of features like deploy previews and easy form handling.

SSL cert expired

Tried to visit the site today, it says that the cert expired almost 3 months ago

Replace JavaScript with CSS for icons hover effect

function highlight(parentElement){
elements = parentElement.childNodes;
for(element in elements){
elements[element].style = "color: #b7b7b7";
}
}
function unHighlight(parentElement){
elements = parentElement.childNodes;
for(element in elements){
elements[element].style = "color: white";
}
}

Replace this code with something like this

Advantages

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.