63 lines
3.5 KiB
TypeScript
63 lines
3.5 KiB
TypeScript
interface project {
|
|
title: string,
|
|
description: string,
|
|
link: string
|
|
}
|
|
|
|
export const PROJECTS = [
|
|
{
|
|
title: "RoboCup participants",
|
|
description: "With a team up to four we build and programmed multiple robots to play football against each other or 2v2.With much fun and learning we worked together for several years and remain our friendships.",
|
|
link: "https://robocupgermanopen.de/de/junior/soccer"
|
|
},
|
|
{
|
|
title: "Student newspaper",
|
|
description: "A bit late i joined the schools newspaper and ranked up quickly with articles and proofleading.",
|
|
link: "https://passwort-sz.jimdofree.com/"
|
|
},
|
|
{
|
|
title: "UNIKAT",
|
|
description: "My first club at University of Ilmenau: UNIKAT, the makerspace for students and scholars.Here i worked for nearly three years on 3d - printers, CNC - milling - machines and much more.Each semester we also made a workshop week and gave our knowledge to further students.I retired at the end of 2019 but am still visiting and sometimes working there.",
|
|
link: "https://www.tu-ilmenau.de/unikat"
|
|
},
|
|
{
|
|
title: "Robocup Volunteer",
|
|
description: "After school my university didn't have a robotics contest so i am currently volunteering as referee and helping hand for the organizers.",
|
|
link: "https://robocupgermanopen.de/de"
|
|
},
|
|
{
|
|
title: "Engineers without borders ",
|
|
description: "Who are we? Engineering students! What are we doing ? Helping other people! As some of us are planning and working on projects down in africa i am responsible for the repair cafe to keep things running.",
|
|
link: "https://ingenieure-ohne-grenzen.org/de/ilmenau"
|
|
},
|
|
{
|
|
title: "Python Intro",
|
|
description: "I am programming for many years now and want to start making cheatsheets and introductions to several programming languages.Python wasn't my first language but i think is for most the easiest to begin with. Therefor i started this Project on Github.",
|
|
link: "https://github.com/wieerwill/Python-Intro"
|
|
},
|
|
{
|
|
title: "BI Student Club",
|
|
description: "Mainly because of the music i joined this club on my campus.With good old(and new) metal and rock we got some of the hardest partys and best members you can imageine.After some time i am one of our head technicans.Currently i am responsible for our cultural programm and association communication.",
|
|
link: "http://www.bi-club.de"
|
|
},
|
|
{
|
|
title: "Project management",
|
|
description: "Working with a team you get to know that nobody has that much of a overview what tools you can use to work and participate.This bilingual sheet is a short overview of tools and programms to make your cooperations and projects easier.",
|
|
link: "https://github.com/wieerwill/Project-Management"
|
|
},
|
|
{
|
|
title: "Business card",
|
|
description: "You want to be seen and show people what you do? This page is an example of my business card project.Feel free to use it for your own.A description on how to get free webspace included.",
|
|
link: "https://github.com/wieerwill/wieerwill.github.io"
|
|
},
|
|
{
|
|
title: "NodeJS Boilerplate",
|
|
description: "Start your NodeJS Project today with my simple but structured boilerplate.Don't get anything confused with this organized project map and documentation.",
|
|
link: "https://github.com/wieerwill/nodejs-boilerplate"
|
|
},
|
|
{
|
|
title: "Discord Bot",
|
|
description: "With corona virus pandemia we shipped our weekly club meeting to discord.For management, fun and more interactivity we created a discord bot with several functions.",
|
|
link: null
|
|
}
|
|
]; |