Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am acidity on github.
  • I am omeara (https://keybase.io/omeara) on keybase.
  • I have a public key ASAa45dm6GmT_XOy485sugjeBoIxjNmymOlU6g4tix5sBQo

To claim this, I am signing this object:

@Acidity
Acidity / gist:2cdafca7fa211de36e06
Created July 16, 2015 01:59
Campaigns (listing the FP stations)
{"totalCount_str": "315", "items": [{"eventType_str": "4", "campaignID": 1, "eventType": 4, "sourceSolarsystem": {"id_str": "30004632", "href": "https://public-crest.eveonline.com/solarsystems/30004632/", "id": 30004632, "name": "38IA-E"}, "campaignID_str": "1", "sourceItemID": 61000560, "startTime": "2015-07-16T09:46:14", "sourceItemID_str": "61000560", "constellation": {"id_str": "20000676", "href": "https://public-crest.eveonline.com/constellations/20000676/", "id": 20000676, "name": "Griffin"}}, {"eventType_str": "4", "campaignID": 11, "eventType": 4, "sourceSolarsystem": {"id_str": "30004646", "href": "https://public-crest.eveonline.com/solarsystems/30004646/", "id": 30004646, "name": "9DQW-W"}, "campaignID_str": "11", "sourceItemID": 61000293, "startTime": "2015-07-16T14:03:04", "sourceItemID_str": "61000293", "constellation": {"id_str": "20000678", "href": "https://public-crest.eveonline.com/constellations/20000678/", "id": 20000678, "name": "Minotaur"}}, {"eventType_str": "3", "campaignID": 12, "event
@Acidity
Acidity / gist:c8a41f1140f68f15ab90
Created July 16, 2015 01:58
Structures (no FP stations)
This file has been truncated, but you can view the full file.
{"totalCount_str": "6115", "items": [{"alliance": {"id_str": "1354830081", "href": "https://public-crest.eveonline.com/alliances/1354830081/", "id": 1354830081, "name": "Goonswarm Federation"}, "vulnerabilityOccupancyLevel": 6.0, "structureID_str": "183219893", "structureID": 183219893, "vulnerableStartTime": "2015-07-16T00:30:00", "solarSystem": {"id_str": "30002941", "href": "https://public-crest.eveonline.com/solarsystems/30002941/", "id": 30002941, "name": "43B-O1"}, "vulnerableEndTime": "2015-07-16T03:30:00", "type": {"id_str": "32226", "href": "https://public-crest.eveonline.com/types/32226/", "id": 32226, "name": "Territorial Claim Unit"}}, {"alliance": {"id_str": "1354830081", "href": "https://public-crest.eveonline.com/alliances/1354830081/", "id": 1354830081, "name": "Goonswarm Federation"}, "vulnerabilityOccupancyLevel": 4.5, "structureID_str": "259550650", "structureID": 259550650, "vulnerableStartTime": "2015-07-16T00:00:00", "solarSystem": {"id_str": "30002943", "href": "https://public-crest.eve
# Generate a private key and store it (PEM encoded) to private.pem
openssl ecparam -outform PEM -out private.pem -name prime256v1 -genkey
# Generate the corresponding public key and store it (again, PEM encoded) to public.pem
openssl ec -inform PEM -in private.pem -outform PEM -out public.pem -pubout
# Get the hex form of just the public key (no encoded parameters)
openssl ec -in public.pem -pubin -text -noout 2>/dev/null | grep -o -e ' *[0-9a-f:]*' | tr -d ' \n:' | cut -c 3-
# And the same for the private key