HN user

twolfson

68 karma

[ my public key: https://keybase.io/twolfson; my proof: https://keybase.io/twolfson/sigs/ed48asJJi_1sLM51c6GuagqRGaewbuRV40ogFirs2P8 ]

Posts50
Comments13
View on HN
twolfson.com 3y ago

Startup time investing: Operational processes

twolfson
3pts0
twolfson.com 5y ago

Lessons of a Startup Engineer

twolfson
1pts0
medium.com 8y ago

Practical applications of the dot product

twolfson
4pts0
medium.com 9y ago

How I Find Work

twolfson
3pts0
medium.com 9y ago

Password-less login, continued

twolfson
1pts0
findwork.co 9y ago

Show HN: Manage job applications and research companies

twolfson
2pts1
twolfson.com 9y ago

Utility oriented testing

twolfson
1pts0
twolfson.com 10y ago

Timezones for programmers

twolfson
2pts0
github.com 10y ago

Show HN: Record Your X11 Desktop with Electron and FFmpeg

twolfson
3pts0
github.com 10y ago

Show HN: I open sourced my server management scripts

twolfson
29pts0
twolfson.com 10y ago

Design for developers

twolfson
3pts0
twolfson.com 10y ago

How to stay passionate about open source

twolfson
3pts0
github.com 10y ago

Play victory music after resolving merge conflicts

twolfson
1pts0
twolfson.com 10y ago

Minimizing merge conflicts in squashed branches

twolfson
1pts0
twolfson.com 11y ago

Spritesmith now supports retina sprites

twolfson
1pts0
twolfson.com 11y ago

Automate your style

twolfson
3pts0
twolfson.com 11y ago

Testing with other services

twolfson
1pts0
twolfson.com 11y ago

Moving from PhantomJS to node-webkit

twolfson
3pts0
twolfson.com 12y ago

Taken for granted: Regression tests

twolfson
1pts0
twolfson.com 12y ago

Release to npm, bower, component, PyPI, GitHub, and anywhere else in one swoop

twolfson
3pts0
twolfson.com 12y ago

Visual regression testing in Travis CI

twolfson
1pts0
twolfson.com 12y ago

Suggested reading for writing a gulp plugin

twolfson
1pts0
github.com 12y ago

Create spritesheets via gulp

twolfson
1pts0
twolfson.github.io 12y ago

I have open sourced my bookmarks

twolfson
2pts0
twolfson.com 12y ago

Low tech dependency management

twolfson
1pts0
twolfson.com 12y ago

Making relative line length limits usable

twolfson
1pts0
twolfson.com 12y ago

UNLICENSE all the things

twolfson
2pts0
twolfson.com 12y ago

How to linkify Markdown headers in node

twolfson
1pts2
github.com 12y ago

Git squash without repetitive conflicts

twolfson
2pts0
twolfson.com 12y ago

Debugging OSX via Sauce Labs

twolfson
1pts0

Fram Energy | Founding Software Engineer (Full Stack) | ONSITE (New York City (Hybrid)) | Full-time

We decarbonize rental homes by aligning tenant and owner incentives

We're very early stage and pre-PMF, but executing daily and working towards filling this need to help fight climate change! As a member of the founding team, you'll help shape the product, stack, and vision!

Job posting: https://jobs.ashbyhq.com/Framenergy/84aa7404-12c0-41af-b56f-...

If you have any questions, please contact me at todd@framenergy.com

Standard Cyborg (YC W15) | Mobile, 3D/Computational Geometry, and Infrastructure engineers | San Francisco, CA | Onsite, full-time

Standard Cyborg is a 3D scanning and customization solution for orthotics and prosthetics. We're a mission-driven 7 person start up and growing with purpose. We have the following roles available:

- Mobile engineer - Own and expand our iPad app, currently Objective-C but it's small enough that we're open to persuasion - 3D/Computational geometry engineer - Help build our core technology: a 3D customization web app, written in JavaScript. We are open to any relevant 3D experience, regardless of language - Infrastructure engineer - Help us move from Heroku to AWS, our server app is Ruby and Rails and PostgreSQL

Our entire stack: Objective-C, Ruby on Rails, JavaScript, PostgreSQL, Node.js (AWS Lambda)

For more info and to apply: https://app.standardcyborg.com/careers

Feel free to email me any questions: todd@standardcyborg.com

It might not be compact but the gzipped size is the same.

    $ cat <<EOF | gzip | wc -c
    ul li:nth-child(1) {
      background: red
    }

    ul li:nth-child(2) {
      background: red
    }

    ul li:nth-child(3) {
      background: red
    }
    EOF

    71 # bytes

    $ cat <<EOF | gzip | wc -c
    ul li:nth-child(1),
    ul li:nth-child(2),
    ul li:nth-child(3) {
      background: red
    }
    EOF

    71 # bytes

If you want to revert a file in git, you are not reverting the file. Reverts are attached to commits.

Instead, you are restoring a file to its previous state. To do this:

git checkout <commit> -- path/to/file