HackerTrans
TopNewTrendsCommentsPastAskShowJobs

neontomo

no profile record

Submissions

What if we never had folders?

memorysystems.substack.com
3 points·by neontomo·há 2 anos·2 comments

Guess the Corner Radius – game to refine your designer eye

guess-corner-radius.netlify.app
2 points·by neontomo·há 2 anos·0 comments

Europeans, Sorted by Directness

neontomo.com
2 points·by neontomo·há 2 anos·0 comments

Show HN: Rain screen – a cute app to make your Mac rain

rain-screen.netlify.app
1 points·by neontomo·há 2 anos·1 comments

Yeet cars – crash into cars to yeet them (a web game)

neontomo.com
2 points·by neontomo·há 2 anos·0 comments

SEO 4 Devs

seo-4-devs.netlify.app
1 points·by neontomo·há 2 anos·0 comments

Cyberpunk Utopia – a Cyberpunk themed 2d city simulator

neontomo.com
2 points·by neontomo·há 2 anos·0 comments

Show HN: Letter to a Young Artist

neontomo.com
2 points·by neontomo·há 3 anos·4 comments

Ask HN: What's the most compelling AI prompt result you've seen?

2 points·by neontomo·há 3 anos·3 comments

Show HN: Useful checkboxes – inspired by Adam Savage

neontomo.com
5 points·by neontomo·há 3 anos·6 comments

Hacker News on Win 95

neontomo.com
2 points·by neontomo·há 3 anos·0 comments

Show HN: Rolling Potato Website

neontomo.com
5 points·by neontomo·há 3 anos·4 comments

CSS Developers Buying Furniture (Humour)

neontomo.com
1 points·by neontomo·há 3 anos·0 comments

comments

neontomo
·ano passado·discuss
working on saying no to new projects, i have a tendency to fill up all the time i have available with startups or creative ideas.

thinking about taking dancing lessons instead, maybe afrobeats.
neontomo
·ano passado·discuss
market this on the design aspect instead of the technical aspect! can imagine a lot of design studios would use design like this, it's clean, quirky and stands out.
neontomo
·ano passado·discuss
> but they don't do very much

no no no, different elements have different behaviours. for example, a button automatically has accessibility features like being able to tab to it and select with Enter key, which is essential for a screenreader. do that with a div and you end up building the functionality from scratch.

if all you care about is the visuals, sure, there's little difference, but once you scratch the surface you will have a poor product by not using the correct elements (where there is a clear "correct" ofc, sometimes it's subjective).
neontomo
·ano passado·discuss
Alan Turing took his own life on purpose or by accident, he wasn't murdered
neontomo
·ano passado·discuss
wrong link, https://shots.so
neontomo
·ano passado·discuss
and what do you think of him?
neontomo
·ano passado·discuss
conflicted - people who have admired Elon in the past, how are you feeling about him now?
neontomo
·ano passado·discuss
Sköldpadda - Swedish too
neontomo
·ano passado·discuss
I am the author of this blog post. thanks for reading and mentioning me, but I also believe it is not the right post.
neontomo
·ano passado·discuss
I made this helper function to navigate my projects, recursively, it will list them if there are more than one, but defaults to the first one unless you give it a number.

syntax:

  projects <project-name> <match index>
alias:

  function projects() {
    if [ -z "$1" ]; then
      echo "please provide a project name"
      return
    fi

    local allMatches=$(find ~/Documents/projects -maxdepth 2 -type d -name "*$1*" -print)
    local firstMatch=$(echo "$allMatches" | head -n ${2:-1} | tail -n 1)

    if [ -z "$firstMatch" ]; then
      echo "no matches found"
      return
    else
      if [ $(echo "$allMatches" | wc -l) -gt 1 ]; then
        echo "matches found:"
        echo "$allMatches" | awk '{print NR ") " $0}'
      fi
      cd "$firstMatch"
    fi
  }
neontomo
·há 2 anos·discuss
you may still have adhd. eating well, having good habits and receiving accountability from your environment are all factors that manage the negative effects of the disorder.

also would be interesting to know your time frame for how long you've done this - to rule out the honey-moon phase
neontomo
·há 2 anos·discuss
I wonder why nerds are obsessed with Game of Life. I know I am one of them, but I still don't quite get why it hits the spot so well
neontomo
·há 2 anos·discuss
go right ahead! i can make a repo for it if you have any trouble copying.

PLEASE, for the love of god, send it to me later. I am extremely interested (not just saying that). [email protected] or reply here

or, let's collab!
neontomo
·há 2 anos·discuss
> It was shown how easy it is to create a XOR texture, which makes the XOR texture useful to test if a texture renderer is working.

> However, it's not suitable for applications such as art or games.

uhhh why not suitable for art? I'm digging into it right now and made some trippy stuff!

https://xor-pattern.netlify.app/
neontomo
·há 2 anos·discuss
metatags are html, yes
neontomo
·há 2 anos·discuss
I sent you 20eur. It's not much but what I can spare right now
neontomo
·há 2 anos·discuss
not really for analysis but I built a tool that auto-generates some SEO metatags and it has a really thorough checklist to go through, along with linking to useful tools. check it out:

https://seo-4-devs.netlify.app
neontomo
·há 2 anos·discuss
while your idea has value, I think the point being made is that this is an issue with views on human rights and liberty, not technology.
neontomo
·há 2 anos·discuss
any sense in porting a v4 project to 5?
neontomo
·há 2 anos·discuss
so do you look at the users data?