Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!
openssl genrsa -des3 -out rootCA.key 4096
[1password] | |
name=1Password Stable Channel | |
baseurl=https://downloads.1password.com/linux/rpm/stable/$basearch | |
enabled=1 | |
gpgcheck=1 | |
repo_gpgcheck=1 | |
gpgkey=https://downloads.1password.com/linux/keys/1password.asc |
Verifying my Blockstack ID is secured with the address 1LaYdseuLcg9jHYdgxE85gtZRwxwHiBvCN https://explorer.blockstack.org/address/1LaYdseuLcg9jHYdgxE85gtZRwxwHiBvCN |
I hereby claim:
To claim this, I am signing this object:
[ | |
{ | |
"plan": { | |
"#operator": "Sequence", | |
"~children": [ | |
{ | |
"#operator": "IndexScan", | |
"covers": [ | |
"cover ((`fooboo`.`appId`))", | |
"cover ((`fooboo`.`xid`))", |
version: '3' | |
services: | |
api: | |
build: . | |
image: tunix/docker-compose-demo | |
ports: | |
- "8080" | |
links: | |
- db:demodb |
FROM node:6.2-slim | |
MAINTAINER Alper Kanat <[email protected]> | |
ADD . /srv | |
WORKDIR /srv | |
RUN apt-get update && apt-get install -qqy git | |
RUN npm install -g bower gulp | |
RUN npm install | |
RUN bower install --allow-root | |
RUN gulp clean build | |
ENV NODE_ENV production |
FROM node:4.4 | |
LABEL type="node" purpose="api" role="core" description="Gerrit Dashboard Server" | |
ENV NODE_ENV production | |
ENV SOURCE_TYPE DB | |
ENV GERRIT_DASHBOARD_CONFIG_PATH /opt/config | |
COPY dist /srv/app | |
WORKDIR /srv/app | |
EXPOSE 3000 | |
VOLUME ["/opt/config"] | |
CMD ["./bin/www"] |
#!/bin/bash | |
# Digital Ocean API Token | |
TOKEN="" | |
# Domain Details | |
DOMAIN="" | |
RECORD_ID="" | |
IP=$(curl -s ifconfig.me) |
AES aes = new AES(256/32); | |
String clave = "12345678677561"; | |
clave = aes.parseKey(clave); | |
String texto = String.valueOf(0.0) + String.valueOf(677) + "Tr" + String.valueOf(0.0) + | |
String.valueOf(561); | |
String hash = aes.encrypt(texto, clave, 256); | |
System.out.println("Hash :" + hash); |