Edward Snowden answered questions after a showing of CITIZENFOUR at the IETF93 meeting; this is a transcript of the video recording.
For more information, see the Internet Society article.
Edward Snowden answered questions after a showing of CITIZENFOUR at the IETF93 meeting; this is a transcript of the video recording.
For more information, see the Internet Society article.
| # The blog post that started it all: https://neocities.org/blog/the-fcc-is-now-rate-limited | |
| # | |
| # Current known FCC address ranges: | |
| # https://news.ycombinator.com/item?id=7716915 | |
| # | |
| # Confirm/locate FCC IP ranges with this: http://whois.arin.net/rest/net/NET-165-135-0-0-1/pft | |
| # | |
| # In your nginx.conf: | |
| location / { |
| -----BEGIN PGP SIGNED MESSAGE----- | |
| Hash: SHA512 | |
| To check that you have a "good" copy of HTTPS Everywhere (one with the | |
| correct update signing keys), you can do the following: | |
| # Firefox: | |
| 1. Go to your Firefox profile directory: | |
| https://support.mozilla.org/en-US/kb/profiles-where-firefox-stores-user-data#w_how-do-i-find-my-profile. |
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
| var app = angular.module('app', ['ngResource']); | |
| app.config(function($locationProvider, $routeProvider) { | |
| // $locationProvider.html5Mode(true); | |
| $routeProvider | |
| .when('/', { templateUrl: 'partials/index', controller: 'ctrl' }) | |
| .when('/about', { templateUrl: 'partials/about', controller: 'ctrl' }) | |
| .otherwise({redirectTo:'/'}); | |
| }); |
| package com.dacamo76.librapidminer; | |
| import com.rapidminer.example.Attribute; | |
| import com.rapidminer.example.table.DataRow; | |
| import com.rapidminer.example.table.DataRowFactory; | |
| import static com.google.common.base.Preconditions.checkNotNull; | |
| import static com.google.common.collect.Iterables.toArray; | |
| public abstract class DataRowFactory2 { |