DEV Community

Cover image for Postwoman is changing name πŸ›Έ
Liyas Thomas
Liyas Thomas

Posted on β€’ Edited on

69 18

Postwoman is changing name πŸ›Έ

Hey all πŸ‘‹

Postwoman is changing name.
Our new identity aligns with our new focus β€” to provide the best open source testing suite in web.

Towards that goal, we are thrilled to announce that v2 will have a new name and domain.

  1. Similarity in name with "Postman" may introduce trademark violations in future.
  2. We don't want to hurt any other project's goodwill.
  3. Rather than being an "alternative to Postman", we focus to become the best available testing suite in web.

Update: 16th August 2020

Postwoman is now Hoppscotch πŸŽ‰

GitHub β†’ Web app β†’

Special thanks to @ben (co-founder DEV.to) for suggesting this name πŸ‘.

What about this name:

HoppScotch.

It's an alternate spelling of the game "hopscotch", and in my mind is a subtle nod to CS legend Grace Hopper, and implies "hopping" from one endpoint or web location to another.

"hopp" is also a similar in shape to "http".

Top comments (67)

Collapse
 
wobsoriano profile image
Robert β€’
Comment hidden by post author
Collapse
 
liyasthomas profile image
Liyas Thomas β€’ β€’ Edited

I laughed for like 5 mins. My dad haven't stopped laughing yet. 🀣🀣

Collapse
 
ben profile image
Ben Halpern β€’

What about this name:

HoppScotch.

It's an alternate spelling of the game "hopscotch", and in my mind is a subtle nod to CS legend Grace Hopper, and implies "hopping" from one endpoint or web location to another.

Collapse
 
ben profile image
Ben Halpern β€’

"hopp" is also a similar in shape to "http".

Collapse
 
liyasthomas profile image
Liyas Thomas β€’

that's what I'm talking πŸ”₯πŸ”₯

Thread Thread
 
ben profile image
Ben Halpern β€’

If you go with this loop me in, I’d love to help work out the imagery. It’s a fun visual.

Thread Thread
 
liyasthomas profile image
Liyas Thomas β€’

Deal. I demand something as dope as benhalpern.com 🀠😻

Thread Thread
 
ben profile image
Ben Halpern β€’

Collapse
 
vacom profile image
Vitor Amaral β€’

"hopp" or something that's triggers similarities to http is the way to go.

Collapse
 
liyasthomas profile image
Liyas Thomas β€’

wow... great idea. will share this with our team for sure.

Collapse
 
muhfred profile image
Mohamed Farid β€’

XUnicorn,
Sirius (brightest star in the sky),
Orion - Aligns with the Pyramids of Giza (en.wikipedia.org/wiki/Orion_correl...)

Collapse
 
liyasthomas profile image
Liyas Thomas β€’

awe

Collapse
 
ben profile image
Ben Halpern β€’

I like XUnicorn. It's kind of metal 🀘

Collapse
 
dploeger profile image
Dennis Ploeger β€’

Guys, I'm seriously troubled that nobody brought up the obvious Testy McTestface yet!

Collapse
 
emtes profile image
Enmanuel de la Nuez β€’

I really like Charlotte!!

Collapse
 
netk profile image
David Quintero πŸ“Ώ β€’

Shelob

Collapse
 
vicoerv profile image
Vico β€’

Restponse

Collapse
 
liyasthomas profile image
Liyas Thomas β€’

good. will consider this too.

Collapse
 
fayaz profile image
Fayaz Ahmed β€’

getrest.io

Collapse
 
liyasthomas profile image
Liyas Thomas β€’

🀝 let me "get rest".

Collapse
 
davelsan profile image
David Velasco β€’ β€’ Edited

Helps you create requests faster, saving precious time on development

My grain of sand to the mountain of inspiration, because I know how hard it can be to name things:

ZeitREST

Etymology:

  • Zeit: noun, feminine - from the German language, it means time, period, sequence.

  • Rest: verb, noun - from the English language, it means relief, absence of motion.

Using REST in uppercase is wordplay, a sort of homophone I guess.

Good luck!

Some comments have been hidden by the post's author - find out more

typescript

11 Tips That Make You a Better Typescript Programmer

1 Think in {Set}

Type is an everyday concept to programmers, but it’s surprisingly difficult to define it succinctly. I find it helpful to use Set as a conceptual model instead.

#2 Understand declared type and narrowed type

One extremely powerful typescript feature is automatic type narrowing based on control flow. This means a variable has two types associated with it at any specific point of code location: a declaration type and a narrowed type.

#3 Use discriminated union instead of optional fields

...

Read the whole post now!