Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
rozzzly16718yThe ! prefix comes from the != or !== inequality operator.
! means invert. So !rant means the post is not a "rant" per say, just a more generic post. -
It means rant start or not not a rant (literally a rant).
Similar to shell scripts
#!
But without the comment pound tag there, there is confusion about it meaning not like the logical not operation
If !(not true)
Basically it means nothing. :) -
Flygger19798y@rozzzly ! is an unary operator in its own right and just does logical negation of the statement following it in most C-based languages. Because of this many languages allow the syntax (a != b) instead of (!(a == b))
@arcadesdude most usage on devRant signifies that the following is not a rant, i.e. it's actually something positive
Related Rants
Why do people put "!rant" at the beginning of their rants? Is it a bug?
undefined
meta
bug