Skip to content

Instantly share code, notes, and snippets.

@shovon
Last active December 17, 2015 19:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shovon/3709bbf7e3a10aaac637 to your computer and use it in GitHub Desktop.
Save shovon/3709bbf7e3a10aaac637 to your computer and use it in GitHub Desktop.
A quasi-fool-proof method to determine whether Email on Acid really stole your theme.

So Email On Acid stole a theme from you guys (StampReady). Now, you want a quasi fool proof method to prove that you have been screwed over. You had a hunch that the images that they used are identical to yours. Only issue is, though, is that you only showed the meta data (the filename, size, etc.).

Here's one method that people on Hacker News was suggesting: checking the hash sum.

I'll be showing you guys how to check the MD5 sum to be exact.

Open up an instance of OS X's Terminal, and type out the following command:

if [[ `md5 -q yourfile.png` == `md5 -q theirfile.png` ]]; then echo "true"; else echo "false"; fi

In the above command, yourfile.png represents the file that you created, while theirfile.png represents the file that Email On Acid supposedly created.

So I suggest that you modify that above command according to how you saved those files.

If you have any question, you are free to comment on this post, tweet to me @shovon_rahman, or email me at salehen.rahman@gmail.com.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment