Skip to content

Instantly share code, notes, and snippets.

@toddgrotenhuis
toddgrotenhuis / Security Thinking for Big Data.md
Last active September 16, 2020 18:55
Security Thinking for Big Data

Security Objectives

  • Understand and reduce manageable risks
  • Prepare for problems and quickly recover from harm
  • Adapt our practices based on the changing context

Project Qualities

Dangerous

  • Obfuscation & opacity
  • Scales poorly
  • Causes harm
@ohanhi
ohanhi / frp.md
Last active May 6, 2024 05:17
Learning FP the hard way: Experiences on the Elm language

Learning FP the hard way: Experiences on the Elm language

by Ossi Hanhinen, @ohanhi

with the support of Futurice 💚.

Licensed under CC BY 4.0.

Editorial note

@corny
corny / unifi-backup.sh
Last active January 26, 2024 02:07
Improved backup script for Ubiquiti UniFi controller
#!/bin/bash -e
#
# Improved backup script for Ubiquiti UniFi controller
# original source: http://wiki.ubnt.com/UniFi#Automated_Backup
#
# must contain:
# username=<username>
# password=<password>
source ~/.unifi-backup
@wr0ngway
wr0ngway / backup_sdb.rb
Created March 20, 2012 20:25
script to backup all simpledb tables from a given aws account
#!/usr/bin/env ruby
# Add your gems here
#
gemfile_contents = <<-EOF
source "http://rubygems.org"
gem "fog"
gem "yajl-ruby"
EOF
@pamelafox
pamelafox / selenium_page.py
Created November 30, 2011 22:48
Selenium Utility Funcs
from selenium.common.exceptions import NoSuchElementException, TimeoutException, WebDriverException
class SeleniumPage(object):
driver = None
waiter = None
def open_page(self, url):
self.driver.get(url)