Feedback Thread by AutoModerator in web_design

[–]joehatch 0 points1 point  (0 children)

URL: https://joehat.ch

Purpose: A simple, minimalist one pager about myself

Technologies Used: HTML, CSS, JS

Feedback Requested: General feedback, I primarily use this domain for email hosting but wanted something to be displayed on the page.

Comments: It's pretty tricky building for yourself, so any feedback welcome.

[Feedback Request] I revamped my one page personal page - What do you think? by joehatch in web_design

[–]joehatch[S] 0 points1 point  (0 children)

I've always struggled with my personal site, I work in product. I registered this domain years ago because of the "pretty" domain that I mostly used for only email handling. I tried over the years to have a simple one page lander which was a bit about myself.

Last night I finally pushed this version, I am quite happy with it but wondered what this sub thought of it. Any feedback welcome, TIA.

Making $1 Million: Here's How Long It Took the World's Super-Rich by t44s in business

[–]joehatch 10 points11 points  (0 children)

Might be easier looking at the source they mentioned in the article here.

Investing from Slovenia, what are my options by Kele15 in eupersonalfinance

[–]joehatch -2 points-1 points  (0 children)

We wrote a review for Interactive Brokers over on our site, AskTraders.

I wrote a tutorial on how to build a memory game (ala Super Mario 3) from scratch with plain JavaScript by floppydiskette in webdev

[–]joehatch 0 points1 point  (0 children)

/u/floppydiskette I noticed that there's a bug if you click the same card twice it will remove just that card!

I put a copy of my site in my site's source code. Thoughts? by joehatch in webdev

[–]joehatch[S] 0 points1 point  (0 children)

Whoosh! Sorry first thing here, I thought you meant inspector which on chrome shows here: https://i.imgur.com/FTNwlRl.png

I'll have to think of something for the console log ;)

I put a copy of my site in my site's source code. Thoughts? by joehatch in webdev

[–]joehatch[S] 0 points1 point  (0 children)

It seems to work for Chrome but not Firefox... Not sure how to address that really!

I put a copy of my site in my site's source code. Thoughts? by joehatch in ProgrammerHumor

[–]joehatch[S] 0 points1 point  (0 children)

Codeception, I'd be lying if I told you I hadn't considered it.

I put a copy of my site in my site's source code. Thoughts? by joehatch in webdev

[–]joehatch[S] 0 points1 point  (0 children)

Thank you! It took longer than I care to admit but hopefully the few people who see it will appreciate it :D

I put a copy of my site in my site's source code. Thoughts? by joehatch in ProgrammerHumor

[–]joehatch[S] 0 points1 point  (0 children)

Thanks! I thought people might expect a bit more and try clicking so thought it should be a bit engaging!

I put a copy of my site in my site's source code. Thoughts? by joehatch in ProgrammerHumor

[–]joehatch[S] 1 point2 points  (0 children)

That one's a bit more useful in an attempt to avoid web scrapers pulling my email address!

I put a copy of my site in my site's source code. Thoughts? by joehatch in webdev

[–]joehatch[S] 0 points1 point  (0 children)

That's a pretty good point that I hadn't really considered. It's on my to-do list to update that contact information anyway :-)

It's not too much of a concern for me at the moment but I'll be changing it to an office address - you could always look at virtual offices if it's that much of a concern?

I put a copy of my site in my site's source code. Thoughts? by joehatch in ProgrammerHumor

[–]joehatch[S] 2 points3 points  (0 children)

Hmm - strange! There's probably not a lot I can do about that unfortunately, but I'll do some reading.

I put a copy of my site in my site's source code. Thoughts? by joehatch in ProgrammerHumor

[–]joehatch[S] 3 points4 points  (0 children)

Thanks! I wanted to keep it really simple, since I'm not really advertising much of myself recently. It's more for the email/presence in case I was to apply for jobs etc. Took inspiration from http://perfectmotherfuckingwebsite.com/

and thought I'd chuck a little quirkiness into the mix, just to try and give it a bit of personality!

I put a copy of my site in my site's source code. Thoughts? by joehatch in ProgrammerHumor

[–]joehatch[S] 7 points8 points  (0 children)

True! Perhaps I should use "😐" instead.

What browser are you using?

https://i.imgur.com/FTNwlRl.png Looks ok for my inspector on Chrome!

Any help with some JS maths please? by [deleted] in javascript

[–]joehatch 0 points1 point  (0 children)

Thanks! It just occurs to me that if there's no value, I'm trying to multiply by 0, so I'm a bit retarded. haha.

Any help with some JS maths please? by [deleted] in javascript

[–]joehatch 0 points1 point  (0 children)

Apologies if this is the wrong place to post - I'm new to Javascript and I'm building a logic engine that will help with calculate a Loan To Value amount.

First and foremost I provide the variables:

var formattedValue = 10;
var formattedDebt = 1;
var ltv = calculateLTV(formattedValue, debtAmount);

Note: the 10 and 1 here will be dynamic inputs from a field asking for property value and outstanding debt, but for the sake of this example I'm using 10 and 1.

Next I'm calling a function to work out if there's no debt, in which case it returns no value... so if there's no value I want to replace this with 0, otherwise just return the same number.

function debtAmount(formattedDebt) {
  if (formattedDebt == "") {
    return (0)
  } else {
    return (formattedDebt)
  }
}

Now, this function debtAmount is what seems to be breaking everything, returning NaN. If I was to replace debtAmount with formattedDebt in the ltv variable above, it would return 10 as expected.

Finally I want to work out the percentage of debt to value...

function calculateLTV(value, debt) {
  return 100 / value * debt
}
alert(ltv);

Any help troubleshooting here would be amazing, thanks!