Skip to content
View Herblawunf's full-sized avatar

Highlights

  • Pro

Block or report Herblawunf

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

๐Ÿ‘‘ Dylan's Github

Projects

These are all pretty bad but I'm proud of them

  • ๐Ÿ“; Etch-a-Sketch, drawing tool with customisable pizel size.
  • ๐Ÿ“˜ My first website, the first website I built from scratch with the Odin Project.
  • โœ‚๏ธ; Rock paper scissors, my first use of DOM manipulation!.

What I'm learning

Languages


Frameworks

tumbleweed

Version Control


Environments


My current favourite helloWorld program:

let alphabet = [' ','a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z']

let message = '';

function helloWorld() {
  for(i=0; i<12; i++){
    if(i===0) {
      message = message.concat(alphabet[8].toUpperCase());
    } else if(i===1) {
      message = message.concat(alphabet[5]);
    } else if(i===2) {
      message = message.concat(alphabet[12]);
    } else if(i===3) {
      message = message.concat(alphabet[12]);
    } else if(i===4) {
      message = message.concat(alphabet[15]);
    } else if(i===5) {
      message = message.concat(alphabet[0]);
    } else if(i===6) {
      message = message.concat(alphabet[23].toUpperCase());
    } else if(i===7) {
      message = message.concat(alphabet[15]);
    } else if(i===8) {
      message = message.concat(alphabet[18]);
    } else if(i===9) {
      message = message.concat(alphabet[12]);
    } else if(i===10) {
      message = message.concat(alphabet[4]);
    } else if(i===11) {
      message = message.concat('!');
    }
  }
}

helloWorld();
console.log(message);

Popular repositories Loading

  1. JMC-Maths JMC-Maths Public

    C++ 2 2

  2. Herblawunf Herblawunf Public

    Config files for my GitHub profile.

    1

  3. recipe-website recipe-website Public

    My first recipe website!

    HTML

  4. Rock-Paper-Scissors-TOP Rock-Paper-Scissors-TOP Public

    JavaScript

  5. Etch-a-Sketch Etch-a-Sketch Public

    JavaScript

  6. Calculator Calculator Public

    JavaScript