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 random | |
| years = ["95", "96", "97", "98", "99", "00", "01", "02", "03"] | |
| def divisible_random(min, max, divisor): | |
| result = random.randint(min, max) | |
| while result % divisor != 0: | |
| result = random.randint(min, max) | |
| return result |
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
| // ThumbnailGenerator | |
| // Carrot | |
| const express = require("express") | |
| const bodyParser = require("body-parser") | |
| const fs = require("fs") | |
| const app = express() | |
| const port = process.env.PORT || 3000 |
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
| CreateGui = function() | |
| local NewGuiPart1 = Instance.new("ScreenGui") | |
| local NewGuiPart2 = Instance.new("Frame") | |
| local NewGuiPart3 = Instance.new("Frame") | |
| local NewGuiPart4 = Instance.new("TextLabel") | |
| local NewGuiPart5 = Instance.new("TextBox") | |
| local NewGuiPart6 = Instance.new("Frame") | |
| local NewGuiPart7 = Instance.new("Frame") | |
| local NewGuiPart8 = Instance.new("TextButton") | |
| local NewGuiPart9 = Instance.new("TextLabel") |
NewerOlder