HN user

efortis

796 karma

Frontend developer

Posts30
Comments458
View on HN
developer.mozilla.org 7mo ago

CSS: Mastering Margin Collapsing

efortis
2pts0
mockaton.com 7mo ago

Show HN: Chrome Ext. for downloading HTTP responses for mocking APIs

efortis
1pts0
github.com 11mo ago

Ahead of Time Fetch for SPAs

efortis
2pts0
gist.github.com 1y ago

Show HN: Minimal class-based store for React

efortis
1pts0
github.com 1y ago

Show HN: Mockaton. Mock Your APIs, Enhance Your Development Workflow

efortis
1pts0
ericfortis.github.io 1y ago

Show HN: Lissajous Curve Interactive Demo

efortis
2pts0
github.com 1y ago

Show HN: Pixaton – Puppeteer helpers for screenshot diffing

efortis
3pts0
github.com 2y ago

Show HN: Mockaton – Mock Server for a Better UI DX

efortis
2pts0
github.com 2y ago

Node.js Single Standalone Executable

efortis
3pts1
www.youtube.com 3y ago

Musical Intervals on an Oscilloscope

efortis
3pts0
blog.uidrafter.com 3y ago

Better `npm outdated` command

efortis
1pts0
twitter.com 3y ago

Decoration Bugs

efortis
1pts0
onlineclaims.usps.com 3y ago

USPS Claims

efortis
2pts0
www.youtube.com 4y ago

Ivan Sutherland – “How Quantized Should a Digital System Be?” (2015)

efortis
1pts0
www.youtube.com 4y ago

Simplicity from Complexity: Emergence in Maya (2012)

efortis
1pts0
www.xilinx.com 4y ago

Kria KR260 Robotics Starter Kit

efortis
2pts0
blog.uidrafter.com 4y ago

Types Without TypeScript

efortis
2pts0
news.ycombinator.com 4y ago

How to ban incoming Russian IP addresses on our servers?

efortis
17pts7
www.macrumors.com 4y ago

macOS Monterey Users Report Connectivity Issues with USB Hubs

efortis
2pts0
www.youtube.com 5y ago

SVG Path Tutorial

efortis
1pts0
blog.uidrafter.com 5y ago

Architecture of a desktop-like SPA

efortis
62pts27
blog.uidrafter.com 5y ago

Usability: Radio Buttons vs. Dropdowns

efortis
2pts0
blog.uidrafter.com 5y ago

Tips for UI Checkboxes

efortis
2pts0
blog.uidrafter.com 5y ago

Getting rid of NPM scripts

efortis
79pts57
blog.uidrafter.com 5y ago

Health Checking DNS Load Balanced Web Servers

efortis
1pts0
blog.uidrafter.com 5y ago

UI Drafter's FreeBSD Jails Network Setup (vnet)

efortis
2pts0
blog.uidrafter.com 5y ago

Deploy Assets Before Documents

efortis
1pts0
blog.appdrafter.com 5y ago

Bitwise Table Lookup

efortis
2pts0
blog.appdrafter.com 5y ago

Conditional AVIF for Video Posters

efortis
1pts0
news.ycombinator.com 6y ago

Launch HN: App Brainstorm – Predesign Prototyping for Drafting Apps

efortis
3pts3

A hiring manager asked me a question like those. I said: "sorry I'm not prepared, I don't remember from the top of my head." Right before that interview I was a solo founder. He said something like: "ok, so you just focus on the work?" "Yes." I got the job.

Not sure I follow the scenario this would solve.

For instance, currently you can conditionally change a parent based on its children. For example, this `pre` could either have 16px or 0px of padding. Zero when its direct child is a `code` element.

  pre {
    padding: 16px;

    &:has(> code) {
      padding: 0;
    }
  }

I edited a proportional for coding, I’ve been using it for 10 years and it’s great except for tabular alignment.

So it would be nice if IDEs rich-rendered regions column aligned.

eg, object literals in JS, in which space separator are as a wide as needed to align the values.

JetBrains MPS has a decision table rendering for DSLs, which is similar to what I described.