Skip to content

Instantly share code, notes, and snippets.

View maosmurf's full-sized avatar

Adam Zielinski maosmurf

View GitHub Profile
@DoubleMalt
DoubleMalt / technical-due-diligence.md
Last active October 4, 2019 18:20
A checklist what you should ask when talking over a code base

Technical Due Diligence

Architecture

  • Component Overview
  • Technologies (DB, Languages, Frameworks)

Functionalities

@rwatts3
rwatts3 / jquery.scrolldepth.js
Created October 28, 2015 17:06
jQuery Scroll Depth Fix for Google Tag Manager
/*!
* @preserve
* jquery.scrolldepth.js | v0.7
* Copyright (c) 2014 Rob Flaherty (@robflaherty)
* Licensed under the MIT and GPL licenses.
*/
if (window.jQuery) {
;(function ( $, window, document, undefined ) {
@caniszczyk
caniszczyk / clone-all-twitter-github-repos.sh
Created October 9, 2012 04:25
Clone all repos from a GitHub organization
curl -s https://api.github.com/orgs/twitter/repos?per_page=200 | ruby -rubygems -e 'require "json"; JSON.load(STDIN.read).each { |repo| %x[git clone #{repo["ssh_url"]} ]}'