Skip to content
View eintyp's full-sized avatar
💭
Procrastinating
💭
Procrastinating
  • Technische Universität Berlin
  • 127.0.0.1
  • 13:28 (UTC +01:00)

Organizations

@gruener-campus-malchow @mrbeastify

Block or report eintyp

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
eintyp/README.md

Hi there 👋

Pinned Loading

  1. edunet edunet Public

    A simple visual application to teach about artificial neural networks.

    JavaScript 1

  2. gruener-campus-malchow/startseite gruener-campus-malchow/startseite Public

    next generation startseite

    SCSS 3

  3. MineCaptcha MineCaptcha Public

    inspired by https://xkcd.com/2496/

    CSS 1

  4. mrbeastify/mrbeastify mrbeastify/mrbeastify Public

    This WebExtensions adds MrBeast to all YouTube thumbnails.

    JavaScript 25

  5. create-element.js: create html eleme... create-element.js: create html elements in javascript
    1
    function create_element(tag, attributes = {}, content = []) {
    2
    	const elem = document.createElement(tag);
    3
    	for (const attr of Object.entries(attributes)) elem.setAttribute(...attr);
    4
    	if (typeof content == 'string') elem.innerHTML = content;
    5
    	else content.forEach(child => elem.append(typeof child == 'string'? document.createTextNode(child) : child));
  6. gruener-campus-malchow/simplescoreboard gruener-campus-malchow/simplescoreboard Public

    This project aims to develop a scoreboard for wrestling tournaments.

    JavaScript 1 1