#Power Not Paranoia ##Digital Security Skill Share ###Prepared for the Stop LAPD Spying Coalition
===
##Assessing Risk
####Who/what are we protecting?
####From who are we protecting?
####What are we going to do to protect?
2 - Autos & Vehicles | |
1 - Film & Animation | |
10 - Music | |
15 - Pets & Animals | |
17 - Sports | |
18 - Short Movies | |
19 - Travel & Events | |
20 - Gaming | |
21 - Videoblogging | |
22 - People & Blogs |
2 - Autos & Vehicles | |
1 - Film & Animation | |
10 - Music | |
15 - Pets & Animals | |
17 - Sports | |
18 - Short Movies | |
19 - Travel & Events | |
20 - Gaming | |
21 - Videoblogging | |
22 - People & Blogs |
import React, { Component } from 'react' | |
import { Link } from 'react-router' | |
import SignUpForm from '../components/SignUpForm' | |
class SignUp extends Component { | |
constructor(props) { | |
super(props) | |
this.state = { |
#Power Not Paranoia ##Digital Security Skill Share ###Prepared for the Stop LAPD Spying Coalition
===
##Assessing Risk
####Who/what are we protecting?
####From who are we protecting?
####What are we going to do to protect?
function completedChallenge(req, res, next) { | |
const { user, body } = req; | |
// mutates user object | |
const { alreadyCompleted } = updateUserProgress(user, body); | |
// sends entire user object to database | |
return saveUser(req.user) | |
.subscribe( | |
() => {}, | |
next, | |
function() { |
//manifest.json | |
{ | |
"name": "bookmark-search-export", | |
"version": "1.0", | |
"manifest_version": 2, | |
"description": "This extention will dump all bookmarks", | |
"browser_action": { | |
"default_icon": "icon.png" | |
}, | |
"background": { |
go run hello_world.go | |
Hello world! |
package main | |
import ( | |
"bytes" | |
"encoding/hex" | |
"flag" | |
"fmt" | |
"io" | |
"log" | |
"net" |
package main | |
import ( | |
"bytes" | |
"encoding/hex" | |
"flag" | |
"fmt" | |
"io" | |
"log" | |
"net" |
/* Tiny web server in Golang for sharing a folder | |
Copyright (c) 2010 Alexis ROBERT <[email protected]> | |
Contains some code from Golang's http.ServeFile method, and | |
uses lighttpd's directory listing HTML template. */ | |
package main | |
import ( | |
"compress/gzip" |