Skip to content

Instantly share code, notes, and snippets.

@bdwyertech
bdwyertech / git-crypt-sourcetree.sh
Created February 28, 2018 05:02
Add git-crypt to Sourcetree's PATH
#!/bin/bash
# Add git-crypt to SourceTree's Path
# If you use Sourcetree's embedded GIT, you may have to symlink things into its PATH to make them work.
# git-crypt
ln -s /usr/local/bin/git-crypt /Applications/SourceTree.app/Contents/Resources/bin/
@leonardofed
leonardofed / README.md
Last active June 17, 2024 14:54
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.


@Darep
Darep / no-comments.js
Created May 30, 2016 07:01
Remove all comments from GitHub Pull Request
// Sometimes it's necessary to do a bit of clean-up
Array.prototype.forEach.call(document.querySelectorAll('.js-comment-delete button'), function(el, i) {
el.removeAttribute('data-confirm');
el.click();
});