├── .github └── workflows │ ├── fly.yml │ ├── hntitles.yml │ └── mastodon_get_replies.yml ├── HomebrewFormula ├── go@1.2.rb ├── iodine.rb ├── sshpass.rb ├── stubby.rb └── usb-modeswitch.rb ├── README ├── allcode ├── README ├── allcode.go ├── go.mod └── go.sum ├── allroots ├── extra.pem ├── go.mod ├── go.sum ├── library │ ├── 1044840.crt │ ├── 1160190.crt │ ├── 12724444.crt │ ├── 12726449.crt │ ├── 12727249.crt │ ├── 12728973.crt │ ├── 1616334.crt │ ├── 1855983.crt │ ├── 19392274.crt │ ├── 19392278.crt │ ├── 19392284.crt │ ├── 229.crt │ ├── 24651.crt │ ├── 27.crt │ ├── 2833787760.crt │ ├── 2858272562.crt │ ├── 2953.crt │ ├── 331986.crt │ ├── 3381895.crt │ ├── 36499465.crt │ ├── 39.crt │ ├── 409684.crt │ ├── 4147049674.crt │ ├── 4147052292.crt │ ├── 4256644599.crt │ ├── 4256644600.crt │ ├── 4256644601.crt │ ├── 4256644602.crt │ ├── 4433774571.crt │ ├── 4433776671.crt │ ├── 5469867.crt │ ├── 55.crt │ ├── 62188.crt │ ├── 7077686919.crt │ ├── 7077690248.crt │ ├── 713609039.crt │ ├── 76.crt │ ├── 7677.crt │ ├── 7937649716.crt │ ├── 7937650317.crt │ ├── 88.crt │ ├── 9031466.crt │ ├── 93.crt │ └── 95564.crt └── roots.go ├── attic ├── Biglumber-map │ ├── .github │ │ ├── branches.json │ │ ├── comments.json │ │ ├── contributors.json │ │ ├── forks.json │ │ ├── issues.json │ │ ├── issues │ │ │ └── 1 │ │ │ │ ├── comments.json │ │ │ │ ├── events.json │ │ │ │ ├── issue.json │ │ │ │ ├── reactions.json │ │ │ │ └── timeline.json │ │ ├── labels.json │ │ ├── languages.json │ │ ├── milestones.json │ │ ├── pulls.json │ │ ├── pulls │ │ │ └── 1 │ │ │ │ ├── commits.json │ │ │ │ ├── pull.json │ │ │ │ ├── requested_reviewers.json │ │ │ │ ├── review_comments.json │ │ │ │ └── reviews.json │ │ ├── releases.json │ │ ├── repo.json │ │ ├── stargazers.json │ │ ├── subscribers.json │ │ ├── tags.json │ │ └── topics.json │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── TODO │ ├── fetch.py │ ├── requirements.txt │ └── website │ │ ├── MarkerCluster.Default.css │ │ ├── MarkerCluster.Default.ie.css │ │ ├── MarkerCluster.css │ │ ├── fancybox │ │ ├── blank.gif │ │ ├── fancybox_loading.gif │ │ ├── fancybox_overlay.png │ │ ├── fancybox_sprite.png │ │ └── jquery.fancybox.css │ │ ├── index.html │ │ └── leaflet.markercluster-src.js ├── Dockerfiles │ ├── .github │ │ ├── branches.json │ │ ├── comments.json │ │ ├── contributors.json │ │ ├── forks.json │ │ ├── issues.json │ │ ├── labels.json │ │ ├── languages.json │ │ ├── milestones.json │ │ ├── pulls.json │ │ ├── releases.json │ │ ├── repo.json │ │ ├── stargazers.json │ │ ├── subscribers.json │ │ ├── tags.json │ │ └── topics.json │ ├── .gitignore │ ├── .gitmodules │ ├── LICENSE │ ├── iodine │ │ ├── Dockerfile │ │ ├── README.md │ │ └── iodined.sh │ ├── onion │ │ ├── Dockerfile │ │ ├── boot.sh │ │ ├── tor.sh │ │ └── torrc │ └── web.py │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── serve.py │ │ └── webpy.sh ├── TripleSec │ ├── .github │ │ ├── branches.json │ │ ├── comments.json │ │ ├── contributors.json │ │ ├── forks.json │ │ ├── issues.json │ │ ├── labels.json │ │ ├── languages.json │ │ ├── milestones.json │ │ ├── pulls.json │ │ ├── releases.json │ │ ├── repo.json │ │ ├── stargazers.json │ │ ├── subscribers.json │ │ ├── tags.json │ │ └── topics.json │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── triplesec.go │ └── triplesec_test.go ├── ar.chiv.io │ ├── .github │ │ ├── branches.json │ │ ├── comments.json │ │ ├── contributors.json │ │ ├── forks.json │ │ ├── issues.json │ │ ├── issues │ │ │ ├── 1 │ │ │ │ ├── comments.json │ │ │ │ ├── events.json │ │ │ │ ├── issue.json │ │ │ │ ├── reactions.json │ │ │ │ └── timeline.json │ │ │ ├── 2 │ │ │ │ ├── comments.json │ │ │ │ ├── events.json │ │ │ │ ├── issue.json │ │ │ │ ├── reactions.json │ │ │ │ └── timeline.json │ │ │ ├── 3 │ │ │ │ ├── comments.json │ │ │ │ ├── events.json │ │ │ │ ├── issue.json │ │ │ │ ├── reactions.json │ │ │ │ └── timeline.json │ │ │ └── 4 │ │ │ │ ├── comments.json │ │ │ │ ├── events.json │ │ │ │ ├── issue.json │ │ │ │ ├── reactions.json │ │ │ │ └── timeline.json │ │ ├── labels.json │ │ ├── languages.json │ │ ├── milestones.json │ │ ├── pulls.json │ │ ├── pulls │ │ │ └── 4 │ │ │ │ ├── commits.json │ │ │ │ ├── pull.json │ │ │ │ ├── pull.patch │ │ │ │ ├── requested_reviewers.json │ │ │ │ ├── review_comments.json │ │ │ │ └── reviews.json │ │ ├── releases.json │ │ ├── repo.json │ │ ├── stargazers.json │ │ ├── subscribers.json │ │ ├── tags.json │ │ └── topics.json │ └── README.md ├── archive.today │ ├── .github │ │ ├── branches.json │ │ ├── comments.json │ │ ├── contributors.json │ │ ├── forks.json │ │ ├── issues.json │ │ ├── issues │ │ │ ├── 1 │ │ │ │ ├── comments.json │ │ │ │ ├── events.json │ │ │ │ ├── issue.json │ │ │ │ ├── reactions.json │ │ │ │ └── timeline.json │ │ │ └── 2 │ │ │ │ ├── comments.json │ │ │ │ ├── events.json │ │ │ │ ├── issue.json │ │ │ │ ├── reactions.json │ │ │ │ └── timeline.json │ │ ├── labels.json │ │ ├── languages.json │ │ ├── milestones.json │ │ ├── pulls.json │ │ ├── pulls │ │ │ └── 2 │ │ │ │ ├── commits.json │ │ │ │ ├── pull.json │ │ │ │ ├── requested_reviewers.json │ │ │ │ ├── review_comments.json │ │ │ │ └── reviews.json │ │ ├── releases.json │ │ ├── repo.json │ │ ├── stargazers.json │ │ ├── subscribers.json │ │ ├── tags.json │ │ └── topics.json │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── archive.today.go │ ├── index.html.go │ └── vendor │ │ ├── github.com │ │ └── docopt │ │ │ └── docopt-go │ │ │ ├── LICENSE │ │ │ └── docopt.go │ │ └── manifest ├── cover-flipper │ ├── .github │ │ ├── branches.json │ │ ├── comments.json │ │ ├── contributors.json │ │ ├── forks.json │ │ ├── issues.json │ │ ├── labels.json │ │ ├── languages.json │ │ ├── milestones.json │ │ ├── pulls.json │ │ ├── releases.json │ │ ├── repo.json │ │ ├── stargazers.json │ │ ├── subscribers.json │ │ ├── tags.json │ │ └── topics.json │ ├── .gitignore │ ├── Procfile │ ├── README.md │ ├── TODO.txt │ ├── app.py │ ├── fb.py │ ├── gettext.sh │ ├── i18n │ │ ├── en_US │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.mo │ │ │ │ └── messages.po │ │ ├── it_IT │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.mo │ │ │ │ └── messages.po │ │ └── messages.po │ ├── requirements.txt │ └── templates │ │ └── index.html ├── filippo.io │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .powrc │ ├── .rbenv-version │ ├── .rvmrc │ ├── .slugignore │ ├── .themes │ │ └── classic │ │ │ ├── .editorconfig │ │ │ ├── sass │ │ │ ├── _base.scss │ │ │ ├── _partials.scss │ │ │ ├── base │ │ │ │ ├── _layout.scss │ │ │ │ ├── _solarized.scss │ │ │ │ ├── _theme.scss │ │ │ │ ├── _typography.scss │ │ │ │ └── _utilities.scss │ │ │ ├── custom │ │ │ │ ├── _colors.scss │ │ │ │ ├── _fonts.scss │ │ │ │ ├── _layout.scss │ │ │ │ └── _styles.scss │ │ │ ├── partials │ │ │ │ ├── _archive.scss │ │ │ │ ├── _blog.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _header.scss │ │ │ │ ├── _navigation.scss │ │ │ │ ├── _sharing.scss │ │ │ │ ├── _sidebar.scss │ │ │ │ ├── _syntax.scss │ │ │ │ └── sidebar │ │ │ │ │ ├── _base.scss │ │ │ │ │ ├── _delicious.scss │ │ │ │ │ ├── _googleplus.scss │ │ │ │ │ └── _pinboard.scss │ │ │ ├── plugins │ │ │ │ └── _plugins.scss │ │ │ └── screen.scss │ │ │ └── source │ │ │ ├── _includes │ │ │ ├── after_footer.html │ │ │ ├── archive_post.html │ │ │ ├── article.html │ │ │ ├── asides │ │ │ │ ├── delicious.html │ │ │ │ ├── github.html │ │ │ │ ├── googleplus.html │ │ │ │ ├── pinboard.html │ │ │ │ └── recent_posts.html │ │ │ ├── custom │ │ │ │ ├── after_footer.html │ │ │ │ ├── asides │ │ │ │ │ └── about.html │ │ │ │ ├── category_feed.xml │ │ │ │ ├── footer.html │ │ │ │ ├── head.html │ │ │ │ ├── header.html │ │ │ │ └── navigation.html │ │ │ ├── disqus.html │ │ │ ├── facebook_like.html │ │ │ ├── footer.html │ │ │ ├── google_analytics.html │ │ │ ├── google_plus_one.html │ │ │ ├── head.html │ │ │ ├── header.html │ │ │ ├── navigation.html │ │ │ ├── post │ │ │ │ ├── author.html │ │ │ │ ├── categories.html │ │ │ │ ├── date.html │ │ │ │ ├── disqus_thread.html │ │ │ │ └── sharing.html │ │ │ └── twitter_sharing.html │ │ │ ├── _layouts │ │ │ ├── category_index.html │ │ │ ├── default.html │ │ │ ├── page.html │ │ │ └── post.html │ │ │ ├── assets │ │ │ └── jwplayer │ │ │ │ ├── glow │ │ │ │ ├── controlbar │ │ │ │ │ ├── background.png │ │ │ │ │ ├── blankButton.png │ │ │ │ │ ├── divider.png │ │ │ │ │ ├── fullscreenButton.png │ │ │ │ │ ├── fullscreenButtonOver.png │ │ │ │ │ ├── muteButton.png │ │ │ │ │ ├── muteButtonOver.png │ │ │ │ │ ├── normalscreenButton.png │ │ │ │ │ ├── normalscreenButtonOver.png │ │ │ │ │ ├── pauseButton.png │ │ │ │ │ ├── pauseButtonOver.png │ │ │ │ │ ├── playButton.png │ │ │ │ │ ├── playButtonOver.png │ │ │ │ │ ├── timeSliderBuffer.png │ │ │ │ │ ├── timeSliderCapLeft.png │ │ │ │ │ ├── timeSliderCapRight.png │ │ │ │ │ ├── timeSliderProgress.png │ │ │ │ │ ├── timeSliderRail.png │ │ │ │ │ ├── unmuteButton.png │ │ │ │ │ └── unmuteButtonOver.png │ │ │ │ ├── display │ │ │ │ │ ├── background.png │ │ │ │ │ ├── bufferIcon.png │ │ │ │ │ ├── muteIcon.png │ │ │ │ │ └── playIcon.png │ │ │ │ ├── dock │ │ │ │ │ └── button.png │ │ │ │ ├── glow.xml │ │ │ │ ├── playlist │ │ │ │ │ ├── item.png │ │ │ │ │ ├── itemOver.png │ │ │ │ │ ├── sliderCapBottom.png │ │ │ │ │ ├── sliderCapTop.png │ │ │ │ │ ├── sliderRail.png │ │ │ │ │ └── sliderThumb.png │ │ │ │ └── sharing │ │ │ │ │ ├── embedIcon.png │ │ │ │ │ ├── embedScreen.png │ │ │ │ │ ├── shareIcon.png │ │ │ │ │ └── shareScreen.png │ │ │ │ └── player.swf │ │ │ ├── atom.xml │ │ │ ├── blog │ │ │ └── archives │ │ │ │ └── index.html │ │ │ ├── favicon.png │ │ │ ├── images │ │ │ ├── bird_32_gray.png │ │ │ ├── bird_32_gray_fail.png │ │ │ ├── code_bg.png │ │ │ ├── dotted-border.png │ │ │ ├── email.png │ │ │ ├── line-tile.png │ │ │ ├── noise.png │ │ │ ├── rss.png │ │ │ └── search.png │ │ │ ├── index.html │ │ │ ├── javascripts │ │ │ ├── github.js │ │ │ ├── libs │ │ │ │ ├── jXHR.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── swfobject-dynamic.js │ │ │ ├── modernizr-2.0.js │ │ │ ├── octopress.js │ │ │ ├── pinboard.js │ │ │ └── twitter.js │ │ │ └── robots.txt │ ├── .travis.yml │ ├── CHANGELOG.markdown │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.markdown │ ├── Rakefile │ ├── _config.yml │ ├── config.rb │ ├── config.ru │ ├── plugins │ │ ├── backtick_code_block.rb │ │ ├── blockquote.rb │ │ ├── category_generator.rb │ │ ├── code_block.rb │ │ ├── config_tag.rb │ │ ├── date.rb │ │ ├── gist_tag.rb │ │ ├── haml.rb │ │ ├── image_tag.rb │ │ ├── include_array.rb │ │ ├── include_code.rb │ │ ├── jsfiddle.rb │ │ ├── octopress_filters.rb │ │ ├── pagination.rb │ │ ├── post_filters.rb │ │ ├── preview_unpublished.rb │ │ ├── pullquote.rb │ │ ├── pygments_code.rb │ │ ├── raw.rb │ │ ├── render_partial.rb │ │ ├── rubypants.rb │ │ ├── sitemap_generator.rb │ │ ├── titlecase.rb │ │ └── video_tag.rb │ ├── sass │ │ ├── _base.scss │ │ ├── _partials.scss │ │ ├── base │ │ │ ├── _layout.scss │ │ │ ├── _solarized.scss │ │ │ ├── _theme.scss │ │ │ ├── _typography.scss │ │ │ └── _utilities.scss │ │ ├── custom │ │ │ ├── _colors.scss │ │ │ ├── _fonts.scss │ │ │ ├── _layout.scss │ │ │ └── _styles.scss │ │ ├── partials │ │ │ ├── _archive.scss │ │ │ ├── _blog.scss │ │ │ ├── _footer.scss │ │ │ ├── _header.scss │ │ │ ├── _navigation.scss │ │ │ ├── _sharing.scss │ │ │ ├── _sidebar.scss │ │ │ ├── _syntax.scss │ │ │ └── sidebar │ │ │ │ ├── _base.scss │ │ │ │ ├── _delicious.scss │ │ │ │ ├── _googleplus.scss │ │ │ │ └── _pinboard.scss │ │ └── screen.scss │ └── source │ │ ├── CNAME │ │ ├── CNAME.future │ │ ├── _includes │ │ ├── after_footer.html │ │ ├── archive_post.html │ │ ├── article.html │ │ ├── asides │ │ │ ├── delicious.html │ │ │ ├── github.html │ │ │ ├── googleplus.html │ │ │ ├── pinboard.html │ │ │ ├── recent_posts.html │ │ │ └── twitter.html │ │ ├── custom │ │ │ ├── after_footer.html │ │ │ ├── asides │ │ │ │ ├── about.html │ │ │ │ ├── coderwall.html │ │ │ │ └── projects.html │ │ │ ├── category_feed.xml │ │ │ ├── footer.html │ │ │ ├── head.html │ │ │ ├── header.html │ │ │ ├── hn_button.html │ │ │ └── navigation.html │ │ ├── disqus.html │ │ ├── facebook_like.html │ │ ├── footer.html │ │ ├── google_analytics.html │ │ ├── google_plus_one.html │ │ ├── head.html │ │ ├── header.html │ │ ├── navigation.html │ │ ├── post │ │ │ ├── author.html │ │ │ ├── categories.html │ │ │ ├── date.html │ │ │ ├── disqus_thread.html │ │ │ └── sharing.html │ │ └── twitter_sharing.html │ │ ├── _layouts │ │ ├── category_index.html │ │ ├── default.html │ │ ├── page.html │ │ └── post.html │ │ ├── _posts │ │ ├── 2012-12-19-please-take-this-and-go-signing-those-updates.markdown │ │ ├── 2012-12-22-krumiro-send-a-message-to-all-your-facebook-friends.markdown │ │ ├── 2013-01-01-github-checkout-a-pull-request-as-a-branch.markdown │ │ ├── 2013-01-12-automatically-compile-less-and-coffee-files.markdown │ │ ├── 2013-01-14-archive-your-github-repo-and-data.markdown │ │ ├── 2013-01-19-why-mega-will-change-the-status-quo.markdown │ │ ├── 2013-01-26-send-a-head-request-in-python.markdown │ │ ├── 2013-01-26-taking-retina-screenshots-with-phantomjs.markdown │ │ ├── 2013-01-29-decompressing-lempel-ziv-stac-in-python.markdown │ │ ├── 2013-02-21-offline-storage-on-a-rpi.markdown │ │ ├── 2013-02-21-programming-isnt-always-easy.markdown │ │ ├── 2013-04-04-claimed-a-recap-aaron-swartz-grant.markdown │ │ ├── 2013-04-26-a-bug-worth-4200$.markdown │ │ ├── 2013-09-12-dumping-the-ios-simulator-memory.markdown │ │ ├── 2013-10-07-instance-monkey-patching-in-python.markdown │ │ ├── 2013-10-14-escaping-a-chroot-jail-slash-1.markdown │ │ ├── 2013-10-15-a-journal-approach-that-actually-works-for-me.markdown │ │ ├── 2013-10-15-customizing-a-linode-kernel.markdown │ │ ├── 2013-11-04-analyzing-the-adobe-leaked-passwords.markdown │ │ ├── 2013-11-04-making-system-calls-from-assembly-in-mac-os-x.markdown │ │ ├── 2013-11-10-the-ecb-penguin.markdown │ │ ├── 2013-11-24-a-python-github-push-webhook-handler.markdown │ │ ├── 2013-11-25-pythonic-solutions-to-the-facebook-hacker-cup-2014-qualification-round.markdown │ │ ├── 2013-12-05-brainwallets-from-the-password-to-the-address.markdown │ │ ├── 2013-12-12-how-the-new-gmail-image-proxy-works-and-what-does-this-mean-for-you.markdown │ │ ├── 2014-01-16-callback-based-combinations-in-go.markdown │ │ ├── 2014-01-27-add-support-for-a-new-video-site-to-youtube-dl.markdown │ │ ├── 2014-02-03-scraping-a-video-out-of-a-more-stubborn-site.markdown │ │ ├── 2014-03-13-native-scrolling-and-iterm2.markdown │ │ ├── 2014-03-18-my-remote-shell-session-setup.markdown │ │ ├── 2014-03-26-why-go-is-elegant-and-makes-my-code-elegant.markdown │ │ ├── 2014-03-31-on-keybase-dot-io-and-encrypted-private-key-sharing.markdown │ │ ├── 2014-05-02-sqlalchemy-plus-mysql-plus-python-3-plus-pip.markdown │ │ ├── 2014-05-28-salt-and-pepper.markdown │ │ ├── 2014-06-29-the-heartbleed-test-at-owasp-slash-nyu-poly.markdown │ │ └── 2014-11-10-psa-enable-automatic-updates-please.markdown │ │ ├── archives │ │ └── index.html │ │ ├── assets │ │ ├── jwplayer │ │ │ ├── glow │ │ │ │ ├── controlbar │ │ │ │ │ ├── background.png │ │ │ │ │ ├── blankButton.png │ │ │ │ │ ├── divider.png │ │ │ │ │ ├── fullscreenButton.png │ │ │ │ │ ├── fullscreenButtonOver.png │ │ │ │ │ ├── muteButton.png │ │ │ │ │ ├── muteButtonOver.png │ │ │ │ │ ├── normalscreenButton.png │ │ │ │ │ ├── normalscreenButtonOver.png │ │ │ │ │ ├── pauseButton.png │ │ │ │ │ ├── pauseButtonOver.png │ │ │ │ │ ├── playButton.png │ │ │ │ │ ├── playButtonOver.png │ │ │ │ │ ├── timeSliderBuffer.png │ │ │ │ │ ├── timeSliderCapLeft.png │ │ │ │ │ ├── timeSliderCapRight.png │ │ │ │ │ ├── timeSliderProgress.png │ │ │ │ │ ├── timeSliderRail.png │ │ │ │ │ ├── unmuteButton.png │ │ │ │ │ └── unmuteButtonOver.png │ │ │ │ ├── display │ │ │ │ │ ├── background.png │ │ │ │ │ ├── bufferIcon.png │ │ │ │ │ ├── muteIcon.png │ │ │ │ │ └── playIcon.png │ │ │ │ ├── dock │ │ │ │ │ └── button.png │ │ │ │ ├── glow.xml │ │ │ │ ├── playlist │ │ │ │ │ ├── item.png │ │ │ │ │ ├── itemOver.png │ │ │ │ │ ├── sliderCapBottom.png │ │ │ │ │ ├── sliderCapTop.png │ │ │ │ │ ├── sliderRail.png │ │ │ │ │ └── sliderThumb.png │ │ │ │ └── sharing │ │ │ │ │ ├── embedIcon.png │ │ │ │ │ ├── embedScreen.png │ │ │ │ │ ├── shareIcon.png │ │ │ │ │ └── shareScreen.png │ │ │ └── player.swf │ │ ├── valli_3-webfont.eot │ │ ├── valli_3-webfont.svg │ │ ├── valli_3-webfont.ttf │ │ └── valli_3-webfont.woff │ │ ├── atom.xml │ │ ├── blog │ │ └── 2012 │ │ │ └── 12 │ │ │ └── 19 │ │ │ └── please-take-this-and-go-signing-those-updates │ │ │ └── index.html │ │ ├── favicon.png │ │ ├── images │ │ ├── 2013-10-15 20.50.26.jpg │ │ ├── 2013-10-15 20.50.38.jpg │ │ ├── BugBounty.png │ │ ├── Jack Dorsey's post on Vine 2014-01-27 04-25-35.png │ │ ├── Jack Dorsey's post on Vine 2014-01-27 04-37-45.png │ │ ├── Online JavaScript beautifier 2014-02-03 04-47-24.png │ │ ├── POP-xsmall.png │ │ ├── Service Hooks 2013-11-24 00-54-05.png │ │ ├── Tux-ECB-small.png │ │ ├── Tux-ECB.png │ │ ├── Watch Minecraft Timelapse Volcanic Island veu6DfOTNv0 mp4 2014-02-03 04-02-38.png │ │ ├── Watch Minecraft Timelapse Volcanic Island veu6DfOTNv0 mp4 2014-02-03 04-12-55.png │ │ ├── Watch Minecraft Timelapse Volcanic Island veu6DfOTNv0 mp4 2014-02-03 04-25-46.png │ │ ├── bird_32_gray.png │ │ ├── bird_32_gray_fail.png │ │ ├── code_bg.png │ │ ├── dotted-border.png │ │ ├── ecb penguin - Google.png │ │ ├── email.png │ │ ├── grey.png │ │ ├── heartbleed.png │ │ ├── inflicted.png │ │ ├── line-tile.png │ │ ├── noise.png │ │ ├── rss.png │ │ ├── search.png │ │ ├── test.png │ │ ├── unnamed.png │ │ ├── view-source-www.topvideo.cc-4w1c85nzsbj0 2014-02-03 04-33-03.png │ │ └── whitehat.png │ │ ├── index.html │ │ ├── javascripts │ │ ├── ender.js │ │ ├── github.js │ │ ├── libs │ │ │ ├── ender.js │ │ │ ├── jXHR.js │ │ │ └── swfobject-dynamic.js │ │ ├── modernizr-2.0.js │ │ ├── octopress.js │ │ ├── pinboard.js │ │ └── twitter.js │ │ ├── links │ │ └── index.html │ │ ├── linux-syscall-table │ │ ├── TABELLA_64.json │ │ ├── fuzzy-min.js │ │ └── index.html │ │ └── robots.txt ├── got-it │ ├── .github │ │ ├── branches.json │ │ ├── comments.json │ │ ├── contributors.json │ │ ├── forks.json │ │ ├── issues.json │ │ ├── labels.json │ │ ├── languages.json │ │ ├── milestones.json │ │ ├── pulls.json │ │ ├── releases.json │ │ ├── repo.json │ │ ├── stargazers.json │ │ ├── subscribers.json │ │ ├── tags.json │ │ └── topics.json │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── api.txt │ ├── index.html │ ├── main.go │ ├── speaker.html │ └── vendor │ │ ├── github.com │ │ └── wadey │ │ │ └── gocovmerge │ │ │ ├── LICENSE │ │ │ └── gocovmerge.go │ │ ├── golang.org │ │ └── x │ │ │ └── tools │ │ │ ├── cmd │ │ │ └── goimports │ │ │ │ ├── LICENSE │ │ │ │ ├── doc.go │ │ │ │ ├── goimports.go │ │ │ │ ├── goimports_gc.go │ │ │ │ └── goimports_not_gc.go │ │ │ ├── cover │ │ │ ├── LICENSE │ │ │ └── profile.go │ │ │ ├── go │ │ │ └── ast │ │ │ │ └── astutil │ │ │ │ ├── LICENSE │ │ │ │ ├── enclosing.go │ │ │ │ ├── imports.go │ │ │ │ └── util.go │ │ │ └── imports │ │ │ ├── LICENSE │ │ │ ├── fastwalk.go │ │ │ ├── fastwalk_dirent_fileno.go │ │ │ ├── fastwalk_dirent_ino.go │ │ │ ├── fastwalk_portable.go │ │ │ ├── fastwalk_unix.go │ │ │ ├── fix.go │ │ │ ├── imports.go │ │ │ ├── mkindex.go │ │ │ ├── mkstdlib.go │ │ │ ├── sortimports.go │ │ │ └── zstdlib.go │ │ └── manifest ├── replaybench │ ├── .github │ │ ├── branches.json │ │ ├── comments.json │ │ ├── contributors.json │ │ ├── forks.json │ │ ├── issues.json │ │ ├── labels.json │ │ ├── languages.json │ │ ├── milestones.json │ │ ├── pulls.json │ │ ├── releases.json │ │ ├── repo.json │ │ ├── stargazers.json │ │ ├── subscribers.json │ │ ├── tags.json │ │ └── topics.json │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ └── conn.go ├── scavhunt │ ├── Pipfile │ ├── Pipfile.lock │ ├── requirements.txt │ ├── scavhunt.py │ └── scavhunt.yml └── tlsbench │ ├── .github │ ├── branches.json │ ├── comments.json │ ├── contributors.json │ ├── forks.json │ ├── issues.json │ ├── labels.json │ ├── languages.json │ ├── milestones.json │ ├── pulls.json │ ├── releases.json │ ├── repo.json │ ├── stargazers.json │ ├── subscribers.json │ ├── tags.json │ └── topics.json │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── histogram.go │ ├── main.go │ ├── runner.go │ └── vendor │ ├── github.com │ ├── google │ │ └── boringssl │ │ │ └── ssl │ │ │ └── test │ │ │ └── runner │ │ │ ├── LICENSE │ │ │ ├── alert.go │ │ │ ├── chacha20_poly1305.go │ │ │ ├── cipher_suites.go │ │ │ ├── common.go │ │ │ ├── conn.go │ │ │ ├── curve25519 │ │ │ ├── const_amd64.s │ │ │ ├── cswap_amd64.s │ │ │ ├── curve25519.go │ │ │ ├── doc.go │ │ │ ├── freeze_amd64.s │ │ │ ├── ladderstep_amd64.s │ │ │ ├── mont25519_amd64.go │ │ │ ├── mul_amd64.s │ │ │ └── square_amd64.s │ │ │ ├── deterministic.go │ │ │ ├── dtls.go │ │ │ ├── handshake_client.go │ │ │ ├── handshake_messages.go │ │ │ ├── handshake_server.go │ │ │ ├── hkdf.go │ │ │ ├── key_agreement.go │ │ │ ├── newhope │ │ │ ├── newhope.go │ │ │ └── reconciliation.go │ │ │ ├── packet_adapter.go │ │ │ ├── poly1305 │ │ │ ├── const_amd64.s │ │ │ ├── poly1305.go │ │ │ ├── poly1305_amd64.s │ │ │ ├── poly1305_arm.s │ │ │ ├── sum_amd64.go │ │ │ ├── sum_arm.go │ │ │ └── sum_ref.go │ │ │ ├── prf.go │ │ │ ├── recordingconn.go │ │ │ ├── runner.go │ │ │ ├── sign.go │ │ │ ├── test_output.go │ │ │ ├── ticket.go │ │ │ └── tls.go │ ├── pkg │ │ └── profile │ │ │ ├── LICENSE │ │ │ ├── profile.go │ │ │ ├── trace.go │ │ │ └── trace16.go │ └── wadey │ │ └── gocovmerge │ │ ├── LICENSE │ │ └── gocovmerge.go │ ├── golang.org │ └── x │ │ └── tools │ │ ├── cmd │ │ └── goimports │ │ │ ├── LICENSE │ │ │ ├── doc.go │ │ │ ├── goimports.go │ │ │ ├── goimports_gc.go │ │ │ └── goimports_not_gc.go │ │ ├── cover │ │ ├── LICENSE │ │ └── profile.go │ │ ├── go │ │ └── ast │ │ │ └── astutil │ │ │ ├── LICENSE │ │ │ ├── enclosing.go │ │ │ ├── imports.go │ │ │ └── util.go │ │ └── imports │ │ ├── LICENSE │ │ ├── fastwalk.go │ │ ├── fastwalk_dirent_fileno.go │ │ ├── fastwalk_dirent_ino.go │ │ ├── fastwalk_portable.go │ │ ├── fastwalk_unix.go │ │ ├── fix.go │ │ ├── imports.go │ │ ├── mkindex.go │ │ ├── mkstdlib.go │ │ ├── sortimports.go │ │ └── zstdlib.go │ ├── gopkg.in │ └── cheggaaa │ │ └── pb.v1 │ │ ├── LICENSE │ │ ├── format.go │ │ ├── pb.go │ │ ├── pb_appengine.go │ │ ├── pb_nix.go │ │ ├── pb_solaris.go │ │ ├── pb_win.go │ │ ├── pb_x.go │ │ ├── pool.go │ │ ├── pool_win.go │ │ ├── pool_x.go │ │ ├── reader.go │ │ ├── runecount.go │ │ ├── termios_bsd.go │ │ └── termios_nix.go │ └── manifest ├── benchdiff ├── LICENSE ├── benchdiff.go ├── go.mod └── go.sum ├── benchrand ├── chacha_arm64.go ├── chacha_arm64.s ├── chacha_generic.go ├── chacha_noasm.go ├── go.mod └── rand_test.go ├── browserpass-age ├── LICENSE ├── README ├── chrome.json ├── configure.go ├── fetch.go ├── firefox.json ├── go.mod ├── go.sum ├── list.go ├── main.go ├── tree.go └── ui.go ├── cliplet ├── README.md └── cliplet.js ├── covfefe ├── .gitignore ├── DESIGN ├── cmd │ ├── covfefe │ │ └── main.go │ ├── drain │ │ └── main.go │ ├── enroll │ │ └── main.go │ ├── rescan │ │ └── main.go │ └── webfefe │ │ ├── data │ │ ├── _templates │ │ │ ├── empty.go │ │ │ ├── head.html.tmpl │ │ │ ├── home.html.tmpl │ │ │ └── tweet_page.html.tmpl │ │ ├── templates_dev.go │ │ ├── templates_generate.go │ │ └── templates_vfsdata.go │ │ ├── database.go │ │ ├── main.go │ │ └── twitter.go ├── covfefe.go ├── db.go ├── go.mod ├── go.sum ├── migration.01.sql ├── migration.02.sql ├── migration.03.sql ├── migration.04.sql ├── migration.05.sql ├── migration.06.sql ├── process.go ├── rescan.go └── twitter.go ├── cryptopals ├── 10.txt ├── 20.txt ├── 4.txt ├── 6.txt ├── 7.txt ├── 8.txt ├── set1.go ├── set1_test.go ├── set2.go ├── set2.txt ├── set2_test.go ├── set3.go ├── set3.txt ├── set3_test.go ├── set4.go ├── set4_test.go ├── set5.go ├── set5_test.go ├── set6.go ├── set6.txt ├── set6_test.go ├── set7.go ├── set7.txt ├── set7_test.go └── testdata │ └── aliceinwonderland.txt ├── cryptosource ├── LICENSE ├── README.md ├── go.mod ├── source.go └── source_test.go ├── ct-uptime-alerts ├── Dockerfile ├── fly.toml ├── go.mod ├── go.sum ├── main.go └── main_test.go ├── custodian ├── .github │ ├── branches.json │ ├── comments.json │ ├── contributors.json │ ├── forks.json │ ├── issues.json │ ├── labels.json │ ├── languages.json │ ├── milestones.json │ ├── pulls.json │ ├── releases.json │ ├── repo.json │ ├── stargazers.json │ ├── subscribers.json │ ├── tags.json │ └── topics.json ├── .gitignore ├── FUTURE.md ├── package.json ├── src │ ├── UNSUPPORTED.md │ └── freezer.ts ├── tsconfig.json └── yarn.lock ├── dcbot ├── db.go ├── documentcloud.go ├── drain.go ├── go.mod ├── go.sum ├── main.go └── modules.go ├── dirstat ├── dirstat.go └── go.mod ├── dockerdns ├── README.md ├── dockerdns.go ├── go.mod └── go.sum ├── ed25519vectors ├── LICENSE ├── blocklists.txt ├── ed25519vectors.go ├── ed25519vectors.json ├── ed25519vectors_test.go ├── go.mod └── go.sum ├── filippo.fly.dev ├── Dockerfile ├── Makefile ├── buttondown.go ├── buttondown_email.html.tmpl ├── buttondown_index.html.tmpl ├── dl.go ├── filippo.io │ ├── Badfish │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .nojekyll │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-docs.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── prettify.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── js │ │ │ │ ├── application.js │ │ │ │ ├── google-code-prettify │ │ │ │ └── prettify.js │ │ │ │ └── holder.js │ │ ├── css │ │ │ ├── demo.css │ │ │ ├── docs.css │ │ │ ├── flat-ui.css │ │ │ └── nprogress.css │ │ ├── eDellRootCertRemovalInstructions.pdf │ │ ├── finally.js │ │ ├── fonts │ │ │ ├── flat-ui-icons-regular.eot │ │ │ ├── flat-ui-icons-regular.svg │ │ │ ├── flat-ui-icons-regular.ttf │ │ │ ├── flat-ui-icons-regular.woff │ │ │ └── lato │ │ │ │ ├── lato-black.eot │ │ │ │ ├── lato-black.svg │ │ │ │ ├── lato-black.ttf │ │ │ │ ├── lato-black.woff │ │ │ │ ├── lato-bold.eot │ │ │ │ ├── lato-bold.svg │ │ │ │ ├── lato-bold.ttf │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bolditalic.eot │ │ │ │ ├── lato-bolditalic.svg │ │ │ │ ├── lato-bolditalic.ttf │ │ │ │ ├── lato-bolditalic.woff │ │ │ │ ├── lato-italic.eot │ │ │ │ ├── lato-italic.svg │ │ │ │ ├── lato-italic.ttf │ │ │ │ ├── lato-italic.woff │ │ │ │ ├── lato-light.eot │ │ │ │ ├── lato-light.svg │ │ │ │ ├── lato-light.ttf │ │ │ │ ├── lato-light.woff │ │ │ │ ├── lato-regular.eot │ │ │ │ ├── lato-regular.svg │ │ │ │ ├── lato-regular.ttf │ │ │ │ └── lato-regular.woff │ │ ├── images │ │ │ ├── demo │ │ │ │ ├── browser-2x.png │ │ │ │ ├── browser-author.jpg │ │ │ │ ├── browser-pic-1.jpg │ │ │ │ ├── browser-pic-2.jpg │ │ │ │ ├── browser-pic-3.jpg │ │ │ │ ├── browser-pic-4.jpg │ │ │ │ ├── browser-pic-5.jpg │ │ │ │ ├── browser-pic-6.jpg │ │ │ │ ├── browser.png │ │ │ │ ├── html-icon.png │ │ │ │ ├── logo-mask-2x.png │ │ │ │ ├── logo-mask.png │ │ │ │ └── video.jpg │ │ │ ├── exaple-image.jpg │ │ │ ├── favicon.ico │ │ │ ├── footer │ │ │ │ └── logo.png │ │ │ ├── heartbleed.png │ │ │ ├── login │ │ │ │ ├── icon.png │ │ │ │ ├── imac-2x.png │ │ │ │ └── imac.png │ │ │ ├── switch │ │ │ │ ├── mask-square.png │ │ │ │ └── mask.png │ │ │ ├── tile │ │ │ │ ├── ribbon-2x.png │ │ │ │ └── ribbon.png │ │ │ ├── todo │ │ │ │ ├── done-2x.png │ │ │ │ ├── done.png │ │ │ │ ├── search-2x.png │ │ │ │ ├── search.png │ │ │ │ ├── todo-2x.png │ │ │ │ └── todo.png │ │ │ └── video │ │ │ │ ├── fullscreen-2x.png │ │ │ │ ├── fullscreen.png │ │ │ │ ├── pause-2x.png │ │ │ │ ├── pause.png │ │ │ │ ├── play-2x.png │ │ │ │ ├── play.png │ │ │ │ ├── poster.jpg │ │ │ │ ├── volume-full-2x.png │ │ │ │ ├── volume-full.png │ │ │ │ ├── volume-off-2x.png │ │ │ │ └── volume-off.png │ │ ├── index.html │ │ ├── js │ │ │ ├── application.js │ │ │ ├── bootstrap-select.js │ │ │ ├── bootstrap-switch.js │ │ │ ├── bootstrap.min.js │ │ │ ├── flatui-checkbox.js │ │ │ ├── flatui-radio.js │ │ │ ├── html5shiv.js │ │ │ ├── icon-font-ie7.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-1.8.3.min.js │ │ │ ├── jquery-2.0.3.min.js │ │ │ ├── jquery-ui-1.10.3.custom.min.js │ │ │ ├── jquery.placeholder.js │ │ │ ├── jquery.tagsinput.js │ │ │ ├── jquery.ui.touch-punch.min.js │ │ │ ├── nprogress.js │ │ │ ├── respond.min.js │ │ │ └── typeahead.js │ │ ├── less │ │ │ ├── demo.less │ │ │ ├── docs.less │ │ │ ├── flat-ui.less │ │ │ ├── mixins.less │ │ │ ├── modules │ │ │ │ ├── button-groups.less │ │ │ │ ├── buttons.less │ │ │ │ ├── caret.less │ │ │ │ ├── checkbox-and-radio.less │ │ │ │ ├── code.less │ │ │ │ ├── dropdown.less │ │ │ │ ├── footer.less │ │ │ │ ├── forms.less │ │ │ │ ├── glyphicons.less │ │ │ │ ├── input-groups.less │ │ │ │ ├── input-icons.less │ │ │ │ ├── local-fonts.less │ │ │ │ ├── login.less │ │ │ │ ├── navbar.less │ │ │ │ ├── pager.less │ │ │ │ ├── pagination.less │ │ │ │ ├── palette.less │ │ │ │ ├── progress-bars.less │ │ │ │ ├── scaffolding.less │ │ │ │ ├── select.less │ │ │ │ ├── share.less │ │ │ │ ├── slider.less │ │ │ │ ├── switch.less │ │ │ │ ├── tagsinput.less │ │ │ │ ├── thumbnails.less │ │ │ │ ├── tile.less │ │ │ │ ├── todo.less │ │ │ │ ├── tooltip.less │ │ │ │ ├── type.less │ │ │ │ ├── typeahead.less │ │ │ │ └── video.less │ │ │ ├── spaces.less │ │ │ └── variables.less │ │ ├── no2.png │ │ ├── removing.html │ │ └── yes.png │ ├── CVE-2016-2107 │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-docs.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── prettify.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── js │ │ │ │ ├── application.js │ │ │ │ ├── google-code-prettify │ │ │ │ └── prettify.js │ │ │ │ └── holder.js │ │ ├── css │ │ │ ├── demo.css │ │ │ ├── docs.css │ │ │ ├── flat-ui.css │ │ │ └── nprogress.css │ │ ├── fonts │ │ │ ├── flat-ui-icons-regular.eot │ │ │ ├── flat-ui-icons-regular.svg │ │ │ ├── flat-ui-icons-regular.ttf │ │ │ ├── flat-ui-icons-regular.woff │ │ │ └── lato │ │ │ │ ├── lato-black.eot │ │ │ │ ├── lato-black.svg │ │ │ │ ├── lato-black.ttf │ │ │ │ ├── lato-black.woff │ │ │ │ ├── lato-bold.eot │ │ │ │ ├── lato-bold.svg │ │ │ │ ├── lato-bold.ttf │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bolditalic.eot │ │ │ │ ├── lato-bolditalic.svg │ │ │ │ ├── lato-bolditalic.ttf │ │ │ │ ├── lato-bolditalic.woff │ │ │ │ ├── lato-italic.eot │ │ │ │ ├── lato-italic.svg │ │ │ │ ├── lato-italic.ttf │ │ │ │ ├── lato-italic.woff │ │ │ │ ├── lato-light.eot │ │ │ │ ├── lato-light.svg │ │ │ │ ├── lato-light.ttf │ │ │ │ ├── lato-light.woff │ │ │ │ ├── lato-regular.eot │ │ │ │ ├── lato-regular.svg │ │ │ │ ├── lato-regular.ttf │ │ │ │ └── lato-regular.woff │ │ ├── images │ │ │ ├── demo │ │ │ │ ├── browser-2x.png │ │ │ │ ├── browser-author.jpg │ │ │ │ ├── browser-pic-1.jpg │ │ │ │ ├── browser-pic-2.jpg │ │ │ │ ├── browser-pic-3.jpg │ │ │ │ ├── browser-pic-4.jpg │ │ │ │ ├── browser-pic-5.jpg │ │ │ │ ├── browser-pic-6.jpg │ │ │ │ ├── browser.png │ │ │ │ ├── html-icon.png │ │ │ │ ├── logo-mask-2x.png │ │ │ │ ├── logo-mask.png │ │ │ │ └── video.jpg │ │ │ ├── exaple-image.jpg │ │ │ ├── favicon.ico │ │ │ ├── footer │ │ │ │ └── logo.png │ │ │ ├── heartbleed.png │ │ │ ├── login │ │ │ │ ├── icon.png │ │ │ │ ├── imac-2x.png │ │ │ │ └── imac.png │ │ │ ├── switch │ │ │ │ ├── mask-square.png │ │ │ │ └── mask.png │ │ │ ├── tile │ │ │ │ ├── ribbon-2x.png │ │ │ │ └── ribbon.png │ │ │ ├── todo │ │ │ │ ├── done-2x.png │ │ │ │ ├── done.png │ │ │ │ ├── search-2x.png │ │ │ │ ├── search.png │ │ │ │ ├── todo-2x.png │ │ │ │ └── todo.png │ │ │ └── video │ │ │ │ ├── fullscreen-2x.png │ │ │ │ ├── fullscreen.png │ │ │ │ ├── pause-2x.png │ │ │ │ ├── pause.png │ │ │ │ ├── play-2x.png │ │ │ │ ├── play.png │ │ │ │ ├── poster.jpg │ │ │ │ ├── volume-full-2x.png │ │ │ │ ├── volume-full.png │ │ │ │ ├── volume-off-2x.png │ │ │ │ └── volume-off.png │ │ ├── index.html │ │ ├── js │ │ │ ├── application.js │ │ │ ├── bootstrap-select.js │ │ │ ├── bootstrap-switch.js │ │ │ ├── bootstrap.min.js │ │ │ ├── flatui-checkbox.js │ │ │ ├── flatui-radio.js │ │ │ ├── html5shiv.js │ │ │ ├── icon-font-ie7.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-1.8.3.min.js │ │ │ ├── jquery-2.0.3.min.js │ │ │ ├── jquery-ui-1.10.3.custom.min.js │ │ │ ├── jquery.placeholder.js │ │ │ ├── jquery.tagsinput.js │ │ │ ├── jquery.ui.touch-punch.min.js │ │ │ ├── nprogress.js │ │ │ ├── respond.min.js │ │ │ └── typeahead.js │ │ └── package.json │ ├── Heartbleed │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .nojekyll │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-docs.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── prettify.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── js │ │ │ │ ├── application.js │ │ │ │ ├── google-code-prettify │ │ │ │ └── prettify.js │ │ │ │ └── holder.js │ │ ├── css │ │ │ ├── demo.css │ │ │ ├── docs.css │ │ │ ├── flat-ui.css │ │ │ └── nprogress.css │ │ ├── faq.html │ │ ├── favicon.png │ │ ├── fonts │ │ │ ├── flat-ui-icons-regular.eot │ │ │ ├── flat-ui-icons-regular.svg │ │ │ ├── flat-ui-icons-regular.ttf │ │ │ ├── flat-ui-icons-regular.woff │ │ │ └── lato │ │ │ │ ├── lato-black.eot │ │ │ │ ├── lato-black.svg │ │ │ │ ├── lato-black.ttf │ │ │ │ ├── lato-black.woff │ │ │ │ ├── lato-bold.eot │ │ │ │ ├── lato-bold.svg │ │ │ │ ├── lato-bold.ttf │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bolditalic.eot │ │ │ │ ├── lato-bolditalic.svg │ │ │ │ ├── lato-bolditalic.ttf │ │ │ │ ├── lato-bolditalic.woff │ │ │ │ ├── lato-italic.eot │ │ │ │ ├── lato-italic.svg │ │ │ │ ├── lato-italic.ttf │ │ │ │ ├── lato-italic.woff │ │ │ │ ├── lato-light.eot │ │ │ │ ├── lato-light.svg │ │ │ │ ├── lato-light.ttf │ │ │ │ ├── lato-light.woff │ │ │ │ ├── lato-regular.eot │ │ │ │ ├── lato-regular.svg │ │ │ │ ├── lato-regular.ttf │ │ │ │ └── lato-regular.woff │ │ ├── images │ │ │ ├── demo │ │ │ │ ├── browser-2x.png │ │ │ │ ├── browser-author.jpg │ │ │ │ ├── browser-pic-1.jpg │ │ │ │ ├── browser-pic-2.jpg │ │ │ │ ├── browser-pic-3.jpg │ │ │ │ ├── browser-pic-4.jpg │ │ │ │ ├── browser-pic-5.jpg │ │ │ │ ├── browser-pic-6.jpg │ │ │ │ ├── browser.png │ │ │ │ ├── html-icon.png │ │ │ │ ├── logo-mask-2x.png │ │ │ │ ├── logo-mask.png │ │ │ │ └── video.jpg │ │ │ ├── exaple-image.jpg │ │ │ ├── favicon.ico │ │ │ ├── footer │ │ │ │ └── logo.png │ │ │ ├── heartbleed.png │ │ │ ├── login │ │ │ │ ├── icon.png │ │ │ │ ├── imac-2x.png │ │ │ │ └── imac.png │ │ │ ├── switch │ │ │ │ ├── mask-square.png │ │ │ │ └── mask.png │ │ │ ├── tile │ │ │ │ ├── ribbon-2x.png │ │ │ │ └── ribbon.png │ │ │ ├── todo │ │ │ │ ├── done-2x.png │ │ │ │ ├── done.png │ │ │ │ ├── search-2x.png │ │ │ │ ├── search.png │ │ │ │ ├── todo-2x.png │ │ │ │ └── todo.png │ │ │ └── video │ │ │ │ ├── fullscreen-2x.png │ │ │ │ ├── fullscreen.png │ │ │ │ ├── pause-2x.png │ │ │ │ ├── pause.png │ │ │ │ ├── play-2x.png │ │ │ │ ├── play.png │ │ │ │ ├── poster.jpg │ │ │ │ ├── volume-full-2x.png │ │ │ │ ├── volume-full.png │ │ │ │ ├── volume-off-2x.png │ │ │ │ └── volume-off.png │ │ ├── index.html │ │ ├── js │ │ │ ├── application.js │ │ │ ├── bootstrap-select.js │ │ │ ├── bootstrap-switch.js │ │ │ ├── bootstrap.min.js │ │ │ ├── flatui-checkbox.js │ │ │ ├── flatui-radio.js │ │ │ ├── html5shiv.js │ │ │ ├── icon-font-ie7.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-1.8.3.min.js │ │ │ ├── jquery-2.0.3.min.js │ │ │ ├── jquery-ui-1.10.3.custom.min.js │ │ │ ├── jquery.placeholder.js │ │ │ ├── jquery.tagsinput.js │ │ │ ├── jquery.ui.touch-punch.min.js │ │ │ ├── nprogress.js │ │ │ ├── respond.min.js │ │ │ └── typeahead.js │ │ ├── less │ │ │ ├── demo.less │ │ │ ├── docs.less │ │ │ ├── flat-ui.less │ │ │ ├── mixins.less │ │ │ ├── modules │ │ │ │ ├── button-groups.less │ │ │ │ ├── buttons.less │ │ │ │ ├── caret.less │ │ │ │ ├── checkbox-and-radio.less │ │ │ │ ├── code.less │ │ │ │ ├── dropdown.less │ │ │ │ ├── footer.less │ │ │ │ ├── forms.less │ │ │ │ ├── glyphicons.less │ │ │ │ ├── input-groups.less │ │ │ │ ├── input-icons.less │ │ │ │ ├── local-fonts.less │ │ │ │ ├── login.less │ │ │ │ ├── navbar.less │ │ │ │ ├── pager.less │ │ │ │ ├── pagination.less │ │ │ │ ├── palette.less │ │ │ │ ├── progress-bars.less │ │ │ │ ├── scaffolding.less │ │ │ │ ├── select.less │ │ │ │ ├── share.less │ │ │ │ ├── slider.less │ │ │ │ ├── switch.less │ │ │ │ ├── tagsinput.less │ │ │ │ ├── thumbnails.less │ │ │ │ ├── tile.less │ │ │ │ ├── todo.less │ │ │ │ ├── tooltip.less │ │ │ │ ├── type.less │ │ │ │ ├── typeahead.less │ │ │ │ └── video.less │ │ │ ├── spaces.less │ │ │ └── variables.less │ │ └── package.json │ ├── Ticketbleed │ │ ├── index.html │ │ └── ticketbleed.png │ ├── a-bug-worth-4200$ │ │ └── index.html │ ├── a-journal-approach-that-actually-works-for-me │ │ └── index.html │ ├── a-python-github-push-webhook-handler │ │ └── index.html │ ├── add-support-for-a-new-video-site-to-youtube-dl │ │ └── index.html │ ├── analyzing-the-adobe-leaked-passwords │ │ └── index.html │ ├── archive-your-github-repo-and-data │ │ └── index.html │ ├── assets │ │ ├── valli_3-webfont.eot │ │ ├── valli_3-webfont.svg │ │ ├── valli_3-webfont.ttf │ │ └── valli_3-webfont.woff │ ├── automatically-compile-less-and-coffee-files │ │ └── index.html │ ├── behindthesofa │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── behindthesofa.jpeg │ │ └── index.html │ ├── brainwallets-from-the-password-to-the-address │ │ └── index.html │ ├── callback-based-combinations-in-go │ │ └── index.html │ ├── claimed-a-recap-aaron-swartz-grant │ │ └── index.html │ ├── customizing-a-linode-kernel │ │ └── index.html │ ├── decompressing-lempel-ziv-stac-in-python │ │ └── index.html │ ├── dnskey-to-ds │ │ ├── LICENSE │ │ ├── dnskey-to-ds.go │ │ ├── dnskey-to-ds.js │ │ ├── dnskey-to-ds.js.map │ │ └── index.html │ ├── donating.tech │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── CNAME │ │ ├── index.html │ │ ├── screen.png │ │ └── templates │ │ │ ├── _data.jinja │ │ │ ├── _mailchimp.html │ │ │ ├── _piwik.html │ │ │ ├── _style.css │ │ │ └── index.html │ ├── dumping-the-ios-simulator-memory │ │ └── index.html │ ├── escaping-a-chroot-jail-slash-1 │ │ └── index.html │ ├── fonts │ │ ├── bitter-v15-latin-regular.woff │ │ ├── bitter-v15-latin-regular.woff2 │ │ ├── raleway-v14-latin-regular.woff │ │ ├── raleway-v14-latin-regular.woff2 │ │ ├── source-code-pro-v11-latin-regular.woff │ │ └── source-code-pro-v11-latin-regular.woff2 │ ├── github-checkout-a-pull-request-as-a-branch │ │ └── index.html │ ├── how-the-new-gmail-image-proxy-works-and-what-does-this-mean-for-you │ │ └── index.html │ ├── images │ │ ├── 2013-10-15 20.50.26.jpg │ │ ├── 2013-10-15 20.50.38.jpg │ │ ├── 2014-01-27 04-25-35.png │ │ ├── 2014-01-27 04-37-45.png │ │ ├── BugBounty.png │ │ ├── FIPS 140-3 Logo- BW.png │ │ ├── Logo-Nero-Filippo-Valsorda-web.png │ │ ├── Online JavaScript beautifier 2014-02-03 04-47-24.png │ │ ├── POP-xsmall.png │ │ ├── Service Hooks 2013-11-24 00-54-05.png │ │ ├── Tux-ECB-small.png │ │ ├── Tux-ECB.png │ │ ├── Watch Minecraft Timelapse Volcanic Island veu6DfOTNv0 mp4 2014-02-03 04-02-38.png │ │ ├── Watch Minecraft Timelapse Volcanic Island veu6DfOTNv0 mp4 2014-02-03 04-12-55.png │ │ ├── Watch Minecraft Timelapse Volcanic Island veu6DfOTNv0 mp4 2014-02-03 04-25-46.png │ │ ├── bird_32_gray.png │ │ ├── bird_32_gray_fail.png │ │ ├── clients.png │ │ ├── code_bg.png │ │ ├── cpu.jpg │ │ ├── dictionary.png │ │ ├── dominikh.webp │ │ ├── dotted-border.png │ │ ├── ecb penguin - Google.png │ │ ├── email.png │ │ ├── filippo.jpg │ │ ├── geomys_base_negativo.png │ │ ├── geomys_base_positivo.png │ │ ├── geomys_orizz_B_negativo.png │ │ ├── geomys_orizz_B_positivo.png │ │ ├── grey.png │ │ ├── heartbleed.png │ │ ├── inflicted.png │ │ ├── line-tile.png │ │ ├── logo.png │ │ ├── nicola.png │ │ ├── noise.png │ │ ├── rss.png │ │ ├── search.png │ │ ├── sunlight_logo_main.png │ │ ├── sunlight_logo_main_negative.png │ │ ├── test.png │ │ ├── unnamed.png │ │ ├── view-source-www.topvideo.cc-4w1c85nzsbj0 2014-02-03 04-33-03.png │ │ └── whitehat.png │ ├── index.html │ ├── instance-monkey-patching-in-python │ │ └── index.html │ ├── krumiro-send-a-message-to-all-your-facebook-friends │ │ └── index.html │ ├── libsodium-playground │ │ ├── index.html │ │ └── sodium.js │ ├── linux-syscall-table │ │ ├── fuzzy.js │ │ ├── generate.go │ │ ├── index.html │ │ ├── index.html.tmpl │ │ ├── inflicted.png │ │ └── screen.css │ ├── making-system-calls-from-assembly-in-mac-os-x │ │ └── index.html │ ├── my-remote-shell-session-setup │ │ └── index.html │ ├── native-scrolling-and-iterm2 │ │ └── index.html │ ├── offline-storage-on-a-rpi │ │ └── index.html │ ├── on-keybase-dot-io-and-encrypted-private-key-sharing │ │ └── index.html │ ├── please-take-this-and-go-signing-those-updates │ │ └── index.html │ ├── programming-isnt-always-easy │ │ └── index.html │ ├── psa-enable-automatic-updates-please │ │ └── index.html │ ├── put-a-license-on.it │ │ ├── css │ │ │ └── bootstrap.min.css │ │ ├── img │ │ │ └── graphy.png │ │ ├── index.html │ │ └── js │ │ │ ├── jquery.min.js │ │ │ └── underscore-min.js │ ├── pythonic-solutions-to-the-facebook-hacker-cup-2014-qualification-round │ │ └── index.html │ ├── rwc2023 │ │ └── index.html │ ├── rwc2024 │ │ └── index.html │ ├── salt-and-pepper │ │ └── index.html │ ├── scraping-a-video-out-of-a-more-stubborn-site │ │ └── index.html │ ├── send-a-head-request-in-python │ │ └── index.html │ ├── sqlalchemy-plus-mysql-plus-python-3-plus-pip │ │ └── index.html │ ├── stylesheets │ │ └── screen.css │ ├── taking-retina-screenshots-with-phantomjs │ │ └── index.html │ ├── the-ecb-penguin │ │ └── index.html │ ├── the-heartbleed-test-at-owasp-slash-nyu-poly │ │ └── index.html │ ├── why-go-is-elegant-and-makes-my-code-elegant │ │ └── index.html │ └── why-mega-will-change-the-status-quo │ │ └── index.html ├── fips140.html ├── fips140.md ├── fly.toml ├── fonts ├── frequent.go ├── geomys.html ├── geomys.md ├── go.mod ├── go.sum ├── handler_test.go ├── handler_test.txt ├── images ├── main.go ├── md2html │ └── md2html.go ├── navigli.html ├── navigli.md ├── redirects.go ├── sunlight.html ├── sunlight.md ├── tos.html └── tos.md ├── frood ├── .gitignore ├── README.md ├── cmd │ └── srvmonitor │ │ └── srvmonitor.go ├── frood ├── frood-build.sh ├── frood-mkimg.sh ├── go.mod ├── go.sum ├── packages ├── root │ ├── etc │ │ ├── conf.d │ │ │ ├── seedrng │ │ │ ├── sshd │ │ │ ├── tailscale │ │ │ └── zfs │ │ ├── dhcpcd.conf │ │ ├── fstab │ │ ├── hostname │ │ ├── hosts │ │ ├── init.d │ │ │ ├── srvmonitor │ │ │ └── tler │ │ ├── inittab │ │ ├── ksmbd │ │ │ └── ksmbd.conf │ │ ├── local.d │ │ │ └── hello.start │ │ ├── modules-load.d │ │ │ ├── tailscale.conf │ │ │ └── zfs.conf │ │ ├── monitor.d │ │ │ ├── fdisk.sh │ │ │ ├── index.sh │ │ │ ├── messages.sh │ │ │ ├── mount.sh │ │ │ ├── netstat.sh │ │ │ ├── zfs-get.sh │ │ │ └── zfs-list.sh │ │ ├── motd │ │ ├── network │ │ │ └── interfaces │ │ ├── periodic │ │ │ └── 15min │ │ │ │ └── inactive.sh │ │ ├── profile.d │ │ │ └── motd.sh │ │ ├── smartd.conf │ │ ├── ssh │ │ │ ├── ssh_host_ed25519_key.pub │ │ │ └── sshd_config │ │ ├── ssl │ │ │ └── frood.pem │ │ └── zfs │ │ │ └── zed.d │ │ │ └── zed.rc │ ├── root │ │ └── .ssh │ │ │ └── authorized_keys │ ├── usr │ │ └── local │ │ │ └── bin │ │ │ ├── mail-alert │ │ │ └── snapshot │ └── var │ │ └── lib │ │ └── dhcpcd │ │ └── duid ├── setup.sh └── tests │ └── perms_test.go ├── garkbit ├── garkbit.service ├── go.mod ├── go.sum └── main.go ├── github-metadata ├── go.mod ├── go.sum └── main.go ├── golink └── fly.toml ├── hntitles ├── README.md ├── hntitles.py └── requirements.txt ├── hydrate-twitter-archive ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── photos.py ├── profiles.py ├── timelines.py ├── tweets.py └── users.py ├── jj-codereview ├── README ├── api.go ├── cleanup.go ├── fetch.go ├── go.mod ├── jj.go ├── mail.go └── review.go ├── llm-fragments-go ├── README.md ├── llm_fragments_go.py ├── pyproject.toml └── uv.lock ├── md-ld ├── go.mod ├── go.sum └── main.go ├── mimitikz ├── go.mod └── main.go ├── mip ├── README.md ├── go.mod ├── go.sum ├── main.go ├── main_test.go └── testdata │ └── modules-in-process-list ├── osx-nvram ├── .github │ ├── branches.json │ ├── comments.json │ ├── contributors.json │ ├── forks.json │ ├── issues.json │ ├── labels.json │ ├── languages.json │ ├── milestones.json │ ├── pulls.json │ ├── releases.json │ ├── repo.json │ ├── stargazers.json │ ├── subscribers.json │ ├── tags.json │ └── topics.json ├── LICENSE ├── go.mod ├── nvram.c ├── nvram.go └── nvram_test.go ├── paper ├── LICENSE ├── bip39.go ├── bip39_test.go ├── go.mod ├── go.sum ├── main.go ├── pgp.go ├── pgp_test.go ├── testdata │ ├── pgp.backup.txt │ ├── pgp.public.armor.asc │ ├── pgp.public.asc │ ├── pgp.secret.password.armor.asc │ └── pgp.secret.password.asc └── ui.go ├── pbstrip ├── go.mod ├── go.sum └── main.go ├── pkguninstall ├── .github │ ├── branches.json │ ├── comments.json │ ├── contributors.json │ ├── forks.json │ ├── issues.json │ ├── labels.json │ ├── languages.json │ ├── milestones.json │ ├── pulls.json │ ├── releases.json │ ├── repo.json │ ├── stargazers.json │ ├── subscribers.json │ ├── tags.json │ └── topics.json ├── LICENSE ├── README.md └── pkguninstall ├── public-config ├── go.mod └── public-config.go ├── rare ├── go.mod ├── go.sum ├── influxdb.go └── main.go ├── reput ├── LICENSE ├── README ├── go.mod ├── go.sum └── main.go ├── shower ├── Pipfile ├── Pipfile.lock └── plot.py ├── standard-backup ├── go.mod └── main.go ├── standard-decrypt ├── go.mod ├── go.sum └── main.go ├── sumdb-explorer ├── domainr.go ├── go.mod ├── go.sum ├── ingest.go └── main.go ├── survey-roots ├── LICENSE ├── go.mod ├── go.sum ├── main.go ├── survey-20200412.txt └── survey.go ├── talks ├── High-Assurance Go Cryptography.txt ├── asyncnet │ ├── README.md │ ├── main.go │ ├── prepared.go │ ├── stages │ │ ├── 0_acceptloop.go │ │ ├── 1_timeouts.go │ │ ├── 2_proxy.go │ │ ├── 3_logsni.go │ │ ├── 4_proxyandsni.go │ │ ├── 5_cryptotls.go │ │ ├── 99_tls.go │ │ └── other │ │ │ ├── extragoroutine.go │ │ │ ├── framedconn.go │ │ │ ├── framedconn_test.go │ │ │ ├── snilistener.go │ │ │ └── snilistenergo.go │ └── tls.go ├── fuzz │ ├── .github │ │ ├── branches.json │ │ ├── comments.json │ │ ├── contributors.json │ │ ├── forks.json │ │ ├── issues.json │ │ ├── labels.json │ │ ├── languages.json │ │ ├── milestones.json │ │ ├── pulls.json │ │ ├── releases.json │ │ ├── repo.json │ │ ├── stargazers.json │ │ ├── subscribers.json │ │ ├── tags.json │ │ └── topics.json │ ├── LICENSE │ ├── README.md │ ├── bugged.go │ ├── bugged_fuzz.go │ ├── bugged_test.go │ └── workdir │ │ ├── corpus │ │ ├── 14ce9986bbe073a8c48a9974e87c6f4d0e7b0c50-3 │ │ ├── 51b45a439e25342db498f0915cc22f80847034a2-3 │ │ ├── 5df1d5920aafe2d3a44680ba9b9fec6760e4a879-4 │ │ ├── 6d3d9552845e675ee217db7c341d0c794ec005a9-1 │ │ ├── ca4558ca0710d4b259fdca48a462d04aae5cda78-2 │ │ └── example │ │ ├── crashers │ │ ├── b6589fc6ab0dc82cf12099d1c2d40ab994e8410c │ │ ├── b6589fc6ab0dc82cf12099d1c2d40ab994e8410c.output │ │ └── b6589fc6ab0dc82cf12099d1c2d40ab994e8410c.quoted │ │ └── suppressions │ │ └── 4de5122d6c0972f7e447061ac749b4e5d7f31a2c ├── rustgo │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── Makefile │ ├── lldb │ │ └── main.go │ ├── main.go │ ├── multiplication │ │ ├── mul.go │ │ └── mul.s │ └── src │ │ └── lib.rs └── whycgoisslow │ ├── 1.8.7.bench.txt │ ├── callback.c │ ├── main.go │ ├── main_test.go │ └── tip.bench.txt ├── thepiratedb ├── .github │ ├── branches.json │ ├── comments.json │ ├── contributors.json │ ├── forks.json │ ├── issues.json │ ├── labels.json │ ├── languages.json │ ├── milestones.json │ ├── pulls.json │ ├── releases.json │ ├── repo.json │ ├── stargazers.json │ ├── subscribers.json │ ├── tags.json │ └── topics.json ├── README.md ├── go.mod ├── go.sum └── main.go ├── tlog-torrent ├── go.mod ├── go.sum ├── internal │ └── torrent │ │ ├── bencode.go │ │ └── files.go └── main.go ├── tripit-to-flightdiary ├── .backup │ ├── issues │ │ ├── 2.json │ │ ├── 5.json │ │ └── 6.json │ ├── labels │ │ └── labels.json │ └── pulls │ │ ├── 1.json │ │ ├── 3.json │ │ └── 4.json ├── .gitignore ├── .python-version ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── flightradar.py ├── get_token.py ├── jq.sh ├── sync.py └── tripit.py ├── twitchy ├── .gitignore ├── go.mod ├── go.sum └── main.go ├── vrf-r255 ├── LICENSE ├── go.mod ├── go.sum ├── vrf.go └── vrf_test.go ├── who-needs-http ├── .github │ ├── branches.json │ ├── comments.json │ ├── contributors.json │ ├── forks.json │ ├── issues.json │ ├── labels.json │ ├── languages.json │ ├── milestones.json │ ├── pulls.json │ ├── releases.json │ ├── repo.json │ ├── stargazers.json │ ├── subscribers.json │ ├── tags.json │ └── topics.json ├── go.mod └── main.go └── zfspasskey ├── age-0.2.3-1-g59d2c94.js ├── cmd └── zfspasskey │ └── main.go ├── go.mod ├── go.sum ├── scure-base-1.2.5.js ├── zfspasskey.go └── zfspasskey.html /.github/workflows/fly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/.github/workflows/fly.yml -------------------------------------------------------------------------------- /.github/workflows/hntitles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/.github/workflows/hntitles.yml -------------------------------------------------------------------------------- /.github/workflows/mastodon_get_replies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/.github/workflows/mastodon_get_replies.yml -------------------------------------------------------------------------------- /HomebrewFormula/go@1.2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/HomebrewFormula/go@1.2.rb -------------------------------------------------------------------------------- /HomebrewFormula/iodine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/HomebrewFormula/iodine.rb -------------------------------------------------------------------------------- /HomebrewFormula/sshpass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/HomebrewFormula/sshpass.rb -------------------------------------------------------------------------------- /HomebrewFormula/stubby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/HomebrewFormula/stubby.rb -------------------------------------------------------------------------------- /HomebrewFormula/usb-modeswitch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/HomebrewFormula/usb-modeswitch.rb -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/README -------------------------------------------------------------------------------- /allcode/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allcode/README -------------------------------------------------------------------------------- /allcode/allcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allcode/allcode.go -------------------------------------------------------------------------------- /allcode/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allcode/go.mod -------------------------------------------------------------------------------- /allcode/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allcode/go.sum -------------------------------------------------------------------------------- /allroots/extra.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/extra.pem -------------------------------------------------------------------------------- /allroots/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/go.mod -------------------------------------------------------------------------------- /allroots/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/go.sum -------------------------------------------------------------------------------- /allroots/library/1044840.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/1044840.crt -------------------------------------------------------------------------------- /allroots/library/1160190.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/1160190.crt -------------------------------------------------------------------------------- /allroots/library/12724444.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/12724444.crt -------------------------------------------------------------------------------- /allroots/library/12726449.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/12726449.crt -------------------------------------------------------------------------------- /allroots/library/12727249.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/12727249.crt -------------------------------------------------------------------------------- /allroots/library/12728973.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/12728973.crt -------------------------------------------------------------------------------- /allroots/library/1616334.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/1616334.crt -------------------------------------------------------------------------------- /allroots/library/1855983.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/1855983.crt -------------------------------------------------------------------------------- /allroots/library/19392274.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/19392274.crt -------------------------------------------------------------------------------- /allroots/library/19392278.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/19392278.crt -------------------------------------------------------------------------------- /allroots/library/19392284.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/19392284.crt -------------------------------------------------------------------------------- /allroots/library/229.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/229.crt -------------------------------------------------------------------------------- /allroots/library/24651.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/24651.crt -------------------------------------------------------------------------------- /allroots/library/27.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/27.crt -------------------------------------------------------------------------------- /allroots/library/2833787760.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/2833787760.crt -------------------------------------------------------------------------------- /allroots/library/2858272562.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/2858272562.crt -------------------------------------------------------------------------------- /allroots/library/2953.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/2953.crt -------------------------------------------------------------------------------- /allroots/library/331986.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/331986.crt -------------------------------------------------------------------------------- /allroots/library/3381895.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/3381895.crt -------------------------------------------------------------------------------- /allroots/library/36499465.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/36499465.crt -------------------------------------------------------------------------------- /allroots/library/39.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/39.crt -------------------------------------------------------------------------------- /allroots/library/409684.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/409684.crt -------------------------------------------------------------------------------- /allroots/library/4147049674.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/4147049674.crt -------------------------------------------------------------------------------- /allroots/library/4147052292.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/4147052292.crt -------------------------------------------------------------------------------- /allroots/library/4256644599.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/4256644599.crt -------------------------------------------------------------------------------- /allroots/library/4256644600.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/4256644600.crt -------------------------------------------------------------------------------- /allroots/library/4256644601.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/4256644601.crt -------------------------------------------------------------------------------- /allroots/library/4256644602.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/4256644602.crt -------------------------------------------------------------------------------- /allroots/library/4433774571.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/4433774571.crt -------------------------------------------------------------------------------- /allroots/library/4433776671.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/4433776671.crt -------------------------------------------------------------------------------- /allroots/library/5469867.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/5469867.crt -------------------------------------------------------------------------------- /allroots/library/55.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/55.crt -------------------------------------------------------------------------------- /allroots/library/62188.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/62188.crt -------------------------------------------------------------------------------- /allroots/library/7077686919.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/7077686919.crt -------------------------------------------------------------------------------- /allroots/library/7077690248.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/7077690248.crt -------------------------------------------------------------------------------- /allroots/library/713609039.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/713609039.crt -------------------------------------------------------------------------------- /allroots/library/76.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/76.crt -------------------------------------------------------------------------------- /allroots/library/7677.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/7677.crt -------------------------------------------------------------------------------- /allroots/library/7937649716.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/7937649716.crt -------------------------------------------------------------------------------- /allroots/library/7937650317.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/7937650317.crt -------------------------------------------------------------------------------- /allroots/library/88.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/88.crt -------------------------------------------------------------------------------- /allroots/library/9031466.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/9031466.crt -------------------------------------------------------------------------------- /allroots/library/93.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/93.crt -------------------------------------------------------------------------------- /allroots/library/95564.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/library/95564.crt -------------------------------------------------------------------------------- /allroots/roots.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/allroots/roots.go -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/branches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Biglumber-map/.github/branches.json -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Biglumber-map/.github/contributors.json -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/forks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Biglumber-map/.github/forks.json -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/issues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Biglumber-map/.github/issues.json -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/issues/1/issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Biglumber-map/.github/issues/1/issue.json -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/issues/1/reactions.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Biglumber-map/.github/labels.json -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/languages.json: -------------------------------------------------------------------------------- 1 | {"JavaScript":50929,"CSS":5711,"Python":2632} -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/milestones.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/pulls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Biglumber-map/.github/pulls.json -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/pulls/1/pull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Biglumber-map/.github/pulls/1/pull.json -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/pulls/1/review_comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/pulls/1/reviews.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/releases.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Biglumber-map/.github/repo.json -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/stargazers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Biglumber-map/.github/stargazers.json -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Biglumber-map/.github/subscribers.json -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/tags.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/Biglumber-map/.github/topics.json: -------------------------------------------------------------------------------- 1 | {"names":[]} -------------------------------------------------------------------------------- /attic/Biglumber-map/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Biglumber-map/.gitignore -------------------------------------------------------------------------------- /attic/Biglumber-map/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Biglumber-map/LICENSE -------------------------------------------------------------------------------- /attic/Biglumber-map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Biglumber-map/README.md -------------------------------------------------------------------------------- /attic/Biglumber-map/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Biglumber-map/TODO -------------------------------------------------------------------------------- /attic/Biglumber-map/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Biglumber-map/fetch.py -------------------------------------------------------------------------------- /attic/Biglumber-map/requirements.txt: -------------------------------------------------------------------------------- 1 | geopy -------------------------------------------------------------------------------- /attic/Biglumber-map/website/MarkerCluster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Biglumber-map/website/MarkerCluster.css -------------------------------------------------------------------------------- /attic/Biglumber-map/website/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Biglumber-map/website/fancybox/blank.gif -------------------------------------------------------------------------------- /attic/Biglumber-map/website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Biglumber-map/website/index.html -------------------------------------------------------------------------------- /attic/Dockerfiles/.github/branches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/.github/branches.json -------------------------------------------------------------------------------- /attic/Dockerfiles/.github/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/Dockerfiles/.github/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/.github/contributors.json -------------------------------------------------------------------------------- /attic/Dockerfiles/.github/forks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/.github/forks.json -------------------------------------------------------------------------------- /attic/Dockerfiles/.github/issues.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/Dockerfiles/.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/.github/labels.json -------------------------------------------------------------------------------- /attic/Dockerfiles/.github/languages.json: -------------------------------------------------------------------------------- 1 | {"Shell":1230} -------------------------------------------------------------------------------- /attic/Dockerfiles/.github/milestones.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/Dockerfiles/.github/pulls.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/Dockerfiles/.github/releases.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/Dockerfiles/.github/repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/.github/repo.json -------------------------------------------------------------------------------- /attic/Dockerfiles/.github/stargazers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/.github/stargazers.json -------------------------------------------------------------------------------- /attic/Dockerfiles/.github/subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/.github/subscribers.json -------------------------------------------------------------------------------- /attic/Dockerfiles/.github/tags.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/Dockerfiles/.github/topics.json: -------------------------------------------------------------------------------- 1 | {"names":[]} -------------------------------------------------------------------------------- /attic/Dockerfiles/.gitignore: -------------------------------------------------------------------------------- 1 | authorized_keys 2 | -------------------------------------------------------------------------------- /attic/Dockerfiles/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/.gitmodules -------------------------------------------------------------------------------- /attic/Dockerfiles/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/LICENSE -------------------------------------------------------------------------------- /attic/Dockerfiles/iodine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/iodine/Dockerfile -------------------------------------------------------------------------------- /attic/Dockerfiles/iodine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/iodine/README.md -------------------------------------------------------------------------------- /attic/Dockerfiles/iodine/iodined.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/iodine/iodined.sh -------------------------------------------------------------------------------- /attic/Dockerfiles/onion/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/onion/Dockerfile -------------------------------------------------------------------------------- /attic/Dockerfiles/onion/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/onion/boot.sh -------------------------------------------------------------------------------- /attic/Dockerfiles/onion/tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/onion/tor.sh -------------------------------------------------------------------------------- /attic/Dockerfiles/onion/torrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/onion/torrc -------------------------------------------------------------------------------- /attic/Dockerfiles/web.py/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/web.py/Dockerfile -------------------------------------------------------------------------------- /attic/Dockerfiles/web.py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/web.py/README.md -------------------------------------------------------------------------------- /attic/Dockerfiles/web.py/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/web.py/serve.py -------------------------------------------------------------------------------- /attic/Dockerfiles/web.py/webpy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/Dockerfiles/web.py/webpy.sh -------------------------------------------------------------------------------- /attic/TripleSec/.github/branches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/TripleSec/.github/branches.json -------------------------------------------------------------------------------- /attic/TripleSec/.github/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/TripleSec/.github/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/TripleSec/.github/contributors.json -------------------------------------------------------------------------------- /attic/TripleSec/.github/forks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/TripleSec/.github/forks.json -------------------------------------------------------------------------------- /attic/TripleSec/.github/issues.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/TripleSec/.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/TripleSec/.github/labels.json -------------------------------------------------------------------------------- /attic/TripleSec/.github/languages.json: -------------------------------------------------------------------------------- 1 | {"Go":4165} -------------------------------------------------------------------------------- /attic/TripleSec/.github/milestones.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/TripleSec/.github/pulls.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/TripleSec/.github/releases.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/TripleSec/.github/repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/TripleSec/.github/repo.json -------------------------------------------------------------------------------- /attic/TripleSec/.github/stargazers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/TripleSec/.github/stargazers.json -------------------------------------------------------------------------------- /attic/TripleSec/.github/subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/TripleSec/.github/subscribers.json -------------------------------------------------------------------------------- /attic/TripleSec/.github/tags.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/TripleSec/.github/topics.json: -------------------------------------------------------------------------------- 1 | {"names":[]} -------------------------------------------------------------------------------- /attic/TripleSec/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/TripleSec/.gitignore -------------------------------------------------------------------------------- /attic/TripleSec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/TripleSec/LICENSE -------------------------------------------------------------------------------- /attic/TripleSec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/TripleSec/README.md -------------------------------------------------------------------------------- /attic/TripleSec/triplesec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/TripleSec/triplesec.go -------------------------------------------------------------------------------- /attic/TripleSec/triplesec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/TripleSec/triplesec_test.go -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/branches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/.github/branches.json -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/.github/contributors.json -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/forks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/.github/forks.json -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/.github/issues.json -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/1/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/1/events.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/1/issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/.github/issues/1/issue.json -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/1/reactions.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/1/timeline.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/2/comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/.github/issues/2/comments.json -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/2/events.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/2/issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/.github/issues/2/issue.json -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/2/reactions.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/2/timeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/.github/issues/2/timeline.json -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/3/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/3/events.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/3/issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/.github/issues/3/issue.json -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/3/reactions.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/3/timeline.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/4/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/4/events.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/4/issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/.github/issues/4/issue.json -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/4/reactions.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/issues/4/timeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/.github/issues/4/timeline.json -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/.github/labels.json -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/languages.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/milestones.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/pulls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/.github/pulls.json -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/pulls/4/commits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/.github/pulls/4/commits.json -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/pulls/4/pull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/.github/pulls/4/pull.json -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/pulls/4/pull.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/.github/pulls/4/pull.patch -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/pulls/4/review_comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/pulls/4/reviews.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/releases.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/.github/repo.json -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/stargazers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/.github/stargazers.json -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/.github/subscribers.json -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/tags.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/ar.chiv.io/.github/topics.json: -------------------------------------------------------------------------------- 1 | {"names":[]} -------------------------------------------------------------------------------- /attic/ar.chiv.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/ar.chiv.io/README.md -------------------------------------------------------------------------------- /attic/archive.today/.github/branches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/.github/branches.json -------------------------------------------------------------------------------- /attic/archive.today/.github/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/archive.today/.github/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/.github/contributors.json -------------------------------------------------------------------------------- /attic/archive.today/.github/forks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/.github/forks.json -------------------------------------------------------------------------------- /attic/archive.today/.github/issues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/.github/issues.json -------------------------------------------------------------------------------- /attic/archive.today/.github/issues/1/issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/.github/issues/1/issue.json -------------------------------------------------------------------------------- /attic/archive.today/.github/issues/1/reactions.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/archive.today/.github/issues/2/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/archive.today/.github/issues/2/issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/.github/issues/2/issue.json -------------------------------------------------------------------------------- /attic/archive.today/.github/issues/2/reactions.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/archive.today/.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/.github/labels.json -------------------------------------------------------------------------------- /attic/archive.today/.github/languages.json: -------------------------------------------------------------------------------- 1 | {"Go":5674} -------------------------------------------------------------------------------- /attic/archive.today/.github/milestones.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/archive.today/.github/pulls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/.github/pulls.json -------------------------------------------------------------------------------- /attic/archive.today/.github/pulls/2/pull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/.github/pulls/2/pull.json -------------------------------------------------------------------------------- /attic/archive.today/.github/pulls/2/review_comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/archive.today/.github/pulls/2/reviews.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/archive.today/.github/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/.github/releases.json -------------------------------------------------------------------------------- /attic/archive.today/.github/repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/.github/repo.json -------------------------------------------------------------------------------- /attic/archive.today/.github/stargazers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/.github/stargazers.json -------------------------------------------------------------------------------- /attic/archive.today/.github/subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/.github/subscribers.json -------------------------------------------------------------------------------- /attic/archive.today/.github/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/.github/tags.json -------------------------------------------------------------------------------- /attic/archive.today/.github/topics.json: -------------------------------------------------------------------------------- 1 | {"names":[]} -------------------------------------------------------------------------------- /attic/archive.today/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/.gitignore -------------------------------------------------------------------------------- /attic/archive.today/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/LICENSE -------------------------------------------------------------------------------- /attic/archive.today/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/README.md -------------------------------------------------------------------------------- /attic/archive.today/archive.today.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/archive.today.go -------------------------------------------------------------------------------- /attic/archive.today/index.html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/index.html.go -------------------------------------------------------------------------------- /attic/archive.today/vendor/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/archive.today/vendor/manifest -------------------------------------------------------------------------------- /attic/cover-flipper/.github/branches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/cover-flipper/.github/branches.json -------------------------------------------------------------------------------- /attic/cover-flipper/.github/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/cover-flipper/.github/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/cover-flipper/.github/contributors.json -------------------------------------------------------------------------------- /attic/cover-flipper/.github/forks.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/cover-flipper/.github/issues.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/cover-flipper/.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/cover-flipper/.github/labels.json -------------------------------------------------------------------------------- /attic/cover-flipper/.github/languages.json: -------------------------------------------------------------------------------- 1 | {"Python":4130,"Shell":285} -------------------------------------------------------------------------------- /attic/cover-flipper/.github/milestones.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/cover-flipper/.github/pulls.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/cover-flipper/.github/releases.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/cover-flipper/.github/repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/cover-flipper/.github/repo.json -------------------------------------------------------------------------------- /attic/cover-flipper/.github/stargazers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/cover-flipper/.github/stargazers.json -------------------------------------------------------------------------------- /attic/cover-flipper/.github/subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/cover-flipper/.github/subscribers.json -------------------------------------------------------------------------------- /attic/cover-flipper/.github/tags.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/cover-flipper/.github/topics.json: -------------------------------------------------------------------------------- 1 | {"names":[]} -------------------------------------------------------------------------------- /attic/cover-flipper/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | *.pyc 3 | -------------------------------------------------------------------------------- /attic/cover-flipper/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -w 3 2 | -------------------------------------------------------------------------------- /attic/cover-flipper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/cover-flipper/README.md -------------------------------------------------------------------------------- /attic/cover-flipper/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/cover-flipper/TODO.txt -------------------------------------------------------------------------------- /attic/cover-flipper/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/cover-flipper/app.py -------------------------------------------------------------------------------- /attic/cover-flipper/fb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/cover-flipper/fb.py -------------------------------------------------------------------------------- /attic/cover-flipper/gettext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/cover-flipper/gettext.sh -------------------------------------------------------------------------------- /attic/cover-flipper/i18n/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/cover-flipper/i18n/messages.po -------------------------------------------------------------------------------- /attic/cover-flipper/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/cover-flipper/requirements.txt -------------------------------------------------------------------------------- /attic/cover-flipper/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/cover-flipper/templates/index.html -------------------------------------------------------------------------------- /attic/filippo.io/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/.editorconfig -------------------------------------------------------------------------------- /attic/filippo.io/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /attic/filippo.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/.gitignore -------------------------------------------------------------------------------- /attic/filippo.io/.powrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/.powrc -------------------------------------------------------------------------------- /attic/filippo.io/.rbenv-version: -------------------------------------------------------------------------------- 1 | 1.9.3-p194 2 | -------------------------------------------------------------------------------- /attic/filippo.io/.rvmrc: -------------------------------------------------------------------------------- 1 | rvm use 1.9.3 2 | -------------------------------------------------------------------------------- /attic/filippo.io/.slugignore: -------------------------------------------------------------------------------- 1 | plugins 2 | sass 3 | source 4 | -------------------------------------------------------------------------------- /attic/filippo.io/.themes/classic/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/.themes/classic/.editorconfig -------------------------------------------------------------------------------- /attic/filippo.io/.themes/classic/source/_includes/footer.html: -------------------------------------------------------------------------------- 1 | {% include custom/footer.html %} 2 | -------------------------------------------------------------------------------- /attic/filippo.io/.themes/classic/source/_includes/header.html: -------------------------------------------------------------------------------- 1 | {% include custom/header.html %} 2 | -------------------------------------------------------------------------------- /attic/filippo.io/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/.travis.yml -------------------------------------------------------------------------------- /attic/filippo.io/CHANGELOG.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/CHANGELOG.markdown -------------------------------------------------------------------------------- /attic/filippo.io/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/Gemfile -------------------------------------------------------------------------------- /attic/filippo.io/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/Gemfile.lock -------------------------------------------------------------------------------- /attic/filippo.io/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/README.markdown -------------------------------------------------------------------------------- /attic/filippo.io/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/Rakefile -------------------------------------------------------------------------------- /attic/filippo.io/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/_config.yml -------------------------------------------------------------------------------- /attic/filippo.io/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/config.rb -------------------------------------------------------------------------------- /attic/filippo.io/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/config.ru -------------------------------------------------------------------------------- /attic/filippo.io/plugins/backtick_code_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/backtick_code_block.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/blockquote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/blockquote.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/category_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/category_generator.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/code_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/code_block.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/config_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/config_tag.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/date.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/gist_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/gist_tag.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/haml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/haml.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/image_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/image_tag.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/include_array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/include_array.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/include_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/include_code.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/jsfiddle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/jsfiddle.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/octopress_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/octopress_filters.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/pagination.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/pagination.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/post_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/post_filters.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/preview_unpublished.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/preview_unpublished.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/pullquote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/pullquote.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/pygments_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/pygments_code.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/raw.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/raw.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/render_partial.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/render_partial.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/rubypants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/rubypants.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/sitemap_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/sitemap_generator.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/titlecase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/titlecase.rb -------------------------------------------------------------------------------- /attic/filippo.io/plugins/video_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/plugins/video_tag.rb -------------------------------------------------------------------------------- /attic/filippo.io/sass/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/_base.scss -------------------------------------------------------------------------------- /attic/filippo.io/sass/_partials.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/_partials.scss -------------------------------------------------------------------------------- /attic/filippo.io/sass/base/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/base/_layout.scss -------------------------------------------------------------------------------- /attic/filippo.io/sass/base/_solarized.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/base/_solarized.scss -------------------------------------------------------------------------------- /attic/filippo.io/sass/base/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/base/_theme.scss -------------------------------------------------------------------------------- /attic/filippo.io/sass/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/base/_typography.scss -------------------------------------------------------------------------------- /attic/filippo.io/sass/base/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/base/_utilities.scss -------------------------------------------------------------------------------- /attic/filippo.io/sass/custom/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/custom/_colors.scss -------------------------------------------------------------------------------- /attic/filippo.io/sass/custom/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/custom/_fonts.scss -------------------------------------------------------------------------------- /attic/filippo.io/sass/custom/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/custom/_layout.scss -------------------------------------------------------------------------------- /attic/filippo.io/sass/custom/_styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/custom/_styles.scss -------------------------------------------------------------------------------- /attic/filippo.io/sass/partials/_archive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/partials/_archive.scss -------------------------------------------------------------------------------- /attic/filippo.io/sass/partials/_blog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/partials/_blog.scss -------------------------------------------------------------------------------- /attic/filippo.io/sass/partials/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/partials/_footer.scss -------------------------------------------------------------------------------- /attic/filippo.io/sass/partials/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/partials/_header.scss -------------------------------------------------------------------------------- /attic/filippo.io/sass/partials/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/partials/_navigation.scss -------------------------------------------------------------------------------- /attic/filippo.io/sass/partials/_sharing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/partials/_sharing.scss -------------------------------------------------------------------------------- /attic/filippo.io/sass/partials/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/partials/_sidebar.scss -------------------------------------------------------------------------------- /attic/filippo.io/sass/partials/_syntax.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/partials/_syntax.scss -------------------------------------------------------------------------------- /attic/filippo.io/sass/screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/sass/screen.scss -------------------------------------------------------------------------------- /attic/filippo.io/source/CNAME: -------------------------------------------------------------------------------- 1 | filippo.io -------------------------------------------------------------------------------- /attic/filippo.io/source/CNAME.future: -------------------------------------------------------------------------------- 1 | www.pytux.it 2 | -------------------------------------------------------------------------------- /attic/filippo.io/source/_includes/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/_includes/article.html -------------------------------------------------------------------------------- /attic/filippo.io/source/_includes/custom/asides/projects.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /attic/filippo.io/source/_includes/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/_includes/disqus.html -------------------------------------------------------------------------------- /attic/filippo.io/source/_includes/footer.html: -------------------------------------------------------------------------------- 1 | {% include custom/footer.html %} 2 | -------------------------------------------------------------------------------- /attic/filippo.io/source/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/_includes/head.html -------------------------------------------------------------------------------- /attic/filippo.io/source/_includes/header.html: -------------------------------------------------------------------------------- 1 | {% include custom/header.html %} 2 | -------------------------------------------------------------------------------- /attic/filippo.io/source/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/_layouts/default.html -------------------------------------------------------------------------------- /attic/filippo.io/source/_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/_layouts/page.html -------------------------------------------------------------------------------- /attic/filippo.io/source/_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/_layouts/post.html -------------------------------------------------------------------------------- /attic/filippo.io/source/archives/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/archives/index.html -------------------------------------------------------------------------------- /attic/filippo.io/source/atom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/atom.xml -------------------------------------------------------------------------------- /attic/filippo.io/source/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/favicon.png -------------------------------------------------------------------------------- /attic/filippo.io/source/images/BugBounty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/images/BugBounty.png -------------------------------------------------------------------------------- /attic/filippo.io/source/images/POP-xsmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/images/POP-xsmall.png -------------------------------------------------------------------------------- /attic/filippo.io/source/images/Tux-ECB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/images/Tux-ECB.png -------------------------------------------------------------------------------- /attic/filippo.io/source/images/bird_32_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/images/bird_32_gray.png -------------------------------------------------------------------------------- /attic/filippo.io/source/images/code_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/images/code_bg.png -------------------------------------------------------------------------------- /attic/filippo.io/source/images/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/images/email.png -------------------------------------------------------------------------------- /attic/filippo.io/source/images/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/images/grey.png -------------------------------------------------------------------------------- /attic/filippo.io/source/images/heartbleed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/images/heartbleed.png -------------------------------------------------------------------------------- /attic/filippo.io/source/images/inflicted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/images/inflicted.png -------------------------------------------------------------------------------- /attic/filippo.io/source/images/line-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/images/line-tile.png -------------------------------------------------------------------------------- /attic/filippo.io/source/images/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/images/noise.png -------------------------------------------------------------------------------- /attic/filippo.io/source/images/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/images/rss.png -------------------------------------------------------------------------------- /attic/filippo.io/source/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/images/search.png -------------------------------------------------------------------------------- /attic/filippo.io/source/images/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/images/test.png -------------------------------------------------------------------------------- /attic/filippo.io/source/images/unnamed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/images/unnamed.png -------------------------------------------------------------------------------- /attic/filippo.io/source/images/whitehat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/images/whitehat.png -------------------------------------------------------------------------------- /attic/filippo.io/source/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/index.html -------------------------------------------------------------------------------- /attic/filippo.io/source/javascripts/ender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/javascripts/ender.js -------------------------------------------------------------------------------- /attic/filippo.io/source/javascripts/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/javascripts/github.js -------------------------------------------------------------------------------- /attic/filippo.io/source/javascripts/pinboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/javascripts/pinboard.js -------------------------------------------------------------------------------- /attic/filippo.io/source/javascripts/twitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/javascripts/twitter.js -------------------------------------------------------------------------------- /attic/filippo.io/source/links/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/links/index.html -------------------------------------------------------------------------------- /attic/filippo.io/source/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/filippo.io/source/robots.txt -------------------------------------------------------------------------------- /attic/got-it/.github/branches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/got-it/.github/branches.json -------------------------------------------------------------------------------- /attic/got-it/.github/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/got-it/.github/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/got-it/.github/contributors.json -------------------------------------------------------------------------------- /attic/got-it/.github/forks.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/got-it/.github/issues.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/got-it/.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/got-it/.github/labels.json -------------------------------------------------------------------------------- /attic/got-it/.github/languages.json: -------------------------------------------------------------------------------- 1 | {"HTML":10067,"Makefile":5172,"Go":1727} -------------------------------------------------------------------------------- /attic/got-it/.github/milestones.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/got-it/.github/pulls.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/got-it/.github/releases.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/got-it/.github/repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/got-it/.github/repo.json -------------------------------------------------------------------------------- /attic/got-it/.github/stargazers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/got-it/.github/stargazers.json -------------------------------------------------------------------------------- /attic/got-it/.github/subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/got-it/.github/subscribers.json -------------------------------------------------------------------------------- /attic/got-it/.github/tags.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/got-it/.github/topics.json: -------------------------------------------------------------------------------- 1 | {"names":[]} -------------------------------------------------------------------------------- /attic/got-it/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/got-it/.gitignore -------------------------------------------------------------------------------- /attic/got-it/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/got-it/LICENSE -------------------------------------------------------------------------------- /attic/got-it/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/got-it/Makefile -------------------------------------------------------------------------------- /attic/got-it/README.md: -------------------------------------------------------------------------------- 1 | # got-it -------------------------------------------------------------------------------- /attic/got-it/api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/got-it/api.txt -------------------------------------------------------------------------------- /attic/got-it/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/got-it/index.html -------------------------------------------------------------------------------- /attic/got-it/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/got-it/main.go -------------------------------------------------------------------------------- /attic/got-it/speaker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/got-it/speaker.html -------------------------------------------------------------------------------- /attic/got-it/vendor/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/got-it/vendor/manifest -------------------------------------------------------------------------------- /attic/replaybench/.github/branches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/replaybench/.github/branches.json -------------------------------------------------------------------------------- /attic/replaybench/.github/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/replaybench/.github/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/replaybench/.github/contributors.json -------------------------------------------------------------------------------- /attic/replaybench/.github/forks.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/replaybench/.github/issues.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/replaybench/.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/replaybench/.github/labels.json -------------------------------------------------------------------------------- /attic/replaybench/.github/languages.json: -------------------------------------------------------------------------------- 1 | {"Go":2345} -------------------------------------------------------------------------------- /attic/replaybench/.github/milestones.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/replaybench/.github/pulls.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/replaybench/.github/releases.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/replaybench/.github/repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/replaybench/.github/repo.json -------------------------------------------------------------------------------- /attic/replaybench/.github/stargazers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/replaybench/.github/stargazers.json -------------------------------------------------------------------------------- /attic/replaybench/.github/subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/replaybench/.github/subscribers.json -------------------------------------------------------------------------------- /attic/replaybench/.github/tags.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/replaybench/.github/topics.json: -------------------------------------------------------------------------------- 1 | {"names":[]} -------------------------------------------------------------------------------- /attic/replaybench/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/replaybench/.gitignore -------------------------------------------------------------------------------- /attic/replaybench/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/replaybench/LICENSE -------------------------------------------------------------------------------- /attic/replaybench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/replaybench/README.md -------------------------------------------------------------------------------- /attic/replaybench/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/replaybench/conn.go -------------------------------------------------------------------------------- /attic/scavhunt/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/scavhunt/Pipfile -------------------------------------------------------------------------------- /attic/scavhunt/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/scavhunt/Pipfile.lock -------------------------------------------------------------------------------- /attic/scavhunt/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/scavhunt/requirements.txt -------------------------------------------------------------------------------- /attic/scavhunt/scavhunt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/scavhunt/scavhunt.py -------------------------------------------------------------------------------- /attic/scavhunt/scavhunt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/scavhunt/scavhunt.yml -------------------------------------------------------------------------------- /attic/tlsbench/.github/branches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/tlsbench/.github/branches.json -------------------------------------------------------------------------------- /attic/tlsbench/.github/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/tlsbench/.github/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/tlsbench/.github/contributors.json -------------------------------------------------------------------------------- /attic/tlsbench/.github/forks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/tlsbench/.github/forks.json -------------------------------------------------------------------------------- /attic/tlsbench/.github/issues.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/tlsbench/.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/tlsbench/.github/labels.json -------------------------------------------------------------------------------- /attic/tlsbench/.github/languages.json: -------------------------------------------------------------------------------- 1 | {"Go":6618,"Makefile":2854} -------------------------------------------------------------------------------- /attic/tlsbench/.github/milestones.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/tlsbench/.github/pulls.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/tlsbench/.github/releases.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/tlsbench/.github/repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/tlsbench/.github/repo.json -------------------------------------------------------------------------------- /attic/tlsbench/.github/stargazers.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/tlsbench/.github/subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/tlsbench/.github/subscribers.json -------------------------------------------------------------------------------- /attic/tlsbench/.github/tags.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /attic/tlsbench/.github/topics.json: -------------------------------------------------------------------------------- 1 | {"names":[]} -------------------------------------------------------------------------------- /attic/tlsbench/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/tlsbench/.gitignore -------------------------------------------------------------------------------- /attic/tlsbench/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/tlsbench/LICENSE -------------------------------------------------------------------------------- /attic/tlsbench/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/tlsbench/Makefile -------------------------------------------------------------------------------- /attic/tlsbench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/tlsbench/README.md -------------------------------------------------------------------------------- /attic/tlsbench/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/tlsbench/histogram.go -------------------------------------------------------------------------------- /attic/tlsbench/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/tlsbench/main.go -------------------------------------------------------------------------------- /attic/tlsbench/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/tlsbench/runner.go -------------------------------------------------------------------------------- /attic/tlsbench/vendor/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/attic/tlsbench/vendor/manifest -------------------------------------------------------------------------------- /benchdiff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/benchdiff/LICENSE -------------------------------------------------------------------------------- /benchdiff/benchdiff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/benchdiff/benchdiff.go -------------------------------------------------------------------------------- /benchdiff/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/benchdiff/go.mod -------------------------------------------------------------------------------- /benchdiff/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/benchdiff/go.sum -------------------------------------------------------------------------------- /benchrand/chacha_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/benchrand/chacha_arm64.go -------------------------------------------------------------------------------- /benchrand/chacha_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/benchrand/chacha_arm64.s -------------------------------------------------------------------------------- /benchrand/chacha_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/benchrand/chacha_generic.go -------------------------------------------------------------------------------- /benchrand/chacha_noasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/benchrand/chacha_noasm.go -------------------------------------------------------------------------------- /benchrand/go.mod: -------------------------------------------------------------------------------- 1 | module filippo.io/mostly-harmless/benchrand 2 | 3 | go 1.20 4 | -------------------------------------------------------------------------------- /benchrand/rand_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/benchrand/rand_test.go -------------------------------------------------------------------------------- /browserpass-age/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/browserpass-age/LICENSE -------------------------------------------------------------------------------- /browserpass-age/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/browserpass-age/README -------------------------------------------------------------------------------- /browserpass-age/chrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/browserpass-age/chrome.json -------------------------------------------------------------------------------- /browserpass-age/configure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/browserpass-age/configure.go -------------------------------------------------------------------------------- /browserpass-age/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/browserpass-age/fetch.go -------------------------------------------------------------------------------- /browserpass-age/firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/browserpass-age/firefox.json -------------------------------------------------------------------------------- /browserpass-age/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/browserpass-age/go.mod -------------------------------------------------------------------------------- /browserpass-age/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/browserpass-age/go.sum -------------------------------------------------------------------------------- /browserpass-age/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/browserpass-age/list.go -------------------------------------------------------------------------------- /browserpass-age/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/browserpass-age/main.go -------------------------------------------------------------------------------- /browserpass-age/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/browserpass-age/tree.go -------------------------------------------------------------------------------- /browserpass-age/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/browserpass-age/ui.go -------------------------------------------------------------------------------- /cliplet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cliplet/README.md -------------------------------------------------------------------------------- /cliplet/cliplet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cliplet/cliplet.js -------------------------------------------------------------------------------- /covfefe/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/.gitignore -------------------------------------------------------------------------------- /covfefe/DESIGN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/DESIGN -------------------------------------------------------------------------------- /covfefe/cmd/covfefe/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/cmd/covfefe/main.go -------------------------------------------------------------------------------- /covfefe/cmd/drain/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/cmd/drain/main.go -------------------------------------------------------------------------------- /covfefe/cmd/enroll/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/cmd/enroll/main.go -------------------------------------------------------------------------------- /covfefe/cmd/rescan/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/cmd/rescan/main.go -------------------------------------------------------------------------------- /covfefe/cmd/webfefe/data/_templates/empty.go: -------------------------------------------------------------------------------- 1 | package empty 2 | 3 | // Workaround https://github.com/golang/go/issues/31603. 4 | -------------------------------------------------------------------------------- /covfefe/cmd/webfefe/data/templates_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/cmd/webfefe/data/templates_dev.go -------------------------------------------------------------------------------- /covfefe/cmd/webfefe/data/templates_generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/cmd/webfefe/data/templates_generate.go -------------------------------------------------------------------------------- /covfefe/cmd/webfefe/data/templates_vfsdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/cmd/webfefe/data/templates_vfsdata.go -------------------------------------------------------------------------------- /covfefe/cmd/webfefe/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/cmd/webfefe/database.go -------------------------------------------------------------------------------- /covfefe/cmd/webfefe/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/cmd/webfefe/main.go -------------------------------------------------------------------------------- /covfefe/cmd/webfefe/twitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/cmd/webfefe/twitter.go -------------------------------------------------------------------------------- /covfefe/covfefe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/covfefe.go -------------------------------------------------------------------------------- /covfefe/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/db.go -------------------------------------------------------------------------------- /covfefe/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/go.mod -------------------------------------------------------------------------------- /covfefe/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/go.sum -------------------------------------------------------------------------------- /covfefe/migration.01.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/migration.01.sql -------------------------------------------------------------------------------- /covfefe/migration.02.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/migration.02.sql -------------------------------------------------------------------------------- /covfefe/migration.03.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/migration.03.sql -------------------------------------------------------------------------------- /covfefe/migration.04.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/migration.04.sql -------------------------------------------------------------------------------- /covfefe/migration.05.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/migration.05.sql -------------------------------------------------------------------------------- /covfefe/migration.06.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/migration.06.sql -------------------------------------------------------------------------------- /covfefe/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/process.go -------------------------------------------------------------------------------- /covfefe/rescan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/rescan.go -------------------------------------------------------------------------------- /covfefe/twitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/covfefe/twitter.go -------------------------------------------------------------------------------- /cryptopals/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/10.txt -------------------------------------------------------------------------------- /cryptopals/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/20.txt -------------------------------------------------------------------------------- /cryptopals/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/4.txt -------------------------------------------------------------------------------- /cryptopals/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/6.txt -------------------------------------------------------------------------------- /cryptopals/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/7.txt -------------------------------------------------------------------------------- /cryptopals/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/8.txt -------------------------------------------------------------------------------- /cryptopals/set1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/set1.go -------------------------------------------------------------------------------- /cryptopals/set1_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/set1_test.go -------------------------------------------------------------------------------- /cryptopals/set2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/set2.go -------------------------------------------------------------------------------- /cryptopals/set2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/set2.txt -------------------------------------------------------------------------------- /cryptopals/set2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/set2_test.go -------------------------------------------------------------------------------- /cryptopals/set3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/set3.go -------------------------------------------------------------------------------- /cryptopals/set3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/set3.txt -------------------------------------------------------------------------------- /cryptopals/set3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/set3_test.go -------------------------------------------------------------------------------- /cryptopals/set4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/set4.go -------------------------------------------------------------------------------- /cryptopals/set4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/set4_test.go -------------------------------------------------------------------------------- /cryptopals/set5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/set5.go -------------------------------------------------------------------------------- /cryptopals/set5_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/set5_test.go -------------------------------------------------------------------------------- /cryptopals/set6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/set6.go -------------------------------------------------------------------------------- /cryptopals/set6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/set6.txt -------------------------------------------------------------------------------- /cryptopals/set6_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/set6_test.go -------------------------------------------------------------------------------- /cryptopals/set7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/set7.go -------------------------------------------------------------------------------- /cryptopals/set7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/set7.txt -------------------------------------------------------------------------------- /cryptopals/set7_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/set7_test.go -------------------------------------------------------------------------------- /cryptopals/testdata/aliceinwonderland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptopals/testdata/aliceinwonderland.txt -------------------------------------------------------------------------------- /cryptosource/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptosource/LICENSE -------------------------------------------------------------------------------- /cryptosource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptosource/README.md -------------------------------------------------------------------------------- /cryptosource/go.mod: -------------------------------------------------------------------------------- 1 | module filippo.io/mostly-harmless/cryptosource 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /cryptosource/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptosource/source.go -------------------------------------------------------------------------------- /cryptosource/source_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/cryptosource/source_test.go -------------------------------------------------------------------------------- /ct-uptime-alerts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/ct-uptime-alerts/Dockerfile -------------------------------------------------------------------------------- /ct-uptime-alerts/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/ct-uptime-alerts/fly.toml -------------------------------------------------------------------------------- /ct-uptime-alerts/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/ct-uptime-alerts/go.mod -------------------------------------------------------------------------------- /ct-uptime-alerts/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/ct-uptime-alerts/go.sum -------------------------------------------------------------------------------- /ct-uptime-alerts/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/ct-uptime-alerts/main.go -------------------------------------------------------------------------------- /ct-uptime-alerts/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/ct-uptime-alerts/main_test.go -------------------------------------------------------------------------------- /custodian/.github/branches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/custodian/.github/branches.json -------------------------------------------------------------------------------- /custodian/.github/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /custodian/.github/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/custodian/.github/contributors.json -------------------------------------------------------------------------------- /custodian/.github/forks.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /custodian/.github/issues.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /custodian/.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/custodian/.github/labels.json -------------------------------------------------------------------------------- /custodian/.github/languages.json: -------------------------------------------------------------------------------- 1 | {"TypeScript":12269} -------------------------------------------------------------------------------- /custodian/.github/milestones.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /custodian/.github/pulls.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /custodian/.github/releases.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /custodian/.github/repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/custodian/.github/repo.json -------------------------------------------------------------------------------- /custodian/.github/stargazers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/custodian/.github/stargazers.json -------------------------------------------------------------------------------- /custodian/.github/subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/custodian/.github/subscribers.json -------------------------------------------------------------------------------- /custodian/.github/tags.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /custodian/.github/topics.json: -------------------------------------------------------------------------------- 1 | {"names":[]} -------------------------------------------------------------------------------- /custodian/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /built 3 | -------------------------------------------------------------------------------- /custodian/FUTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/custodian/FUTURE.md -------------------------------------------------------------------------------- /custodian/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/custodian/package.json -------------------------------------------------------------------------------- /custodian/src/UNSUPPORTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/custodian/src/UNSUPPORTED.md -------------------------------------------------------------------------------- /custodian/src/freezer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/custodian/src/freezer.ts -------------------------------------------------------------------------------- /custodian/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/custodian/tsconfig.json -------------------------------------------------------------------------------- /custodian/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/custodian/yarn.lock -------------------------------------------------------------------------------- /dcbot/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/dcbot/db.go -------------------------------------------------------------------------------- /dcbot/documentcloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/dcbot/documentcloud.go -------------------------------------------------------------------------------- /dcbot/drain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/dcbot/drain.go -------------------------------------------------------------------------------- /dcbot/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/dcbot/go.mod -------------------------------------------------------------------------------- /dcbot/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/dcbot/go.sum -------------------------------------------------------------------------------- /dcbot/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/dcbot/main.go -------------------------------------------------------------------------------- /dcbot/modules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/dcbot/modules.go -------------------------------------------------------------------------------- /dirstat/dirstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/dirstat/dirstat.go -------------------------------------------------------------------------------- /dirstat/go.mod: -------------------------------------------------------------------------------- 1 | module filippo.io/mostly-harmless/dirstat 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /dockerdns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/dockerdns/README.md -------------------------------------------------------------------------------- /dockerdns/dockerdns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/dockerdns/dockerdns.go -------------------------------------------------------------------------------- /dockerdns/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/dockerdns/go.mod -------------------------------------------------------------------------------- /dockerdns/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/dockerdns/go.sum -------------------------------------------------------------------------------- /ed25519vectors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/ed25519vectors/LICENSE -------------------------------------------------------------------------------- /ed25519vectors/blocklists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/ed25519vectors/blocklists.txt -------------------------------------------------------------------------------- /ed25519vectors/ed25519vectors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/ed25519vectors/ed25519vectors.go -------------------------------------------------------------------------------- /ed25519vectors/ed25519vectors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/ed25519vectors/ed25519vectors.json -------------------------------------------------------------------------------- /ed25519vectors/ed25519vectors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/ed25519vectors/ed25519vectors_test.go -------------------------------------------------------------------------------- /ed25519vectors/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/ed25519vectors/go.mod -------------------------------------------------------------------------------- /ed25519vectors/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/ed25519vectors/go.sum -------------------------------------------------------------------------------- /filippo.fly.dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/Dockerfile -------------------------------------------------------------------------------- /filippo.fly.dev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/Makefile -------------------------------------------------------------------------------- /filippo.fly.dev/buttondown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/buttondown.go -------------------------------------------------------------------------------- /filippo.fly.dev/buttondown_email.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/buttondown_email.html.tmpl -------------------------------------------------------------------------------- /filippo.fly.dev/buttondown_index.html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/buttondown_index.html.tmpl -------------------------------------------------------------------------------- /filippo.fly.dev/dl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/dl.go -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/Badfish/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/Badfish/.gitignore -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/Badfish/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/Badfish/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/Badfish/css/demo.css -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/Badfish/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/Badfish/css/docs.css -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/Badfish/finally.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/Badfish/finally.js -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/Badfish/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/Badfish/index.html -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/Badfish/no2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/Badfish/no2.png -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/Badfish/yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/Badfish/yes.png -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/Heartbleed/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/Heartbleed/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/Heartbleed/faq.html -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/behindthesofa/README.md: -------------------------------------------------------------------------------- 1 | # behindthesofa -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/dnskey-to-ds/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/dnskey-to-ds/LICENSE -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/donating.tech/CNAME: -------------------------------------------------------------------------------- 1 | donating.tech 2 | -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/images/Tux-ECB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/images/Tux-ECB.png -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/images/clients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/images/clients.png -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/images/code_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/images/code_bg.png -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/images/cpu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/images/cpu.jpg -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/images/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/images/email.png -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/images/filippo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/images/filippo.jpg -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/images/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/images/grey.png -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/images/logo.png -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/images/nicola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/images/nicola.png -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/images/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/images/noise.png -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/images/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/images/rss.png -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/images/search.png -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/images/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/images/test.png -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/images/unnamed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/images/unnamed.png -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/index.html -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/rwc2023/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/rwc2023/index.html -------------------------------------------------------------------------------- /filippo.fly.dev/filippo.io/rwc2024/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/filippo.io/rwc2024/index.html -------------------------------------------------------------------------------- /filippo.fly.dev/fips140.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/fips140.html -------------------------------------------------------------------------------- /filippo.fly.dev/fips140.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/fips140.md -------------------------------------------------------------------------------- /filippo.fly.dev/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/fly.toml -------------------------------------------------------------------------------- /filippo.fly.dev/fonts: -------------------------------------------------------------------------------- 1 | filippo.io/fonts -------------------------------------------------------------------------------- /filippo.fly.dev/frequent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/frequent.go -------------------------------------------------------------------------------- /filippo.fly.dev/geomys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/geomys.html -------------------------------------------------------------------------------- /filippo.fly.dev/geomys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/geomys.md -------------------------------------------------------------------------------- /filippo.fly.dev/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/go.mod -------------------------------------------------------------------------------- /filippo.fly.dev/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/go.sum -------------------------------------------------------------------------------- /filippo.fly.dev/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/handler_test.go -------------------------------------------------------------------------------- /filippo.fly.dev/handler_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/handler_test.txt -------------------------------------------------------------------------------- /filippo.fly.dev/images: -------------------------------------------------------------------------------- 1 | filippo.io/images -------------------------------------------------------------------------------- /filippo.fly.dev/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/main.go -------------------------------------------------------------------------------- /filippo.fly.dev/md2html/md2html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/md2html/md2html.go -------------------------------------------------------------------------------- /filippo.fly.dev/navigli.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/navigli.html -------------------------------------------------------------------------------- /filippo.fly.dev/navigli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/navigli.md -------------------------------------------------------------------------------- /filippo.fly.dev/redirects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/redirects.go -------------------------------------------------------------------------------- /filippo.fly.dev/sunlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/sunlight.html -------------------------------------------------------------------------------- /filippo.fly.dev/sunlight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/sunlight.md -------------------------------------------------------------------------------- /filippo.fly.dev/tos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/tos.html -------------------------------------------------------------------------------- /filippo.fly.dev/tos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/filippo.fly.dev/tos.md -------------------------------------------------------------------------------- /frood/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/.gitignore -------------------------------------------------------------------------------- /frood/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/README.md -------------------------------------------------------------------------------- /frood/cmd/srvmonitor/srvmonitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/cmd/srvmonitor/srvmonitor.go -------------------------------------------------------------------------------- /frood/frood: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/frood -------------------------------------------------------------------------------- /frood/frood-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/frood-build.sh -------------------------------------------------------------------------------- /frood/frood-mkimg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/frood-mkimg.sh -------------------------------------------------------------------------------- /frood/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/go.mod -------------------------------------------------------------------------------- /frood/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/go.sum -------------------------------------------------------------------------------- /frood/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/packages -------------------------------------------------------------------------------- /frood/root/etc/conf.d/seedrng: -------------------------------------------------------------------------------- 1 | seed_dir=/media/usb/persist/seedrng 2 | -------------------------------------------------------------------------------- /frood/root/etc/conf.d/sshd: -------------------------------------------------------------------------------- 1 | sshd_disable_keygen=yes 2 | -------------------------------------------------------------------------------- /frood/root/etc/conf.d/tailscale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/conf.d/tailscale -------------------------------------------------------------------------------- /frood/root/etc/conf.d/zfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/conf.d/zfs -------------------------------------------------------------------------------- /frood/root/etc/dhcpcd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/dhcpcd.conf -------------------------------------------------------------------------------- /frood/root/etc/fstab: -------------------------------------------------------------------------------- 1 | UUID=B61B-19E7 /media/usb vfat noatime,rw,fmask=177 0 0 2 | -------------------------------------------------------------------------------- /frood/root/etc/hostname: -------------------------------------------------------------------------------- 1 | frood 2 | -------------------------------------------------------------------------------- /frood/root/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/hosts -------------------------------------------------------------------------------- /frood/root/etc/init.d/srvmonitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/init.d/srvmonitor -------------------------------------------------------------------------------- /frood/root/etc/init.d/tler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/init.d/tler -------------------------------------------------------------------------------- /frood/root/etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/inittab -------------------------------------------------------------------------------- /frood/root/etc/ksmbd/ksmbd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/ksmbd/ksmbd.conf -------------------------------------------------------------------------------- /frood/root/etc/local.d/hello.start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/local.d/hello.start -------------------------------------------------------------------------------- /frood/root/etc/modules-load.d/tailscale.conf: -------------------------------------------------------------------------------- 1 | tun 2 | -------------------------------------------------------------------------------- /frood/root/etc/modules-load.d/zfs.conf: -------------------------------------------------------------------------------- 1 | zfs 2 | -------------------------------------------------------------------------------- /frood/root/etc/monitor.d/fdisk.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | fdisk -l 3 | -------------------------------------------------------------------------------- /frood/root/etc/monitor.d/index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/monitor.d/index.sh -------------------------------------------------------------------------------- /frood/root/etc/monitor.d/messages.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat /var/log/messages 3 | -------------------------------------------------------------------------------- /frood/root/etc/monitor.d/mount.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mount 3 | -------------------------------------------------------------------------------- /frood/root/etc/monitor.d/netstat.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | netstat -a 3 | -------------------------------------------------------------------------------- /frood/root/etc/monitor.d/zfs-get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/monitor.d/zfs-get.sh -------------------------------------------------------------------------------- /frood/root/etc/monitor.d/zfs-list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/monitor.d/zfs-list.sh -------------------------------------------------------------------------------- /frood/root/etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/motd -------------------------------------------------------------------------------- /frood/root/etc/network/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/network/interfaces -------------------------------------------------------------------------------- /frood/root/etc/periodic/15min/inactive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/periodic/15min/inactive.sh -------------------------------------------------------------------------------- /frood/root/etc/profile.d/motd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/profile.d/motd.sh -------------------------------------------------------------------------------- /frood/root/etc/smartd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/smartd.conf -------------------------------------------------------------------------------- /frood/root/etc/ssh/ssh_host_ed25519_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/ssh/ssh_host_ed25519_key.pub -------------------------------------------------------------------------------- /frood/root/etc/ssh/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/ssh/sshd_config -------------------------------------------------------------------------------- /frood/root/etc/ssl/frood.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/ssl/frood.pem -------------------------------------------------------------------------------- /frood/root/etc/zfs/zed.d/zed.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/etc/zfs/zed.d/zed.rc -------------------------------------------------------------------------------- /frood/root/root/.ssh/authorized_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/root/.ssh/authorized_keys -------------------------------------------------------------------------------- /frood/root/usr/local/bin/mail-alert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/usr/local/bin/mail-alert -------------------------------------------------------------------------------- /frood/root/usr/local/bin/snapshot: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec zfs snapshot "$1@$(date -u +%Y-%m-%dT%H:%M:%SUTC)" 4 | -------------------------------------------------------------------------------- /frood/root/var/lib/dhcpcd/duid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/root/var/lib/dhcpcd/duid -------------------------------------------------------------------------------- /frood/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/setup.sh -------------------------------------------------------------------------------- /frood/tests/perms_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/frood/tests/perms_test.go -------------------------------------------------------------------------------- /garkbit/garkbit.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/garkbit/garkbit.service -------------------------------------------------------------------------------- /garkbit/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/garkbit/go.mod -------------------------------------------------------------------------------- /garkbit/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/garkbit/go.sum -------------------------------------------------------------------------------- /garkbit/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/garkbit/main.go -------------------------------------------------------------------------------- /github-metadata/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/github-metadata/go.mod -------------------------------------------------------------------------------- /github-metadata/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/github-metadata/go.sum -------------------------------------------------------------------------------- /github-metadata/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/github-metadata/main.go -------------------------------------------------------------------------------- /golink/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/golink/fly.toml -------------------------------------------------------------------------------- /hntitles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/hntitles/README.md -------------------------------------------------------------------------------- /hntitles/hntitles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/hntitles/hntitles.py -------------------------------------------------------------------------------- /hntitles/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/hntitles/requirements.txt -------------------------------------------------------------------------------- /hydrate-twitter-archive/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/hydrate-twitter-archive/LICENSE -------------------------------------------------------------------------------- /hydrate-twitter-archive/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/hydrate-twitter-archive/Pipfile -------------------------------------------------------------------------------- /hydrate-twitter-archive/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/hydrate-twitter-archive/Pipfile.lock -------------------------------------------------------------------------------- /hydrate-twitter-archive/photos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/hydrate-twitter-archive/photos.py -------------------------------------------------------------------------------- /hydrate-twitter-archive/profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/hydrate-twitter-archive/profiles.py -------------------------------------------------------------------------------- /hydrate-twitter-archive/timelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/hydrate-twitter-archive/timelines.py -------------------------------------------------------------------------------- /hydrate-twitter-archive/tweets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/hydrate-twitter-archive/tweets.py -------------------------------------------------------------------------------- /hydrate-twitter-archive/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/hydrate-twitter-archive/users.py -------------------------------------------------------------------------------- /jj-codereview/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/jj-codereview/README -------------------------------------------------------------------------------- /jj-codereview/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/jj-codereview/api.go -------------------------------------------------------------------------------- /jj-codereview/cleanup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/jj-codereview/cleanup.go -------------------------------------------------------------------------------- /jj-codereview/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/jj-codereview/fetch.go -------------------------------------------------------------------------------- /jj-codereview/go.mod: -------------------------------------------------------------------------------- 1 | module filippo.io/mostly-harmless/jj-codereview 2 | 3 | go 1.23.4 4 | -------------------------------------------------------------------------------- /jj-codereview/jj.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/jj-codereview/jj.go -------------------------------------------------------------------------------- /jj-codereview/mail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/jj-codereview/mail.go -------------------------------------------------------------------------------- /jj-codereview/review.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/jj-codereview/review.go -------------------------------------------------------------------------------- /llm-fragments-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/llm-fragments-go/README.md -------------------------------------------------------------------------------- /llm-fragments-go/llm_fragments_go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/llm-fragments-go/llm_fragments_go.py -------------------------------------------------------------------------------- /llm-fragments-go/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/llm-fragments-go/pyproject.toml -------------------------------------------------------------------------------- /llm-fragments-go/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/llm-fragments-go/uv.lock -------------------------------------------------------------------------------- /md-ld/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/md-ld/go.mod -------------------------------------------------------------------------------- /md-ld/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/md-ld/go.sum -------------------------------------------------------------------------------- /md-ld/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/md-ld/main.go -------------------------------------------------------------------------------- /mimitikz/go.mod: -------------------------------------------------------------------------------- 1 | module filippo.io/mostly-harmless/mimitikz 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /mimitikz/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/mimitikz/main.go -------------------------------------------------------------------------------- /mip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/mip/README.md -------------------------------------------------------------------------------- /mip/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/mip/go.mod -------------------------------------------------------------------------------- /mip/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/mip/go.sum -------------------------------------------------------------------------------- /mip/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/mip/main.go -------------------------------------------------------------------------------- /mip/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/mip/main_test.go -------------------------------------------------------------------------------- /mip/testdata/modules-in-process-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/mip/testdata/modules-in-process-list -------------------------------------------------------------------------------- /osx-nvram/.github/branches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/osx-nvram/.github/branches.json -------------------------------------------------------------------------------- /osx-nvram/.github/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /osx-nvram/.github/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/osx-nvram/.github/contributors.json -------------------------------------------------------------------------------- /osx-nvram/.github/forks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/osx-nvram/.github/forks.json -------------------------------------------------------------------------------- /osx-nvram/.github/issues.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /osx-nvram/.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/osx-nvram/.github/labels.json -------------------------------------------------------------------------------- /osx-nvram/.github/languages.json: -------------------------------------------------------------------------------- 1 | {"C":4782,"Go":3050} -------------------------------------------------------------------------------- /osx-nvram/.github/milestones.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /osx-nvram/.github/pulls.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /osx-nvram/.github/releases.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /osx-nvram/.github/repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/osx-nvram/.github/repo.json -------------------------------------------------------------------------------- /osx-nvram/.github/stargazers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/osx-nvram/.github/stargazers.json -------------------------------------------------------------------------------- /osx-nvram/.github/subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/osx-nvram/.github/subscribers.json -------------------------------------------------------------------------------- /osx-nvram/.github/tags.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /osx-nvram/.github/topics.json: -------------------------------------------------------------------------------- 1 | {"names":[]} -------------------------------------------------------------------------------- /osx-nvram/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/osx-nvram/LICENSE -------------------------------------------------------------------------------- /osx-nvram/go.mod: -------------------------------------------------------------------------------- 1 | module filippo.io/mostly-harmless/osx-nvram 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /osx-nvram/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/osx-nvram/nvram.c -------------------------------------------------------------------------------- /osx-nvram/nvram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/osx-nvram/nvram.go -------------------------------------------------------------------------------- /osx-nvram/nvram_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/osx-nvram/nvram_test.go -------------------------------------------------------------------------------- /paper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/paper/LICENSE -------------------------------------------------------------------------------- /paper/bip39.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/paper/bip39.go -------------------------------------------------------------------------------- /paper/bip39_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/paper/bip39_test.go -------------------------------------------------------------------------------- /paper/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/paper/go.mod -------------------------------------------------------------------------------- /paper/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/paper/go.sum -------------------------------------------------------------------------------- /paper/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/paper/main.go -------------------------------------------------------------------------------- /paper/pgp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/paper/pgp.go -------------------------------------------------------------------------------- /paper/pgp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/paper/pgp_test.go -------------------------------------------------------------------------------- /paper/testdata/pgp.backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/paper/testdata/pgp.backup.txt -------------------------------------------------------------------------------- /paper/testdata/pgp.public.armor.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/paper/testdata/pgp.public.armor.asc -------------------------------------------------------------------------------- /paper/testdata/pgp.public.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/paper/testdata/pgp.public.asc -------------------------------------------------------------------------------- /paper/testdata/pgp.secret.password.armor.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/paper/testdata/pgp.secret.password.armor.asc -------------------------------------------------------------------------------- /paper/testdata/pgp.secret.password.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/paper/testdata/pgp.secret.password.asc -------------------------------------------------------------------------------- /paper/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/paper/ui.go -------------------------------------------------------------------------------- /pbstrip/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/pbstrip/go.mod -------------------------------------------------------------------------------- /pbstrip/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/pbstrip/go.sum -------------------------------------------------------------------------------- /pbstrip/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/pbstrip/main.go -------------------------------------------------------------------------------- /pkguninstall/.github/branches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/pkguninstall/.github/branches.json -------------------------------------------------------------------------------- /pkguninstall/.github/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /pkguninstall/.github/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/pkguninstall/.github/contributors.json -------------------------------------------------------------------------------- /pkguninstall/.github/forks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/pkguninstall/.github/forks.json -------------------------------------------------------------------------------- /pkguninstall/.github/issues.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /pkguninstall/.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/pkguninstall/.github/labels.json -------------------------------------------------------------------------------- /pkguninstall/.github/languages.json: -------------------------------------------------------------------------------- 1 | {"Shell":2334} -------------------------------------------------------------------------------- /pkguninstall/.github/milestones.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /pkguninstall/.github/pulls.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /pkguninstall/.github/releases.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /pkguninstall/.github/repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/pkguninstall/.github/repo.json -------------------------------------------------------------------------------- /pkguninstall/.github/stargazers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/pkguninstall/.github/stargazers.json -------------------------------------------------------------------------------- /pkguninstall/.github/subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/pkguninstall/.github/subscribers.json -------------------------------------------------------------------------------- /pkguninstall/.github/tags.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /pkguninstall/.github/topics.json: -------------------------------------------------------------------------------- 1 | {"names":[]} -------------------------------------------------------------------------------- /pkguninstall/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/pkguninstall/LICENSE -------------------------------------------------------------------------------- /pkguninstall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/pkguninstall/README.md -------------------------------------------------------------------------------- /pkguninstall/pkguninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/pkguninstall/pkguninstall -------------------------------------------------------------------------------- /public-config/go.mod: -------------------------------------------------------------------------------- 1 | module filippo.io/mostly-harmless/public-config 2 | 3 | go 1.24.3 4 | -------------------------------------------------------------------------------- /public-config/public-config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/public-config/public-config.go -------------------------------------------------------------------------------- /rare/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/rare/go.mod -------------------------------------------------------------------------------- /rare/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/rare/go.sum -------------------------------------------------------------------------------- /rare/influxdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/rare/influxdb.go -------------------------------------------------------------------------------- /rare/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/rare/main.go -------------------------------------------------------------------------------- /reput/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/reput/LICENSE -------------------------------------------------------------------------------- /reput/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/reput/README -------------------------------------------------------------------------------- /reput/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/reput/go.mod -------------------------------------------------------------------------------- /reput/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/reput/go.sum -------------------------------------------------------------------------------- /reput/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/reput/main.go -------------------------------------------------------------------------------- /shower/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/shower/Pipfile -------------------------------------------------------------------------------- /shower/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/shower/Pipfile.lock -------------------------------------------------------------------------------- /shower/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/shower/plot.py -------------------------------------------------------------------------------- /standard-backup/go.mod: -------------------------------------------------------------------------------- 1 | module filippo.io/mostly-harmless/standard-backup 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /standard-backup/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/standard-backup/main.go -------------------------------------------------------------------------------- /standard-decrypt/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/standard-decrypt/go.mod -------------------------------------------------------------------------------- /standard-decrypt/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/standard-decrypt/go.sum -------------------------------------------------------------------------------- /standard-decrypt/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/standard-decrypt/main.go -------------------------------------------------------------------------------- /sumdb-explorer/domainr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/sumdb-explorer/domainr.go -------------------------------------------------------------------------------- /sumdb-explorer/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/sumdb-explorer/go.mod -------------------------------------------------------------------------------- /sumdb-explorer/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/sumdb-explorer/go.sum -------------------------------------------------------------------------------- /sumdb-explorer/ingest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/sumdb-explorer/ingest.go -------------------------------------------------------------------------------- /sumdb-explorer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/sumdb-explorer/main.go -------------------------------------------------------------------------------- /survey-roots/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/survey-roots/LICENSE -------------------------------------------------------------------------------- /survey-roots/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/survey-roots/go.mod -------------------------------------------------------------------------------- /survey-roots/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/survey-roots/go.sum -------------------------------------------------------------------------------- /survey-roots/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/survey-roots/main.go -------------------------------------------------------------------------------- /survey-roots/survey-20200412.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/survey-roots/survey-20200412.txt -------------------------------------------------------------------------------- /survey-roots/survey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/survey-roots/survey.go -------------------------------------------------------------------------------- /talks/High-Assurance Go Cryptography.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/High-Assurance Go Cryptography.txt -------------------------------------------------------------------------------- /talks/asyncnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/asyncnet/README.md -------------------------------------------------------------------------------- /talks/asyncnet/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/asyncnet/main.go -------------------------------------------------------------------------------- /talks/asyncnet/prepared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/asyncnet/prepared.go -------------------------------------------------------------------------------- /talks/asyncnet/stages/0_acceptloop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/asyncnet/stages/0_acceptloop.go -------------------------------------------------------------------------------- /talks/asyncnet/stages/1_timeouts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/asyncnet/stages/1_timeouts.go -------------------------------------------------------------------------------- /talks/asyncnet/stages/2_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/asyncnet/stages/2_proxy.go -------------------------------------------------------------------------------- /talks/asyncnet/stages/3_logsni.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/asyncnet/stages/3_logsni.go -------------------------------------------------------------------------------- /talks/asyncnet/stages/4_proxyandsni.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/asyncnet/stages/4_proxyandsni.go -------------------------------------------------------------------------------- /talks/asyncnet/stages/5_cryptotls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/asyncnet/stages/5_cryptotls.go -------------------------------------------------------------------------------- /talks/asyncnet/stages/99_tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/asyncnet/stages/99_tls.go -------------------------------------------------------------------------------- /talks/asyncnet/stages/other/extragoroutine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/asyncnet/stages/other/extragoroutine.go -------------------------------------------------------------------------------- /talks/asyncnet/stages/other/framedconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/asyncnet/stages/other/framedconn.go -------------------------------------------------------------------------------- /talks/asyncnet/stages/other/snilistener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/asyncnet/stages/other/snilistener.go -------------------------------------------------------------------------------- /talks/asyncnet/stages/other/snilistenergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/asyncnet/stages/other/snilistenergo.go -------------------------------------------------------------------------------- /talks/asyncnet/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/asyncnet/tls.go -------------------------------------------------------------------------------- /talks/fuzz/.github/branches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/fuzz/.github/branches.json -------------------------------------------------------------------------------- /talks/fuzz/.github/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /talks/fuzz/.github/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/fuzz/.github/contributors.json -------------------------------------------------------------------------------- /talks/fuzz/.github/forks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/fuzz/.github/forks.json -------------------------------------------------------------------------------- /talks/fuzz/.github/issues.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /talks/fuzz/.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/fuzz/.github/labels.json -------------------------------------------------------------------------------- /talks/fuzz/.github/languages.json: -------------------------------------------------------------------------------- 1 | {"Go":1068} -------------------------------------------------------------------------------- /talks/fuzz/.github/milestones.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /talks/fuzz/.github/pulls.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /talks/fuzz/.github/releases.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /talks/fuzz/.github/repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/fuzz/.github/repo.json -------------------------------------------------------------------------------- /talks/fuzz/.github/stargazers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/fuzz/.github/stargazers.json -------------------------------------------------------------------------------- /talks/fuzz/.github/subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/fuzz/.github/subscribers.json -------------------------------------------------------------------------------- /talks/fuzz/.github/tags.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /talks/fuzz/.github/topics.json: -------------------------------------------------------------------------------- 1 | {"names":[]} -------------------------------------------------------------------------------- /talks/fuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/fuzz/LICENSE -------------------------------------------------------------------------------- /talks/fuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/fuzz/README.md -------------------------------------------------------------------------------- /talks/fuzz/bugged.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/fuzz/bugged.go -------------------------------------------------------------------------------- /talks/fuzz/bugged_fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/fuzz/bugged_fuzz.go -------------------------------------------------------------------------------- /talks/fuzz/bugged_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/fuzz/bugged_test.go -------------------------------------------------------------------------------- /talks/fuzz/workdir/corpus/example: -------------------------------------------------------------------------------- 1 | Hello World! -------------------------------------------------------------------------------- /talks/fuzz/workdir/crashers/b6589fc6ab0dc82cf12099d1c2d40ab994e8410c: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /talks/fuzz/workdir/crashers/b6589fc6ab0dc82cf12099d1c2d40ab994e8410c.quoted: -------------------------------------------------------------------------------- 1 | "0" 2 | -------------------------------------------------------------------------------- /talks/rustgo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/rustgo/.gitignore -------------------------------------------------------------------------------- /talks/rustgo/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/rustgo/Cargo.lock -------------------------------------------------------------------------------- /talks/rustgo/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/rustgo/Cargo.toml -------------------------------------------------------------------------------- /talks/rustgo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/rustgo/Makefile -------------------------------------------------------------------------------- /talks/rustgo/lldb/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/rustgo/lldb/main.go -------------------------------------------------------------------------------- /talks/rustgo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/rustgo/main.go -------------------------------------------------------------------------------- /talks/rustgo/multiplication/mul.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/rustgo/multiplication/mul.go -------------------------------------------------------------------------------- /talks/rustgo/multiplication/mul.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/rustgo/multiplication/mul.s -------------------------------------------------------------------------------- /talks/rustgo/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/rustgo/src/lib.rs -------------------------------------------------------------------------------- /talks/whycgoisslow/1.8.7.bench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/whycgoisslow/1.8.7.bench.txt -------------------------------------------------------------------------------- /talks/whycgoisslow/callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/whycgoisslow/callback.c -------------------------------------------------------------------------------- /talks/whycgoisslow/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/whycgoisslow/main.go -------------------------------------------------------------------------------- /talks/whycgoisslow/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/whycgoisslow/main_test.go -------------------------------------------------------------------------------- /talks/whycgoisslow/tip.bench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/talks/whycgoisslow/tip.bench.txt -------------------------------------------------------------------------------- /thepiratedb/.github/branches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/thepiratedb/.github/branches.json -------------------------------------------------------------------------------- /thepiratedb/.github/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /thepiratedb/.github/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/thepiratedb/.github/contributors.json -------------------------------------------------------------------------------- /thepiratedb/.github/forks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/thepiratedb/.github/forks.json -------------------------------------------------------------------------------- /thepiratedb/.github/issues.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /thepiratedb/.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/thepiratedb/.github/labels.json -------------------------------------------------------------------------------- /thepiratedb/.github/languages.json: -------------------------------------------------------------------------------- 1 | {"Go":9231} -------------------------------------------------------------------------------- /thepiratedb/.github/milestones.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /thepiratedb/.github/pulls.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /thepiratedb/.github/releases.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /thepiratedb/.github/repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/thepiratedb/.github/repo.json -------------------------------------------------------------------------------- /thepiratedb/.github/stargazers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/thepiratedb/.github/stargazers.json -------------------------------------------------------------------------------- /thepiratedb/.github/subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/thepiratedb/.github/subscribers.json -------------------------------------------------------------------------------- /thepiratedb/.github/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/thepiratedb/.github/tags.json -------------------------------------------------------------------------------- /thepiratedb/.github/topics.json: -------------------------------------------------------------------------------- 1 | {"names":[]} -------------------------------------------------------------------------------- /thepiratedb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/thepiratedb/README.md -------------------------------------------------------------------------------- /thepiratedb/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/thepiratedb/go.mod -------------------------------------------------------------------------------- /thepiratedb/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/thepiratedb/go.sum -------------------------------------------------------------------------------- /thepiratedb/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/thepiratedb/main.go -------------------------------------------------------------------------------- /tlog-torrent/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tlog-torrent/go.mod -------------------------------------------------------------------------------- /tlog-torrent/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tlog-torrent/go.sum -------------------------------------------------------------------------------- /tlog-torrent/internal/torrent/bencode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tlog-torrent/internal/torrent/bencode.go -------------------------------------------------------------------------------- /tlog-torrent/internal/torrent/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tlog-torrent/internal/torrent/files.go -------------------------------------------------------------------------------- /tlog-torrent/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tlog-torrent/main.go -------------------------------------------------------------------------------- /tripit-to-flightdiary/.backup/issues/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tripit-to-flightdiary/.backup/issues/2.json -------------------------------------------------------------------------------- /tripit-to-flightdiary/.backup/issues/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tripit-to-flightdiary/.backup/issues/5.json -------------------------------------------------------------------------------- /tripit-to-flightdiary/.backup/issues/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tripit-to-flightdiary/.backup/issues/6.json -------------------------------------------------------------------------------- /tripit-to-flightdiary/.backup/pulls/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tripit-to-flightdiary/.backup/pulls/1.json -------------------------------------------------------------------------------- /tripit-to-flightdiary/.backup/pulls/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tripit-to-flightdiary/.backup/pulls/3.json -------------------------------------------------------------------------------- /tripit-to-flightdiary/.backup/pulls/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tripit-to-flightdiary/.backup/pulls/4.json -------------------------------------------------------------------------------- /tripit-to-flightdiary/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tripit-to-flightdiary/.gitignore -------------------------------------------------------------------------------- /tripit-to-flightdiary/.python-version: -------------------------------------------------------------------------------- 1 | 3.9.1 2 | -------------------------------------------------------------------------------- /tripit-to-flightdiary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tripit-to-flightdiary/LICENSE -------------------------------------------------------------------------------- /tripit-to-flightdiary/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tripit-to-flightdiary/Pipfile -------------------------------------------------------------------------------- /tripit-to-flightdiary/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tripit-to-flightdiary/Pipfile.lock -------------------------------------------------------------------------------- /tripit-to-flightdiary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tripit-to-flightdiary/README.md -------------------------------------------------------------------------------- /tripit-to-flightdiary/flightradar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tripit-to-flightdiary/flightradar.py -------------------------------------------------------------------------------- /tripit-to-flightdiary/get_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tripit-to-flightdiary/get_token.py -------------------------------------------------------------------------------- /tripit-to-flightdiary/jq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tripit-to-flightdiary/jq.sh -------------------------------------------------------------------------------- /tripit-to-flightdiary/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tripit-to-flightdiary/sync.py -------------------------------------------------------------------------------- /tripit-to-flightdiary/tripit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/tripit-to-flightdiary/tripit.py -------------------------------------------------------------------------------- /twitchy/.gitignore: -------------------------------------------------------------------------------- 1 | /*.json 2 | -------------------------------------------------------------------------------- /twitchy/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/twitchy/go.mod -------------------------------------------------------------------------------- /twitchy/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/twitchy/go.sum -------------------------------------------------------------------------------- /twitchy/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/twitchy/main.go -------------------------------------------------------------------------------- /vrf-r255/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/vrf-r255/LICENSE -------------------------------------------------------------------------------- /vrf-r255/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/vrf-r255/go.mod -------------------------------------------------------------------------------- /vrf-r255/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/vrf-r255/go.sum -------------------------------------------------------------------------------- /vrf-r255/vrf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/vrf-r255/vrf.go -------------------------------------------------------------------------------- /vrf-r255/vrf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/vrf-r255/vrf_test.go -------------------------------------------------------------------------------- /who-needs-http/.github/branches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/who-needs-http/.github/branches.json -------------------------------------------------------------------------------- /who-needs-http/.github/comments.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /who-needs-http/.github/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/who-needs-http/.github/contributors.json -------------------------------------------------------------------------------- /who-needs-http/.github/forks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/who-needs-http/.github/forks.json -------------------------------------------------------------------------------- /who-needs-http/.github/issues.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /who-needs-http/.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/who-needs-http/.github/labels.json -------------------------------------------------------------------------------- /who-needs-http/.github/languages.json: -------------------------------------------------------------------------------- 1 | {"Go":1234} -------------------------------------------------------------------------------- /who-needs-http/.github/milestones.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /who-needs-http/.github/pulls.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /who-needs-http/.github/releases.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /who-needs-http/.github/repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/who-needs-http/.github/repo.json -------------------------------------------------------------------------------- /who-needs-http/.github/stargazers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/who-needs-http/.github/stargazers.json -------------------------------------------------------------------------------- /who-needs-http/.github/subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/who-needs-http/.github/subscribers.json -------------------------------------------------------------------------------- /who-needs-http/.github/tags.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /who-needs-http/.github/topics.json: -------------------------------------------------------------------------------- 1 | {"names":[]} -------------------------------------------------------------------------------- /who-needs-http/go.mod: -------------------------------------------------------------------------------- 1 | module filippo.io/mostly-harmless/who-needs-http 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /who-needs-http/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/who-needs-http/main.go -------------------------------------------------------------------------------- /zfspasskey/age-0.2.3-1-g59d2c94.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/zfspasskey/age-0.2.3-1-g59d2c94.js -------------------------------------------------------------------------------- /zfspasskey/cmd/zfspasskey/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/zfspasskey/cmd/zfspasskey/main.go -------------------------------------------------------------------------------- /zfspasskey/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/zfspasskey/go.mod -------------------------------------------------------------------------------- /zfspasskey/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/zfspasskey/go.sum -------------------------------------------------------------------------------- /zfspasskey/scure-base-1.2.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/zfspasskey/scure-base-1.2.5.js -------------------------------------------------------------------------------- /zfspasskey/zfspasskey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/zfspasskey/zfspasskey.go -------------------------------------------------------------------------------- /zfspasskey/zfspasskey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/mostly-harmless/HEAD/zfspasskey/zfspasskey.html --------------------------------------------------------------------------------