Below find the "reverse recruit" template. I'm using it. So can you!
===
Hi!
I'm not currently looking for a job as I'm pretty happy at my current job.
However Mozilla is hiring into a variety of positions. Mozilla also has
| #!/bin/bash | |
| (cat < $1 | dennis-cmd translate - | tail -n "+2" > $1.tmp) && mv $1.tmp $1 | |
| # We always exit 0 in case dennis-cmd fails. Then you get your | |
| # original commit message. No one likes it when goofy shenanigans | |
| # break your stuff. | |
| exit 0; |
| #!/bin/bash | |
| set -o errexit | |
| USAGE="" | |
| . git-sh-setup | |
| INPROD=`curl -s "https://support.mozilla.org/media/revision.txt"` | |
| echo "You are about to push:" |
| #!/usr/bin/env python | |
| import subprocess | |
| import sys | |
| import datetime | |
| GITCMD = '/usr/bin/git' | |
| #!/bin/bash | |
| set -o errexit | |
| USAGE="<remote>" | |
| . git-sh-setup | |
| test $# -lt 1 && usage |
| #!/usr/bin/env python | |
| # Lists all the local branches, short sha, and how many days ago the last | |
| # commit on the tip of that branch was. | |
| # | |
| # This makes it easier to identify and clean up branches that have landed. | |
| import subprocess | |
| import sys |
Below find the "reverse recruit" template. I'm using it. So can you!
===
Hi!
I'm not currently looking for a job as I'm pretty happy at my current job.
However Mozilla is hiring into a variety of positions. Mozilla also has
| #!/usr/bin/python | |
| # Copyright (c) 2011 Will Kahn-Greene <willg@bluesock.org> | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal | |
| # in the Software without restriction, including without limitation the rights | |
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| # copies of the Software, and to permit persons to whom the Software is | |
| # furnished to do so, subject to the following conditions: |