This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I'm really trying not to be rude but the number of recruiter spam I'm getting is really becoming irritating. For future reference: | |
a) Don't email me an opportunity off the back of a key word search. Check out my cv or linkedin profile before forwarding opportunities. It really shows a complete lack of effort on your part | |
b) I've dealt with a lot of recruiters in my time. A £500 referral fee in pathetic considering the potential fee your company receives on each placement. | |
Going forward, I'll be telling my network of technical people about every recruiter/recruitment company which clearly isn't concerned about the level of service they provide and shows a distinct lack of effort when it comes to matching potential candidates to a role. As you know, the London tech scene is very similar to the game 'six degrees of kevin bacon' - word gets around. | |
I hope this provides some insight and helps with future placements. | |
Kind Regards |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from:(@opusrs.com OR @gcsltd.com OR gcsltd.ie OR @vertex-it-solutions.com OR @strgroup.co.uk OR @selbyjennings.com OR @evolutionjobs.co.uk OR @dpconnect.co.uk OR @arrowsgroup.com OR @computerfutures.com OR @astoncarter.co.uk OR @oliverbernard.co.uk) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--> first param | |
->> last param |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git (magit) | |
M-x magit-status | |
g - refresh buffer | |
s - stage | |
u - unstage | |
c - commit menu -> c - commit (pre-message) -> C-c C-c - commit | |
P - push | |
Projectilte |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public String replace(String original, String toReplace, String replaceWith) { | |
char[] origArray = original.toCharArray(); | |
char[] toReplaceArray = toReplace.toCharArray(); | |
StringBuilder result = new StringBuilder(); | |
int index = 0; | |
while(index < origArray.length){ | |
if(isPotentialMatch(origArray[index], toReplaceArray[index])){ | |
if(isMatch(index, origArray, toReplaceArray)){ | |
result.append(replaceWith); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C-x h (M-x mark-whole-buffer) | |
C-M-\ (M-x indent-region) | |
C-y (paste) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ctrl+6 - methods fuzzy search. | |
alt+cmd+left/right - back/forward | |
cmd+shift+j (on code screen) - show in project navigator |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
original - 39 8E E3 3F | |
new - 8E E3 18 40 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gradle init --type java-library |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo 'pinentry-program /usr/bin/pinentry-tty' > ~/.gnupg/gpg-agent.conf | |
GPG_TTY=`tty` | |
gpg-connect-agent reloadagent /bye |