This Gist was automatically created by Carbide, a free online programming environment.
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 fiona from 'fiona' | |
import './lorem' | |
import './nino' | |
const seeded = fiona() | |
seeded.lorem() | |
seeded.sentence() |
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 sublime | |
import sublime_plugin | |
STANDARD_SETTINGS_FILE = "StandardFormat.sublime-settings" | |
SEMI_STANDARD_SETTINGS_FILE = "SemiStandardFormat.sublime-settings" | |
def plugin_loaded(): | |
global standardSettings | |
global semiStandardSettings | |
standardSettings = sublime.load_settings(STANDARD_SETTINGS_FILE) |
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 faker from "https://cdn.jsdelivr.net/npm/@faker-js/[email protected]/dist/faker.min.js"; ///**import and configure faker** | |
faker.locales[faker.locale].name.male_prefix = ["Mr.", "Dr."]; | |
faker.locales[faker.locale].name.female_prefix = ["Mrs.", "Miss.", "Dr."]; | |
window.faker = faker; |
OlderNewer