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
| /** | |
| * Pseudo Random Number Generator with No Repeat | |
| * @copyright 2018 github/lingkaryamediaformasi | |
| */ | |
| /** Array kosakatanya */ | |
| var kosakata = [ | |
| "mantan", "pacar", "kamu", "saya", "dia", "penjahat", "pesawat", "lampu", "tiang", | |
| "masak", "panci", "piring", "anjing", "kucing", "buku", "botol", "galon", "muka" | |
| ]; |
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
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <script src="./main.js"></script> | |
| </body> | |
| </html> |
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
| package latihanpbo; | |
| import java.util.Scanner; | |
| public class Penjualan { | |
| public static void main(String[] args) { | |
| // inisialisasi Scanner untuk mendeksi inputan | |
| Scanner in = new Scanner(System.in); | |
| // membuat Menu Interface | |
| System.out.println("+================+================+==========+"); |
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
| const Discord = require("discord.js") | |
| const moment = require('moment'); | |
| const _fs = require("fs"); | |
| const packages = JSON.parse(_fs.readFileSync('./package.json', 'utf-8')); | |
| require('moment-duration-format'); | |
| const os = require('os'); | |
| let cpu = os.cpus(); | |
| exports.run = (client, message, args, tools) => { | |
| const duration = moment.duration(client.uptime).format(" D [days], H [hrs], m [mins], s [secs]"); |
NewerOlder