Skip to content

Instantly share code, notes, and snippets.

View JosiasAurel's full-sized avatar

Josias Aurel JosiasAurel

View GitHub Profile
@DevEarley
DevEarley / MicroBlog.js
Last active September 2, 2020 14:55
Micro Blog
(function () {
let files = [
'readme.md'
];
let converter = new showdown.Converter();
let entries = [];
function updateBlog(_entries, _files) {
let blog = document.getElementById("MicroBlog");
if (blog != null) {
import java.util.Random;
public class PasswordGenerator
{
public static void main(String[] args)
{
int length = 10; // password length
System.out.println(generatePswd(length));
}