Live data from Hacker News

My daughter (7 years old) used HTML to make a website

naya.lol

541–547 of 547 posts

Re: My daughter (7 years old) used HTML to make a website

#541

I was talking to my parents the other day and surprised myself getting pretty chocked up remembering how my dad had shown me how to program an ascii animation on his 386, and how the wonder I felt at that in many ways led me to where I am today, so many years later. These things matter.

Do you still have the animation?

It was basically (no pun intended) this, though obviously not in bash:

  #!/bin/bash

  legs_out=(
  "                     "
  "        .'''.        "
  "       -     -       " 
  "       |  C  ^       "
  "        \    7       "
  "          | |        "
  "        /     \\     "
  "        |  \\ \\     "
  "        |   \\ \\    " 
  "      / |    \\ \\   "
  "     /  |     \\ \\  "
  "    /   |      \\ \\ "
  "   /    |      |\\  \\     "
  "        \\    \\          "
  "               \\         "
  "       /        \\        "
  "      /          \\       "
  "     /    / \\    \\      "
  "    /    /   \\    \\     "
  "   /    /     \\    \\    "
  "  /    \       \\    \\   "
  "   \\   \\       \\    \\...  "
  "     ____]         [    ]"
  )

  legs_cross=(
  "        .'''.        "
  "       -     -       "
  "       |  C  ^       "
  "        \    7       "
  "          | |        "
  "        /     \\     "
  "        |  |  |      "
  "        |  |  |      "
  "        |  |  |      "
  "        |  |  |      "
  "        |  |  |       "
  "      ( |  |  |       "
  "        |  |   )    "
  "        |  |  |      "
  "        |  |  |      "
  "        |  |  |      "
  "        |  |   )      "
  "        |  |  |       "
  "        |  |  |       "
  "        |  |  |       "
  "        /  |          "
  "       /   |  |       "
  "      \\..]  /    /    " 
  )

  print_man() {
    local spaces=$1
    local man=("${!2}")
    for line in "${man[@]}"; do
      printf "%*s%s\n" $spaces "" "$line"
    done
  }

  spaces=0
  state=0

  while true; do
    clear
  
    if (( state % 4  $(tput cols) )); then
      spaces=0
    fi
   
    sleep 0.1
  done

Re: My daughter (7 years old) used HTML to make a website

#542
I'm building webpages since 1994, when I was 14 years old. Today, I'm a professional front-end dev of 20 years experience. I've grown bitter and resentful of all the modern garbage I have to deal with that has been invented by so called "experts". I officially request that instead all the web pages must now be designed by 7 year old girls who like animals.

Re: My daughter (7 years old) used HTML to make a website

#543

Earlier quoted context omitted.

Sounds like you're pretty close to getting to where you need to be then. Buy something with minor (not foundation issues or something) work needed then do it. Even better if none of the work is urgent, so you can spread it out. For example, central air is obviously a luxury. I don't even have it, so it's hard to take that as a serious issue. You can get around to installing it some day. And you probably already know…

I'm scheduled to look at three tomorrow actually :) I'm working with a realtor and the realtor's platform sends me emails immediately anything is posted within my search criteria and she is very very responsive. Just to reiterate, it's not so much I don't find houses it's just they go so fast and seemingly quite a bit above asking. To that point the house I submitted an offer on in 24hr and was sold had 10 offers in…

Best of luck!

Re: My daughter (7 years old) used HTML to make a website

#546

Earlier quoted context omitted.

I'm scheduled to look at three tomorrow actually :) I'm working with a realtor and the realtor's platform sends me emails immediately anything is posted within my search criteria and she is very very responsive. Just to reiterate, it's not so much I don't find houses it's just they go so fast and seemingly quite a bit above asking. To that point the house I submitted an offer on in 24hr and was sold had 10 offers in…

Best of luck!

My offer was accepted on one :)

Re: My daughter (7 years old) used HTML to make a website

#547

Earlier quoted context omitted.

Do you still have the animation?

It was basically (no pun intended) this, though obviously not in bash: #!/bin/bash legs_out=( " " " .'''. " " - - " " | C ^ " " \ 7 " " | | " " / \\ " " | \\ \\ " " | \\ \\ " " / | \\ \\ " " / | \\ \\ " " / | \\ \\ " " / | |\\ \\ " " \\ \\ " " \\ " " / \\ " " / \\ " " / / \\ \\ " " / / \\ \\ " " / / \\ \\ " " / \ \\ \\ " " \\ \\ \\ \\... " " ____] [ ]" ) legs_cross=( " .'''. " " - - " " | C ^ " " \ 7 " " | | " " / \\…

This is really fun, thanks for sharing. May try to do similar with my niece.
Post reply on HN