I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| (ns markerbot.core | |
| (:require [taoensso.timbre :as log] | |
| [clojure.data.json :as json] | |
| [clojure.string :as s] | |
| [clj-http.client :as client]) | |
| (:import (java.net Socket) | |
| (java.io PrintWriter InputStreamReader BufferedReader)) | |
| (:gen-class)) | |
| ;; marksy |
| car = (arr) -> | |
| arr[0] | |
| cdr = (arr) -> | |
| arr[1..] | |
| # Using for loop | |
| map = (arr, func) -> | |
| func(r) for r in arr |
| maxFibs = 50 | |
| fibs = [1,1] | |
| fibGen = (n) -> | |
| if fibs[n]? is false | |
| fibs[n] = fibGen(n - 1) + fibGen(n - 2) | |
| fibs[n] | |
| fizzy = (i) -> | |
| if i is undefined then i = 0 |
| // Usage: | |
| // blacklist | |
| String[] blacklist = new String[]{"com.any.package", "net.other.package"}; | |
| // your share intent | |
| Intent intent = new Intent(Intent.ACTION_SEND); | |
| intent.setType("text/plain"); | |
| intent.putExtra(Intent.EXTRA_TEXT, "some text"); | |
| intent.putExtra(android.content.Intent.EXTRA_SUBJECT, "a subject"); | |
| // ... anything else you want to add | |
| // invoke custom chooser |
| sudo find /private/var/folders/ -name com.apple.dock.iconcache -exec rm {} \; |
| <string-array name="states"> | |
| <item>Alabama</item> | |
| <item>Alaska</item> | |
| <item>American Samoa</item> | |
| <item>Arizona</item> | |
| <item>Arkansas</item> | |
| <item>California</item> | |
| <item>Colorado</item> | |
| <item>Connecticut</item> | |
| <item>Delaware</item> |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="com.cards.notification"> | |
| <uses-sdk | |
| android:minSdkVersion="17" | |
| android:targetSdkVersion="17" /> | |
| <application | |
| android:allowBackup="true" |
| #!/usr/bin/perl | |
| use Mysql; | |
| use strict; | |
| use vars qw($school_name); | |
| use vars qw($pass); | |
| require "./cgi-lib.pl"; |
| (ns DarrenN.stateless.buffer) | |
| ;; create-buffer returns a vector scoped to size. When new items are added | |
| ;; they are passed to functions in add-listeners. If the vector is at its | |
| ;; size limit then items are shifted off the front of the vector and | |
| ;; passed to the functions in destroy-listeners | |
| ;; Callbacks for adding/removing item from vector | |
| (def destroy-listeners [(fn [i] (print (str i " removed")))]) | |
| (def add-listeners [(fn [i] (print (str i " added")))]) |