HN user

neontomo

826 karma

i'm a software dev, artist & published author. often i follow my nose and explore interesting projects.

rain screen - make your computer rain - #5 on product hunt - https://rain-screen.netlify.app

my book about psychedelics - https://recoveryfromegodeath.com

portfolio - https://iamtomo.com

experiments - https://iamtomo.com/play

my comic book character - https://instagram.com/blob.comic

connect - https://github.com/neontomo tomomyrman@proton.me

Posts25
Comments355
View on HN
memorysystems.substack.com 1y ago

What if we never had folders?

neontomo
3pts2
guess-corner-radius.netlify.app 1y ago

Guess the Corner Radius – game to refine your designer eye

neontomo
2pts0
neontomo.com 1y ago

Europeans, Sorted by Directness

neontomo
2pts0
rain-screen.netlify.app 2y ago

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

neontomo
1pts1
neontomo.com 2y ago

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

neontomo
2pts0
seo-4-devs.netlify.app 2y ago

SEO 4 Devs

neontomo
1pts0
neontomo.com 2y ago

Cyberpunk Utopia – a Cyberpunk themed 2d city simulator

neontomo
2pts0
neontomo.com 2y ago

Show HN: Letter to a Young Artist

neontomo
2pts4
news.ycombinator.com 2y ago

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

neontomo
2pts3
neontomo.com 2y ago

Show HN: Useful checkboxes – inspired by Adam Savage

neontomo
5pts6
neontomo.com 2y ago

Hacker News on Win 95

neontomo
2pts0
neontomo.com 2y ago

Show HN: Rolling Potato Website

neontomo
5pts4
neontomo.com 2y ago

CSS Developers Buying Furniture (Humour)

neontomo
1pts0
news.ycombinator.com 2y ago

Ask HN: Did anyone write a book in Nano?

neontomo
19pts52
neontomo.com 2y ago

Show HN: Quantum QR Translator – The Modern, Error-Free Solution to Reading

neontomo
1pts0
neontomo.com 3y ago

Show HN: Hacker News, but Just ChatGPT

neontomo
41pts15
i.imgur.com 3y ago

How can I make a collapsible chair float on a lake?

neontomo
1pts4
neontomo.com 3y ago

Show HN: Guess the animal by looking at a limited amount of pixels

neontomo
12pts24
news.ycombinator.com 3y ago

Ask HN: How does a hobby programmer get hired?

neontomo
198pts252
neontomo.com 3y ago

Show HN: Logic Master – Easily understand complex circuits with this tool

neontomo
1pts0
github.com 3y ago

Show HN: Adapt or Die: Building AI Organisms That Learn (Game)

neontomo
1pts0
neontomo.com 3y ago

Show HN: Listen To The Ocean – JavaScript game w. AI-generated sprites

neontomo
43pts27
neontomo.com 3y ago

A Linux Evening Where Nothing Was Out of the Ordinary

neontomo
1pts0
neontomo.com 3y ago

Individuality: Deleted in the Future?

neontomo
1pts0
neontomo.com 3y ago

Can I teach you to add numbers in binary in 20 mins?

neontomo
2pts3

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).

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
  }

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). tomomyrman@proton.me or reply here

or, let's collab!

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/

I always thought that I should put as many people in the photo as possible in group settings, because more lively energy = better right? but my brother is a trained photographer and he encouraged me to focus on one or two people at most, to create a more interesting photo. it becomes a character study instead of a bunch of people where you don't know where to look.

in my experience, your submission does not have to be a carbon copy of what you end up making. you can check the boxes to make them trust your artistic ability - then you can make it yours, within reason. the money controls the art outcome, until you're banksy. a lot of great artists are able to stylistically and thematically change their art on a whim, by studying the materials/style and putting conscious effort in. this is not rare. modern art does not require mastery by any means and some of the more successful artists actively avoid perfectionism.

i have a friend who is great at this, so i picked her brain a bit. she does this method and i see her booking show after show without a social media presence. she does 90% studying the brief, 8 percent presenting her submission in a structured way (think: explain the idea, what lead up to it, how it will benefit the show, who she is, and even visualises how it will look by photoshopping her art into their space) and 2% submitting beautiful work.

I'm in the art scene, and when it comes to submitting proposals for exhibitions and being in art/film festivals and such, competing against other people being picked is surprisingly easy when you realise that most people don't study the brief that tells you exactly what the organisations is looking for. make sure you nail everything in the brief and you're in the lead, even if your art is terrible. I feel this is similar in nature, but taken to its extreme.