duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
#!/usr/bin/env bash | |
echo "RENEWED_LINEAGE: ${RENEWED_LINEAGE}" | |
# requires `yq` and `jq` cli tools | |
OKTA_API_TOKEN=$(yq --raw-output .okta.client.token ~/.okta/okta.yaml) | |
API_URL="${1}/api/internal/v1/custom-url-domain/certificate" | |
CERT=$(cat "${RENEWED_LINEAGE}/cert.pem") | |
KEY=$(cat "${RENEWED_LINEAGE}/privkey.pem") | |
CHAIN=$(cat "${RENEWED_LINEAGE}/chain.pem") |
Originally from: http://erlang.org/pipermail/erlang-questions/2017-August/093170.html | |
For a safe and fast Erlang SSL server, there's a few | |
configuration values you might want by default: | |
[{ciphers, CipherList}, % see below | |
{honor_cipher_order, true}, % pick the server-defined order of ciphers | |
{secure_renegotiate, true}, % prevent renegotiation hijacks | |
{client_renegotiation, false}, % prevent clients DoSing w/ renegs | |
{versions, ['tlsv1.2', 'tlsv1.1']}, % add tlsv1 if you must |
# Add this snippet to the top of your playbook. | |
# It will install python2 if missing (but checks first so no expensive repeated apt updates) | |
# [email protected] | |
- hosts: all | |
gather_facts: False | |
tasks: | |
- name: install python 2 | |
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal) |
config :my_app, :twitter_api, | |
client: Twitter.SandboxClient |
defmodule Clockout.MyViewHelpers do | |
def display_name(:client, id) do | |
Clockout.Client |> display_name_by_id(id) | |
end | |
def display_name(:person, id) do | |
Clockout.Person |> display_name_by_id(id) | |
end |
require 'highline/import' | |
require 'net/netconf/jnpr' | |
target = ARGV[0] || begin | |
puts "You must specify a starting target device" | |
exit 1 | |
end | |
dst_route = ARGV[1] || begin | |
puts "You need to specify a destination route" |
require 'rubygems' | |
require 'twitter' | |
require 'Getopt/Declare' | |
class Plop | |
attr_accessor :who, :seed_file, :peep_list | |
def initialize(who, seed_file='./plop.seed') | |
@who = who |
(function(__global){ | |
if (!__global.console || (__global.console && !__global.console.log)) { | |
__global.console = { | |
log: (__global.opera && __global.opera.postError) | |
? __global.opera.postError | |
: function(){ } | |
} | |
} | |
})(this); |
function pp (t) { | |
if (typeof console == "object" && typeof console.log == "function") | |
console.log(t); | |
else | |
print(t); | |
} |