Placeholder - image will be added via git push
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 muteStorage = new Keyv(MONGODB_URI, { namespace: `${env}mute` }) | |
| const unmute = async () => { | |
| client.guilds.cache.forEach((g) => { | |
| const muted = g.members.cache.filter((m) => { | |
| const roleNames = Array.from( | |
| m.roles.cache.mapValues((r) => r.name).values(), | |
| ) | |
| return roleNames.includes(ROLES.MUTED) | |
| }) |
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
| console.log('hello') |
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 markdownLinkExtractor = require('markdown-link-extractor') | |
| const fs = require('fs') | |
| const { join } = require('path') | |
| const dir = join(__dirname, 'chapters') | |
| const files = fs.readdirSync(dir) | |
| const titles = files.map( | |
| file => file.substr(0, file.lastIndexOf('.')).split(' - ')[1], | |
| ) |
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
| license: gpl-3.0 |
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
| license:gpl-3.0 | |
| height:600 | |
| border:no | |
| Raw |
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
| license:gpl-3.0 | |
| height:600 | |
| border:no | |
| Raw |
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> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| <style> | |
| circle { | |
| fill: green; | |
| } |
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
| module.exports = { | |
| server: '.', | |
| files: [ | |
| '*.html', | |
| 'src/*' | |
| ], | |
| ui: false, | |
| notify: false | |
| }; |
NewerOlder