This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Firstly you'll need to introduce volume as follows: | |
# gcloud compute disks create --size=10GB --zone=europe-north1-a pgdata | |
# | |
kind: PersistentVolume | |
apiVersion: v1 | |
metadata: | |
name: postgres-pv | |
labels: | |
type: local | |
app: postgres |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.fooinc; | |
import java.math.BigInteger; | |
import org.bouncycastle.math.ec.ECCurve; | |
import org.bouncycastle.math.ec.ECFieldElement; | |
import org.bouncycastle.math.ec.ECPoint; | |
public class ECPointAddition | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* crypto/bn/bn.h */ | |
/* Copyright (C) 1995-1997 Eric Young ([email protected]) | |
* All rights reserved. | |
* | |
* This package is an SSL implementation written | |
* by Eric Young ([email protected]). | |
* The implementation was written so as to conform with Netscapes SSL. | |
* | |
* This library is free for commercial and non-commercial use as long as | |
* the following conditions are aheared to. The following conditions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <windows.h> | |
#include <stdio.h> | |
#include <tchar.h> | |
#include <shlobj.h> | |
#include <shlwapi.h> | |
#include <propkey.h> | |
HRESULT BindToCsidl(int csidl, REFIID riid, void **ppv) | |
{ | |
HRESULT hr; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef UNICODE | |
#define UNICODE | |
#endif | |
#include <windows.h> | |
#include <stdio.h> | |
#include <tchar.h> | |
#include <time.h> | |
#define DEBUG 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Collections.ObjectModel; | |
using System.Collections; | |
using System.Threading; | |
using System.Runtime.InteropServices; | |
namespace SpringCardPCSC | |
{ |