Skip to content

Instantly share code, notes, and snippets.

View jayna37's full-sized avatar
🌫️
All foggy

Jay jayna37

🌫️
All foggy
  • Cyberspace
View GitHub Profile
@jayna37
jayna37 / mailobfuscator.html
Created November 14, 2021 18:35
Email obfuscator
<!DOCTYPE html>
<html>
<head>
<title>Libsodium email obfuscator</title>
<script src="https://cdn.jsdelivr.net/npm/sodium-plus@0.9.0/dist/sodium-plus.min.js" integrity="sha256-3zeaXkog0rB7em3PMV/r0z9RjoeE5VPLNlx4K2CE7w4=" crossorigin="anonymous"></script>
</head>
<body>
<div>
<input type="text" id="inputInput">
<button type="button" id="generateButton">Generate!</button>
@jayna37
jayna37 / Spaceship.java
Last active December 10, 2015 23:59
very simple spaceship simulator
public class Spaceship {
public int people = 10; // the amount of people living on the ship
public int food = 100; // the amount of food the people can use for surviving
public int fuel = 100; // how much fuel is left for flying
public double[] cord = new double[2]; // coordinates of the ship - X,Y
public double[] course = new double[2]; // coordinates of the flying target - X,Y
public static void main(String[] args) {
Spaceship traumschiffSurprise = new Spaceship(5.0, 4.0, 9.0, 9.0);
int i = 1;