This file contains hidden or 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
(function () { | |
let files = [ | |
'readme.md' | |
]; | |
let converter = new showdown.Converter(); | |
let entries = []; | |
function updateBlog(_entries, _files) { | |
let blog = document.getElementById("MicroBlog"); | |
if (blog != null) { |
This file contains hidden or 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
import java.util.Random; | |
public class PasswordGenerator | |
{ | |
public static void main(String[] args) | |
{ | |
int length = 10; // password length | |
System.out.println(generatePswd(length)); | |
} |