title |
---|
Generating self-signed certificates |
First, you'll need to create an openssl.conf
file, for example:
[ req ]
hello = "fun times" |
Option Explicit | |
Private Sub CommandButton1_Click() | |
Dim Age | |
Dim RetirementAge | |
Dim SavingsBalance | |
Dim AnnualContribution | |
Dim AnnualInterestRate | |
' |
var fs = require("fs") | |
var ssl_options = { | |
key: fs.readFileSync('privatekey.pem'), | |
cert: fs.readFileSync('certificate.pem') | |
}; | |
var port = process.env.PORT || 3000; | |
var express = require('express'); | |
var ejs = require('ejs'); | |
var passport = require('passport') |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
</head> | |
<body> | |
<button type="button" name="button" id="search-button">Search</button> | |
<ul id="my-list"></ul> |
source :rubygems | |
gem "puma" | |
gem "sinatra" |
#user nobody; | |
worker_processes 1; | |
#error_log logs/error.log; | |
#error_log logs/error.log notice; | |
#error_log logs/error.log info; | |
#pid logs/nginx.pid; |
brew install opensc
opensc-tool -n
import json | |
import requests | |
base_url = "https://nyu-info-2335-products-api-csv.herokuapp.com" | |
def list_products(): | |
response = requests.get(f"{base_url}/products") | |
return parsed_response(response) | |
def show_product(product_id): |