Skip to content

Instantly share code, notes, and snippets.

View awerudev's full-sized avatar
🏠
Working from home

awerudev

🏠
Working from home
View GitHub Profile
@sgammon
sgammon / Passbase.kt
Last active March 2, 2022 15:10
Example of Passbase metadata encryption in Kotlin. Private key given by example (not a real key)
package com.passbase.sample
import com.fasterxml.jackson.databind.ObjectMapper
import com.fasterxml.jackson.databind.SerializationFeature
import com.fasterxml.jackson.module.kotlin.registerKotlinModule
import java.io.*
import java.nio.charset.StandardCharsets
import java.security.*
import java.security.spec.PKCS8EncodedKeySpec
import java.util.*
@chrisvfritz
chrisvfritz / index.html
Created November 18, 2014 19:22
Simplest possible HTML template
<!doctype html>
<html>
<head>
<title>This is the title of the webpage!</title>
</head>
<body>
<p>This is an example paragraph. Anything in the <strong>body</strong> tag will appear on the page, just like this <strong>p</strong> tag and its contents.</p>
</body>
</html>