diff --git a/.eslintrc.js b/.eslintrc.js index bf679f97..b2dc3918 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,13 +1,14 @@ module.exports = { extends: [ - require.resolve('eslint-config-kentcdodds'), - require.resolve('eslint-config-kentcdodds/jest'), - ], + require.resolve('eslint-config-kentcdodds'), + require.resolve('eslint-config-kentcdodds/jest'), + ], rules: { 'func-names': 0, 'babel/camelcase': 0, 'import/extensions': 0, 'consistent-return': 0, 'no-process-exit': 0, - } + 'no-continue': 0, + }, } diff --git a/package.json b/package.json index 8df75ad8..92ca1c4d 100644 --- a/package.json +++ b/package.json @@ -42,16 +42,22 @@ }, "homepage": "https://github.com/all-contributors/all-contributors-cli#readme", "dependencies": { - "@babel/runtime": "^7.7.6", + "@babel/runtime": "^7.22.6", + "ac-learn": "^1.7.0", "async": "^3.1.0", "chalk": "^4.0.0", + "ac-learn": "^1.0.3", + "clui": "^0.3.6", "didyoumean": "^1.2.1", "inquirer": "^7.3.3", "json-fixer": "^1.6.8", "lodash": "^4.11.2", + "name-your-contributors": "^3.10.0", + "nclr": "^2.2.5", "node-fetch": "^2.6.0", "pify": "^5.0.0", - "yargs": "^15.0.1" + "yargs": "^15.0.1", + "request": "^2.72.0" }, "devDependencies": { "codecov": "^3.8.1", diff --git a/src/cli.js b/src/cli.js index 1c52e969..87b5806b 100755 --- a/src/cli.js +++ b/src/cli.js @@ -5,12 +5,16 @@ const path = require('path') const yargs = require('yargs') const chalk = require('chalk') const inquirer = require('inquirer') +const didYouMean = require('didyoumean') +const {info, warn, use} = require('nclr') const init = require('./init') const generate = require('./generate') const util = require('./util') const repo = require('./repo') const updateContributors = require('./contributors') +const {getContributors} = require('./discover') +const {getLearner} = require('./discover/learner') const cwd = process.cwd() const defaultRCFile = path.join(cwd, '.all-contributorsrc') @@ -22,12 +26,22 @@ const yargv = yargs .alias('v', 'version') .version() .recommendCommands() - .command('generate', `Generate the list of contributors\n\nUSAGE: all-contributors generate`) - .command('add', `Add a new contributor\n\nUSAGE: all-contributors add `) - .command('init', `Prepare the project to be used with this tool\n\nUSAGE: all-contributors init`) + .command( + 'generate', + `Generate the list of contributors\n\nUSAGE: all-contributors generate`, + ) + .command( + 'add', + `Add a new contributor\n\nUSAGE: all-contributors add `, + ) + .command( + 'init', + `Prepare the project to be used with this tool\n\nUSAGE: all-contributors init`, + ) .command( 'check', - `Compare contributors from the repository with the ones credited in .all-contributorsrc'\n\nUSAGE: all-contributors check`) + `Compare contributors from the repository with the ones credited in .all-contributorsrc'\n\nUSAGE: all-contributors check`, + ) .boolean('commit') .default('files', ['README.md']) .default('contributorsPerLine', 7) @@ -49,10 +63,26 @@ const yargv = yargs } }).argv +function onError(error) { + if (error) { + console.error(error.message) + process.exit(1) + } + process.exit(0) +} + +function suggestCommands(cmd) { + const availableCommands = ['generate', 'add', 'init', 'check'] + const suggestion = didYouMean(cmd, availableCommands) + + if (suggestion) console.log(chalk.bold(`Did you mean ${suggestion}`)) +} + function startGeneration(argv) { return Promise.all( argv.files.map(file => { const filePath = path.join(cwd, file) + return util.markdown.read(filePath).then(fileContent => { const newFileContent = generate(argv, argv.contributors, fileContent) return util.markdown.write(filePath, newFileContent) @@ -61,77 +91,225 @@ function startGeneration(argv) { ) } -function addContribution(argv) { +async function addContribution(argv) { util.configFile.readConfig(argv.config) // ensure the config file exists const username = argv._[1] === undefined ? undefined : String(argv._[1]) const contributions = argv._[2] + // Add or update contributor in the config file - return updateContributors(argv, username, contributions).then(data => { - argv.contributors = data.contributors - return startGeneration(argv).then(() => { - if (argv.commit) { - return util.git.commit(argv, data) - } - }) - }) + let data + + try { + data = await updateContributors(argv, username, contributions) + } catch (error) { + return console.error('Contributor Update fail:', error) + } + + argv.contributors = data.contributors + /* Example + [ { login: 'Berkmann18', + name: 'Maximilian Berkmann', + avatar_url: 'https://avatars0.githubusercontent.com/u/8260834?v=4', + profile: 'http://maxcubing.wordpress.com', + contributions: [ 'code', 'ideas' ] }, + { already in argv.contributors } ] + */ + + try { + await startGeneration(argv) + + return argv.commit ? util.git.commit(argv, data) : null + } catch (error) { + console.error('Generation fail:', error) + } } -function checkContributors(argv) { +async function checkContributors(argv) { const configData = util.configFile.readConfig(argv.config) - return repo - .getContributors( - configData.projectOwner, - configData.projectName, - configData.repoType, - configData.repoHost, + const repoContributors = await repo.getContributors( + configData.projectOwner, + configData.projectName, + configData.repoType, + configData.repoHost, + ) + + const checkKey = repo.getCheckKey(configData.repoType) + const knownContributions = configData.contributors.reduce((obj, item) => { + obj[item[checkKey]] = item.contributions + return obj + }, {}) + const knownContributors = configData.contributors.map( + contributor => contributor[checkKey], + ) + + const missingInConfig = repoContributors.filter( + key => !knownContributors.includes(key), + ) + const missingFromRepo = knownContributors.filter(key => { + return ( + !repoContributors.includes(key) && + (knownContributions[key].includes('code') || + knownContributions[key].includes('test')) + ) + }) + + if (missingInConfig.length) { + process.stdout.write( + chalk.bold('Missing contributors in .all-contributorsrc:\n'), ) - .then(repoContributors => { - const checkKey = repo.getCheckKey(configData.repoType) - const knownContributions = configData.contributors.reduce((obj, item) => { - obj[item[checkKey]] = item.contributions - return obj - }, {}) - const knownContributors = configData.contributors.map( - contributor => contributor[checkKey], + process.stdout.write(` ${missingInConfig.join(', ')}\n`) + } + + if (missingFromRepo.length) { + process.stdout.write( + chalk.bold('Unknown contributors found in .all-contributorsrc:\n'), + ) + process.stdout.write(`${missingFromRepo.join(', ')}\n`) + } +} + +async function fetchContributors(argv) { + const { + reviewers, + commitAuthors, + issueCreators, + prCreators, + } = await getContributors(argv.projectOwner, argv.projectName, true) + const args = {...argv, _: []} + const contributorsToAdd = [] + const learner = await getLearner() + + reviewers.forEach(usr => { + contributorsToAdd.push({login: usr.login, contributions: ['review']}) + + console.log( + `Including ${chalk.underline('Reviewer')} ${use('info', usr.login)}`, + ) + }) + + const guessCategories = (item, itemType, contributor) => { + const guessedCategory = learner + .classify(item) + .find(ctr => ctr && ctr !== 'null' && ctr !== 'undefined') + + if (!guessedCategory) { + warn( + `Oops, I couldn't find any category for the "${use( + 'inp', + item, + )}" ${itemType}`, ) - const missingInConfig = repoContributors.filter( - key => !knownContributors.includes(key), + return + } + + if (!contributor.contributions.includes(guessedCategory)) { + contributor.contributions.push(guessedCategory) + + console.log( + `Including ${use('info', contributor.login)} for ${chalk.underline( + guessedCategory, + )}, based on "${use('inp', item)}"`, ) - const missingFromRepo = knownContributors.filter(key => { - return ( - !repoContributors.includes(key) && - (knownContributions[key].includes('code') || - knownContributions[key].includes('test')) - ) - }) + } + } - if (missingInConfig.length) { - process.stdout.write( - chalk.bold('Missing contributors in .all-contributorsrc:\n'), - ) - process.stdout.write(` ${missingInConfig.join(', ')}\n`) - } + info('Looking at issue creators') + issueCreators.forEach(usr => { + const contributor = { + login: usr.login, + contributions: [], + } + + usr.labels.forEach(label => guessCategories(label, 'label', contributor)) + usr.titles.forEach(title => guessCategories(title, 'title', contributor)) + + const existingContributor = contributorsToAdd.find( + ctr => ctr.login === usr.login, + ) + + if (existingContributor) { + existingContributor.contributions.push(...contributor.contributions) + } else { + contributorsToAdd.push(contributor) + } + }) + + info('Looking at PR creators') + prCreators.forEach(usr => { + const contributor = { + login: usr.login, + contributions: [], + } + + usr.labels.forEach(label => guessCategories(label, 'PR label', contributor)) + usr.titles.forEach(title => guessCategories(title, 'PR title', contributor)) + + const existingContributor = contributorsToAdd.find( + ctr => ctr.login === usr.login, + ) + + if (existingContributor) { + existingContributor.contributions.push(...contributor.contributions) + } else { + contributorsToAdd.push(contributor) + } + }) + + info('Looking at commit authors') + commitAuthors.forEach(usr => { + const existingContributor = contributorsToAdd.find( + ctr => ctr.login === usr.login, + ) - if (missingFromRepo.length) { - process.stdout.write( - chalk.bold('Unknown contributors found in .all-contributorsrc:\n'), - ) - process.stdout.write(`${missingFromRepo.join(', ')}\n`) + if (existingContributor) { + // TODO: See how the commit message could be added (this may require the full output) to not just assume it's a code contribution + if (!existingContributor.contributions.includes('code')) { + existingContributor.contributions.push('code') } - }) -} + } else { + contributorsToAdd.push({login: usr.login, contributions: ['code']}) + } + }) + // TODO: Roll onto other contribution categories following https://www.draw.io/#G1uL9saIuZl3rj8sOo9xsLOPByAe28qhwa -function onError(error) { - if (error) { - console.error(error.stack || error.message || error) - process.exit(1) + info('Finalising') + for (const contributor of contributorsToAdd) { + const isDependabotDuplicates = /dependabot(\[bot\]|-\w+)/.test( + contributor.login, + ) + if (!contributor.contributions.length || isDependabotDuplicates) { + console.log('Skipping', contributor.login) + + continue + } + + // Format contributor contributions + const contributions = contributor.contributions.join('/') + + console.log( + `Adding ${use('info', contributor.login)} for ${chalk.underline( + contributions, + )}`, + ) + + args._ = ['', contributor.login, contributor.contributions.join(',')] + + try { + /* eslint-disable no-await-in-loop */ + await addContribution(args) + } catch (error) { + console.error( + `Adding ${use('info', contributor.login)} for ${chalk.underline( + contributions, + )} Failed: ${JSON.stringify(error)}`, + ) + } } - process.exit(0) } -function promptForCommand(argv) { +async function promptForCommand(argv) { const questions = [ { type: 'list', @@ -151,15 +329,19 @@ function promptForCommand(argv) { 'Compare contributors from the repository with the credited ones', value: 'check', }, + { + name: 'Fetch contributors from the repository', + value: 'fetch', + }, ], when: !argv._[0], default: 0, }, ] - return inquirer.prompt(questions).then(answers => { - return answers.command || argv._[0] - }) + const answers = await inquirer.prompt(questions) + + return answers.command || argv._[0] } promptForCommand(yargv) @@ -173,7 +355,10 @@ promptForCommand(yargv) return addContribution(yargv) case 'check': return checkContributors(yargv) + case 'fetch': + return fetchContributors(yargv) default: + suggestCommands(command) throw new Error(`Unknown command ${command}`) } }) diff --git a/src/contributors/index.js b/src/contributors/index.js index 3e3544c9..fea31c19 100644 --- a/src/contributors/index.js +++ b/src/contributors/index.js @@ -10,13 +10,20 @@ function isNewContributor(contributorList, username) { module.exports = function addContributor(options, username, contributions) { const answersP = prompt(options, username, contributions) - const contributorsP = answersP.then(answers => - add(options, answers.username, answers.contributions, repo.getUserInfo), - ) + const contributorsP = answersP + .then(answers => + add(options, answers.username, answers.contributions, repo.getUserInfo), + ) + //eslint-disable-next-line no-console + .catch(err => console.error('contributorsP error:', err)) - const writeContributorsP = contributorsP.then(contributors => - util.configFile.writeContributors(options.config, contributors), - ) + const writeContributorsP = contributorsP + .then(contributors => { + // console.log('opts.config=', options.config, 'contributors=', contributors) + return util.configFile.writeContributors(options.config, contributors) + }) + //eslint-disable-next-line no-console + .catch(err => console.error('writeContributorsP error:', err)) return Promise.all([answersP, contributorsP, writeContributorsP]).then( res => { @@ -32,5 +39,7 @@ module.exports = function addContributor(options, username, contributions) { ), } }, + //eslint-disable-next-line no-console + err => console.error('contributors fail: ', err), ) } diff --git a/src/discover/index.js b/src/discover/index.js new file mode 100644 index 00000000..b1ed4d10 --- /dev/null +++ b/src/discover/index.js @@ -0,0 +1,43 @@ +const {join} = require('path') +const {existsSync} = require('fs') +const {writeFile, readFile} = require('fs/promises') +const nyc = require('name-your-contributors') +const {Spinner} = require('clui') + +const privateToken = + process.env?.PRIVATE_TOKEN ?? process.env?.GITHUB_TOKEN ?? '' +const loader = new Spinner('Loading...') + +const getContributors = async function (owner, name, cacheResult = false) { + loader.start() + + const options = { + token: privateToken, + user: owner, + repo: name, + commits: true, + } + + if (cacheResult) { + const nycOutputPath = join(__dirname, './nyc-output.json') + if (existsSync(nycOutputPath)) { + const contributors = await readFile(nycOutputPath) + loader.stop() + return JSON.parse(contributors) + } else { + loader.message('Getting repo contributors...') + const contributors = await nyc.repoContributors(options) + await writeFile(nycOutputPath, JSON.stringify(contributors, null, 2)) + loader.stop() + return contributors + } + } else { + const contributors = await nyc.repoContributors(options) + + loader.stop() + + return contributors + } +} + +module.exports = {getContributors} diff --git a/src/discover/learner.js b/src/discover/learner.js new file mode 100644 index 00000000..3a19d859 --- /dev/null +++ b/src/discover/learner.js @@ -0,0 +1,28 @@ +const {existsSync} = require('fs') +const Learner = require('ac-learn') + +const JSON_PATH = `${__dirname}/learner.json` + +async function getLearner() { + const learner = new Learner() + + try { + if (existsSync(JSON_PATH)) { + learner.classifier = await learner.loadAndDeserializeClassifier(JSON_PATH) + } else { + learner.crossValidate(6) + learner.eval() + + await learner.serializeAndSaveClassifier(JSON_PATH) + } + } catch (e) { + /* eslint-disable no-console */ + console.error(e) + } + + return learner +} + +module.exports = { + getLearner, +} diff --git a/src/discover/learner.json b/src/discover/learner.json new file mode 100644 index 00000000..f10f572d --- /dev/null +++ b/src/discover/learner.json @@ -0,0 +1,56809 @@ +{ + "createNewObjectString": "(pastTrainingSamples = []) => {\n const {multilabel, Winnow, EnhancedClassifier} = require('limdu').classifiers\n\n // Word extractor - a function that takes a sample and adds features to a given features set:\n const featureExtractor = (input, features) => {\n //similar to limdu.features.NGramsOfWords(1)\n input\n .split(/[ \\t,;:.-_]/) //perhaps remove _ to keep emoji words joint\n .filter(Boolean)\n .forEach(word => {\n features[word.toLowerCase()] = 1\n })\n }\n\n const TextClassifier = multilabel.BinaryRelevance.bind(0, {\n //eslint-disable-next-line babel/camelcase\n binaryClassifierType: Winnow.bind(0, {retrain_count: 10}),\n })\n\n const classifier = new EnhancedClassifier({\n classifierType: TextClassifier,\n featureExtractor, //or extract\n pastTrainingSamples,\n })\n\n return classifier\n}", + "object": { + "classifier": { + "tool": { + "positive_weights": { + "component": 0.6952285766601562, + "developer": 1.6479492187500004, + "tools": 13.18359375, + "bias": 9.314716182356227e-21, + "parser-specific": 22.78125, + "shell": 22.78125, + "socket": 7.03125, + "io": 7.03125, + "client": 2.8125, + "installer": 22.78125, + "library": 22.78125, + "bootstrap": 10.125, + "feat": 0.25, + "babel": 16, + "flashsocket": 10.125, + "electron": 10.125, + "parser": 10.125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.25, + "grey": 0.75, + "cmty": 0.6666666666666667, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.28125, + "utils": 0.28125, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "ui": 0.22222222222222227, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "pr": 0.6666666666666667, + "merged": 0.6666666666666667, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333334, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.75, + "review": 0.75, + "needed": 0.75, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 2, + "nail": 2, + "care": 2, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 2, + "for": 2, + "deploy": 2, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 0.75, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "wikipedia": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 0.75, + "rules": 0.75, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 0.6666666666666667, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "figma": 22.78125, + "websocket": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 2, + "doc": 0.5, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 0.75, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 0.75, + "workflow": 0.75, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "component": 0.3476142883300781, + "developer": 0.19775390625, + "tools": 0.052734375, + "bias": 3.5357293088341466, + "parser-specific": 0.015625, + "shell": 0.015625, + "socket": 0.140625, + "io": 0.140625, + "client": 0.253125, + "installer": 0.015625, + "library": 0.015625, + "bootstrap": 0.0625, + "feat": 0.5208333333333335, + "babel": 0.03703703703703705, + "flashsocket": 0.0625, + "electron": 0.0625, + "parser": 0.0625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 3.75, + "grey": 1.875, + "cmty": 2, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 3.515625, + "utils": 3.515625, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "ui": 4, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "pr": 2, + "merged": 2, + "vlog": 2.25, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.875, + "review": 1.875, + "needed": 1.875, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1, + "nail": 1, + "care": 1, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1, + "for": 1, + "deploy": 1, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1.875, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "wikipedia": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1.875, + "rules": 1.875, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 2, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "figma": 0.015625, + "websocket": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1, + "doc": 2.25, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1.875, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1.875, + "workflow": 1.875, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "ideas": { + "positive_weights": { + "inspiration": 22.78125, + "bias": 2.0027526264382748e-50, + "kind": 3.160493827160495, + "discussion": 32, + "hot": 4, + "planned": 6.4, + "feature": 28, + "feature-request": 32, + "rfc": 22.78125, + "new": 3.8159521867690485, + "best": 13.18359375, + "practice": 13.18359375, + "eventstorming": 22.78125, + "ideas": 22.78125, + "pr": 0.21364447827107594, + "dependency": 11.394372174457375, + "proposal": 13.18359375, + "heavy": 3.5, + "plus": 3.5, + "sign": 3.5, + "request": 28.672000000000004, + "cmty": 0.6666666666666667, + "thought": 10.125, + "plan": 10.125, + "great": 8, + "insight": 8, + "opinions": 16, + "needed": 2, + "theorem": 10.125, + "api": 4.394531250000001, + "statement": 10.125, + "opinion": 10.125, + "brainstorming": 10.125, + "revisitinfuture": 10.125, + "tips": 10.125, + "chat": 16, + "(category)": 5.333333333333334, + "future": 7.03125, + "architecture": 3.75, + "enhancements": 7.03125, + "suggestion": 10.125, + "crypto": 3.75, + "definition": 0.00048170916432868426, + "other": 2, + "language": 2, + "integration": 2, + "idea": 20.25, + "component": 0.09375000000000001, + "developer": 0.28125, + "tools": 0.28125, + "business": 0.22222222222222227, + "process": 0.22222222222222227, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.48108459636569, + "question": 0.010416666666666668, + "grey": 0.75, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.2666666666666667, + "utils": 2, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.16666666666666669, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 0.22222222222222227, + "guide": 0.5, + "next": 0.2666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.25, + "ui": 0.6666666666666667, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "merged": 0.6666666666666667, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "tv": 0.5, + "soundtrack": 0.5, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "standard": 0.5, + "colour": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "flaw": 0.5, + "reliability": 0.5, + "cli-service": 0.75, + "build": 0.75, + "blocked": 0.5, + "maintenance": 0.75, + "construction": 0.75, + "ios": 0.5, + "image": 0.5, + "stock": 0.5, + "reminder": 0.5, + "status": 0.01920000000000001, + "review": 0.048000000000000015, + "in": 2, + "lang-crystal": 0.5, + "breaking": 0.75, + "change": 0.75, + "phone": 0.5, + "refactor": 0.5, + "monologue": 0.5, + "reviewed-approved": 0.6666666666666667, + "lecture": 0.5, + "backing": 0.5, + "browser": 2, + "aws": 0.5, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 0.5, + "peer-review": 0.5, + "writer-needed": 0.5, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 0.5, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "paas": 0.5, + "net": 0.6666666666666667, + "core": 0.6666666666666667, + "wiretap": 0.5, + "unit-jest": 2, + "instruction": 0.5, + "infrastructure": 0.5, + "rgb": 0.5, + "target": 0.6666666666666667, + "windows": 0.6666666666666667, + "call": 2, + "iconography": 0.5, + "promote": 0.5, + "template": 0.5, + "support": 0.75, + "first-timers-only": 0.5, + "java": 0.5, + "cdn": 0.5, + "ready": 0.8, + "for": 0.32000000000000006, + "deploy": 0.8, + "troubleshooting": 0.5, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 0.75, + "repeat": 0.75, + "devops": 0.6666666666666667, + "defend": 0.6666666666666667, + "blogging": 2, + "friendliness": 2, + "i": 0.6666666666666667, + "n": 0.6666666666666667, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 0.6666666666666667, + "enhancement": 1.158714294433594, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 0.75, + "improvement": 2, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 0.6666666666666667, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 0.75, + "io": 0.75, + "client": 0.75, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 0.6666666666666667, + "help": 0.6666666666666667, + "wanted": 0.6666666666666667, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 0.6666666666666667, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 0.75, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 0.6666666666666667, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.6666666666666667, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "social": 2, + "internationalisation": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 0.75, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "gcp": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "backup": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 0.024691358024691367, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 0.03955078125, + "memo": 0.75, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 0.6666666666666667, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 0.12800000000000003, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "glo": 2, + "porting": 2, + "on": 0.6666666666666667, + "hold": 0.6666666666666667, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 7.873199999999997, + "balloon": 7.873199999999997, + "bulb": 24.71923828125, + "rocket": 0.6666666666666667, + "discuss": 20.99519999999999, + "syntax": 2, + "concept": 22.78125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "prometheus": 0.5, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 0.28125, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.8, + "customer": 0.6666666666666667, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 0.6666666666666667, + "module": 0.6666666666666667, + "mixing": 2, + "backlog": 0.6666666666666667, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 0.6666666666666667, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 0.6666666666666667, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "inspiration": 0.015625, + "bias": 4.343672558656374, + "kind": 0.007315957933241889, + "discussion": 0.012345679012345684, + "hot": 0.33333333333333337, + "planned": 0.06666666666666668, + "feature": 0.015432098765432101, + "feature-request": 0.012345679012345684, + "rfc": 0.015625, + "new": 0.0000017419987457523156, + "best": 0.052734375, + "practice": 0.052734375, + "eventstorming": 0.015625, + "ideas": 0.015625, + "pr": 0.0003827633962834678, + "dependency": 0.000030243033780422146, + "proposal": 0.052734375, + "heavy": 0.41666666666666663, + "plus": 0.41666666666666663, + "sign": 0.41666666666666663, + "request": 0.0011111111111111113, + "cmty": 2, + "thought": 0.0625, + "plan": 0.0625, + "great": 0.11111111111111113, + "insight": 0.11111111111111113, + "opinions": 0.03703703703703705, + "needed": 0.13888888888888895, + "theorem": 0.0625, + "api": 0.10546875, + "statement": 0.0625, + "opinion": 0.0625, + "brainstorming": 0.0625, + "revisitinfuture": 0.0625, + "tips": 0.0625, + "chat": 0.03703703703703705, + "(category)": 0.0740740740740741, + "future": 0.140625, + "architecture": 0.375, + "enhancements": 0.140625, + "suggestion": 0.0625, + "crypto": 0.375, + "definition": 1.8728852309099235, + "other": 1, + "language": 1, + "integration": 1, + "idea": 0.020833333333333336, + "component": 7.03125, + "developer": 3.515625, + "tools": 3.515625, + "business": 4, + "process": 4, + "sustain": 2.25, + "confirmed": 2.25, + "type": 0.014664977788925178, + "question": 28.125, + "grey": 1.875, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 3.5999999999999996, + "utils": 1, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 4.5, + "website": 2, + "copy": 2, + "bug": 4, + "guide": 2.25, + "next": 3.5999999999999996, + "meetup!": 2, + "feat": 3.75, + "ui": 2, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "merged": 2, + "vlog": 2.25, + "acceptance": 2, + "testing": 2, + "tv": 2.25, + "soundtrack": 2.25, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "standard": 2.25, + "colour": 2.25, + "computer": 2, + "desktop": 2, + "flaw": 2.25, + "reliability": 2.25, + "cli-service": 1.875, + "build": 1.875, + "blocked": 2.25, + "maintenance": 1.875, + "construction": 1.875, + "ios": 2.25, + "image": 2.25, + "stock": 2.25, + "reminder": 2.25, + "status": 19.68299999999999, + "review": 10.934999999999995, + "in": 1, + "lang-crystal": 2.25, + "breaking": 1.875, + "change": 1.875, + "phone": 2.25, + "refactor": 2.25, + "monologue": 2.25, + "reviewed-approved": 2, + "lecture": 2.25, + "backing": 2.25, + "browser": 1, + "aws": 2.25, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 2.25, + "peer-review": 2.25, + "writer-needed": 2.25, + "freemasonry": 2, + "icons": 2, + "lean": 2.25, + "cannot": 2, + "reproduce": 2, + "paas": 2.25, + "net": 2, + "core": 2, + "wiretap": 2.25, + "unit-jest": 1, + "instruction": 2.25, + "infrastructure": 2.25, + "rgb": 2.25, + "target": 2, + "windows": 2, + "call": 1, + "iconography": 2.25, + "promote": 2.25, + "template": 2.25, + "support": 1.875, + "first-timers-only": 2.25, + "java": 2.25, + "cdn": 2.25, + "ready": 1.7999999999999998, + "for": 3.2399999999999993, + "deploy": 1.7999999999999998, + "troubleshooting": 2.25, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1.875, + "repeat": 1.875, + "devops": 2, + "defend": 2, + "blogging": 1, + "friendliness": 1, + "i": 2, + "n": 2, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 2, + "enhancement": 0.13904571533203125, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1.875, + "improvement": 1, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 2, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1.875, + "io": 1.875, + "client": 1.875, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 2, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1.875, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 2, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 2, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "social": 1, + "internationalisation": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1.875, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "gcp": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "backup": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 16, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 12.359619140625, + "memo": 1.875, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 2, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 5.831999999999998, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "glo": 1, + "porting": 1, + "on": 2, + "hold": 2, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 0.048000000000000015, + "balloon": 0.048000000000000015, + "bulb": 0.019775390625, + "rocket": 2, + "discuss": 0.025600000000000008, + "syntax": 1, + "concept": 0.015625, + "c": 2, + "c++": 2, + "prometheus": 2.25, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 3.515625, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1.7999999999999998, + "customer": 2, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 2, + "module": 2, + "mixing": 1, + "backlog": 2, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 2, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 2, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "business": { + "positive_weights": { + "business": 16, + "process": 8, + "bias": 2.2427542750984457e-11, + "deal": 22.78125, + "biz": 22.78125, + "(category)": 1.3333333333333335, + "commerce": 10.125, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 2, + "hacking": 2, + "video": 2, + "test": 2, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 0.8, + "meetup!": 2, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.27777777777777785, + "merged": 0.8333333333333334, + "vlog": 2, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 0.8, + "feature": 0.8333333333333334, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.75, + "review": 0.75, + "needed": 0.75, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 2, + "nail": 2, + "care": 2, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8333333333333334, + "for": 0.8, + "deploy": 2, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8333333333333334, + "be": 0.8333333333333334, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.6666666666666667, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "enterprise": 10.125, + "commercial": 10.125, + "handshakes": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 2, + "discuss": 2, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 2, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "business": 0.03703703703703705, + "process": 0.11111111111111113, + "bias": 3.004253454779683, + "deal": 0.015625, + "biz": 0.015625, + "(category)": 0.6666666666666667, + "commerce": 0.0625, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 1, + "hacking": 1, + "video": 1, + "test": 1, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 2, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 1.7999999999999998, + "meetup!": 1, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 3.5, + "merged": 1.75, + "vlog": 1, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1.7999999999999998, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.875, + "review": 1.875, + "needed": 1.875, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1, + "nail": 1, + "care": 1, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.75, + "for": 1.7999999999999998, + "deploy": 1, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.75, + "be": 1.75, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 2, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "enterprise": 0.0625, + "commercial": 0.0625, + "handshakes": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 1, + "discuss": 1, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 1, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "maintenance": { + "positive_weights": { + "sustain": 22.78125, + "bias": 6.06723412115834e-51, + "sustenance": 22.78125, + "reliability": 22.78125, + "type": 0.005437606205305203, + "maintenance": 15.8203125, + "construction": 7.03125, + "pr": 0.03476142883300782, + "polish": 6.479999999999999, + "nail": 6.479999999999999, + "care": 6.479999999999999, + "sparkles": 8, + "enhancement": 12.514114379882812, + "upkeep": 22.78125, + "dependencies": 10.125, + "contributions": 10.125, + "clean": 8, + "up": 8, + "component": 0.23174285888671878, + "eslint": 14.0625, + "rules": 7.03125, + "repare": 10.125, + "todo": 15.8203125, + "spiral": 7.03125, + "notepad": 7.03125, + "technical": 8, + "debt": 8, + "core": 13.515243530273441, + "legacy": 10.125, + "definition": 2, + "performance": 18, + "backup": 10.125, + "dependency-update": 10.125, + "dependency": 7.415771484375, + "related": 8, + "⬆️": 13.18359375, + "site": 2, + "chore": 10.125, + "doughnut": 2, + "utilities": 3.75, + "labour": 10.125, + "monitor": 10.125, + "tech-debt": 10.125, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "confirmed": 0.5, + "question": 0.28125, + "grey": 0.28125, + "cmty": 2, + "need-info": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.75, + "utils": 0.75, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 0.22222222222222227, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.16666666666666669, + "ui": 0.6666666666666667, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "merged": 0.0925925925925926, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "standard": 0.5, + "colour": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "flaw": 0.5, + "cli-service": 0.75, + "build": 0.75, + "blocked": 0.5, + "ios": 0.5, + "planned": 0.6666666666666667, + "feature": 0.6666666666666667, + "feature-request": 2, + "rfc": 0.5, + "image": 0.5, + "stock": 0.5, + "reminder": 0.5, + "status": 0.30000000000000004, + "review": 0.75, + "needed": 0.75, + "in": 2, + "lang-crystal": 0.5, + "breaking": 0.75, + "change": 0.75, + "phone": 0.5, + "refactor": 0.5, + "monologue": 0.5, + "reviewed-approved": 0.6666666666666667, + "new": 0.10546875, + "best": 0.75, + "practice": 0.75, + "lecture": 0.5, + "backing": 0.5, + "browser": 2, + "aws": 0.5, + "article": 0.5, + "peer-review": 0.5, + "writer-needed": 0.5, + "eventstorming": 0.5, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 0.5, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "paas": 0.5, + "net": 0.024691358024691367, + "wiretap": 0.5, + "unit-jest": 2, + "instruction": 0.5, + "infrastructure": 0.5, + "rgb": 0.5, + "ideas": 0.5, + "target": 0.6666666666666667, + "windows": 0.6666666666666667, + "call": 2, + "iconography": 0.5, + "promote": 0.5, + "template": 0.5, + "support": 0.75, + "first-timers-only": 0.5, + "java": 0.5, + "cdn": 2, + "ready": 0.3333333333333333, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.28125, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 0.75, + "repeat": 0.75, + "devops": 0.6666666666666667, + "defend": 0.6666666666666667, + "blogging": 2, + "friendliness": 2, + "i": 0.6666666666666667, + "n": 0.6666666666666667, + "cla": 0.6666666666666667, + "signed": 0.6666666666666667, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.8, + "repro": 2, + "reactis": 2, + "to": 4.2666666666666675, + "be": 0.8333333333333333, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 9, + "not": 0.28125, + "merge": 0.28125, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 2, + "plus": 2, + "sign": 2, + "request": 2, + "glitch": 2, + "cx": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "motif": 2, + "event": 0.6666666666666667, + "help": 0.6666666666666667, + "wanted": 0.6666666666666667, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "easy": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 0.6666666666666667, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 0.6666666666666667, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 0.5, + "container": 2, + "opencollective": 2, + "report": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 0.5, + "focus": 2, + "groups": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 0.6666666666666667, + "hold": 0.6666666666666667, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "sendgrid": 13.18359375, + "lint": 10.125, + "multi": 8, + "module": 8, + "update": 13.684184074401855, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.01483154296875, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 0.8, + "doc": 0.0263671875, + "blogs": 0.5, + "unit-mocha": 0.6666666666666667, + "enterprise": 0.5, + "scheduler": 0.6666666666666667, + "class": 0.75, + "fields": 0.75, + "commercial": 0.5, + "infra": 0.5, + "terraform": 0.5, + "figure": 0.5, + "layout": 0.5, + "specification": 0.5, + "vector": 2, + "greenkeeper": 0.5, + "tdd": 0.5, + "raster": 2, + "mishap": 0.5, + "sketch": 0.5, + "released": 0.5, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 0.6666666666666667, + "extension": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.32000000000000006, + "due": 0.32000000000000006, + "inactivity": 0.32000000000000006, + "jira": 2, + "survey": 2, + "behavioral": 2, + "mixing": 2, + "backlog": 0.6666666666666667, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 0.6666666666666667, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "sustain": 0.015625, + "bias": 3.4875196736768466, + "sustenance": 0.015625, + "reliability": 0.015625, + "type": 0.024584084767909103, + "maintenance": 0.03515625, + "construction": 0.140625, + "pr": 0.7786560058593752, + "polish": 0.16000000000000003, + "nail": 0.16000000000000003, + "care": 0.16000000000000003, + "sparkles": 0.11111111111111113, + "enhancement": 0.0005587935447692875, + "upkeep": 0.015625, + "dependencies": 0.0625, + "contributions": 0.0625, + "clean": 0.11111111111111113, + "up": 0.11111111111111113, + "component": 0.6952285766601562, + "eslint": 0.04687500000000001, + "rules": 0.140625, + "repare": 0.0625, + "todo": 0.03515625, + "spiral": 0.140625, + "notepad": 0.140625, + "technical": 0.11111111111111113, + "debt": 0.11111111111111113, + "core": 0.0003662109375, + "legacy": 0.0625, + "definition": 1, + "performance": 0.027777777777777783, + "backup": 0.0625, + "dependency-update": 0.0625, + "dependency": 0.020599365234375003, + "related": 0.11111111111111113, + "⬆️": 0.052734375, + "site": 1, + "chore": 0.0625, + "doughnut": 1, + "utilities": 0.375, + "labour": 0.0625, + "monitor": 0.0625, + "tech-debt": 0.0625, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "confirmed": 2.25, + "question": 3.515625, + "grey": 3.515625, + "cmty": 1, + "need-info": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1.875, + "utils": 1.875, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 4, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "feat": 2.5000000000000004, + "ui": 2, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "merged": 7, + "vlog": 2.25, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "standard": 2.25, + "colour": 2.25, + "computer": 2, + "desktop": 2, + "flaw": 2.25, + "cli-service": 1.875, + "build": 1.875, + "blocked": 2.25, + "ios": 2.25, + "planned": 2, + "feature": 2, + "feature-request": 1, + "rfc": 2.25, + "image": 2.25, + "stock": 2.25, + "reminder": 2.25, + "status": 3.3749999999999996, + "review": 1.875, + "needed": 1.875, + "in": 1, + "lang-crystal": 2.25, + "breaking": 1.875, + "change": 1.875, + "phone": 2.25, + "refactor": 2.25, + "monologue": 2.25, + "reviewed-approved": 2, + "new": 6.591796875, + "best": 1.875, + "practice": 1.875, + "lecture": 2.25, + "backing": 2.25, + "browser": 1, + "aws": 2.25, + "article": 2.25, + "peer-review": 2.25, + "writer-needed": 2.25, + "eventstorming": 2.25, + "freemasonry": 2, + "icons": 2, + "lean": 2.25, + "cannot": 2, + "reproduce": 2, + "paas": 2.25, + "net": 16, + "wiretap": 2.25, + "unit-jest": 1, + "instruction": 2.25, + "infrastructure": 2.25, + "rgb": 2.25, + "ideas": 2.25, + "target": 2, + "windows": 2, + "call": 1, + "iconography": 2.25, + "promote": 2.25, + "template": 2.25, + "support": 1.875, + "first-timers-only": 2.25, + "java": 2.25, + "cdn": 1, + "ready": 3.1499999999999995, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 3.515625, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1.875, + "repeat": 1.875, + "devops": 2, + "defend": 2, + "blogging": 1, + "friendliness": 1, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 1.7999999999999998, + "repro": 1, + "reactis": 1, + "to": 0.02333333333333334, + "be": 1.75, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 0.014467592592592603, + "not": 3.515625, + "merge": 3.515625, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1, + "plus": 1, + "sign": 1, + "request": 1, + "glitch": 1, + "cx": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "motif": 1, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "easy": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 2, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 2, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 2.25, + "container": 1, + "opencollective": 1, + "report": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 2.25, + "focus": 1, + "groups": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 2, + "hold": 2, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "sendgrid": 0.052734375, + "lint": 0.0625, + "multi": 0.11111111111111113, + "module": 0.11111111111111113, + "update": 0.0016093254089355469, + "c": 2, + "c++": 2, + "bulb": 23.174285888671875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1.7999999999999998, + "doc": 14.83154296875, + "blogs": 2.25, + "unit-mocha": 2, + "enterprise": 2.25, + "scheduler": 2, + "class": 1.875, + "fields": 1.875, + "commercial": 2.25, + "infra": 2.25, + "terraform": 2.25, + "figure": 2.25, + "layout": 2.25, + "specification": 2.25, + "vector": 1, + "greenkeeper": 2.25, + "tdd": 2.25, + "raster": 1, + "mishap": 2.25, + "sketch": 2.25, + "released": 2.25, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 2, + "extension": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 3.2399999999999993, + "due": 3.2399999999999993, + "inactivity": 3.2399999999999993, + "jira": 1, + "survey": 1, + "behavioral": 1, + "mixing": 1, + "backlog": 2, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 2, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "null": { + "positive_weights": { + "confirmed": 22.78125, + "bias": 3.906946458946221e-74, + "need-info": 22.78125, + "good": 1.303553581237793, + "first": 24.71923828125, + "issue": 0.9155273437500004, + "abandoned": 22.78125, + "pr": 3.0754687500000015, + "merged": 32, + "difficulty": 16, + "hard": 16, + "blocked": 22.78125, + "reminder": 22.78125, + "status": 12.656249999999998, + "review": 0.8333333333333336, + "needed": 8.888888888888893, + "in": 16, + "reviewed-approved": 16, + "writer-needed": 10.125, + "cannot": 8, + "reproduce": 8, + "support": 11.403486728668213, + "first-timers-only": 10.125, + "ready": 7.199999999999999, + "for": 11.663999999999996, + "deploy": 3.5999999999999996, + "conflicts": 10.125, + "planned": 2.1599999999999997, + "next": 0.72, + "release": 5.183999999999999, + "unconfirmed": 10.125, + "type": 0.057935714721679715, + "duplicate": 15.8203125, + "repeat": 7.03125, + "cla": 8, + "signed": 8, + "needs": 26.999999999999996, + "repro": 4, + "to": 0.48000000000000004, + "be": 2, + "needs-research": 10.125, + "do": 0.2604166666666668, + "not": 7.03125, + "merge": 14.0625, + "beginner-friendly": 10.125, + "wip": 16, + "test": 0.5925925925925928, + "docs": 0.5, + "upstream": 6.407226562500002, + "help": 8, + "wanted": 8, + "priority": 16, + "medium": 4, + "cmty": 0.4166666666666668, + "cancelled": 3.75, + "easy": 2, + "invalid": 7.03125, + "x": 7.03125, + "changelog": 2, + "-": 8, + "approved": 10.125, + "critical": 10.125, + "left": 2, + "out": 2, + "welcome": 16, + "available": 2, + "accepted": 10.125, + "stale": 10.125, + "low": 4, + "high": 4, + "major": 10.125, + "alpha": 4, + "has": 8, + "code": 2, + "request": 0.8333333333333334, + "wontfix": 10.125, + "triage": 22.78125, + "contribution": 4, + "progress": 2, + "resolution": 3.75, + "redirect": 3.75, + "a": 1.2, + "example": 0.18984374999999998, + "app": 1.2, + "on": 8, + "hold": 8, + "hacktoberfest": 0.5, + "must-triage": 10.125, + "work": 2, + "unreviewed": 8, + "browser": 0.13888888888888892, + "testing": 0.18750000000000006, + "feedback": 8, + "requested": 8, + "component": 0.31640625, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.03125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "question": 0.09375, + "grey": 0.28125, + "sustenance": 0.5, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "utils": 0.75, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 0.08333333333333334, + "guide": 0.5, + "meetup!": 0.22222222222222227, + "feat": 0.25, + "ui": 0.6666666666666667, + "mastering": 0.5, + "steps": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "standard": 0.5, + "colour": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "flaw": 0.5, + "reliability": 0.5, + "cli-service": 0.75, + "build": 0.75, + "maintenance": 0.75, + "construction": 0.75, + "ios": 0.5, + "feature": 0.27777777777777785, + "feature-request": 0.6666666666666667, + "rfc": 0.5, + "image": 0.5, + "stock": 0.5, + "lang-crystal": 0.5, + "breaking": 0.10546875, + "change": 0.03955078125, + "phone": 0.5, + "refactor": 0.5, + "monologue": 0.5, + "new": 0.10546875, + "best": 0.75, + "practice": 0.75, + "lecture": 0.5, + "backing": 0.5, + "aws": 0.5, + "polish": 0.32000000000000006, + "nail": 0.32000000000000006, + "care": 0.32000000000000006, + "article": 0.5, + "peer-review": 0.5, + "eventstorming": 0.5, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 0.5, + "paas": 0.5, + "net": 0.6666666666666667, + "core": 0.6666666666666667, + "wiretap": 0.5, + "unit-jest": 2, + "instruction": 0.5, + "infrastructure": 0.5, + "rgb": 0.5, + "ideas": 0.5, + "target": 0.6666666666666667, + "windows": 0.6666666666666667, + "call": 2, + "iconography": 0.5, + "promote": 0.5, + "template": 0.5, + "java": 0.5, + "cdn": 0.5, + "dependency": 0.28125, + "troubleshooting": 0.5, + "spec": 0.28125, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 0.6666666666666667, + "e": 0.22222222222222227, + "approachability": 0.5, + "investment": 0.5, + "optimisation": 0.5, + "kotlin": 0.5, + "devops": 0.6666666666666667, + "defend": 0.6666666666666667, + "blogging": 0.5, + "friendliness": 0.5, + "i": 0.6666666666666667, + "n": 0.6666666666666667, + "icebox": 0.5, + "meetup": 0.5, + "examination": 0.5, + "mobile": 0.10546875, + "device": 0.10546875, + "api": 2, + "decorators": 2, + "addon": 0.5, + "cracking": 0.5, + "sparkles": 0.6666666666666667, + "enhancement": 0.6666666666666667, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "upkeep": 0.5, + "reactis": 2, + "sample": 0.5, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 0.5, + "lang-dart": 0.5, + "framework": 2, + "icon": 0.5, + "grant": 2, + "cybersec": 0.5, + "biz": 0.5, + "internationalization": 0.5, + "utility-lib": 0.5, + "qa": 0.5, + "hacked": 0.5, + "how-to": 0.5, + "trello": 0.5, + "os": 0.5, + "sound": 0.5, + "improvement": 0.6666666666666667, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "glitch": 0.5, + "cx": 0.5, + "dependencies": 0.5, + "inquiry": 0.5, + "deno": 0.5, + "area": 0.6666666666666667, + "crash": 0.6666666666666667, + "camera": 0.5, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 0.6666666666666667, + "investigation": 0.6666666666666667, + "basecamp": 2, + "literature": 0.22222222222222227, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 0.75, + "debug": 0.6666666666666667, + "information": 0.6666666666666667, + "frontend": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 0.6666666666666667, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "e-cypress": 2, + "lipstick": 2, + "backdoor": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 0.6666666666666667, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 0.75, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 0.6666666666666667, + "fix": 0.75, + "backend": 2, + "cleaning": 2, + "internal": 0.2666666666666667, + "house": 2, + "technical": 0.6666666666666667, + "debt": 0.6666666666666667, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "opinions": 0.0740740740740741, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 0.5, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 0.5, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "html": 2, + "y": 0.6666666666666667, + "general": 2, + "js": 2, + "unit": 0.6666666666666667, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "functions": 2, + "gnu": 2, + "linux": 0.5, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 0.75, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "lock": 2, + "security": 0.6666666666666667, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "future": 0.75, + "architecture": 0.75, + "enhancements": 0.75, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 0.6666666666666667, + "glo": 2, + "porting": 2, + "evaluation": 2, + "go": 0.8, + "gradle": 2, + "accessibility": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "idea": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "scheduler": 16, + "released": 22.78125, + "failing": 2, + "closed": 6.479999999999999, + "due": 6.479999999999999, + "inactivity": 6.479999999999999, + "backlog": 4, + "spam": 10.125, + "reviewed-changes-requested": 16, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.6666666666666667, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 0.8, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 2, + "enterprise": 0.5, + "class": 0.75, + "fields": 0.75, + "commercial": 0.5, + "infra": 0.5, + "terraform": 0.5, + "figure": 0.5, + "layout": 0.5, + "specification": 0.5, + "vector": 2, + "greenkeeper": 0.5, + "tdd": 0.5, + "raster": 2, + "mishap": 0.5, + "sketch": 0.5, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 0.5, + "manual": 0.5, + "osx": 2, + "axe": 0.5, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "safety": 0.5, + "phonetic": 0.5, + "concept": 0.5, + "lerna": 0.5, + "readme": 0.5, + "music": 0.5, + "customer": 0.6666666666666667, + "extension": 0.5, + "lint": 0.5, + "optimizing": 0.75, + "compiler": 0.75, + "css-select": 0.5, + "figma": 0.5, + "finance": 0.5, + "jira": 0.5, + "survey": 0.5, + "behavioral": 0.75, + "multi": 0.6666666666666667, + "module": 0.6666666666666667, + "mixing": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 0.6666666666666667, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "confirmed": 0.015625, + "bias": 2.1254941793247384, + "need-info": 0.015625, + "good": 0.1303553581237793, + "first": 0.019775390625, + "issue": 0.158203125, + "abandoned": 0.015625, + "pr": 0.0000029942212404047103, + "merged": 0.012345679012345684, + "difficulty": 0.03703703703703705, + "hard": 0.03703703703703705, + "blocked": 0.015625, + "reminder": 0.015625, + "status": 0.05625000000000001, + "review": 0.12500000000000003, + "needed": 0.004115226337448562, + "in": 0.03703703703703705, + "reviewed-approved": 0.03703703703703705, + "writer-needed": 0.0625, + "cannot": 0.11111111111111113, + "reproduce": 0.11111111111111113, + "support": 0.0024139881134033203, + "first-timers-only": 0.0625, + "ready": 0.13333333333333336, + "for": 0.06400000000000002, + "deploy": 0.4, + "conflicts": 0.0625, + "planned": 0.32000000000000006, + "next": 0.6400000000000001, + "release": 0.09600000000000002, + "unconfirmed": 0.0625, + "type": 0.9385585784912108, + "duplicate": 0.03515625, + "repeat": 0.140625, + "cla": 0.11111111111111113, + "signed": 0.11111111111111113, + "needs": 0.01666666666666667, + "repro": 0.33333333333333337, + "to": 0.42666666666666675, + "be": 1, + "needs-research": 0.0625, + "do": 1.125, + "not": 0.140625, + "merge": 0.046875, + "beginner-friendly": 0.0625, + "wip": 0.03703703703703705, + "test": 0.041152263374485624, + "docs": 1.2500000000000002, + "upstream": 0.0146484375, + "help": 0.11111111111111113, + "wanted": 0.11111111111111113, + "priority": 0.03703703703703705, + "medium": 0.33333333333333337, + "cmty": 1.5, + "cancelled": 0.375, + "easy": 1, + "invalid": 0.140625, + "x": 0.140625, + "changelog": 1, + "-": 0.11111111111111113, + "approved": 0.0625, + "critical": 0.0625, + "left": 1, + "out": 1, + "welcome": 0.03703703703703705, + "available": 1, + "accepted": 0.0625, + "stale": 0.0625, + "low": 0.33333333333333337, + "high": 0.33333333333333337, + "major": 0.0625, + "alpha": 0.33333333333333337, + "has": 0.11111111111111113, + "code": 1, + "request": 1.75, + "wontfix": 0.0625, + "triage": 0.015625, + "contribution": 0.33333333333333337, + "progress": 1, + "resolution": 0.375, + "redirect": 0.375, + "a": 0.8, + "example": 2.63671875, + "app": 0.8, + "on": 0.11111111111111113, + "hold": 0.11111111111111113, + "hacktoberfest": 2.25, + "must-triage": 0.0625, + "work": 1, + "unreviewed": 0.11111111111111113, + "browser": 3, + "testing": 2.5312499999999996, + "feedback": 0.11111111111111113, + "requested": 0.11111111111111113, + "component": 0.4577636718750002, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 11.390625, + "business": 2, + "process": 2, + "sustain": 2.25, + "question": 7.03125, + "grey": 3.515625, + "sustenance": 2.25, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "utils": 1.875, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 7.5, + "guide": 2.25, + "meetup!": 4, + "feat": 3.75, + "ui": 2, + "mastering": 2.25, + "steps": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "vlog": 2.25, + "acceptance": 2, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "standard": 2.25, + "colour": 2.25, + "computer": 2, + "desktop": 2, + "flaw": 2.25, + "reliability": 2.25, + "cli-service": 1.875, + "build": 1.875, + "maintenance": 1.875, + "construction": 1.875, + "ios": 2.25, + "feature": 3.5, + "feature-request": 2, + "rfc": 2.25, + "image": 2.25, + "stock": 2.25, + "lang-crystal": 2.25, + "breaking": 6.591796875, + "change": 12.359619140625, + "phone": 2.25, + "refactor": 2.25, + "monologue": 2.25, + "new": 6.591796875, + "best": 1.875, + "practice": 1.875, + "lecture": 2.25, + "backing": 2.25, + "aws": 2.25, + "polish": 3.2399999999999993, + "nail": 3.2399999999999993, + "care": 3.2399999999999993, + "article": 2.25, + "peer-review": 2.25, + "eventstorming": 2.25, + "freemasonry": 2, + "icons": 2, + "lean": 2.25, + "paas": 2.25, + "net": 2, + "core": 2, + "wiretap": 2.25, + "unit-jest": 1, + "instruction": 2.25, + "infrastructure": 2.25, + "rgb": 2.25, + "ideas": 2.25, + "target": 2, + "windows": 2, + "call": 1, + "iconography": 2.25, + "promote": 2.25, + "template": 2.25, + "java": 2.25, + "cdn": 2.25, + "dependency": 3.515625, + "troubleshooting": 2.25, + "spec": 3.515625, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 2, + "e": 4, + "approachability": 2.25, + "investment": 2.25, + "optimisation": 2.25, + "kotlin": 2.25, + "devops": 2, + "defend": 2, + "blogging": 2.25, + "friendliness": 2.25, + "i": 2, + "n": 2, + "icebox": 2.25, + "meetup": 2.25, + "examination": 2.25, + "mobile": 6.591796875, + "device": 6.591796875, + "api": 1, + "decorators": 1, + "addon": 2.25, + "cracking": 2.25, + "sparkles": 2, + "enhancement": 2, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "upkeep": 2.25, + "reactis": 1, + "sample": 2.25, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 2.25, + "lang-dart": 2.25, + "framework": 1, + "icon": 2.25, + "grant": 1, + "cybersec": 2.25, + "biz": 2.25, + "internationalization": 2.25, + "utility-lib": 2.25, + "qa": 2.25, + "hacked": 2.25, + "how-to": 2.25, + "trello": 2.25, + "os": 2.25, + "sound": 2.25, + "improvement": 2, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "glitch": 2.25, + "cx": 2.25, + "dependencies": 2.25, + "inquiry": 2.25, + "deno": 2.25, + "area": 2, + "crash": 2, + "camera": 2.25, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 2, + "investigation": 2, + "basecamp": 1, + "literature": 4, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1.875, + "debug": 2, + "information": 2, + "frontend": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 2, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "e-cypress": 1, + "lipstick": 1, + "backdoor": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 2, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1.875, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 2, + "fix": 1.875, + "backend": 1, + "cleaning": 1, + "internal": 3.5999999999999996, + "house": 1, + "technical": 2, + "debt": 2, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "opinions": 8, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 2.25, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 2.25, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "html": 1, + "y": 2, + "general": 1, + "js": 1, + "unit": 2, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "functions": 1, + "gnu": 1, + "linux": 2.25, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1.875, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "lock": 1, + "security": 2, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "future": 1.875, + "architecture": 1.875, + "enhancements": 1.875, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 2, + "glo": 1, + "porting": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "gradle": 1, + "accessibility": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "idea": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "scheduler": 0.03703703703703705, + "released": 0.015625, + "failing": 1, + "closed": 0.16000000000000003, + "due": 0.16000000000000003, + "inactivity": 0.16000000000000003, + "backlog": 0.33333333333333337, + "spam": 0.0625, + "reviewed-changes-requested": 0.03703703703703705, + "c": 2, + "c++": 2, + "bulb": 2, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1.7999999999999998, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 1, + "enterprise": 2.25, + "class": 1.875, + "fields": 1.875, + "commercial": 2.25, + "infra": 2.25, + "terraform": 2.25, + "figure": 2.25, + "layout": 2.25, + "specification": 2.25, + "vector": 1, + "greenkeeper": 2.25, + "tdd": 2.25, + "raster": 1, + "mishap": 2.25, + "sketch": 2.25, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 2.25, + "manual": 2.25, + "osx": 1, + "axe": 2.25, + "sendgrid": 1, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "safety": 2.25, + "phonetic": 2.25, + "concept": 2.25, + "lerna": 2.25, + "readme": 2.25, + "music": 2.25, + "customer": 2, + "extension": 2.25, + "lint": 2.25, + "optimizing": 1.875, + "compiler": 1.875, + "css-select": 2.25, + "figma": 2.25, + "finance": 2.25, + "jira": 2.25, + "survey": 2.25, + "behavioral": 1.875, + "multi": 2, + "module": 2, + "mixing": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 2, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "question": { + "positive_weights": { + "type": 0.8789062500000002, + "question": 28.125, + "grey": 7.03125, + "bias": 3.6876127151863634e-9, + "cmty": 1.3333333333333335, + "kind": 1.3333333333333335, + "inquiry": 22.78125, + "raising": 2, + "hand": 2, + "enquire": 22.78125, + "query": 22.78125, + "speech": 2, + "balloon": 2, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 2, + "test": 2, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 0.6666666666666667, + "guide": 2, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8333333333333333, + "merged": 0.8333333333333333, + "vlog": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 0.6666666666666667, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 0.75, + "construction": 0.75, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 0.6666666666666667, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 2, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 2, + "best": 2, + "practice": 2, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 2, + "nail": 2, + "care": 2, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8333333333333333, + "for": 2, + "deploy": 2, + "troubleshooting": 2, + "spec": 2, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 2, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8333333333333333, + "be": 0.8333333333333333, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 2, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "c": 2, + "c++": 2, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "type": 0.52734375, + "question": 0.015625000000000003, + "grey": 0.140625, + "bias": 6.14577157501417, + "cmty": 0.6666666666666667, + "kind": 0.6666666666666667, + "inquiry": 0.015625, + "raising": 1, + "hand": 1, + "enquire": 0.015625, + "query": 0.015625, + "speech": 1, + "balloon": 1, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 1, + "test": 1, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 2, + "website": 2, + "copy": 2, + "bug": 2, + "guide": 1, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.75, + "merged": 1.75, + "vlog": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1.875, + "construction": 1.875, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 2, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1, + "best": 1, + "practice": 1, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1, + "nail": 1, + "care": 1, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.75, + "for": 1, + "deploy": 1, + "troubleshooting": 1, + "spec": 1, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.75, + "be": 1.75, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "c": 1, + "c++": 1, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "design": { + "positive_weights": { + "palette": 22.78125, + "bias": 4.4616977473112154e-39, + "hsv": 22.78125, + "design": 20.25, + "feat": 0.3750000000000001, + "ui": 9.481481481481485, + "(category)": 1.3333333333333335, + "colour": 22.78125, + "image": 20.25, + "freemasonry": 8, + "icons": 8, + "rgb": 10.125, + "iconography": 10.125, + "icon": 20.25, + "cx": 10.125, + "font-face": 10.125, + "rgba": 10.125, + "style": 10.125, + "motif": 10.125, + "typography": 10.125, + "lipstick": 8, + "user": 3, + "interface": 8, + "dev": 4, + "experience": 16, + "hsl": 10.125, + "logo": 10.125, + "developer": 0.421875, + "color": 10.125, + "art": 10.125, + "brand": 4, + "component": 0.28125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.25, + "grey": 0.75, + "cmty": 0.6666666666666667, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.0740740740740741, + "utils": 2, + "thesis": 0.5, + "pentesting": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "pr": 0.30000000000000004, + "merged": 2, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.25, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "standard": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "flaw": 0.5, + "reliability": 0.5, + "cli-service": 0.28125, + "build": 0.28125, + "blocked": 0.5, + "maintenance": 0.75, + "construction": 0.75, + "ios": 0.5, + "planned": 0.6666666666666667, + "feature": 0.6666666666666667, + "feature-request": 2, + "rfc": 0.5, + "stock": 0.5, + "reminder": 0.5, + "status": 0.30000000000000004, + "review": 0.75, + "needed": 0.75, + "in": 2, + "lang-crystal": 0.5, + "breaking": 0.75, + "change": 0.75, + "phone": 0.5, + "refactor": 0.5, + "monologue": 0.5, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 0.5, + "backing": 0.5, + "browser": 2, + "aws": 0.5, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 0.5, + "peer-review": 0.5, + "writer-needed": 0.5, + "eventstorming": 0.5, + "lean": 0.5, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "paas": 0.5, + "net": 0.6666666666666667, + "core": 0.6666666666666667, + "wiretap": 0.5, + "unit-jest": 0.6666666666666667, + "instruction": 0.5, + "infrastructure": 0.5, + "ideas": 0.5, + "target": 0.6666666666666667, + "windows": 0.6666666666666667, + "call": 2, + "promote": 0.5, + "template": 0.5, + "support": 0.75, + "first-timers-only": 0.5, + "java": 0.5, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 0.75, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 0.6666666666666667, + "defend": 0.6666666666666667, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 2, + "plus": 2, + "sign": 2, + "request": 2, + "glitch": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "clean": 2, + "up": 2, + "event": 0.6666666666666667, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 0.75, + "-": 0.6666666666666667, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 0.6666666666666667, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 0.75, + "architecture": 0.75, + "enhancements": 0.75, + "pmi": 2, + "promotion": 2, + "validation": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 0.75, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "figure": 22.78125, + "layout": 10.125, + "vector": 4, + "raster": 2, + "sketch": 10.125, + "font": 2, + "customer": 2, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 2, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 0.6666666666666667, + "enterprise": 0.5, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "specification": 2, + "greenkeeper": 2, + "tdd": 2, + "mishap": 2, + "released": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 0.75, + "workflow": 0.75, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 0.6666666666666667, + "module": 0.6666666666666667, + "mixing": 2, + "backlog": 0.6666666666666667, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 0.6666666666666667, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "palette": 0.015625, + "bias": 3.127972494613266, + "hsv": 0.015625, + "design": 0.020833333333333336, + "feat": 0.10850694444444453, + "ui": 0.0036579789666209444, + "(category)": 0.6666666666666667, + "colour": 0.015625, + "image": 0.020833333333333336, + "freemasonry": 0.11111111111111113, + "icons": 0.11111111111111113, + "rgb": 0.0625, + "iconography": 0.0625, + "icon": 0.020833333333333336, + "cx": 0.0625, + "font-face": 0.0625, + "rgba": 0.0625, + "style": 0.0625, + "motif": 0.0625, + "typography": 0.0625, + "lipstick": 0.11111111111111113, + "user": 0.2083333333333334, + "interface": 0.11111111111111113, + "dev": 0.33333333333333337, + "experience": 0.03703703703703705, + "hsl": 0.0625, + "logo": 0.0625, + "developer": 0.7324218750000002, + "color": 0.0625, + "art": 0.0625, + "brand": 0.33333333333333337, + "component": 3.515625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 3.75, + "grey": 1.875, + "cmty": 2, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 8, + "utils": 1, + "thesis": 2.25, + "pentesting": 2.25, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "pr": 3.3749999999999996, + "merged": 1, + "vlog": 2.25, + "acceptance": 2, + "testing": 3.75, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "standard": 2.25, + "computer": 2, + "desktop": 2, + "flaw": 2.25, + "reliability": 2.25, + "cli-service": 3.515625, + "build": 3.515625, + "blocked": 2.25, + "maintenance": 1.875, + "construction": 1.875, + "ios": 2.25, + "planned": 2, + "feature": 2, + "feature-request": 1, + "rfc": 2.25, + "stock": 2.25, + "reminder": 2.25, + "status": 3.3749999999999996, + "review": 1.875, + "needed": 1.875, + "in": 1, + "lang-crystal": 2.25, + "breaking": 1.875, + "change": 1.875, + "phone": 2.25, + "refactor": 2.25, + "monologue": 2.25, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 2.25, + "backing": 2.25, + "browser": 1, + "aws": 2.25, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 2.25, + "peer-review": 2.25, + "writer-needed": 2.25, + "eventstorming": 2.25, + "lean": 2.25, + "cannot": 2, + "reproduce": 2, + "paas": 2.25, + "net": 2, + "core": 2, + "wiretap": 2.25, + "unit-jest": 2, + "instruction": 2.25, + "infrastructure": 2.25, + "ideas": 2.25, + "target": 2, + "windows": 2, + "call": 1, + "promote": 2.25, + "template": 2.25, + "support": 1.875, + "first-timers-only": 2.25, + "java": 2.25, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1.875, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 2, + "defend": 2, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1, + "plus": 1, + "sign": 1, + "request": 1, + "glitch": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "clean": 1, + "up": 1, + "event": 2, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1.875, + "-": 2, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 2, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1.875, + "architecture": 1.875, + "enhancements": 1.875, + "pmi": 1, + "promotion": 1, + "validation": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1.875, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "figure": 0.015625, + "layout": 0.0625, + "vector": 0.33333333333333337, + "raster": 1, + "sketch": 0.0625, + "font": 1, + "customer": 1, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 2, + "enterprise": 2.25, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "specification": 1, + "greenkeeper": 1, + "tdd": 1, + "mishap": 1, + "released": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 2, + "system": 2, + "advance": 1.875, + "workflow": 1.875, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 2, + "module": 2, + "mixing": 1, + "backlog": 2, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 2, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "infra": { + "positive_weights": { + "azure": 16, + "ad": 16, + "bias": 2.671410808263399e-52, + "ci": 8, + "cd": 8, + "multi-cloud": 22.78125, + "stock": 22.78125, + "aws": 22.78125, + "infrastructure": 22.78125, + "devops": 16, + "defend": 8, + "configure": 4, + "area": 9.481481481481485, + "cli": 1.7777777777777781, + "travis-yml": 10.125, + "grafana": 10.125, + "saltstack": 10.125, + "container": 10.125, + "gcp": 10.125, + "k": 8, + "s": 8, + "npm": 10.125, + "containerd": 10.125, + "sentry": 10.125, + "bitbucket": 4, + "cloud": 9, + "vultr": 10.125, + "kubernetes": 10.125, + "digital": 8, + "ocean": 8, + "iac": 10.125, + "go": 0.5904899999999996, + "client": 5.314409999999998, + "internal": 4.723919999999998, + "release": 4.199039999999998, + "gradle": 10.125, + "puppet": 10.125, + "component": 0.28125, + "developer": 0.98876953125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.25, + "grey": 0.75, + "cmty": 0.6666666666666667, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.2666666666666667, + "utils": 2, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 0.5, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.08333333333333334, + "ui": 2, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "pr": 0.03750000000000001, + "merged": 2, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "(category)": 2, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "standard": 0.5, + "colour": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "flaw": 0.5, + "reliability": 0.5, + "cli-service": 0.75, + "build": 0.75, + "blocked": 0.5, + "maintenance": 0.75, + "construction": 0.75, + "ios": 0.5, + "planned": 0.6666666666666667, + "feature": 0.25, + "feature-request": 2, + "rfc": 0.5, + "image": 0.5, + "reminder": 0.5, + "status": 0.8, + "review": 0.6666666666666667, + "needed": 2, + "in": 0.6666666666666667, + "lang-crystal": 0.5, + "breaking": 0.75, + "change": 0.75, + "phone": 0.5, + "refactor": 0.5, + "monologue": 0.5, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 0.5, + "backing": 0.5, + "browser": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 0.5, + "peer-review": 0.5, + "writer-needed": 0.5, + "eventstorming": 0.5, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 0.5, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "paas": 0.5, + "net": 0.6666666666666667, + "core": 0.6666666666666667, + "wiretap": 0.5, + "unit-jest": 2, + "instruction": 0.5, + "rgb": 0.5, + "ideas": 0.5, + "target": 0.6666666666666667, + "windows": 0.6666666666666667, + "call": 2, + "iconography": 0.5, + "promote": 0.5, + "template": 0.5, + "support": 0.75, + "first-timers-only": 0.5, + "java": 0.5, + "cdn": 0.5, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 0.5, + "spec": 0.28125, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 0.6666666666666667, + "approachability": 0.5, + "investment": 0.5, + "conflicts": 0.5, + "optimisation": 0.5, + "kotlin": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "blogging": 2, + "friendliness": 2, + "i": 0.6666666666666667, + "n": 0.6666666666666667, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 2, + "plus": 2, + "sign": 2, + "request": 0.75, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "crash": 0.0740740740740741, + "camera": 2, + "wip": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 0.28125, + "io": 0.28125, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 0.6666666666666667, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "node": 2, + "dev": 2, + "experience": 0.6666666666666667, + "fix": 2, + "backend": 2, + "cleaning": 2, + "house": 0.75, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 0.5, + "opencollective": 2, + "report": 2, + "performance": 0.5, + "clickup": 2, + "installer": 2, + "statement": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 0.5, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 0.22222222222222227, + "lock": 2, + "security": 0.5, + "newsletter": 2, + "verification": 2, + "color": 2, + "doughnut": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "safeguard": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "must-triage": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "speech": 2, + "balloon": 2, + "prometheus": 22.78125, + "infra": 22.78125, + "terraform": 22.78125, + "greenkeeper": 10.125, + "rocket": 3, + "deployment": 18, + "advance": 7.03125, + "workflow": 7.03125, + "lerna": 10.125, + "ansible": 10.125, + "chef": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "discuss": 2, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 2, + "enterprise": 0.5, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 0.5, + "figure": 0.5, + "layout": 0.5, + "specification": 0.5, + "vector": 2, + "tdd": 0.5, + "raster": 2, + "mishap": 0.5, + "sketch": 0.5, + "released": 0.5, + "font": 2, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 0.5, + "manual": 0.5, + "osx": 2, + "axe": 0.5, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "safety": 0.5, + "phonetic": 0.5, + "concept": 0.5, + "readme": 0.5, + "music": 2, + "failing": 0.8, + "customer": 0.6666666666666667, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 0.6666666666666667, + "module": 0.6666666666666667, + "mixing": 2, + "backlog": 0.6666666666666667, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "azure": 0.03703703703703705, + "ad": 0.03703703703703705, + "bias": 4.113105254731708, + "ci": 0.11111111111111113, + "cd": 0.11111111111111113, + "multi-cloud": 0.015625, + "stock": 0.015625, + "aws": 0.015625, + "infrastructure": 0.015625, + "devops": 0.03703703703703705, + "defend": 0.11111111111111113, + "configure": 0.33333333333333337, + "area": 0.0036579789666209444, + "cli": 0.009259259259259267, + "travis-yml": 0.0625, + "grafana": 0.0625, + "saltstack": 0.0625, + "container": 0.0625, + "gcp": 0.0625, + "k": 0.11111111111111113, + "s": 0.11111111111111113, + "npm": 0.0625, + "containerd": 0.0625, + "sentry": 0.0625, + "bitbucket": 0.33333333333333337, + "cloud": 0.08333333333333334, + "vultr": 0.0625, + "kubernetes": 0.0625, + "digital": 0.11111111111111113, + "ocean": 0.11111111111111113, + "iac": 0.0625, + "go": 0.11664000000000006, + "client": 0.03600000000000001, + "internal": 0.03840000000000002, + "release": 0.04096000000000002, + "gradle": 0.0625, + "puppet": 0.0625, + "component": 3.515625, + "developer": 0.494384765625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 3.75, + "grey": 1.875, + "cmty": 2, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 3.5999999999999996, + "utils": 1, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 2.25, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "feat": 7.5, + "ui": 1, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "pr": 12.656249999999998, + "merged": 1, + "vlog": 2.25, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "(category)": 1, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "standard": 2.25, + "colour": 2.25, + "computer": 2, + "desktop": 2, + "flaw": 2.25, + "reliability": 2.25, + "cli-service": 1.875, + "build": 1.875, + "blocked": 2.25, + "maintenance": 1.875, + "construction": 1.875, + "ios": 2.25, + "planned": 2, + "feature": 3.75, + "feature-request": 1, + "rfc": 2.25, + "image": 2.25, + "reminder": 2.25, + "status": 1.7999999999999998, + "review": 2, + "needed": 1, + "in": 2, + "lang-crystal": 2.25, + "breaking": 1.875, + "change": 1.875, + "phone": 2.25, + "refactor": 2.25, + "monologue": 2.25, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 2.25, + "backing": 2.25, + "browser": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 2.25, + "peer-review": 2.25, + "writer-needed": 2.25, + "eventstorming": 2.25, + "freemasonry": 2, + "icons": 2, + "lean": 2.25, + "cannot": 2, + "reproduce": 2, + "paas": 2.25, + "net": 2, + "core": 2, + "wiretap": 2.25, + "unit-jest": 1, + "instruction": 2.25, + "rgb": 2.25, + "ideas": 2.25, + "target": 2, + "windows": 2, + "call": 1, + "iconography": 2.25, + "promote": 2.25, + "template": 2.25, + "support": 1.875, + "first-timers-only": 2.25, + "java": 2.25, + "cdn": 2.25, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 2.25, + "spec": 3.515625, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 2, + "approachability": 2.25, + "investment": 2.25, + "conflicts": 2.25, + "optimisation": 2.25, + "kotlin": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "blogging": 1, + "friendliness": 1, + "i": 2, + "n": 2, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1, + "plus": 1, + "sign": 1, + "request": 1.875, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "crash": 8, + "camera": 1, + "wip": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 3.515625, + "io": 3.515625, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 2, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "node": 1, + "dev": 1, + "experience": 2, + "fix": 1, + "backend": 1, + "cleaning": 1, + "house": 1.875, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 2.25, + "opencollective": 1, + "report": 1, + "performance": 2.25, + "clickup": 1, + "installer": 1, + "statement": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 2.25, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 4, + "lock": 1, + "security": 2.25, + "newsletter": 1, + "verification": 1, + "color": 1, + "doughnut": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "safeguard": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "must-triage": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "speech": 1, + "balloon": 1, + "prometheus": 0.015625, + "infra": 0.015625, + "terraform": 0.015625, + "greenkeeper": 0.0625, + "rocket": 0.2083333333333334, + "deployment": 0.027777777777777783, + "advance": 0.140625, + "workflow": 0.140625, + "lerna": 0.0625, + "ansible": 0.0625, + "chef": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1, + "discuss": 1, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 1, + "enterprise": 2.25, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 2.25, + "figure": 2.25, + "layout": 2.25, + "specification": 2.25, + "vector": 1, + "tdd": 2.25, + "raster": 1, + "mishap": 2.25, + "sketch": 2.25, + "released": 2.25, + "font": 1, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 2.25, + "manual": 2.25, + "osx": 1, + "axe": 2.25, + "sendgrid": 1, + "operating": 2, + "system": 2, + "safety": 2.25, + "phonetic": 2.25, + "concept": 2.25, + "readme": 2.25, + "music": 1, + "failing": 1.7999999999999998, + "customer": 2, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 2, + "module": 2, + "mixing": 1, + "backlog": 2, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "data": { + "positive_weights": { + "data": 16.000000000000007, + "collection": 9.481481481481485, + "bias": 0.000003906250000000005, + "analysis": 2, + "cleaning": 2, + "wrangling": 2, + "entry": 2, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 2, + "confirmed": 2, + "type": 0.75, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 2, + "sustenance": 2, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 2, + "discussion": 2, + "palette": 2, + "azure": 2, + "ad": 2, + "external-bugs": 2, + "deal": 2, + "hacking": 2, + "video": 2, + "test": 2, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 2, + "website": 2, + "copy": 2, + "bug": 2, + "guide": 2, + "next": 2, + "meetup!": 2, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333334, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 2, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 2, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "contenu": 2, + "cli": 2, + "fund": 0.0740740740740741, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 0.024691358024691367, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "sast": 2, + "tech-debt": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "c": 2, + "c++": 2, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "data": 0.00045724737082761805, + "collection": 0.0036579789666209444, + "bias": 7.007904052734379, + "analysis": 1, + "cleaning": 1, + "wrangling": 1, + "entry": 1, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 1, + "confirmed": 1, + "type": 1.875, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 1, + "sustenance": 1, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 1, + "discussion": 1, + "palette": 1, + "azure": 1, + "ad": 1, + "external-bugs": 1, + "deal": 1, + "hacking": 1, + "video": 1, + "test": 1, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 1, + "website": 1, + "copy": 1, + "bug": 1, + "guide": 1, + "next": 1, + "meetup!": 1, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "contenu": 1, + "cli": 1, + "fund": 8, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 16, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "sast": 1, + "tech-debt": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "c": 1, + "c++": 1, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "bug": { + "positive_weights": { + "external-bugs": 22.78125, + "bias": 8.984101256130625e-30, + "type": 0.2932995557785034, + "bug": 30, + "flaw": 22.78125, + "browser": 1.0534979423868318, + "issue": 13.5, + "troubleshooting": 22.78125, + "glitch": 22.78125, + "area": 1.7777777777777781, + "crash": 16, + "kind": 0.44444444444444453, + "debug": 8, + "information": 8, + "pr": 0.08000000000000003, + "fix": 3.75, + "regression": 17.597973346710212, + "boom": 3.955078125, + "report": 2, + "bugfix": 10.125, + "upstream": 2, + "cmty": 2.666666666666667, + "bug-report": 8, + "fault": 10.125, + "problem": 10.125, + "internal-issue-created": 10.125, + "bugs": 10.125, + "component": 0.28125, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "question": 0.09375000000000001, + "grey": 0.28125, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.10546875, + "first": 0.10546875, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.024691358024691367, + "utils": 2, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.25, + "ui": 0.6666666666666667, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "merged": 0.6666666666666667, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "standard": 0.5, + "colour": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "reliability": 0.5, + "cli-service": 0.75, + "build": 0.75, + "blocked": 0.5, + "maintenance": 0.75, + "construction": 0.75, + "ios": 0.5, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 0.6666666666666667, + "rfc": 0.5, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 0.6666666666666667, + "needed": 2, + "in": 0.6666666666666667, + "lang-crystal": 2, + "breaking": 0.32000000000000006, + "change": 0.32000000000000006, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 2, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 0.6666666666666667, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 0.75, + "repeat": 0.75, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 0.22222222222222227, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "frontend": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.0740740740740741, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 0.6666666666666667, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "container": 2, + "opencollective": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "brand": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "mishap": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 0.8, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "external-bugs": 0.015625, + "bias": 3.4406094719533624, + "type": 0.09165611118078235, + "bug": 0.013888888888888892, + "flaw": 0.015625, + "browser": 0.014631915866483778, + "issue": 0.0030140817901234593, + "troubleshooting": 0.015625, + "glitch": 0.015625, + "area": 0.1481481481481482, + "crash": 0.03703703703703705, + "kind": 1.3333333333333335, + "debug": 0.11111111111111113, + "information": 0.11111111111111113, + "pr": 4.373999999999999, + "fix": 0.375, + "regression": 0.000308990478515625, + "boom": 0.06407226562499999, + "report": 1, + "bugfix": 0.0625, + "upstream": 1, + "cmty": 0.22222222222222227, + "bug-report": 0.11111111111111113, + "fault": 0.0625, + "problem": 0.0625, + "internal-issue-created": 0.0625, + "bugs": 0.0625, + "component": 3.515625, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "question": 7.03125, + "grey": 3.515625, + "need-info": 2.25, + "sustenance": 2.25, + "good": 6.591796875, + "first": 6.591796875, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 16, + "utils": 1, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "feat": 3.75, + "ui": 2, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "merged": 2, + "vlog": 2.25, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "standard": 2.25, + "colour": 2.25, + "computer": 2, + "desktop": 2, + "reliability": 2.25, + "cli-service": 1.875, + "build": 1.875, + "blocked": 2.25, + "maintenance": 1.875, + "construction": 1.875, + "ios": 2.25, + "planned": 1, + "feature": 1.75, + "feature-request": 2, + "rfc": 2.25, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 2, + "needed": 1, + "in": 2, + "lang-crystal": 1, + "breaking": 3.2399999999999993, + "change": 3.2399999999999993, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 2, + "icons": 2, + "lean": 1, + "cannot": 2, + "reproduce": 2, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 2, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1.875, + "repeat": 1.875, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 4, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "frontend": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 8, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 2, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "container": 1, + "opencollective": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "brand": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "mishap": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1.7999999999999998, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "security": { + "positive_weights": { + "hacking": 22.78125, + "bias": 5.041312284206032e-28, + "pentesting": 10.125, + "wiretap": 10.125, + "cracking": 10.125, + "cybersec": 10.125, + "hacked": 10.125, + "warrant": 10.125, + "backdoor": 10.125, + "privacy": 10.125, + "exploit": 10.125, + "lock": 8, + "security": 16, + "infosec": 10.125, + "vulnerability": 10.125, + "protection": 20.25, + "data": 1.3333333333333335, + "safeguard": 10.125, + "sast": 10.125, + "component": 0.28125, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.084375, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "video": 0.5, + "test": 0.8, + "utils": 2, + "hsv": 0.5, + "thesis": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.25, + "ui": 0.6666666666666667, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "pr": 0.8, + "merged": 2, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "standard": 0.5, + "colour": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "flaw": 0.5, + "reliability": 0.5, + "cli-service": 0.75, + "build": 0.75, + "blocked": 0.5, + "maintenance": 0.75, + "construction": 0.75, + "ios": 0.5, + "planned": 2, + "feature": 0.8333333333333334, + "feature-request": 2, + "rfc": 0.5, + "image": 0.5, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 0.6666666666666667, + "needed": 2, + "in": 0.6666666666666667, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 2, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "paas": 2, + "net": 0.6666666666666667, + "core": 0.6666666666666667, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 0.6666666666666667, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 0.75, + "io": 0.75, + "client": 0.75, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 2, + "critical": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 0.5, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "has": 2, + "code": 2, + "teaching": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "engine": 8, + "vulns": 8, + "safety": 10.125, + "vuln": 10.125, + "gdpr": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 0.8, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 2, + "enterprise": 0.5, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 0.6666666666666667, + "axe": 2, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.8, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "hacking": 0.015625, + "bias": 4.086973380411488, + "pentesting": 0.0625, + "wiretap": 0.0625, + "cracking": 0.0625, + "cybersec": 0.0625, + "hacked": 0.0625, + "warrant": 0.0625, + "backdoor": 0.0625, + "privacy": 0.0625, + "exploit": 0.0625, + "lock": 0.11111111111111113, + "security": 0.03703703703703705, + "infosec": 0.0625, + "vulnerability": 0.0625, + "protection": 0.020833333333333336, + "data": 0.6666666666666667, + "safeguard": 0.0625, + "sast": 0.0625, + "component": 3.515625, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.9550781250000004, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "video": 2.25, + "test": 1.7999999999999998, + "utils": 1, + "hsv": 2.25, + "thesis": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "feat": 3.75, + "ui": 2, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 2.25, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "standard": 2.25, + "colour": 2.25, + "computer": 2, + "desktop": 2, + "flaw": 2.25, + "reliability": 2.25, + "cli-service": 1.875, + "build": 1.875, + "blocked": 2.25, + "maintenance": 1.875, + "construction": 1.875, + "ios": 2.25, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 2.25, + "image": 2.25, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 2, + "needed": 1, + "in": 2, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 2, + "icons": 2, + "lean": 1, + "cannot": 2, + "reproduce": 2, + "paas": 1, + "net": 2, + "core": 2, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 2, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1.875, + "io": 1.875, + "client": 1.875, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 1, + "critical": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 2.25, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "has": 1, + "code": 1, + "teaching": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "engine": 0.11111111111111113, + "vulns": 0.11111111111111113, + "safety": 0.0625, + "vuln": 0.0625, + "gdpr": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1.7999999999999998, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 1, + "enterprise": 2.25, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 2, + "axe": 1, + "sendgrid": 1, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1.7999999999999998, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "video": { + "positive_weights": { + "video": 22.78125, + "bias": 2.2072066198381377e-13, + "vlog": 22.78125, + "tv": 22.78125, + "camera": 22.78125, + "television": 22.78125, + "show": 2, + "film": 10.125, + "component": 0.28125, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.30000000000000004, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "test": 0.75, + "utils": 0.75, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "soundtrack": 2, + "(category)": 0.6666666666666667, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "youtube": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 0.8, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "video": 0.015625, + "bias": 4.618687867185249, + "vlog": 0.015625, + "tv": 0.015625, + "camera": 0.015625, + "television": 0.015625, + "show": 1, + "film": 0.0625, + "component": 3.515625, + "developer": 1.875, + "tools": 1.875, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.3749999999999996, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "test": 1.875, + "utils": 1.875, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "soundtrack": 1, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 2, + "finder": 2, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "youtube": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1.7999999999999998, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "test": { + "positive_weights": { + "component": 0.14483928680419927, + "test": 12.656250000000012, + "utils": 1.544952392578125, + "bias": 3.838807251201099e-43, + "assess": 22.78125, + "acceptance": 32, + "testing": 8.313141825199132, + "feat": 0.9259259259259266, + "unit-jest": 32, + "e": 28.125, + "examination": 22.78125, + "white": 6.479999999999999, + "check": 1.6199999999999997, + "mark": 6.479999999999999, + "qa": 10.125, + "tryout": 10.125, + "e-cypress": 7.03125, + "tests": 10.125, + "uat": 10.125, + "regression": 0.5, + "unit": 2, + "verification": 10.125, + "assertion": 10.125, + "trial": 10.125, + "assessment": 10.125, + "integration": 2, + "evaluation": 10.125, + "type": 0.05625, + "bdd": 10.125, + "renderer": 2, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "question": 0.25, + "grey": 0.75, + "cmty": 0.6666666666666667, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 0.6666666666666667, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "ui": 2.370370370370371, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "pr": 0.33333333333333337, + "merged": 0.8333333333333334, + "vlog": 0.5, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "standard": 0.5, + "colour": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "flaw": 0.5, + "reliability": 0.5, + "cli-service": 0.75, + "build": 0.75, + "blocked": 0.5, + "maintenance": 0.75, + "construction": 0.75, + "ios": 0.5, + "planned": 0.6666666666666667, + "feature": 0.27777777777777785, + "feature-request": 2, + "rfc": 0.5, + "image": 0.5, + "stock": 0.5, + "reminder": 0.5, + "status": 2, + "review": 0.6666666666666667, + "needed": 0.024691358024691367, + "in": 0.6666666666666667, + "lang-crystal": 0.5, + "breaking": 2, + "change": 2, + "phone": 0.5, + "refactor": 0.5, + "monologue": 0.5, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 0.5, + "backing": 0.5, + "browser": 0.75, + "aws": 0.5, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 0.5, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 2, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "paas": 2, + "net": 0.6666666666666667, + "core": 0.6666666666666667, + "wiretap": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 0.6666666666666667, + "windows": 0.6666666666666667, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8333333333333334, + "for": 2, + "deploy": 2, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "mobile": 0.75, + "device": 0.75, + "api": 0.6666666666666667, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.048000000000000015, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.33333333333333337, + "be": 0.8333333333333334, + "sample": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 0.6666666666666667, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.024691358024691367, + "fiscal": 2, + "user": 0.027777777777777787, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 0.22222222222222227, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "lipstick": 0.6666666666666667, + "-": 0.6666666666666667, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 0.6666666666666667, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.048000000000000015, + "y": 2, + "general": 2, + "js": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 0.024691358024691367, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "unit-mocha": 32, + "tdd": 22.78125, + "e-nightwatch": 2, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 0.8, + "doc": 0.5, + "blogs": 0.5, + "enterprise": 0.5, + "scheduler": 0.6666666666666667, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.12800000000000003, + "customer": 0.6666666666666667, + "extension": 2, + "lint": 2, + "optimizing": 0.75, + "compiler": 0.75, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 0.75, + "multi": 0.6666666666666667, + "module": 0.6666666666666667, + "mixing": 2, + "backlog": 0.6666666666666667, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 0.75, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 0.6666666666666667, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "component": 0.5214214324951172, + "test": 6.510416666666676e-7, + "utils": 0.1001129150390625, + "bias": 3.9193032144872673, + "assess": 0.015625, + "acceptance": 0.012345679012345684, + "testing": 0.0000015894571940104176, + "feat": 0.0025720164609053524, + "unit-jest": 0.012345679012345684, + "e": 0.015625000000000003, + "examination": 0.015625, + "white": 0.16000000000000003, + "check": 0.3600000000000001, + "mark": 0.16000000000000003, + "qa": 0.0625, + "tryout": 0.0625, + "e-cypress": 0.140625, + "tests": 0.0625, + "uat": 0.0625, + "regression": 0.5625000000000001, + "unit": 1, + "verification": 0.0625, + "assertion": 0.0625, + "trial": 0.0625, + "assessment": 0.0625, + "integration": 1, + "evaluation": 0.0625, + "type": 2.6367187500000004, + "bdd": 0.0625, + "renderer": 1, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "question": 3.75, + "grey": 1.875, + "cmty": 2, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 2, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "ui": 0.032921810699588494, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "pr": 3.1499999999999995, + "merged": 1.75, + "vlog": 2.25, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "standard": 2.25, + "colour": 2.25, + "computer": 2, + "desktop": 2, + "flaw": 2.25, + "reliability": 2.25, + "cli-service": 1.875, + "build": 1.875, + "blocked": 2.25, + "maintenance": 1.875, + "construction": 1.875, + "ios": 2.25, + "planned": 2, + "feature": 3.5, + "feature-request": 1, + "rfc": 2.25, + "image": 2.25, + "stock": 2.25, + "reminder": 2.25, + "status": 1, + "review": 2, + "needed": 16, + "in": 2, + "lang-crystal": 2.25, + "breaking": 1, + "change": 1, + "phone": 2.25, + "refactor": 2.25, + "monologue": 2.25, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 2.25, + "backing": 2.25, + "browser": 1.875, + "aws": 2.25, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 2.25, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 2, + "icons": 2, + "lean": 1, + "cannot": 2, + "reproduce": 2, + "paas": 1, + "net": 2, + "core": 2, + "wiretap": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 2, + "windows": 2, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.75, + "for": 1, + "deploy": 1, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "mobile": 1.875, + "device": 1.875, + "api": 2, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 10.934999999999995, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 3.1499999999999995, + "be": 1.75, + "sample": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 2, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 16, + "fiscal": 1, + "user": 15, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 4, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "lipstick": 2, + "-": 2, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 2, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 10.934999999999997, + "y": 1, + "general": 1, + "js": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 16, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "unit-mocha": 0.012345679012345684, + "tdd": 0.015625, + "e-nightwatch": 1, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1.7999999999999998, + "doc": 2.25, + "blogs": 2.25, + "enterprise": 2.25, + "scheduler": 2, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 5.831999999999998, + "customer": 2, + "extension": 1, + "lint": 1, + "optimizing": 1.875, + "compiler": 1.875, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1.875, + "multi": 2, + "module": 2, + "mixing": 1, + "backlog": 2, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1.875, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 2, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "content": { + "positive_weights": { + "thesis": 22.78125, + "bias": 6.8897411331024255e-12, + "website": 4, + "copy": 16, + "article": 10.125, + "contenu": 10.125, + "paper": 10.125, + "newsletter": 10.125, + "component": 0.28125, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.30000000000000004, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.75, + "utils": 0.75, + "hsv": 2, + "pentesting": 2, + "design": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 0.6666666666666667, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.75, + "review": 0.75, + "needed": 0.75, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 2, + "for": 2, + "deploy": 2, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "story": 22.78125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 0.8, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "academia": 2 + }, + "negative_weights": { + "thesis": 0.015625, + "bias": 6.007133536551463, + "website": 0.08333333333333336, + "copy": 0.03703703703703705, + "article": 0.0625, + "contenu": 0.0625, + "paper": 0.0625, + "newsletter": 0.0625, + "component": 3.515625, + "developer": 1.875, + "tools": 1.875, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.3749999999999996, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1.875, + "utils": 1.875, + "hsv": 1, + "pentesting": 1, + "design": 2, + "bug": 1, + "guide": 1, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 2, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.875, + "review": 1.875, + "needed": 1.875, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1, + "for": 1, + "deploy": 1, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "story": 0.015625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1.7999999999999998, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "tutorial": { + "positive_weights": { + "guide": 22.78125, + "bias": 7.05509492029689e-11, + "lecture": 22.78125, + "how-to": 22.78125, + "tutorial": 10.125, + "teaching": 10.125, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.30000000000000004, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 2, + "utils": 2, + "hsv": 0.5, + "thesis": 2, + "pentesting": 2, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 0.6666666666666667, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333334, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 2, + "best": 2, + "practice": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "didactic": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 0.8, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "guide": 0.015625, + "bias": 4.428939413828661, + "lecture": 0.015625, + "how-to": 0.015625, + "tutorial": 0.0625, + "teaching": 0.0625, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.3749999999999996, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1, + "utils": 1, + "hsv": 2.25, + "thesis": 1, + "pentesting": 1, + "design": 2, + "website": 2, + "copy": 2, + "bug": 1, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 2, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1, + "best": 1, + "practice": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "didactic": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1.7999999999999998, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "eventOrganizing": { + "positive_weights": { + "next": 0.8533333333333336, + "meetup!": 16, + "bias": 2.2656692522105027e-9, + "meetup": 22.78125, + "event": 22.78125, + "conference": 10.125, + "social": 10.125, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.75, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 2, + "test": 2, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8333333333333333, + "merged": 0.8333333333333333, + "vlog": 2, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 0.6666666666666667, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 0.32000000000000006, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 2, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 2, + "best": 2, + "practice": 2, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 2, + "nail": 2, + "care": 2, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8333333333333333, + "for": 0.32000000000000006, + "deploy": 2, + "troubleshooting": 2, + "spec": 2, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.32000000000000006, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8333333333333333, + "be": 0.8333333333333333, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 0.6666666666666667, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "corporate": 2, + "c": 2, + "c++": 2, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "next": 0.24000000000000002, + "meetup!": 0.03703703703703705, + "bias": 5.899940712013603, + "meetup": 0.015625, + "event": 0.015625, + "conference": 0.0625, + "social": 0.0625, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 1.875, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 1, + "test": 1, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 2, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.75, + "merged": 1.75, + "vlog": 1, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 3.2399999999999993, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1, + "best": 1, + "practice": 1, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1, + "nail": 1, + "care": 1, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.75, + "for": 3.2399999999999993, + "deploy": 1, + "troubleshooting": 1, + "spec": 1, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 3.2399999999999993, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.75, + "be": 1.75, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 2, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "corporate": 1, + "c": 1, + "c++": 1, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "audio": { + "positive_weights": { + "mastering": 10.125, + "bias": 2.480306807916874e-10, + "soundtrack": 10.125, + "sound": 10.125, + "recording": 10.125, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 2, + "hacking": 2, + "video": 2, + "test": 0.8, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 2, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 2, + "meetup!": 2, + "feat": 0.75, + "ui": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.32000000000000006, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 2, + "hot": 2, + "tv": 2, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.8, + "best": 2, + "practice": 2, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 2, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "docs": 2, + "improvement": 2, + "heavy": 2, + "plus": 2, + "sign": 2, + "request": 2, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "phonetic": 10.125, + "music": 10.125, + "mixing": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.8, + "discuss": 2, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 2, + "enterprise": 0.5, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "failing": 0.8, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "mastering": 0.0625, + "bias": 4.119177282206717, + "soundtrack": 0.0625, + "sound": 0.0625, + "recording": 0.0625, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 1, + "hacking": 1, + "video": 1, + "test": 1.7999999999999998, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 1, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 1, + "meetup!": 1, + "feat": 1.875, + "ui": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 3.2399999999999993, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1, + "hot": 1, + "tv": 1, + "(category)": 1, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.7999999999999998, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.7999999999999998, + "best": 1, + "practice": 1, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "docs": 1, + "improvement": 1, + "heavy": 1, + "plus": 1, + "sign": 1, + "request": 1, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "phonetic": 0.0625, + "music": 0.0625, + "mixing": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 1.7999999999999998, + "discuss": 1, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 1, + "enterprise": 2.25, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "failing": 1.7999999999999998, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "doc": { + "positive_weights": { + "steps": 51.2578125, + "bias": 8.094821091816062e-29, + "badges": 22.78125, + "documentation": 16, + "book": 8, + "standard": 16.21829223632813, + "instruction": 10.125, + "spec": 15, + "bigint": 4, + "async": 3.75, + "generators": 3.75, + "decorators": 4, + "docs": 8.898925781250004, + "improvement": 8, + "wikipedia": 10.125, + "beginner": 2, + "orange": 2, + "documents": 10.125, + "pr": 0.75, + "functions": 2, + "memo": 7.03125, + "type": 0.2109375, + "wiki": 10.125, + "component": 0.28125, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "question": 0.25, + "grey": 0.75, + "cmty": 0.6666666666666667, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.6666666666666667, + "utils": 2, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.25, + "ui": 0.6666666666666667, + "mastering": 0.5, + "abandoned": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "merged": 0.6666666666666667, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "diary": 0.5, + "colour": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "flaw": 0.5, + "reliability": 0.5, + "cli-service": 0.75, + "build": 0.75, + "blocked": 0.5, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 0.6666666666666667, + "needed": 2, + "in": 0.6666666666666667, + "lang-crystal": 2, + "breaking": 0.8, + "change": 0.8, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 2, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "paas": 2, + "net": 0.024691358024691367, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 0.6666666666666667, + "windows": 0.6666666666666667, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "proposal": 2, + "e": 0.6666666666666667, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.024691358024691367, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 0.8, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 0.5, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 2, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "doc": 18.984375, + "class": 2, + "fields": 2, + "specification": 10.125, + "manual": 10.125, + "readme": 10.125, + "update": 0.9375, + "classes": 2, + "(legacy)": 2, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 0.8, + "blogs": 0.5, + "unit-mocha": 2, + "enterprise": 0.5, + "scheduler": 2, + "commercial": 0.5, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "steps": 0.00390625, + "bias": 4.7028830719762515, + "badges": 0.015625, + "documentation": 0.03703703703703705, + "book": 0.11111111111111113, + "standard": 0.000244140625, + "instruction": 0.0625, + "spec": 0.04166666666666667, + "bigint": 0.33333333333333337, + "async": 0.375, + "generators": 0.375, + "decorators": 0.33333333333333337, + "docs": 0.0009765625, + "improvement": 0.11111111111111113, + "wikipedia": 0.0625, + "beginner": 1, + "orange": 1, + "documents": 0.0625, + "pr": 0.30374999999999996, + "functions": 1, + "memo": 0.140625, + "type": 2.3730468749999996, + "wiki": 0.0625, + "component": 3.515625, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "question": 3.75, + "grey": 1.875, + "cmty": 2, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 2, + "utils": 1, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "feat": 3.75, + "ui": 2, + "mastering": 2.25, + "abandoned": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "merged": 2, + "vlog": 2.25, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "diary": 2.25, + "colour": 2.25, + "computer": 2, + "desktop": 2, + "flaw": 2.25, + "reliability": 2.25, + "cli-service": 1.875, + "build": 1.875, + "blocked": 2.25, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 2, + "needed": 1, + "in": 2, + "lang-crystal": 1, + "breaking": 1.7999999999999998, + "change": 1.7999999999999998, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 2, + "icons": 2, + "lean": 1, + "cannot": 2, + "reproduce": 2, + "paas": 1, + "net": 16, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 2, + "windows": 2, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "proposal": 1, + "e": 2, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 16, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1.7999999999999998, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 2.25, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "doc": 0.0234375, + "class": 1, + "fields": 1, + "specification": 0.0625, + "manual": 0.0625, + "readme": 0.0625, + "update": 0.84375, + "classes": 1, + "(legacy)": 1, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1.7999999999999998, + "blogs": 2.25, + "unit-mocha": 1, + "enterprise": 2.25, + "scheduler": 1, + "commercial": 2.25, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "mentoring": { + "positive_weights": { + "sponsor": 10.125, + "bias": 1.057070646311332e-7, + "counsel": 10.125, + "mentoring": 10.125, + "mentor": 10.125, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.75, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 2, + "hacking": 2, + "video": 2, + "test": 0.8, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 2, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 2, + "meetup!": 2, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "assess": 2, + "pr": 0.32000000000000006, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 2, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.8, + "best": 2, + "practice": 2, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 2, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 2, + "plus": 2, + "sign": 2, + "request": 2, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "mentorship": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 2, + "rocket": 0.8, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.8, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "sponsor": 0.0625, + "bias": 4.3346503190304, + "counsel": 0.0625, + "mentoring": 0.0625, + "mentor": 0.0625, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 1.875, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 1, + "hacking": 1, + "video": 1, + "test": 1.7999999999999998, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 1, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 1, + "meetup!": 1, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "assess": 1, + "pr": 3.2399999999999993, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.7999999999999998, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.7999999999999998, + "best": 1, + "practice": 1, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1, + "plus": 1, + "sign": 1, + "request": 1, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "mentorship": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 1, + "rocket": 1.7999999999999998, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1.7999999999999998, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "fundingFinding": { + "positive_weights": { + "funding": 32, + "finder": 16, + "bias": 3.3908420138888915e-8, + "call": 8, + "grant": 4, + "fund": 16, + "investigation": 8, + "financial": 16, + "backing": 4, + "collection": 1.3333333333333335, + "research": 2, + "backer": 4, + "finding": 16, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.75, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 2, + "hacking": 2, + "video": 2, + "test": 2, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 2, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 2, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 2, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 2, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 2, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "c": 2, + "c++": 2, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "funding": 0.012345679012345684, + "finder": 0.03703703703703705, + "bias": 4.67721135355533, + "call": 0.11111111111111113, + "grant": 0.33333333333333337, + "fund": 0.03703703703703705, + "investigation": 0.11111111111111113, + "financial": 0.03703703703703705, + "backing": 0.08333333333333336, + "collection": 0.6666666666666667, + "research": 1, + "backer": 0.08333333333333336, + "finding": 0.03703703703703705, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 1.875, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "external-bugs": 2.25, + "deal": 1, + "hacking": 1, + "video": 1, + "test": 1, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 1, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "c": 1, + "c++": 1, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "blog": { + "positive_weights": { + "diary": 10.125, + "bias": 1.057070646311332e-7, + "blogging": 10.125, + "weekly-digest": 10.125, + "blog": 10.125, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.75, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 2, + "hacking": 2, + "video": 2, + "test": 0.8, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 2, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 2, + "meetup!": 2, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.32000000000000006, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 2, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.8, + "best": 2, + "practice": 2, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 2, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 2, + "plus": 2, + "sign": 2, + "request": 2, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "blogs": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 2, + "rocket": 0.8, + "discuss": 2, + "doc": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.8, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "diary": 0.0625, + "bias": 4.3346503190304, + "blogging": 0.0625, + "weekly-digest": 0.0625, + "blog": 0.0625, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 1.875, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 1, + "hacking": 1, + "video": 1, + "test": 1.7999999999999998, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 1, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 1, + "meetup!": 1, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 3.2399999999999993, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.7999999999999998, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.7999999999999998, + "best": 1, + "practice": 1, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1, + "plus": 1, + "sign": 1, + "request": 1, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "blogs": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 1, + "rocket": 1.7999999999999998, + "discuss": 1, + "doc": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1.7999999999999998, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "platform": { + "positive_weights": { + "computer": 16, + "desktop": 16, + "bias": 6.669927047089643e-31, + "ios": 22.78125, + "phone": 22.78125, + "paas": 10.125, + "target": 15, + "windows": 9, + "cdn": 10.125, + "icebox": 10.125, + "mobile": 14.0625, + "device": 7.03125, + "support": 0.6591796875, + "os": 10.125, + "deno": 10.125, + "node": 18, + "browser": 2.666666666666667, + "ie": 16, + "safari": 8, + "packaging": 10.125, + "apple": 2, + "gnu": 3.75, + "linux": 18.984375, + "*nix": 10.125, + "unix": 4, + "robot": 8, + "android": 18, + "macos": 2, + "next": 2.666666666666667, + "iphone": 4, + "program": 10.125, + "porting": 10.125, + "component": 0.28125, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.25, + "grey": 0.75, + "cmty": 0.6666666666666667, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.08333333333333334, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.6666666666666667, + "utils": 2, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 0.5, + "meetup!": 0.6666666666666667, + "feat": 0.25, + "ui": 0.6666666666666667, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "pr": 0.30000000000000004, + "merged": 2, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.25, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "standard": 0.5, + "colour": 0.5, + "flaw": 0.5, + "reliability": 0.5, + "cli-service": 0.75, + "build": 0.75, + "blocked": 0.5, + "maintenance": 0.75, + "construction": 0.75, + "planned": 0.6666666666666667, + "feature": 0.2777777777777778, + "feature-request": 2, + "rfc": 0.5, + "image": 0.5, + "stock": 0.5, + "reminder": 0.5, + "status": 0.75, + "review": 0.75, + "needed": 0.75, + "in": 2, + "lang-crystal": 0.5, + "breaking": 0.75, + "change": 0.75, + "refactor": 0.5, + "monologue": 0.5, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 0.5, + "backing": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 2, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "net": 0.6666666666666667, + "core": 0.6666666666666667, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "first-timers-only": 2, + "java": 2, + "dependency": 2, + "ready": 2, + "for": 2, + "deploy": 2, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 0.6666666666666667, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "meetup": 2, + "examination": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.30000000000000004, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "dev": 2, + "experience": 0.6666666666666667, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "low": 2, + "functions": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 0.75, + "architecture": 0.75, + "enhancements": 0.75, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 0.75, + "redirect": 0.75, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "osx": 2, + "operating": 8, + "system": 8, + "platform": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 2, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 2, + "enterprise": 0.5, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "axe": 2, + "sendgrid": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 0.6666666666666667, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "computer": 0.03703703703703705, + "desktop": 0.03703703703703705, + "bias": 4.490083059534111, + "ios": 0.015625, + "phone": 0.015625, + "paas": 0.0625, + "target": 0.04166666666666667, + "windows": 0.08333333333333334, + "cdn": 0.0625, + "icebox": 0.0625, + "mobile": 0.04687500000000001, + "device": 0.140625, + "support": 0.59326171875, + "os": 0.0625, + "deno": 0.0625, + "node": 0.027777777777777783, + "browser": 0.030864197530864213, + "ie": 0.03703703703703705, + "safari": 0.11111111111111113, + "packaging": 0.0625, + "apple": 1, + "gnu": 0.375, + "linux": 0.0234375, + "*nix": 0.0625, + "unix": 0.33333333333333337, + "robot": 0.11111111111111113, + "android": 0.027777777777777783, + "macos": 1, + "next": 0.22222222222222227, + "iphone": 0.33333333333333337, + "program": 0.0625, + "porting": 0.0625, + "component": 3.515625, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 3.75, + "grey": 1.875, + "cmty": 2, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 7.5, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 2, + "utils": 1, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 2.25, + "meetup!": 2, + "feat": 3.75, + "ui": 2, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "pr": 3.3749999999999996, + "merged": 1, + "vlog": 2.25, + "acceptance": 2, + "testing": 3.75, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "standard": 2.25, + "colour": 2.25, + "flaw": 2.25, + "reliability": 2.25, + "cli-service": 1.875, + "build": 1.875, + "blocked": 2.25, + "maintenance": 1.875, + "construction": 1.875, + "planned": 2, + "feature": 3.5, + "feature-request": 1, + "rfc": 2.25, + "image": 2.25, + "stock": 2.25, + "reminder": 2.25, + "status": 1.875, + "review": 1.875, + "needed": 1.875, + "in": 1, + "lang-crystal": 2.25, + "breaking": 1.875, + "change": 1.875, + "refactor": 2.25, + "monologue": 2.25, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 2.25, + "backing": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 2, + "icons": 2, + "lean": 1, + "cannot": 2, + "reproduce": 2, + "net": 2, + "core": 2, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "first-timers-only": 1, + "java": 1, + "dependency": 1, + "ready": 1, + "for": 1, + "deploy": 1, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 2, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "meetup": 1, + "examination": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 3.3749999999999996, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "dev": 1, + "experience": 2, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "low": 1, + "functions": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1.875, + "architecture": 1.875, + "enhancements": 1.875, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1.875, + "redirect": 1.875, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "osx": 1, + "operating": 0.11111111111111113, + "system": 0.11111111111111113, + "platform": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 1, + "enterprise": 2.25, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "axe": 1, + "sendgrid": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 2, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "code": { + "positive_weights": { + "feat": 0.7716049382716059, + "cli-service": 13.18359375, + "build": 1.85394287109375, + "bias": 1.6119599477344106e-91, + "lang-crystal": 22.78125, + "pr": 0.13732910156250014, + "breaking": 13.18359375, + "change": 13.18359375, + "refactor": 22.78125, + "website": 12.163719177246097, + "net": 16, + "core": 0.5625, + "java": 22.78125, + "optimisation": 10.125, + "kotlin": 10.125, + "component": 1.7204925883973494, + "api": 7.59375, + "hooks": 8, + "improved": 7.03125, + "error": 7.03125, + "handling": 7.03125, + "reactis": 8, + "hacktoberfest": 8.54296875, + "lang-dart": 10.125, + "framework": 4, + "dom": 8, + "programming": 10.125, + "cli": 16.000000000000007, + "frontend": 10.125, + "ruby": 10.125, + "es": 10.125, + "hackathon": 10.125, + "boom": 2, + "web": 16, + "app": 6.4, + "requires": 2, + "upstream": 2, + "backend": 10.125, + "internal": 18.432000000000002, + "house": 7.03125, + "shallow": 13.18359375, + "renderer": 4.94384765625, + "standard": 0.25, + "react": 8, + "native": 8, + "lang-go": 10.125, + "refactoring": 10.125, + "server": 7.03125, + "rendering": 7.03125, + "htmlfile": 10.125, + "lang-r": 10.125, + "new": 5.7665039062500005, + "definition": 4.439431658453153, + "html": 10.125, + "general": 8, + "js": 8, + "optimization": 10.125, + "python": 10.125, + "css": 10.125, + "hack": 10.125, + "pwa": 16, + "javascript": 10.125, + "csharp": 10.125, + "developer": 0.10546875, + "tools": 0.10546875, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.125, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.25, + "grey": 0.75, + "cmty": 0.6666666666666667, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.25, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.03955078125, + "utils": 0.10546875, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "copy": 0.008230452674897124, + "bug": 0.024691358024691367, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "ui": 0.0740740740740741, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 0.5, + "assess": 0.5, + "merged": 0.22222222222222227, + "vlog": 0.5, + "acceptance": 0.6666666666666667, + "testing": 0.2666666666666667, + "hot": 2, + "tv": 0.5, + "soundtrack": 0.5, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 0.5, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 0.5, + "colour": 0.5, + "computer": 0.6666666666666667, + "desktop": 0.6666666666666667, + "flaw": 0.5, + "reliability": 0.5, + "blocked": 0.5, + "maintenance": 0.75, + "construction": 0.75, + "ios": 0.5, + "planned": 0.6666666666666667, + "feature": 0.11111111111111115, + "feature-request": 2, + "rfc": 0.5, + "image": 0.5, + "stock": 0.5, + "reminder": 0.5, + "status": 0.11250000000000002, + "review": 0.75, + "needed": 0.75, + "in": 2, + "phone": 0.5, + "monologue": 0.5, + "reviewed-approved": 0.6666666666666667, + "best": 0.28125, + "practice": 0.28125, + "lecture": 0.5, + "backing": 0.5, + "browser": 2, + "aws": 0.5, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 0.5, + "peer-review": 0.5, + "writer-needed": 0.5, + "eventstorming": 0.5, + "freemasonry": 0.6666666666666667, + "icons": 0.6666666666666667, + "lean": 0.5, + "cannot": 0.6666666666666667, + "reproduce": 0.6666666666666667, + "paas": 0.5, + "wiretap": 0.5, + "unit-jest": 0.0740740740740741, + "instruction": 0.5, + "infrastructure": 0.0703125, + "rgb": 0.5, + "ideas": 0.5, + "target": 0.6666666666666667, + "windows": 0.6666666666666667, + "call": 2, + "iconography": 0.5, + "promote": 0.5, + "template": 0.5, + "support": 0.1875, + "first-timers-only": 0.5, + "cdn": 0.5, + "dependency": 0.10546875, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 0.5, + "spec": 0.25, + "bigint": 0.6666666666666667, + "async": 0.75, + "generators": 0.75, + "proposal": 0.01483154296875, + "e": 0.28125, + "approachability": 0.5, + "investment": 0.5, + "conflicts": 0.5, + "release": 0.02048000000000001, + "unconfirmed": 0.5, + "duplicate": 0.5, + "repeat": 2, + "devops": 0.6666666666666667, + "defend": 0.6666666666666667, + "blogging": 0.5, + "friendliness": 0.5, + "i": 0.6666666666666667, + "n": 0.6666666666666667, + "cla": 0.6666666666666667, + "signed": 0.6666666666666667, + "icebox": 0.5, + "meetup": 0.5, + "examination": 0.5, + "mobile": 0.75, + "device": 0.75, + "decorators": 2, + "addon": 0.5, + "cracking": 0.5, + "sparkles": 2, + "enhancement": 0.024691358024691367, + "needs": 0.2666666666666667, + "repro": 0.6666666666666667, + "upkeep": 0.5, + "to": 0.8, + "be": 2, + "sample": 0.5, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 0.5, + "icon": 0.5, + "grant": 2, + "needs-research": 0.5, + "cybersec": 0.5, + "biz": 0.5, + "internationalization": 0.5, + "utility-lib": 0.5, + "qa": 0.5, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 0.6666666666666667, + "improvement": 0.6666666666666667, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.09259259259259263, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 0.024691358024691367, + "crash": 2, + "camera": 2, + "wip": 0.6666666666666667, + "configure": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 0.5, + "contenu": 2, + "fund": 0.6666666666666667, + "investigation": 0.6666666666666667, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.02048000000000001, + "fiscal": 2, + "user": 0.6666666666666667, + "debug": 0.6666666666666667, + "information": 0.6666666666666667, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 0.6666666666666667, + "up": 0.6666666666666667, + "motif": 2, + "event": 0.6666666666666667, + "help": 0.6666666666666667, + "wanted": 0.6666666666666667, + "priority": 0.6666666666666667, + "medium": 0.6666666666666667, + "financial": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 0.28125, + "rules": 0.28125, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 0.75, + "lipstick": 2, + "-": 0.6666666666666667, + "backdoor": 2, + "approved": 0.75, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 0.6666666666666667, + "critical": 0.5, + "privacy": 0.5, + "tests": 0.5, + "television": 0.5, + "uat": 2, + "backer": 2, + "exploit": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 0.6666666666666667, + "fix": 2, + "cleaning": 2, + "technical": 0.6666666666666667, + "debt": 0.6666666666666667, + "weekly-digest": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 0.6666666666666667, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "enquire": 2, + "packaging": 2, + "regression": 0.5, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 0.5, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "a": 0.8, + "y": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 0.5, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 0.6666666666666667, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 0.5, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 0.28125, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 0.5, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 0.75, + "architecture": 0.75, + "enhancements": 0.75, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 0.6666666666666667, + "hold": 0.6666666666666667, + "evaluation": 2, + "go": 13.452100312500002, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.75, + "balloon": 0.75, + "c": 16, + "c++": 16, + "optimizing": 7.03125, + "compiler": 7.03125, + "css-select": 22.78125, + "modules": 22.78125, + "lang-julia": 10.125, + "typescript": 16, + "bulb": 2, + "prometheus": 0.5, + "rocket": 0.2666666666666667, + "discuss": 2, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 0.22222222222222227, + "enterprise": 0.5, + "scheduler": 0.22222222222222227, + "class": 2, + "fields": 2, + "commercial": 0.5, + "infra": 0.5, + "terraform": 0.5, + "figure": 0.5, + "layout": 0.5, + "specification": 0.5, + "vector": 2, + "greenkeeper": 0.5, + "tdd": 0.5, + "raster": 2, + "mishap": 0.5, + "sketch": 0.5, + "released": 0.5, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 0.75, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 0.5, + "manual": 0.5, + "osx": 2, + "axe": 0.5, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "safety": 0.5, + "phonetic": 0.5, + "concept": 0.5, + "lerna": 0.5, + "readme": 0.5, + "music": 0.5, + "failing": 2, + "customer": 0.6666666666666667, + "extension": 0.5, + "lint": 0.5, + "figma": 0.5, + "finance": 0.5, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 0.5, + "survey": 0.5, + "behavioral": 2, + "multi": 0.6666666666666667, + "module": 0.6666666666666667, + "mixing": 0.5, + "backlog": 0.6666666666666667, + "update": 0.5, + "present": 0.5, + "vuln": 0.5, + "demo": 0.5, + "corporate": 0.6666666666666667, + "spam": 0.5, + "handshakes": 0.5, + "platform": 0.5, + "wave": 0.5, + "ansible": 0.5, + "lang-convert": 0.5, + "gdpr": 0.5, + "classes": 2, + "websocket": 0.5, + "speach": 0.5, + "b": 2, + "chef": 0.5, + "patreon": 0.5, + "reviewed-changes-requested": 0.6666666666666667, + "youtube": 0.5, + "(legacy)": 2, + "mentorship": 0.5, + "didactic": 0.5, + "story": 0.5, + "academia": 0.5 + }, + "negative_weights": { + "feat": 0.00005953741807651283, + "cli-service": 0.052734375, + "build": 0.185394287109375, + "bias": 2.1423512138651577, + "lang-crystal": 0.015625, + "pr": 0.001544952392578126, + "breaking": 0.052734375, + "change": 0.052734375, + "refactor": 0.015625, + "website": 0.0001220703125, + "net": 0.03703703703703705, + "core": 1.1718750000000002, + "java": 0.015625, + "optimisation": 0.0625, + "kotlin": 0.0625, + "component": 0.0000010291450309139766, + "api": 0.0011773756992669764, + "hooks": 0.11111111111111113, + "improved": 0.140625, + "error": 0.140625, + "handling": 0.140625, + "reactis": 0.11111111111111113, + "hacktoberfest": 0.029296875, + "lang-dart": 0.0625, + "framework": 0.33333333333333337, + "dom": 0.11111111111111113, + "programming": 0.0625, + "cli": 0.00045724737082761805, + "frontend": 0.0625, + "ruby": 0.0625, + "es": 0.0625, + "hackathon": 0.0625, + "boom": 1, + "web": 0.03703703703703705, + "app": 0.06666666666666668, + "requires": 1, + "upstream": 1, + "backend": 0.0625, + "internal": 0.0004050000000000003, + "house": 0.140625, + "shallow": 0.052734375, + "renderer": 0.098876953125, + "standard": 1.6875000000000002, + "react": 0.11111111111111113, + "native": 0.11111111111111113, + "lang-go": 0.0625, + "refactoring": 0.0625, + "server": 0.140625, + "rendering": 0.140625, + "htmlfile": 0.0625, + "lang-r": 0.0625, + "new": 0.0000074855531010117695, + "definition": 0.000007929368960142955, + "html": 0.0625, + "general": 0.11111111111111113, + "js": 0.11111111111111113, + "optimization": 0.0625, + "python": 0.0625, + "css": 0.0625, + "hack": 0.0625, + "pwa": 0.03703703703703705, + "javascript": 0.0625, + "csharp": 0.0625, + "developer": 6.591796875, + "tools": 6.591796875, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 5.0625, + "confirmed": 2.25, + "type": 3.515625, + "question": 3.75, + "grey": 1.875, + "cmty": 2, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 3.75, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 12.359619140625, + "utils": 6.591796875, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "copy": 32, + "bug": 16, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "ui": 8, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 2.25, + "assess": 2.25, + "merged": 4, + "vlog": 2.25, + "acceptance": 2, + "testing": 3.5999999999999996, + "hot": 1, + "tv": 2.25, + "soundtrack": 2.25, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 2.25, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2.25, + "colour": 2.25, + "computer": 2, + "desktop": 2, + "flaw": 2.25, + "reliability": 2.25, + "blocked": 2.25, + "maintenance": 1.875, + "construction": 1.875, + "ios": 2.25, + "planned": 2, + "feature": 6.299999999999999, + "feature-request": 1, + "rfc": 2.25, + "image": 2.25, + "stock": 2.25, + "reminder": 2.25, + "status": 6.328124999999999, + "review": 1.875, + "needed": 1.875, + "in": 1, + "phone": 2.25, + "monologue": 2.25, + "reviewed-approved": 2, + "best": 3.515625, + "practice": 3.515625, + "lecture": 2.25, + "backing": 2.25, + "browser": 1, + "aws": 2.25, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 2.25, + "peer-review": 2.25, + "writer-needed": 2.25, + "eventstorming": 2.25, + "freemasonry": 2, + "icons": 2, + "lean": 2.25, + "cannot": 2, + "reproduce": 2, + "paas": 2.25, + "wiretap": 2.25, + "unit-jest": 8, + "instruction": 2.25, + "infrastructure": 7.91015625, + "rgb": 2.25, + "ideas": 2.25, + "target": 2, + "windows": 2, + "call": 1, + "iconography": 2.25, + "promote": 2.25, + "template": 2.25, + "support": 4.21875, + "first-timers-only": 2.25, + "cdn": 2.25, + "dependency": 6.591796875, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 2.25, + "spec": 3.75, + "bigint": 2, + "async": 1.875, + "generators": 1.875, + "proposal": 23.174285888671875, + "e": 3.515625, + "approachability": 2.25, + "investment": 2.25, + "conflicts": 2.25, + "release": 18.895679999999988, + "unconfirmed": 2.25, + "duplicate": 2.25, + "repeat": 1, + "devops": 2, + "defend": 2, + "blogging": 2.25, + "friendliness": 2.25, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2.25, + "meetup": 2.25, + "examination": 2.25, + "mobile": 1.875, + "device": 1.875, + "decorators": 1, + "addon": 2.25, + "cracking": 2.25, + "sparkles": 1, + "enhancement": 16, + "needs": 3.5999999999999996, + "repro": 2, + "upkeep": 2.25, + "to": 1.7999999999999998, + "be": 1, + "sample": 2.25, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 2.25, + "icon": 2.25, + "grant": 1, + "needs-research": 2.25, + "cybersec": 2.25, + "biz": 2.25, + "internationalization": 2.25, + "utility-lib": 2.25, + "qa": 2.25, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 2, + "improvement": 2, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 7, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 16, + "crash": 1, + "camera": 1, + "wip": 2, + "configure": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 2.25, + "contenu": 1, + "fund": 2, + "investigation": 2, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 18.895679999999988, + "fiscal": 1, + "user": 2, + "debug": 2, + "information": 2, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 2, + "up": 2, + "motif": 1, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 3.515625, + "rules": 3.515625, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1.875, + "lipstick": 1, + "-": 2, + "backdoor": 1, + "approved": 1.875, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 2, + "critical": 2.25, + "privacy": 2.25, + "tests": 2.25, + "television": 2.25, + "uat": 1, + "backer": 1, + "exploit": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 2, + "fix": 1, + "cleaning": 1, + "technical": 2, + "debt": 2, + "weekly-digest": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 2, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "enquire": 1, + "packaging": 1, + "regression": 2.25, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 2.25, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "a": 1.7999999999999998, + "y": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 2.25, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 2, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 2.25, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 3.515625, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 2.25, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1.875, + "architecture": 1.875, + "enhancements": 1.875, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 2, + "hold": 2, + "evaluation": 1, + "go": 0.0002883251953124998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.875, + "balloon": 1.875, + "c": 0.03703703703703705, + "c++": 0.03703703703703705, + "optimizing": 0.140625, + "compiler": 0.140625, + "css-select": 0.015625, + "modules": 0.015625, + "lang-julia": 0.0625, + "typescript": 0.03703703703703705, + "bulb": 1, + "prometheus": 2.25, + "rocket": 3.5999999999999996, + "discuss": 1, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 4, + "enterprise": 2.25, + "scheduler": 4, + "class": 1, + "fields": 1, + "commercial": 2.25, + "infra": 2.25, + "terraform": 2.25, + "figure": 2.25, + "layout": 2.25, + "specification": 2.25, + "vector": 1, + "greenkeeper": 2.25, + "tdd": 2.25, + "raster": 1, + "mishap": 2.25, + "sketch": 2.25, + "released": 2.25, + "font": 1, + "deployment": 2, + "e-nightwatch": 1.875, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 2.25, + "manual": 2.25, + "osx": 1, + "axe": 2.25, + "sendgrid": 1, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "safety": 2.25, + "phonetic": 2.25, + "concept": 2.25, + "lerna": 2.25, + "readme": 2.25, + "music": 2.25, + "failing": 1, + "customer": 2, + "extension": 2.25, + "lint": 2.25, + "figma": 2.25, + "finance": 2.25, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 2.25, + "survey": 2.25, + "behavioral": 1, + "multi": 2, + "module": 2, + "mixing": 2.25, + "backlog": 2, + "update": 2.25, + "present": 2.25, + "vuln": 2.25, + "demo": 2.25, + "corporate": 2, + "spam": 2.25, + "handshakes": 2.25, + "platform": 2.25, + "wave": 2.25, + "ansible": 2.25, + "lang-convert": 2.25, + "gdpr": 2.25, + "classes": 1, + "websocket": 2.25, + "speach": 2.25, + "b": 1, + "chef": 2.25, + "patreon": 2.25, + "reviewed-changes-requested": 2, + "youtube": 2.25, + "(legacy)": 1, + "mentorship": 2.25, + "didactic": 2.25, + "story": 2.25, + "academia": 2.25 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "talk": { + "positive_weights": { + "monologue": 22.78125, + "bias": 2.61594858647483e-12, + "talk": 22.78125, + "speak": 22.78125, + "slides": 10.125, + "confer": 10.125, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 2, + "utils": 2, + "hsv": 0.5, + "thesis": 2, + "pentesting": 2, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 0.6666666666666667, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "reviewed-approved": 2, + "new": 2, + "best": 2, + "practice": 2, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "present": 10.125, + "speach": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 2, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "monologue": 0.015625, + "bias": 5.474000435182519, + "talk": 0.015625, + "speak": 0.015625, + "slides": 0.0625, + "confer": 0.0625, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1, + "utils": 1, + "hsv": 2.25, + "thesis": 1, + "pentesting": 1, + "design": 2, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 2, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "reviewed-approved": 1, + "new": 1, + "best": 1, + "practice": 1, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "present": 0.0625, + "speach": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 1, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "financial": { + "positive_weights": { + "backing": 16.218292236328132, + "bias": 6.751080231987706e-19, + "investment": 22.78125, + "fiscal": 22.78125, + "backer": 9.610839843750002, + "opencollective": 10.125, + "economics": 10.125, + "component": 0.28125, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.75, + "utils": 0.75, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 0.6666666666666667, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 0.75, + "book": 0.75, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333334, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "approachability": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 0.024691358024691367, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 0.75, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 0.0740740740740741, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "finance": 10.125, + "patreon": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "backing": 0.000244140625, + "bias": 3.767190871046154, + "investment": 0.015625, + "fiscal": 0.015625, + "backer": 0.001953125, + "opencollective": 0.0625, + "economics": 0.0625, + "component": 3.515625, + "developer": 1.875, + "tools": 1.875, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1.875, + "utils": 1.875, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1.875, + "book": 1.875, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "approachability": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 16, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1.875, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 8, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "finance": 0.0625, + "patreon": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "review": { + "positive_weights": { + "peer-review": 22.78125, + "bias": 2.1292051010376156e-30, + "review": 8.88738773223703, + "check": 16.607531249999997, + "critique": 10.125, + "validation": 22.78125, + "checkpoint": 10.125, + "component": 0.28125, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.008230452674897124, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.75, + "utils": 0.75, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 0.6666666666666667, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 0.5, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.11250000000000002, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.12800000000000003, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.1125, + "needed": 0.28125, + "in": 0.0740740740740741, + "lang-crystal": 2, + "breaking": 2, + "change": 0.75, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 0.6666666666666667, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 2, + "for": 2, + "deploy": 2, + "troubleshooting": 2, + "spec": 0.28125, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.03125, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 0.12800000000000003, + "mark": 0.12800000000000003, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.3333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 16.218292236328132, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 0.024691358024691367, + "socket": 0.75, + "io": 0.75, + "client": 0.75, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 0.75, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 0.6666666666666667, + "help": 0.6666666666666667, + "wanted": 0.6666666666666667, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 0.6666666666666667, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 0.75, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 0.6666666666666667, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 0.6666666666666667, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 0.5, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 2, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 0.8, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 0.75, + "architecture": 0.75, + "enhancements": 0.75, + "pmi": 2, + "promotion": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 0.6666666666666667, + "hold": 0.6666666666666667, + "evaluation": 2, + "go": 0.5, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "survey": 22.78125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 2, + "doc": 0.5, + "blogs": 0.5, + "unit-mocha": 2, + "enterprise": 0.5, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 0.5, + "infra": 0.5, + "terraform": 0.5, + "figure": 0.5, + "layout": 0.5, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 0.6666666666666667, + "axe": 2, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 0.6666666666666667, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "behavioral": 2, + "multi": 0.6666666666666667, + "module": 0.6666666666666667, + "mixing": 2, + "backlog": 0.6666666666666667, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 0.6666666666666667, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "peer-review": 0.015625, + "bias": 2.189950585354234, + "review": 1.0359713087382259e-8, + "check": 0.0014238281249999995, + "critique": 0.0625, + "validation": 0.015625, + "checkpoint": 0.0625, + "component": 3.515625, + "developer": 1.875, + "tools": 1.875, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 32, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1.875, + "utils": 1.875, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 2, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 2.25, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 6.328124999999999, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 5.831999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 6.328124999999999, + "needed": 3.515625, + "in": 8, + "lang-crystal": 1, + "breaking": 1, + "change": 1.875, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 2, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1, + "for": 1, + "deploy": 1, + "troubleshooting": 1, + "spec": 3.515625, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 14.0625, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 5.831999999999998, + "mark": 5.831999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 3.1499999999999995, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 0.000244140625, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 16, + "socket": 1.875, + "io": 1.875, + "client": 1.875, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1.875, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 2, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1.875, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 2, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 2, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 2.25, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1.7999999999999998, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1.875, + "architecture": 1.875, + "enhancements": 1.875, + "pmi": 1, + "promotion": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 2, + "hold": 2, + "evaluation": 1, + "go": 2.25, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "survey": 0.015625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1, + "doc": 2.25, + "blogs": 2.25, + "unit-mocha": 1, + "enterprise": 2.25, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 2.25, + "infra": 2.25, + "terraform": 2.25, + "figure": 2.25, + "layout": 2.25, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 2, + "axe": 1, + "sendgrid": 1, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 2, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "behavioral": 1, + "multi": 2, + "module": 2, + "mixing": 1, + "backlog": 2, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 2, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "projectManagement": { + "positive_weights": { + "lean": 22.78125, + "bias": 4.0460795069368617e-16, + "trello": 10.125, + "basecamp": 10.125, + "clickup": 10.125, + "scrum": 10.125, + "prince": 10.125, + "pmi": 10.125, + "glo": 10.125, + "pmp": 10.125, + "component": 0.28125, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.8, + "utils": 2, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.6666666666666667, + "ui": 0.6666666666666667, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 0.5, + "badges": 0.5, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 2, + "build": 2, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333334, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "deliverable": 10.125, + "jira": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 2, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.8, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "lean": 0.015625, + "bias": 4.1147770154146786, + "trello": 0.0625, + "basecamp": 0.0625, + "clickup": 0.0625, + "scrum": 0.0625, + "prince": 0.0625, + "pmi": 0.0625, + "glo": 0.0625, + "pmp": 0.0625, + "component": 3.515625, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1.7999999999999998, + "utils": 1, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "feat": 2, + "ui": 2, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 2.25, + "badges": 2.25, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1, + "build": 1, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "deliverable": 0.0625, + "jira": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 1, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1.7999999999999998, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "promotion": { + "positive_weights": { + "promote": 22.78125, + "bias": 0.000019797720015048994, + "promotion": 22.78125, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.75, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 2, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 2, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 2, + "collection": 2, + "external-bugs": 2, + "deal": 2, + "hacking": 2, + "video": 2, + "test": 2, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 2, + "website": 2, + "copy": 2, + "bug": 2, + "guide": 2, + "next": 2, + "meetup!": 2, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 2, + "best": 2, + "practice": 2, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 2, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 2, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 2, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 2, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "c": 2, + "c++": 2, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "promote": 0.015625, + "bias": 6.314235327299682, + "promotion": 0.015625, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 1.875, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 1, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 1, + "azure": 2, + "ad": 2, + "data": 1, + "collection": 1, + "external-bugs": 1, + "deal": 1, + "hacking": 1, + "video": 1, + "test": 1, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 1, + "website": 1, + "copy": 1, + "bug": 1, + "guide": 1, + "next": 1, + "meetup!": 1, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1, + "best": 1, + "practice": 1, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "c": 1, + "c++": 1, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "example": { + "positive_weights": { + "template": 22.78125, + "bias": 3.9423414991964926e-12, + "sample": 22.78125, + "demonstration": 22.78125, + "reference": 22.78125, + "pr": 0.2574920654296876, + "good": 6.517767906188965, + "example": 7.415771484375, + "component": 0.28125, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.75, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "first": 0.28125, + "issue": 0.28125, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.75, + "utils": 0.75, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "merged": 0.6666666666666667, + "vlog": 2, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 0.6666666666666667, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333334, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 0.75, + "change": 0.75, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 0.6666666666666667, + "new": 2, + "best": 2, + "practice": 2, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.32000000000000006, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.32000000000000006, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.6666666666666667, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.32000000000000006, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "demo": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 2, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "template": 0.015625, + "bias": 3.8013891910989717, + "sample": 0.015625, + "demonstration": 0.015625, + "reference": 0.015625, + "pr": 0.20022583007812494, + "good": 0.02607107162475586, + "example": 0.024027099609374995, + "component": 3.515625, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 1.875, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "first": 3.515625, + "issue": 3.515625, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1.875, + "utils": 1.875, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 2, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "merged": 2, + "vlog": 1, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1.875, + "change": 1.875, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 2, + "new": 1, + "best": 1, + "practice": 1, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 3.2399999999999993, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 3.2399999999999993, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 2, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 3.2399999999999993, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "demo": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "a11y": { + "positive_weights": { + "approachability": 22.78125, + "bias": 7.577842551629352e-17, + "friendliness": 22.78125, + "a": 2.5600000000000005, + "y": 16, + "usability": 9.610839843750004, + "webaim": 10.125, + "accessibility": 10.125, + "wcag": 10.125, + "component": 0.28125, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.8, + "utils": 2, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.029629629629629645, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 0.6666666666666667, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 2, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.32000000000000006, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "axe": 10.125, + "wave": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 2, + "doc": 0.5, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 0.6666666666666667, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.8, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "approachability": 0.015625, + "bias": 5.1376700671051765, + "friendliness": 0.015625, + "a": 0.12000000000000001, + "y": 0.03703703703703705, + "usability": 0.001953125, + "webaim": 0.0625, + "accessibility": 0.0625, + "wcag": 0.0625, + "component": 3.515625, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1.7999999999999998, + "utils": 1, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 14.399999999999999, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 2, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 3.2399999999999993, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "axe": 0.0625, + "wave": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1, + "doc": 2.25, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 2, + "sendgrid": 1, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1.7999999999999998, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "translation": { + "positive_weights": { + "i": 16, + "n": 16, + "bias": 3.724661170976858e-16, + "internationalization": 22.78125, + "crowdin": 22.78125, + "subtitle": 22.78125, + "internationalisation": 10.125, + "language": 16.607531249999997, + "translation": 10.125, + "component": 0.28125, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.30000000000000004, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 2, + "utils": 2, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.5, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 0.5, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 0.5, + "steps": 0.5, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 0.6666666666666667, + "finder": 0.6666666666666667, + "difficulty": 0.6666666666666667, + "hard": 0.6666666666666667, + "documentation": 0.6666666666666667, + "book": 0.6666666666666667, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.12800000000000003, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 2, + "needed": 2, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 2, + "plus": 2, + "sign": 2, + "request": 2, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 0.8, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 0.8, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 0.12800000000000003, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 0.12800000000000003, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "lang-convert": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 0.8, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 2, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "i": 0.03703703703703705, + "n": 0.03703703703703705, + "bias": 4.565773993349696, + "internationalization": 0.015625, + "crowdin": 0.015625, + "subtitle": 0.015625, + "internationalisation": 0.0625, + "language": 0.0014238281249999995, + "translation": 0.0625, + "component": 3.515625, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.3749999999999996, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 1, + "utils": 1, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2.25, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 2.25, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 2.25, + "steps": 2.25, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 5.831999999999998, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1, + "needed": 1, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1, + "plus": 1, + "sign": 1, + "request": 1, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1.7999999999999998, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1.7999999999999998, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 5.831999999999998, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 5.831999999999998, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "lang-convert": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1.7999999999999998, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "plugin": { + "positive_weights": { + "addon": 22.78125, + "bias": 5.1208193759669644e-17, + "external": 22.78125, + "utility-lib": 10.125, + "plugin": 22.78125, + "externs": 10.125, + "adapter": 10.125, + "lib": 10.125, + "component": 0.03955078125, + "developer": 0.28125, + "tools": 0.28125, + "inspiration": 0.125, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.28125, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 0.5, + "hacking": 0.5, + "video": 0.5, + "test": 0.11250000000000002, + "utils": 16.218292236328125, + "hsv": 0.5, + "thesis": 0.5, + "pentesting": 0.5, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 0.6666666666666667, + "meetup!": 0.6666666666666667, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8, + "merged": 2, + "vlog": 2, + "acceptance": 2, + "testing": 0.8, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 0.6666666666666667, + "ci": 0.6666666666666667, + "cd": 0.6666666666666667, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.8, + "review": 0.75, + "needed": 2, + "in": 0.75, + "lang-crystal": 2, + "breaking": 2, + "change": 0.75, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 0.6666666666666667, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8, + "for": 0.8, + "deploy": 0.8, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 0.75, + "generators": 0.75, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 0.75, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8, + "be": 2, + "sample": 2, + "white": 0.8, + "check": 0.8, + "mark": 0.8, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 2, + "io": 2, + "client": 0.8, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 0.75, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 0.75, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.8, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 0.5, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 0.5, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 0.75, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.8, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "puppet": 2, + "speech": 2, + "balloon": 2, + "extension": 22.78125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 0.75, + "prometheus": 0.5, + "rocket": 0.6666666666666667, + "discuss": 2, + "doc": 0.5, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 2, + "fields": 2, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 0.6666666666666667, + "axe": 2, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.8, + "customer": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "addon": 0.015625, + "bias": 3.5718550481030213, + "external": 0.015625, + "utility-lib": 0.0625, + "plugin": 0.015625, + "externs": 0.0625, + "adapter": 0.0625, + "lib": 0.0625, + "component": 12.359619140625, + "developer": 3.515625, + "tools": 3.515625, + "inspiration": 5.0625, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.515625, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 2.25, + "hacking": 2.25, + "video": 2.25, + "test": 6.328124999999999, + "utils": 0.0034332275390625, + "hsv": 2.25, + "thesis": 2.25, + "pentesting": 2.25, + "design": 2, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 2, + "meetup!": 2, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.7999999999999998, + "merged": 1, + "vlog": 1, + "acceptance": 1, + "testing": 1.7999999999999998, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.7999999999999998, + "review": 1.875, + "needed": 1, + "in": 1.875, + "lang-crystal": 1, + "breaking": 1, + "change": 1.875, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 2, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.7999999999999998, + "for": 1.7999999999999998, + "deploy": 1.7999999999999998, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1.875, + "generators": 1.875, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1.875, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.7999999999999998, + "be": 1, + "sample": 1, + "white": 1.7999999999999998, + "check": 1.7999999999999998, + "mark": 1.7999999999999998, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 1, + "io": 1, + "client": 1.7999999999999998, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1.875, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1.875, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1.7999999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 2.25, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 2.25, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1.875, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1.7999999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "puppet": 1, + "speech": 1, + "balloon": 1, + "extension": 0.015625, + "c": 2, + "c++": 2, + "bulb": 1.875, + "prometheus": 2.25, + "rocket": 2, + "discuss": 1, + "doc": 2.25, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1, + "fields": 1, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 2, + "axe": 1, + "sendgrid": 1, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1.7999999999999998, + "customer": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "research": { + "positive_weights": { + "literature": 16, + "review": 2, + "bias": 3.0208923362806692e-9, + "phd": 22.78125, + "dissertation": 22.78125, + "research": 5.333333333333334, + "opportunity": 16, + "component": 0.75, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.30000000000000004, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 0.5, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 0.5, + "deal": 2, + "hacking": 2, + "video": 2, + "test": 0.8, + "utils": 2, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 2, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 0.8, + "meetup!": 2, + "feat": 0.75, + "ui": 2, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.8333333333333334, + "merged": 0.8333333333333334, + "vlog": 2, + "acceptance": 0.6666666666666667, + "testing": 0.6666666666666667, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 0.6666666666666667, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 2, + "book": 2, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 0.8, + "feature": 0.8333333333333334, + "feature-request": 2, + "rfc": 2, + "image": 2, + "stock": 2, + "reminder": 2, + "status": 0.75, + "needed": 0.75, + "in": 0.6666666666666667, + "lang-crystal": 2, + "breaking": 2, + "change": 2, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 2, + "aws": 2, + "polish": 2, + "nail": 2, + "care": 2, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 2, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 2, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8333333333333334, + "for": 0.8, + "deploy": 2, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 2, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.8, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 2, + "device": 2, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 2, + "error": 2, + "handling": 2, + "needs": 0.8, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.8333333333333334, + "be": 0.8333333333333334, + "sample": 2, + "white": 2, + "check": 2, + "mark": 2, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 2, + "not": 2, + "merge": 2, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333334, + "plus": 0.8333333333333334, + "sign": 0.8333333333333334, + "request": 0.8333333333333334, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "socket": 2, + "io": 2, + "client": 2, + "fiscal": 2, + "user": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 2, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "orange": 2, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "todo": 2, + "spiral": 2, + "notepad": 2, + "interface": 2, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 2, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 2, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 0.8, + "y": 2, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "focus": 2, + "groups": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 2, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "attitudinal": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 2, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "academia": 10.125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 2, + "rocket": 2, + "discuss": 0.8, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 2, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 2, + "deployment": 2, + "e-nightwatch": 2, + "engine": 2, + "vulns": 2, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 2, + "axe": 2, + "sendgrid": 2, + "operating": 2, + "system": 2, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.8, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 2, + "due": 2, + "inactivity": 2, + "jira": 2, + "survey": 2, + "behavioral": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "b": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2 + }, + "negative_weights": { + "literature": 0.03703703703703705, + "review": 0.13888888888888895, + "bias": 4.552423388899387, + "phd": 0.015625, + "dissertation": 0.015625, + "research": 0.0740740740740741, + "opportunity": 0.03703703703703705, + "component": 1.875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.3749999999999996, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 2.25, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 2.25, + "deal": 1, + "hacking": 1, + "video": 1, + "test": 1.7999999999999998, + "utils": 1, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 1, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 1.7999999999999998, + "meetup!": 1, + "feat": 1.875, + "ui": 1, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 1.75, + "merged": 1.75, + "vlog": 1, + "acceptance": 2, + "testing": 2, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 2, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1, + "book": 1, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1.7999999999999998, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 1, + "stock": 1, + "reminder": 1, + "status": 1.875, + "needed": 1.875, + "in": 2, + "lang-crystal": 1, + "breaking": 1, + "change": 1, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1, + "aws": 1, + "polish": 1, + "nail": 1, + "care": 1, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 1, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.75, + "for": 1.7999999999999998, + "deploy": 1, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 1, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 1.7999999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1, + "device": 1, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1, + "error": 1, + "handling": 1, + "needs": 1.7999999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 1.75, + "be": 1.75, + "sample": 1, + "white": 1, + "check": 1, + "mark": 1, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1, + "not": 1, + "merge": 1, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "socket": 1, + "io": 1, + "client": 1, + "fiscal": 1, + "user": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "orange": 1, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "todo": 1, + "spiral": 1, + "notepad": 1, + "interface": 1, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 1, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 1.7999999999999998, + "y": 1, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "focus": 1, + "groups": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 1, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "attitudinal": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 1, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "academia": 0.0625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 1, + "rocket": 1, + "discuss": 1.7999999999999998, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 1, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 1, + "deployment": 1, + "e-nightwatch": 1, + "engine": 1, + "vulns": 1, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 1, + "axe": 1, + "sendgrid": 1, + "operating": 1, + "system": 1, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 1.7999999999999998, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1, + "due": 1, + "inactivity": 1, + "jira": 1, + "survey": 1, + "behavioral": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "b": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + }, + "userTesting": { + "positive_weights": { + "user": 29.629629629629644, + "testing": 3.2958984375000027, + "bias": 2.2438710192953305e-32, + "client": 13.824000000000002, + "test": 0.8533333333333335, + "focus": 8, + "groups": 8, + "attitudinal": 2, + "component": 0.10546875, + "developer": 0.75, + "tools": 0.75, + "inspiration": 0.5, + "business": 0.6666666666666667, + "process": 0.6666666666666667, + "sustain": 0.5, + "confirmed": 0.5, + "type": 0.30000000000000004, + "question": 0.75, + "grey": 0.75, + "cmty": 2, + "need-info": 0.5, + "sustenance": 0.5, + "good": 0.75, + "first": 0.75, + "issue": 0.75, + "kind": 0.6666666666666667, + "discussion": 0.6666666666666667, + "palette": 2, + "azure": 0.6666666666666667, + "ad": 0.6666666666666667, + "data": 0.6666666666666667, + "collection": 0.6666666666666667, + "external-bugs": 2, + "deal": 2, + "hacking": 2, + "video": 2, + "utils": 0.28125, + "hsv": 2, + "thesis": 2, + "pentesting": 2, + "design": 0.6666666666666667, + "website": 0.6666666666666667, + "copy": 0.6666666666666667, + "bug": 2, + "guide": 2, + "next": 2, + "meetup!": 2, + "feat": 0.75, + "ui": 0.6666666666666667, + "mastering": 2, + "steps": 2, + "abandoned": 2, + "badges": 2, + "sponsor": 2, + "assess": 2, + "pr": 0.3333333333333333, + "merged": 0.8333333333333333, + "vlog": 2, + "acceptance": 0.024691358024691367, + "hot": 2, + "tv": 2, + "soundtrack": 2, + "(category)": 2, + "ci": 2, + "cd": 2, + "multi-cloud": 2, + "funding": 2, + "finder": 2, + "difficulty": 2, + "hard": 2, + "documentation": 0.75, + "book": 0.75, + "diary": 2, + "standard": 2, + "colour": 2, + "computer": 2, + "desktop": 2, + "flaw": 2, + "reliability": 2, + "cli-service": 0.75, + "build": 0.75, + "blocked": 2, + "maintenance": 2, + "construction": 2, + "ios": 2, + "planned": 2, + "feature": 0.8333333333333333, + "feature-request": 2, + "rfc": 2, + "image": 0.6666666666666667, + "stock": 2, + "reminder": 2, + "status": 0.75, + "review": 0.75, + "needed": 0.75, + "in": 2, + "lang-crystal": 2, + "breaking": 2, + "change": 0.75, + "phone": 2, + "refactor": 2, + "monologue": 2, + "reviewed-approved": 2, + "new": 0.75, + "best": 0.75, + "practice": 0.75, + "lecture": 2, + "backing": 2, + "browser": 0.75, + "aws": 2, + "polish": 0.8, + "nail": 0.8, + "care": 0.8, + "article": 2, + "peer-review": 2, + "writer-needed": 2, + "eventstorming": 2, + "freemasonry": 2, + "icons": 2, + "lean": 2, + "cannot": 2, + "reproduce": 2, + "paas": 2, + "net": 2, + "core": 2, + "wiretap": 2, + "unit-jest": 2, + "instruction": 2, + "infrastructure": 2, + "rgb": 2, + "ideas": 2, + "target": 0.6666666666666667, + "windows": 2, + "call": 2, + "iconography": 2, + "promote": 2, + "template": 2, + "support": 0.75, + "first-timers-only": 2, + "java": 2, + "cdn": 2, + "dependency": 2, + "ready": 0.8333333333333333, + "for": 2, + "deploy": 2, + "troubleshooting": 2, + "spec": 0.75, + "bigint": 2, + "async": 2, + "generators": 2, + "proposal": 2, + "e": 0.22222222222222227, + "approachability": 2, + "investment": 2, + "conflicts": 2, + "optimisation": 2, + "kotlin": 2, + "release": 0.12800000000000003, + "unconfirmed": 2, + "duplicate": 2, + "repeat": 2, + "devops": 2, + "defend": 2, + "blogging": 2, + "friendliness": 2, + "i": 2, + "n": 2, + "cla": 2, + "signed": 2, + "icebox": 2, + "meetup": 2, + "examination": 2, + "mobile": 0.75, + "device": 0.75, + "api": 2, + "decorators": 2, + "addon": 2, + "cracking": 2, + "sparkles": 2, + "enhancement": 2, + "hooks": 2, + "improved": 0.75, + "error": 0.75, + "handling": 0.75, + "needs": 0.12000000000000002, + "repro": 2, + "upkeep": 2, + "reactis": 2, + "to": 0.3333333333333333, + "be": 0.8333333333333333, + "sample": 2, + "white": 0.12800000000000003, + "check": 0.12800000000000003, + "mark": 0.12800000000000003, + "external": 2, + "hacktoberfest": 2, + "lang-dart": 2, + "framework": 2, + "icon": 2, + "grant": 2, + "needs-research": 2, + "cybersec": 2, + "biz": 2, + "internationalization": 2, + "utility-lib": 2, + "qa": 2, + "do": 0.75, + "not": 0.75, + "merge": 0.75, + "hacked": 2, + "how-to": 2, + "beginner-friendly": 2, + "trello": 2, + "os": 2, + "sound": 2, + "docs": 2, + "improvement": 2, + "heavy": 0.8333333333333333, + "plus": 0.8333333333333333, + "sign": 0.8333333333333333, + "request": 0.8333333333333333, + "glitch": 2, + "cx": 2, + "dependencies": 2, + "inquiry": 2, + "deno": 2, + "area": 2, + "crash": 2, + "camera": 2, + "wip": 2, + "configure": 2, + "dom": 2, + "programming": 2, + "font-face": 2, + "rgba": 2, + "parser-specific": 2, + "wikipedia": 2, + "shell": 2, + "contributions": 2, + "tryout": 2, + "thought": 2, + "analysis": 2, + "contenu": 2, + "cli": 2, + "fund": 2, + "investigation": 2, + "basecamp": 2, + "literature": 2, + "socket": 0.10546875, + "io": 0.10546875, + "fiscal": 2, + "debug": 2, + "information": 2, + "frontend": 2, + "upstream": 0.75, + "raising": 2, + "hand": 2, + "style": 2, + "clean": 2, + "up": 2, + "motif": 2, + "event": 2, + "help": 2, + "wanted": 2, + "priority": 2, + "medium": 2, + "financial": 2, + "ruby": 2, + "es": 2, + "warrant": 2, + "cancelled": 2, + "plan": 2, + "hackathon": 2, + "beginner": 2, + "typography": 2, + "counsel": 2, + "recording": 2, + "crowdin": 2, + "eslint": 2, + "rules": 2, + "easy": 2, + "repare": 2, + "conference": 2, + "great": 2, + "insight": 2, + "phd": 2, + "orange": 0.75, + "invalid": 2, + "x": 2, + "changelog": 2, + "e-cypress": 2, + "lipstick": 2, + "-": 2, + "backdoor": 2, + "approved": 2, + "talk": 2, + "subtitle": 2, + "research": 2, + "todo": 0.75, + "spiral": 0.75, + "notepad": 0.75, + "interface": 0.008230452674897124, + "critical": 2, + "privacy": 2, + "tests": 2, + "boom": 2, + "web": 2, + "app": 2, + "television": 2, + "uat": 2, + "backer": 2, + "exploit": 2, + "requires": 0.75, + "travis-yml": 2, + "node": 2, + "dev": 2, + "experience": 2, + "fix": 2, + "backend": 2, + "cleaning": 2, + "internal": 0.12800000000000003, + "house": 2, + "technical": 2, + "debt": 2, + "weekly-digest": 2, + "shallow": 2, + "renderer": 2, + "commerce": 2, + "ie": 2, + "hsl": 2, + "left": 2, + "out": 2, + "welcome": 2, + "opinions": 2, + "documents": 2, + "legacy": 2, + "grafana": 2, + "react": 2, + "native": 2, + "lang-go": 2, + "tutorial": 2, + "plugin": 2, + "logo": 2, + "refactoring": 2, + "safari": 2, + "saltstack": 2, + "available": 2, + "server": 2, + "rendering": 2, + "htmlfile": 2, + "theorem": 2, + "social": 2, + "internationalisation": 2, + "definition": 2, + "enquire": 2, + "packaging": 2, + "lang-r": 2, + "regression": 2, + "container": 2, + "opencollective": 2, + "report": 2, + "performance": 2, + "clickup": 2, + "installer": 2, + "statement": 2, + "gcp": 2, + "opinion": 2, + "accepted": 2, + "html": 2, + "a": 1.3183593750000002, + "y": 0.6666666666666667, + "general": 2, + "js": 2, + "unit": 2, + "speak": 2, + "brainstorming": 2, + "backup": 2, + "language": 2, + "bugfix": 2, + "k": 2, + "s": 2, + "scrum": 2, + "paper": 2, + "library": 2, + "stale": 2, + "optimization": 2, + "show": 2, + "apple": 2, + "low": 2, + "functions": 2, + "gnu": 2, + "linux": 2, + "dependency-update": 2, + "related": 2, + "bootstrap": 2, + "usability": 1, + "*nix": 2, + "externs": 2, + "critique": 2, + "prince": 2, + "demonstration": 2, + "⬆️": 2, + "memo": 2, + "revisitinfuture": 2, + "tips": 2, + "reference": 2, + "high": 2, + "bug-report": 2, + "babel": 2, + "flashsocket": 2, + "unix": 2, + "npm": 2, + "site": 2, + "chore": 2, + "adapter": 2, + "slides": 2, + "query": 2, + "chat": 2, + "major": 2, + "alpha": 2, + "lock": 2, + "security": 2, + "newsletter": 2, + "verification": 2, + "color": 2, + "containerd": 2, + "doughnut": 2, + "sentry": 2, + "dissertation": 2, + "mentoring": 2, + "confer": 2, + "utilities": 2, + "infosec": 2, + "vulnerability": 2, + "has": 2, + "code": 2, + "teaching": 2, + "protection": 2, + "robot": 2, + "android": 2, + "webaim": 2, + "wontfix": 2, + "triage": 2, + "contribution": 2, + "macos": 2, + "assertion": 2, + "blog": 2, + "progress": 2, + "future": 2, + "architecture": 2, + "enhancements": 2, + "pmi": 2, + "promotion": 2, + "validation": 2, + "art": 2, + "film": 2, + "bitbucket": 2, + "cloud": 2, + "labour": 2, + "python": 2, + "suggestion": 2, + "crypto": 2, + "electron": 2, + "trial": 2, + "example": 2, + "resolution": 2, + "redirect": 2, + "assessment": 2, + "monitor": 2, + "css": 2, + "hack": 2, + "translation": 2, + "opportunity": 2, + "vultr": 2, + "kubernetes": 2, + "wiki": 2, + "parser": 2, + "pwa": 2, + "iphone": 2, + "program": 2, + "finding": 2, + "digital": 2, + "ocean": 2, + "safeguard": 2, + "iac": 2, + "javascript": 2, + "integration": 2, + "glo": 2, + "porting": 2, + "on": 2, + "hold": 2, + "evaluation": 2, + "go": 0.12800000000000003, + "must-triage": 2, + "gradle": 2, + "accessibility": 2, + "work": 2, + "other": 2, + "wrangling": 2, + "sast": 2, + "tech-debt": 2, + "entry": 2, + "fault": 2, + "problem": 2, + "brand": 2, + "internal-issue-created": 2, + "pmp": 2, + "bdd": 2, + "checkpoint": 2, + "csharp": 2, + "unreviewed": 2, + "idea": 2, + "feedback": 2, + "requested": 2, + "wcag": 2, + "bugs": 2, + "mentor": 2, + "economics": 2, + "lib": 2, + "puppet": 2, + "speech": 0.8, + "balloon": 0.8, + "behavioral": 7.03125, + "b": 24.71923828125, + "c": 0.6666666666666667, + "c++": 0.6666666666666667, + "bulb": 2, + "prometheus": 2, + "rocket": 0.6666666666666667, + "discuss": 0.8, + "doc": 2, + "blogs": 2, + "unit-mocha": 2, + "enterprise": 2, + "scheduler": 2, + "class": 0.75, + "fields": 0.75, + "commercial": 2, + "infra": 2, + "terraform": 2, + "figure": 2, + "layout": 2, + "specification": 2, + "vector": 0.6666666666666667, + "greenkeeper": 2, + "tdd": 2, + "raster": 2, + "mishap": 2, + "sketch": 2, + "released": 2, + "font": 0.6666666666666667, + "deployment": 0.6666666666666667, + "e-nightwatch": 2, + "engine": 0.6666666666666667, + "vulns": 0.6666666666666667, + "syntax": 2, + "deliverable": 2, + "manual": 2, + "osx": 0.6666666666666667, + "axe": 2, + "sendgrid": 2, + "operating": 0.6666666666666667, + "system": 0.6666666666666667, + "advance": 2, + "workflow": 2, + "safety": 2, + "phonetic": 2, + "concept": 2, + "lerna": 2, + "readme": 2, + "music": 2, + "failing": 0.32000000000000006, + "customer": 2, + "extension": 2, + "lint": 2, + "optimizing": 2, + "compiler": 2, + "css-select": 2, + "figma": 2, + "finance": 2, + "closed": 0.8, + "due": 0.8, + "inactivity": 0.8, + "jira": 2, + "survey": 2, + "multi": 2, + "module": 2, + "mixing": 2, + "backlog": 2, + "update": 2, + "present": 2, + "modules": 2, + "lang-julia": 2, + "vuln": 2, + "demo": 2, + "corporate": 2, + "spam": 2, + "handshakes": 2, + "platform": 2, + "wave": 2, + "ansible": 2, + "lang-convert": 2, + "gdpr": 2, + "classes": 2, + "websocket": 2, + "speach": 2, + "chef": 2, + "patreon": 2, + "reviewed-changes-requested": 2, + "youtube": 2, + "(legacy)": 2, + "mentorship": 2, + "typescript": 2, + "didactic": 2, + "story": 2, + "academia": 2 + }, + "negative_weights": { + "user": 0.00007620789513793636, + "testing": 8.093525849517438e-16, + "bias": 8.353160492120718, + "client": 0.00021701388888888912, + "test": 0.0011574074074074086, + "focus": 0.11111111111111113, + "groups": 0.11111111111111113, + "attitudinal": 1, + "component": 6.591796875, + "developer": 1.875, + "tools": 1.875, + "inspiration": 2.25, + "business": 2, + "process": 2, + "sustain": 2.25, + "confirmed": 2.25, + "type": 3.3749999999999996, + "question": 1.875, + "grey": 1.875, + "cmty": 1, + "need-info": 2.25, + "sustenance": 2.25, + "good": 1.875, + "first": 1.875, + "issue": 1.875, + "kind": 2, + "discussion": 2, + "palette": 1, + "azure": 2, + "ad": 2, + "data": 2, + "collection": 2, + "external-bugs": 1, + "deal": 1, + "hacking": 1, + "video": 1, + "utils": 3.515625, + "hsv": 1, + "thesis": 1, + "pentesting": 1, + "design": 2, + "website": 2, + "copy": 2, + "bug": 1, + "guide": 1, + "next": 1, + "meetup!": 1, + "feat": 1.875, + "ui": 2, + "mastering": 1, + "steps": 1, + "abandoned": 1, + "badges": 1, + "sponsor": 1, + "assess": 1, + "pr": 3.1499999999999995, + "merged": 1.75, + "vlog": 1, + "acceptance": 16, + "hot": 1, + "tv": 1, + "soundtrack": 1, + "(category)": 1, + "ci": 1, + "cd": 1, + "multi-cloud": 1, + "funding": 1, + "finder": 1, + "difficulty": 1, + "hard": 1, + "documentation": 1.875, + "book": 1.875, + "diary": 1, + "standard": 1, + "colour": 1, + "computer": 1, + "desktop": 1, + "flaw": 1, + "reliability": 1, + "cli-service": 1.875, + "build": 1.875, + "blocked": 1, + "maintenance": 1, + "construction": 1, + "ios": 1, + "planned": 1, + "feature": 1.75, + "feature-request": 1, + "rfc": 1, + "image": 2, + "stock": 1, + "reminder": 1, + "status": 1.875, + "review": 1.875, + "needed": 1.875, + "in": 1, + "lang-crystal": 1, + "breaking": 1, + "change": 1.875, + "phone": 1, + "refactor": 1, + "monologue": 1, + "reviewed-approved": 1, + "new": 1.875, + "best": 1.875, + "practice": 1.875, + "lecture": 1, + "backing": 1, + "browser": 1.875, + "aws": 1, + "polish": 1.7999999999999998, + "nail": 1.7999999999999998, + "care": 1.7999999999999998, + "article": 1, + "peer-review": 1, + "writer-needed": 1, + "eventstorming": 1, + "freemasonry": 1, + "icons": 1, + "lean": 1, + "cannot": 1, + "reproduce": 1, + "paas": 1, + "net": 1, + "core": 1, + "wiretap": 1, + "unit-jest": 1, + "instruction": 1, + "infrastructure": 1, + "rgb": 1, + "ideas": 1, + "target": 2, + "windows": 1, + "call": 1, + "iconography": 1, + "promote": 1, + "template": 1, + "support": 1.875, + "first-timers-only": 1, + "java": 1, + "cdn": 1, + "dependency": 1, + "ready": 1.75, + "for": 1, + "deploy": 1, + "troubleshooting": 1, + "spec": 1.875, + "bigint": 1, + "async": 1, + "generators": 1, + "proposal": 1, + "e": 4, + "approachability": 1, + "investment": 1, + "conflicts": 1, + "optimisation": 1, + "kotlin": 1, + "release": 5.831999999999998, + "unconfirmed": 1, + "duplicate": 1, + "repeat": 1, + "devops": 1, + "defend": 1, + "blogging": 1, + "friendliness": 1, + "i": 1, + "n": 1, + "cla": 1, + "signed": 1, + "icebox": 1, + "meetup": 1, + "examination": 1, + "mobile": 1.875, + "device": 1.875, + "api": 1, + "decorators": 1, + "addon": 1, + "cracking": 1, + "sparkles": 1, + "enhancement": 1, + "hooks": 1, + "improved": 1.875, + "error": 1.875, + "handling": 1.875, + "needs": 6.074999999999998, + "repro": 1, + "upkeep": 1, + "reactis": 1, + "to": 3.1499999999999995, + "be": 1.75, + "sample": 1, + "white": 5.831999999999998, + "check": 5.831999999999998, + "mark": 5.831999999999998, + "external": 1, + "hacktoberfest": 1, + "lang-dart": 1, + "framework": 1, + "icon": 1, + "grant": 1, + "needs-research": 1, + "cybersec": 1, + "biz": 1, + "internationalization": 1, + "utility-lib": 1, + "qa": 1, + "do": 1.875, + "not": 1.875, + "merge": 1.875, + "hacked": 1, + "how-to": 1, + "beginner-friendly": 1, + "trello": 1, + "os": 1, + "sound": 1, + "docs": 1, + "improvement": 1, + "heavy": 1.75, + "plus": 1.75, + "sign": 1.75, + "request": 1.75, + "glitch": 1, + "cx": 1, + "dependencies": 1, + "inquiry": 1, + "deno": 1, + "area": 1, + "crash": 1, + "camera": 1, + "wip": 1, + "configure": 1, + "dom": 1, + "programming": 1, + "font-face": 1, + "rgba": 1, + "parser-specific": 1, + "wikipedia": 1, + "shell": 1, + "contributions": 1, + "tryout": 1, + "thought": 1, + "analysis": 1, + "contenu": 1, + "cli": 1, + "fund": 1, + "investigation": 1, + "basecamp": 1, + "literature": 1, + "socket": 6.591796875, + "io": 6.591796875, + "fiscal": 1, + "debug": 1, + "information": 1, + "frontend": 1, + "upstream": 1.875, + "raising": 1, + "hand": 1, + "style": 1, + "clean": 1, + "up": 1, + "motif": 1, + "event": 1, + "help": 1, + "wanted": 1, + "priority": 1, + "medium": 1, + "financial": 1, + "ruby": 1, + "es": 1, + "warrant": 1, + "cancelled": 1, + "plan": 1, + "hackathon": 1, + "beginner": 1, + "typography": 1, + "counsel": 1, + "recording": 1, + "crowdin": 1, + "eslint": 1, + "rules": 1, + "easy": 1, + "repare": 1, + "conference": 1, + "great": 1, + "insight": 1, + "phd": 1, + "orange": 1.875, + "invalid": 1, + "x": 1, + "changelog": 1, + "e-cypress": 1, + "lipstick": 1, + "-": 1, + "backdoor": 1, + "approved": 1, + "talk": 1, + "subtitle": 1, + "research": 1, + "todo": 1.875, + "spiral": 1.875, + "notepad": 1.875, + "interface": 32, + "critical": 1, + "privacy": 1, + "tests": 1, + "boom": 1, + "web": 1, + "app": 1, + "television": 1, + "uat": 1, + "backer": 1, + "exploit": 1, + "requires": 1.875, + "travis-yml": 1, + "node": 1, + "dev": 1, + "experience": 1, + "fix": 1, + "backend": 1, + "cleaning": 1, + "internal": 5.831999999999998, + "house": 1, + "technical": 1, + "debt": 1, + "weekly-digest": 1, + "shallow": 1, + "renderer": 1, + "commerce": 1, + "ie": 1, + "hsl": 1, + "left": 1, + "out": 1, + "welcome": 1, + "opinions": 1, + "documents": 1, + "legacy": 1, + "grafana": 1, + "react": 1, + "native": 1, + "lang-go": 1, + "tutorial": 1, + "plugin": 1, + "logo": 1, + "refactoring": 1, + "safari": 1, + "saltstack": 1, + "available": 1, + "server": 1, + "rendering": 1, + "htmlfile": 1, + "theorem": 1, + "social": 1, + "internationalisation": 1, + "definition": 1, + "enquire": 1, + "packaging": 1, + "lang-r": 1, + "regression": 1, + "container": 1, + "opencollective": 1, + "report": 1, + "performance": 1, + "clickup": 1, + "installer": 1, + "statement": 1, + "gcp": 1, + "opinion": 1, + "accepted": 1, + "html": 1, + "a": 0.12814453124999997, + "y": 2, + "general": 1, + "js": 1, + "unit": 1, + "speak": 1, + "brainstorming": 1, + "backup": 1, + "language": 1, + "bugfix": 1, + "k": 1, + "s": 1, + "scrum": 1, + "paper": 1, + "library": 1, + "stale": 1, + "optimization": 1, + "show": 1, + "apple": 1, + "low": 1, + "functions": 1, + "gnu": 1, + "linux": 1, + "dependency-update": 1, + "related": 1, + "bootstrap": 1, + "usability": 4.365574568510074e-11, + "*nix": 1, + "externs": 1, + "critique": 1, + "prince": 1, + "demonstration": 1, + "⬆️": 1, + "memo": 1, + "revisitinfuture": 1, + "tips": 1, + "reference": 1, + "high": 1, + "bug-report": 1, + "babel": 1, + "flashsocket": 1, + "unix": 1, + "npm": 1, + "site": 1, + "chore": 1, + "adapter": 1, + "slides": 1, + "query": 1, + "chat": 1, + "major": 1, + "alpha": 1, + "lock": 1, + "security": 1, + "newsletter": 1, + "verification": 1, + "color": 1, + "containerd": 1, + "doughnut": 1, + "sentry": 1, + "dissertation": 1, + "mentoring": 1, + "confer": 1, + "utilities": 1, + "infosec": 1, + "vulnerability": 1, + "has": 1, + "code": 1, + "teaching": 1, + "protection": 1, + "robot": 1, + "android": 1, + "webaim": 1, + "wontfix": 1, + "triage": 1, + "contribution": 1, + "macos": 1, + "assertion": 1, + "blog": 1, + "progress": 1, + "future": 1, + "architecture": 1, + "enhancements": 1, + "pmi": 1, + "promotion": 1, + "validation": 1, + "art": 1, + "film": 1, + "bitbucket": 1, + "cloud": 1, + "labour": 1, + "python": 1, + "suggestion": 1, + "crypto": 1, + "electron": 1, + "trial": 1, + "example": 1, + "resolution": 1, + "redirect": 1, + "assessment": 1, + "monitor": 1, + "css": 1, + "hack": 1, + "translation": 1, + "opportunity": 1, + "vultr": 1, + "kubernetes": 1, + "wiki": 1, + "parser": 1, + "pwa": 1, + "iphone": 1, + "program": 1, + "finding": 1, + "digital": 1, + "ocean": 1, + "safeguard": 1, + "iac": 1, + "javascript": 1, + "integration": 1, + "glo": 1, + "porting": 1, + "on": 1, + "hold": 1, + "evaluation": 1, + "go": 5.831999999999998, + "must-triage": 1, + "gradle": 1, + "accessibility": 1, + "work": 1, + "other": 1, + "wrangling": 1, + "sast": 1, + "tech-debt": 1, + "entry": 1, + "fault": 1, + "problem": 1, + "brand": 1, + "internal-issue-created": 1, + "pmp": 1, + "bdd": 1, + "checkpoint": 1, + "csharp": 1, + "unreviewed": 1, + "idea": 1, + "feedback": 1, + "requested": 1, + "wcag": 1, + "bugs": 1, + "mentor": 1, + "economics": 1, + "lib": 1, + "puppet": 1, + "speech": 1.7999999999999998, + "balloon": 1.7999999999999998, + "behavioral": 0.140625, + "b": 0.019775390625, + "c": 2, + "c++": 2, + "bulb": 1, + "prometheus": 1, + "rocket": 2, + "discuss": 1.7999999999999998, + "doc": 1, + "blogs": 1, + "unit-mocha": 1, + "enterprise": 1, + "scheduler": 1, + "class": 1.875, + "fields": 1.875, + "commercial": 1, + "infra": 1, + "terraform": 1, + "figure": 1, + "layout": 1, + "specification": 1, + "vector": 2, + "greenkeeper": 1, + "tdd": 1, + "raster": 1, + "mishap": 1, + "sketch": 1, + "released": 1, + "font": 2, + "deployment": 2, + "e-nightwatch": 1, + "engine": 2, + "vulns": 2, + "syntax": 1, + "deliverable": 1, + "manual": 1, + "osx": 2, + "axe": 1, + "sendgrid": 1, + "operating": 2, + "system": 2, + "advance": 1, + "workflow": 1, + "safety": 1, + "phonetic": 1, + "concept": 1, + "lerna": 1, + "readme": 1, + "music": 1, + "failing": 3.2399999999999993, + "customer": 1, + "extension": 1, + "lint": 1, + "optimizing": 1, + "compiler": 1, + "css-select": 1, + "figma": 1, + "finance": 1, + "closed": 1.7999999999999998, + "due": 1.7999999999999998, + "inactivity": 1.7999999999999998, + "jira": 1, + "survey": 1, + "multi": 1, + "module": 1, + "mixing": 1, + "backlog": 1, + "update": 1, + "present": 1, + "modules": 1, + "lang-julia": 1, + "vuln": 1, + "demo": 1, + "corporate": 1, + "spam": 1, + "handshakes": 1, + "platform": 1, + "wave": 1, + "ansible": 1, + "lang-convert": 1, + "gdpr": 1, + "classes": 1, + "websocket": 1, + "speach": 1, + "chef": 1, + "patreon": 1, + "reviewed-changes-requested": 1, + "youtube": 1, + "(legacy)": 1, + "mentorship": 1, + "typescript": 1, + "didactic": 1, + "story": 1, + "academia": 1 + }, + "positive_weights_sum": {}, + "negative_weights_sum": {} + } + }, + "pastTrainingSamples": [ + { + "input": "component: developer tools", + "output": [ + "tool" + ] + }, + { + "input": "inspiration", + "output": [ + "ideas" + ] + }, + { + "input": "business process", + "output": [ + "business" + ] + }, + { + "input": "sustain", + "output": [ + "maintenance" + ] + }, + { + "input": "confirmed", + "output": [ + "null" + ] + }, + { + "input": "type: question :grey_question:", + "output": [ + "question" + ] + }, + { + "input": "cmty:question", + "output": [ + "question" + ] + }, + { + "input": "need-info", + "output": [ + "null" + ] + }, + { + "input": "sustenance", + "output": [ + "maintenance" + ] + }, + { + "input": "good first issue", + "output": [ + "null" + ] + }, + { + "input": "kind/discussion", + "output": [ + "ideas" + ] + }, + { + "input": "palette", + "output": [ + "design" + ] + }, + { + "input": "azure ad", + "output": [ + "infra" + ] + }, + { + "input": "data collection", + "output": [ + "data" + ] + }, + { + "input": "external-bugs", + "output": [ + "bug" + ] + }, + { + "input": "deal", + "output": [ + "business" + ] + }, + { + "input": "hacking", + "output": [ + "security" + ] + }, + { + "input": "kind/question", + "output": [ + "question" + ] + }, + { + "input": "video", + "output": [ + "video" + ] + }, + { + "input": "component: test utils", + "output": [ + "test" + ] + }, + { + "input": "hsv", + "output": [ + "design" + ] + }, + { + "input": "thesis", + "output": [ + "content" + ] + }, + { + "input": "pentesting", + "output": [ + "security" + ] + }, + { + "input": "design", + "output": [ + "design" + ] + }, + { + "input": "website copy", + "output": [ + "content" + ] + }, + { + "input": "type: bug :bug:", + "output": [ + "bug" + ] + }, + { + "input": "guide", + "output": [ + "tutorial" + ] + }, + { + "input": "next meetup!", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "feat: ui", + "output": [ + "design" + ] + }, + { + "input": "mastering", + "output": [ + "audio" + ] + }, + { + "input": "steps", + "output": [ + "doc" + ] + }, + { + "input": "abandoned", + "output": [ + "null" + ] + }, + { + "input": "badges", + "output": [ + "doc" + ] + }, + { + "input": "sponsor", + "output": [ + "mentoring" + ] + }, + { + "input": "assess", + "output": [ + "test" + ] + }, + { + "input": "pr: merged", + "output": [ + "null" + ] + }, + { + "input": "vlog", + "output": [ + "video" + ] + }, + { + "input": "acceptance testing", + "output": [ + "test" + ] + }, + { + "input": "hot discussion", + "output": [ + "ideas" + ] + }, + { + "input": "tv", + "output": [ + "video" + ] + }, + { + "input": "soundtrack", + "output": [ + "audio" + ] + }, + { + "input": "design (category)", + "output": [ + "design" + ] + }, + { + "input": "ci/cd", + "output": [ + "infra" + ] + }, + { + "input": "multi-cloud", + "output": [ + "infra" + ] + }, + { + "input": "funding finder", + "output": [ + "fundingFinding" + ] + }, + { + "input": "difficulty: hard", + "output": [ + "null" + ] + }, + { + "input": "documentation :book:", + "output": [ + "doc" + ] + }, + { + "input": "diary", + "output": [ + "blog" + ] + }, + { + "input": "standard", + "output": [ + "doc" + ] + }, + { + "input": "colour", + "output": [ + "design" + ] + }, + { + "input": ":computer: desktop", + "output": [ + "platform" + ] + }, + { + "input": "flaw", + "output": [ + "bug" + ] + }, + { + "input": "reliability", + "output": [ + "maintenance" + ] + }, + { + "input": "feat: cli-service build", + "output": [ + "code" + ] + }, + { + "input": "blocked", + "output": [ + "null" + ] + }, + { + "input": "type: maintenance :construction:", + "output": [ + "maintenance" + ] + }, + { + "input": "ios", + "output": [ + "platform" + ] + }, + { + "input": "planned feature", + "output": [ + "ideas" + ] + }, + { + "input": "kind/feature-request", + "output": [ + "ideas" + ] + }, + { + "input": "rfc", + "output": [ + "ideas" + ] + }, + { + "input": "image", + "output": [ + "design" + ] + }, + { + "input": "stock", + "output": [ + "infra" + ] + }, + { + "input": "reminder", + "output": [ + "null" + ] + }, + { + "input": "status: review needed", + "output": [ + "null" + ] + }, + { + "input": "in review", + "output": [ + "null" + ] + }, + { + "input": "lang-crystal", + "output": [ + "code" + ] + }, + { + "input": "pr: breaking change", + "output": [ + "code" + ] + }, + { + "input": "phone", + "output": [ + "platform" + ] + }, + { + "input": "refactor", + "output": [ + "code" + ] + }, + { + "input": "monologue", + "output": [ + "talk" + ] + }, + { + "input": "pr: reviewed-approved", + "output": [ + "null" + ] + }, + { + "input": "new best practice", + "output": [ + "ideas" + ] + }, + { + "input": "lecture", + "output": [ + "tutorial" + ] + }, + { + "input": "backing", + "output": [ + "financial" + ] + }, + { + "input": "website", + "output": [ + "code" + ] + }, + { + "input": "browser issue", + "output": [ + "bug" + ] + }, + { + "input": "aws", + "output": [ + "infra" + ] + }, + { + "input": "pr: polish :nail_care:", + "output": [ + "maintenance" + ] + }, + { + "input": "article", + "output": [ + "content" + ] + }, + { + "input": "peer-review", + "output": [ + "review" + ] + }, + { + "input": "writer-needed", + "output": [ + "null" + ] + }, + { + "input": "eventstorming", + "output": [ + "ideas" + ] + }, + { + "input": "freemasonry icons", + "output": [ + "design" + ] + }, + { + "input": "lean", + "output": [ + "projectManagement" + ] + }, + { + "input": "cannot reproduce", + "output": [ + "null" + ] + }, + { + "input": "paas", + "output": [ + "platform" + ] + }, + { + "input": ".net core", + "output": [ + "code" + ] + }, + { + "input": "wiretap", + "output": [ + "security" + ] + }, + { + "input": "feat: unit-jest", + "output": [ + "test" + ] + }, + { + "input": "instruction", + "output": [ + "doc" + ] + }, + { + "input": "infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "rgb", + "output": [ + "design" + ] + }, + { + "input": "ideas", + "output": [ + "ideas" + ] + }, + { + "input": "target:windows", + "output": [ + "platform" + ] + }, + { + "input": "funding call", + "output": [ + "fundingFinding" + ] + }, + { + "input": "iconography", + "output": [ + "design" + ] + }, + { + "input": "promote", + "output": [ + "promotion" + ] + }, + { + "input": "template", + "output": [ + "example" + ] + }, + { + "input": "support", + "output": [ + "null" + ] + }, + { + "input": "first-timers-only", + "output": [ + "null" + ] + }, + { + "input": "java", + "output": [ + "code" + ] + }, + { + "input": "cdn", + "output": [ + "platform" + ] + }, + { + "input": "pr: new dependency", + "output": [ + "ideas" + ] + }, + { + "input": "status: ready for deploy", + "output": [ + "null" + ] + }, + { + "input": "computer", + "output": [ + "platform" + ] + }, + { + "input": "troubleshooting", + "output": [ + "bug" + ] + }, + { + "input": "spec: bigint", + "output": [ + "doc" + ] + }, + { + "input": "spec: async generators", + "output": [ + "doc" + ] + }, + { + "input": "feature proposal", + "output": [ + "ideas" + ] + }, + { + "input": "e2e test", + "output": [ + "test" + ] + }, + { + "input": "approachability", + "output": [ + "a11y" + ] + }, + { + "input": "investment", + "output": [ + "financial" + ] + }, + { + "input": "conflicts", + "output": [ + "null" + ] + }, + { + "input": "optimisation", + "output": [ + "code" + ] + }, + { + "input": "kotlin", + "output": [ + "code" + ] + }, + { + "input": "planned for next release", + "output": [ + "null" + ] + }, + { + "input": "unconfirmed", + "output": [ + "null" + ] + }, + { + "input": "type: duplicate :repeat:", + "output": [ + "null" + ] + }, + { + "input": "devops: defend", + "output": [ + "infra" + ] + }, + { + "input": "blogging", + "output": [ + "blog" + ] + }, + { + "input": "friendliness", + "output": [ + "a11y" + ] + }, + { + "input": "i18n", + "output": [ + "translation" + ] + }, + { + "input": "cla signed", + "output": [ + "null" + ] + }, + { + "input": "icebox", + "output": [ + "platform" + ] + }, + { + "input": "meetup", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "examination", + "output": [ + "test" + ] + }, + { + "input": "mobile device support", + "output": [ + "platform" + ] + }, + { + "input": "component: component api", + "output": [ + "code" + ] + }, + { + "input": "spec: decorators", + "output": [ + "doc" + ] + }, + { + "input": "addon", + "output": [ + "plugin" + ] + }, + { + "input": "cracking", + "output": [ + "security" + ] + }, + { + "input": ":sparkles: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "component: hooks", + "output": [ + "code" + ] + }, + { + "input": "improved error handling", + "output": [ + "code" + ] + }, + { + "input": "needs repro", + "output": [ + "null" + ] + }, + { + "input": "upkeep", + "output": [ + "maintenance" + ] + }, + { + "input": "component: reactis", + "output": [ + "code" + ] + }, + { + "input": "pr: ready to be merged", + "output": [ + "null" + ] + }, + { + "input": "sample", + "output": [ + "example" + ] + }, + { + "input": ":white_check_mark: testing", + "output": [ + "test" + ] + }, + { + "input": "maintenance", + "output": [ + "maintenance" + ] + }, + { + "input": "external", + "output": [ + "plugin" + ] + }, + { + "input": "desktop", + "output": [ + "platform" + ] + }, + { + "input": "hacktoberfest", + "output": [ + "code" + ] + }, + { + "input": "data", + "output": [ + "data" + ] + }, + { + "input": "lang-dart", + "output": [ + "code" + ] + }, + { + "input": ".net framework", + "output": [ + "code" + ] + }, + { + "input": "icon", + "output": [ + "design" + ] + }, + { + "input": "grant finder", + "output": [ + "fundingFinding" + ] + }, + { + "input": "needs-research", + "output": [ + "null" + ] + }, + { + "input": "cybersec", + "output": [ + "security" + ] + }, + { + "input": "biz", + "output": [ + "business" + ] + }, + { + "input": "internationalization", + "output": [ + "translation" + ] + }, + { + "input": "utility-lib", + "output": [ + "plugin" + ] + }, + { + "input": "qa", + "output": [ + "test" + ] + }, + { + "input": "do not merge", + "output": [ + "null" + ] + }, + { + "input": "hacked", + "output": [ + "security" + ] + }, + { + "input": "how-to", + "output": [ + "tutorial" + ] + }, + { + "input": "beginner-friendly", + "output": [ + "null" + ] + }, + { + "input": "trello", + "output": [ + "projectManagement" + ] + }, + { + "input": "os", + "output": [ + "platform" + ] + }, + { + "input": "sound", + "output": [ + "audio" + ] + }, + { + "input": "docs improvement", + "output": [ + "doc" + ] + }, + { + "input": ":heavy_plus_sign: feature request", + "output": [ + "ideas" + ] + }, + { + "input": "glitch", + "output": [ + "bug" + ] + }, + { + "input": "cx", + "output": [ + "design" + ] + }, + { + "input": "dependencies", + "output": [ + "maintenance" + ] + }, + { + "input": "inquiry", + "output": [ + "question" + ] + }, + { + "input": "deno", + "output": [ + "platform" + ] + }, + { + "input": "area: crash", + "output": [ + "bug" + ] + }, + { + "input": "camera", + "output": [ + "video" + ] + }, + { + "input": "pr: wip", + "output": [ + "null" + ] + }, + { + "input": "devops: configure", + "output": [ + "infra" + ] + }, + { + "input": "component: dom", + "output": [ + "code" + ] + }, + { + "input": "programming", + "output": [ + "code" + ] + }, + { + "input": "test needed", + "output": [ + "null" + ] + }, + { + "input": "question :question:", + "output": [ + "question" + ] + }, + { + "input": "@font-face", + "output": [ + "design" + ] + }, + { + "input": "rgba", + "output": [ + "design" + ] + }, + { + "input": "parser-specific", + "output": [ + "tool" + ] + }, + { + "input": "pr: new feature", + "output": [ + "ideas" + ] + }, + { + "input": "wikipedia", + "output": [ + "doc" + ] + }, + { + "input": "shell", + "output": [ + "tool" + ] + }, + { + "input": "cmty:feature-request", + "output": [ + "ideas" + ] + }, + { + "input": "contributions", + "output": [ + "maintenance" + ] + }, + { + "input": "tryout", + "output": [ + "test" + ] + }, + { + "input": "needs review", + "output": [ + "null" + ] + }, + { + "input": "thought", + "output": [ + "ideas" + ] + }, + { + "input": "kind/bug", + "output": [ + "bug" + ] + }, + { + "input": "data analysis", + "output": [ + "data" + ] + }, + { + "input": "contenu", + "output": [ + "content" + ] + }, + { + "input": "feat/cli", + "output": [ + "code" + ] + }, + { + "input": "fund investigation", + "output": [ + "fundingFinding" + ] + }, + { + "input": "type: question", + "output": [ + "question" + ] + }, + { + "input": "type: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "basecamp", + "output": [ + "projectManagement" + ] + }, + { + "input": "literature review", + "output": [ + "research" + ] + }, + { + "input": "needs docs", + "output": [ + "null" + ] + }, + { + "input": "socket.io client", + "output": [ + "tool" + ] + }, + { + "input": "fiscal", + "output": [ + "financial" + ] + }, + { + "input": "user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "debug information", + "output": [ + "bug" + ] + }, + { + "input": "frontend", + "output": [ + "code" + ] + }, + { + "input": "area/cli", + "output": [ + "infra" + ] + }, + { + "input": "upstream", + "output": [ + "null" + ] + }, + { + "input": "question :raising_hand:", + "output": [ + "question" + ] + }, + { + "input": "style", + "output": [ + "design" + ] + }, + { + "input": "clean up", + "output": [ + "maintenance" + ] + }, + { + "input": "motif", + "output": [ + "design" + ] + }, + { + "input": "to merge", + "output": [ + "null" + ] + }, + { + "input": "event", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "status: help wanted", + "output": [ + "null" + ] + }, + { + "input": "priority: medium", + "output": [ + "null" + ] + }, + { + "input": "financial backing", + "output": [ + "fundingFinding" + ] + }, + { + "input": "ruby", + "output": [ + "code" + ] + }, + { + "input": "es7", + "output": [ + "code" + ] + }, + { + "input": "warrant", + "output": [ + "security" + ] + }, + { + "input": "cmty:status:cancelled", + "output": [ + "null" + ] + }, + { + "input": "plan", + "output": [ + "ideas" + ] + }, + { + "input": "hackathon", + "output": [ + "code" + ] + }, + { + "input": ":beginner: documentation", + "output": [ + "doc" + ] + }, + { + "input": "typography", + "output": [ + "design" + ] + }, + { + "input": "counsel", + "output": [ + "mentoring" + ] + }, + { + "input": "recording", + "output": [ + "audio" + ] + }, + { + "input": "crowdin", + "output": [ + "translation" + ] + }, + { + "input": "component: eslint rules", + "output": [ + "maintenance" + ] + }, + { + "input": "difficulty: easy", + "output": [ + "null" + ] + }, + { + "input": "repare", + "output": [ + "maintenance" + ] + }, + { + "input": "conference", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "great insight", + "output": [ + "ideas" + ] + }, + { + "input": "phd", + "output": [ + "research" + ] + }, + { + "input": "documentation :orange_book:", + "output": [ + "doc" + ] + }, + { + "input": "type: invalid :x:", + "output": [ + "null" + ] + }, + { + "input": "needs changelog", + "output": [ + "null" + ] + }, + { + "input": "feat: e2e-cypress", + "output": [ + "test" + ] + }, + { + "input": ":lipstick: ui", + "output": [ + "design" + ] + }, + { + "input": "1 - ready", + "output": [ + "null" + ] + }, + { + "input": "backdoor", + "output": [ + "security" + ] + }, + { + "input": "fund collection", + "output": [ + "fundingFinding" + ] + }, + { + "input": "approved", + "output": [ + "null" + ] + }, + { + "input": "talk", + "output": [ + "talk" + ] + }, + { + "input": "subtitle", + "output": [ + "translation" + ] + }, + { + "input": "funding research", + "output": [ + "fundingFinding" + ] + }, + { + "input": "todo :spiral_notepad:", + "output": [ + "maintenance" + ] + }, + { + "input": "review", + "output": [ + "review" + ] + }, + { + "input": "user interface", + "output": [ + "design" + ] + }, + { + "input": "critical", + "output": [ + "null" + ] + }, + { + "input": "business (category)", + "output": [ + "business" + ] + }, + { + "input": "privacy", + "output": [ + "security" + ] + }, + { + "input": "tests", + "output": [ + "test" + ] + }, + { + "input": "duplicate", + "output": [ + "null" + ] + }, + { + "input": "pr: breaking change :boom:", + "output": [ + "code" + ] + }, + { + "input": "web app", + "output": [ + "code" + ] + }, + { + "input": "test", + "output": [ + "test" + ] + }, + { + "input": "check", + "output": [ + "review" + ] + }, + { + "input": "documentation", + "output": [ + "doc" + ] + }, + { + "input": "television", + "output": [ + "video" + ] + }, + { + "input": "uat", + "output": [ + "test" + ] + }, + { + "input": "backer", + "output": [ + "financial" + ] + }, + { + "input": "exploit", + "output": [ + "security" + ] + }, + { + "input": "requires upstream change", + "output": [ + "code" + ] + }, + { + "input": "travis-yml", + "output": [ + "infra" + ] + }, + { + "input": "node", + "output": [ + "platform" + ] + }, + { + "input": "dev experience", + "output": [ + "design" + ] + }, + { + "input": "pr: bug fix", + "output": [ + "bug" + ] + }, + { + "input": "backend", + "output": [ + "code" + ] + }, + { + "input": "data cleaning", + "output": [ + "data" + ] + }, + { + "input": "pr: internal :house:", + "output": [ + "code" + ] + }, + { + "input": ":question: question", + "output": [ + "question" + ] + }, + { + "input": "technical debt", + "output": [ + "maintenance" + ] + }, + { + "input": "core", + "output": [ + "maintenance" + ] + }, + { + "input": "client test", + "output": [ + "userTesting" + ] + }, + { + "input": "weekly-digest", + "output": [ + "blog" + ] + }, + { + "input": "component: shallow renderer", + "output": [ + "code" + ] + }, + { + "input": "commerce", + "output": [ + "business" + ] + }, + { + "input": "browser: ie", + "output": [ + "platform" + ] + }, + { + "input": "hsl", + "output": [ + "design" + ] + }, + { + "input": "status: left out", + "output": [ + "null" + ] + }, + { + "input": ".net standard", + "output": [ + "code" + ] + }, + { + "input": "pr welcome", + "output": [ + "null" + ] + }, + { + "input": "opinions needed", + "output": [ + "ideas" + ] + }, + { + "input": "documents", + "output": [ + "doc" + ] + }, + { + "input": "legacy", + "output": [ + "maintenance" + ] + }, + { + "input": "grafana", + "output": [ + "infra" + ] + }, + { + "input": "react native", + "output": [ + "code" + ] + }, + { + "input": "lang-go", + "output": [ + "code" + ] + }, + { + "input": "tutorial", + "output": [ + "tutorial" + ] + }, + { + "input": "plugin", + "output": [ + "plugin" + ] + }, + { + "input": "logo", + "output": [ + "design" + ] + }, + { + "input": ":grey_question: question", + "output": [ + "question" + ] + }, + { + "input": "refactoring", + "output": [ + "code" + ] + }, + { + "input": "browser: safari", + "output": [ + "platform" + ] + }, + { + "input": "saltstack", + "output": [ + "infra" + ] + }, + { + "input": "status: available", + "output": [ + "null" + ] + }, + { + "input": "component: server rendering", + "output": [ + "code" + ] + }, + { + "input": "htmlfile", + "output": [ + "code" + ] + }, + { + "input": "theorem", + "output": [ + "ideas" + ] + }, + { + "input": "social", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "internationalisation", + "output": [ + "translation" + ] + }, + { + "input": "definition:enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "enquire", + "output": [ + "question" + ] + }, + { + "input": "packaging", + "output": [ + "platform" + ] + }, + { + "input": "lang-r", + "output": [ + "code" + ] + }, + { + "input": "type: regression :boom:", + "output": [ + "bug" + ] + }, + { + "input": "regression test", + "output": [ + "test" + ] + }, + { + "input": "new api proposal", + "output": [ + "ideas" + ] + }, + { + "input": "container", + "output": [ + "infra" + ] + }, + { + "input": "opencollective", + "output": [ + "financial" + ] + }, + { + "input": "bug report", + "output": [ + "bug" + ] + }, + { + "input": "type: performance", + "output": [ + "maintenance" + ] + }, + { + "input": "new definition", + "output": [ + "code" + ] + }, + { + "input": "pr: documentation", + "output": [ + "doc" + ] + }, + { + "input": ":boom: regression", + "output": [ + "bug" + ] + }, + { + "input": "clickup", + "output": [ + "projectManagement" + ] + }, + { + "input": "docs", + "output": [ + "doc" + ] + }, + { + "input": "installer", + "output": [ + "tool" + ] + }, + { + "input": "statement", + "output": [ + "ideas" + ] + }, + { + "input": "gcp", + "output": [ + "infra" + ] + }, + { + "input": "bug", + "output": [ + "bug" + ] + }, + { + "input": "opinion", + "output": [ + "ideas" + ] + }, + { + "input": "accepted", + "output": [ + "null" + ] + }, + { + "input": "html", + "output": [ + "code" + ] + }, + { + "input": "a11y", + "output": [ + "a11y" + ] + }, + { + "input": "general js", + "output": [ + "code" + ] + }, + { + "input": "unit test", + "output": [ + "test" + ] + }, + { + "input": "speak", + "output": [ + "talk" + ] + }, + { + "input": "brainstorming", + "output": [ + "ideas" + ] + }, + { + "input": "backup", + "output": [ + "maintenance" + ] + }, + { + "input": "status: accepted", + "output": [ + "null" + ] + }, + { + "input": "language", + "output": [ + "translation" + ] + }, + { + "input": "bugfix", + "output": [ + "bug" + ] + }, + { + "input": "question", + "output": [ + "question" + ] + }, + { + "input": "k8s", + "output": [ + "infra" + ] + }, + { + "input": "scrum", + "output": [ + "projectManagement" + ] + }, + { + "input": "paper", + "output": [ + "content" + ] + }, + { + "input": "upstream bug", + "output": [ + "bug" + ] + }, + { + "input": "library", + "output": [ + "tool" + ] + }, + { + "input": "stale", + "output": [ + "null" + ] + }, + { + "input": "testing", + "output": [ + "test" + ] + }, + { + "input": "optimization", + "output": [ + "code" + ] + }, + { + "input": "tv show", + "output": [ + "video" + ] + }, + { + "input": ":apple: ios", + "output": [ + "platform" + ] + }, + { + "input": "priority: low", + "output": [ + "null" + ] + }, + { + "input": "spec: async functions", + "output": [ + "doc" + ] + }, + { + "input": "target:gnu/linux", + "output": [ + "platform" + ] + }, + { + "input": "focus groups", + "output": [ + "userTesting" + ] + }, + { + "input": "dependency-update", + "output": [ + "maintenance" + ] + }, + { + "input": "dependency related", + "output": [ + "maintenance" + ] + }, + { + "input": "wip", + "output": [ + "null" + ] + }, + { + "input": "bootstrap", + "output": [ + "tool" + ] + }, + { + "input": "developer experience", + "output": [ + "design" + ] + }, + { + "input": "breaking change", + "output": [ + "code" + ] + }, + { + "input": "usability", + "output": [ + "a11y" + ] + }, + { + "input": "*nix", + "output": [ + "platform" + ] + }, + { + "input": "externs", + "output": [ + "plugin" + ] + }, + { + "input": "critique", + "output": [ + "review" + ] + }, + { + "input": "prince2", + "output": [ + "projectManagement" + ] + }, + { + "input": "demonstration", + "output": [ + "example" + ] + }, + { + "input": "pr: dependency ⬆️", + "output": [ + "maintenance" + ] + }, + { + "input": "pr: docs :memo:", + "output": [ + "doc" + ] + }, + { + "input": "windows", + "output": [ + "platform" + ] + }, + { + "input": "revisitinfuture", + "output": [ + "ideas" + ] + }, + { + "input": "tips", + "output": [ + "ideas" + ] + }, + { + "input": "reference", + "output": [ + "example" + ] + }, + { + "input": "priority: high", + "output": [ + "null" + ] + }, + { + "input": "cmty:bug-report", + "output": [ + "bug" + ] + }, + { + "input": "feat: babel", + "output": [ + "tool" + ] + }, + { + "input": "flashsocket", + "output": [ + "tool" + ] + }, + { + "input": "target:unix", + "output": [ + "platform" + ] + }, + { + "input": "npm", + "output": [ + "infra" + ] + }, + { + "input": "site reliability", + "output": [ + "maintenance" + ] + }, + { + "input": "enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "chore", + "output": [ + "maintenance" + ] + }, + { + "input": "adapter", + "output": [ + "plugin" + ] + }, + { + "input": "slides", + "output": [ + "talk" + ] + }, + { + "input": "query", + "output": [ + "question" + ] + }, + { + "input": "feature", + "output": [ + "ideas" + ] + }, + { + "input": "chat (category)", + "output": [ + "ideas" + ] + }, + { + "input": "major", + "output": [ + "null" + ] + }, + { + "input": "release: alpha", + "output": [ + "null" + ] + }, + { + "input": ":lock: security", + "output": [ + "security" + ] + }, + { + "input": "newsletter", + "output": [ + "content" + ] + }, + { + "input": "verification", + "output": [ + "test" + ] + }, + { + "input": "color", + "output": [ + "design" + ] + }, + { + "input": "containerd", + "output": [ + "infra" + ] + }, + { + "input": ":doughnut: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "sentry", + "output": [ + "infra" + ] + }, + { + "input": "dissertation", + "output": [ + "research" + ] + }, + { + "input": "mentoring", + "output": [ + "mentoring" + ] + }, + { + "input": "confer", + "output": [ + "talk" + ] + }, + { + "input": "component: core utilities", + "output": [ + "maintenance" + ] + }, + { + "input": "infosec", + "output": [ + "security" + ] + }, + { + "input": "vulnerability", + "output": [ + "security" + ] + }, + { + "input": "has pr", + "output": [ + "null" + ] + }, + { + "input": "status: code review request", + "output": [ + "null" + ] + }, + { + "input": "teaching", + "output": [ + "tutorial" + ] + }, + { + "input": "target:ios", + "output": [ + "platform" + ] + }, + { + "input": "protection", + "output": [ + "security" + ] + }, + { + "input": ":robot: android", + "output": [ + "platform" + ] + }, + { + "input": "type: documentation :book:", + "output": [ + "doc" + ] + }, + { + "input": "webaim", + "output": [ + "a11y" + ] + }, + { + "input": "wontfix", + "output": [ + "null" + ] + }, + { + "input": "needs triage", + "output": [ + "null" + ] + }, + { + "input": "contribution welcome", + "output": [ + "null" + ] + }, + { + "input": "target:macos", + "output": [ + "platform" + ] + }, + { + "input": "assertion", + "output": [ + "test" + ] + }, + { + "input": "blog", + "output": [ + "blog" + ] + }, + { + "input": "review in progress", + "output": [ + "null" + ] + }, + { + "input": "node next", + "output": [ + "platform" + ] + }, + { + "input": "future architecture enhancements", + "output": [ + "ideas" + ] + }, + { + "input": "pmi", + "output": [ + "projectManagement" + ] + }, + { + "input": "promotion", + "output": [ + "promotion" + ] + }, + { + "input": "validation", + "output": [ + "review" + ] + }, + { + "input": "art", + "output": [ + "design" + ] + }, + { + "input": "film", + "output": [ + "video" + ] + }, + { + "input": "bitbucket cloud", + "output": [ + "infra" + ] + }, + { + "input": "labour", + "output": [ + "maintenance" + ] + }, + { + "input": "python", + "output": [ + "code" + ] + }, + { + "input": "suggestion", + "output": [ + "ideas" + ] + }, + { + "input": "future crypto enhancements", + "output": [ + "ideas" + ] + }, + { + "input": "attitudinal user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "electron", + "output": [ + "tool" + ] + }, + { + "input": "trial", + "output": [ + "test" + ] + }, + { + "input": "definition:request", + "output": [ + "ideas" + ] + }, + { + "input": "pr: good example", + "output": [ + "example" + ] + }, + { + "input": "data protection", + "output": [ + "security" + ] + }, + { + "input": "resolution: support redirect", + "output": [ + "null" + ] + }, + { + "input": "cloud", + "output": [ + "infra" + ] + }, + { + "input": "target:android", + "output": [ + "platform" + ] + }, + { + "input": "assessment", + "output": [ + "test" + ] + }, + { + "input": "monitor", + "output": [ + "maintenance" + ] + }, + { + "input": "css", + "output": [ + "code" + ] + }, + { + "input": "hack", + "output": [ + "code" + ] + }, + { + "input": "translation", + "output": [ + "translation" + ] + }, + { + "input": "research opportunity", + "output": [ + "research" + ] + }, + { + "input": "vultr", + "output": [ + "infra" + ] + }, + { + "input": "kubernetes", + "output": [ + "infra" + ] + }, + { + "input": "discussion", + "output": [ + "ideas" + ] + }, + { + "input": "needs a example app.", + "output": [ + "null" + ] + }, + { + "input": "wiki", + "output": [ + "doc" + ] + }, + { + "input": "parser", + "output": [ + "tool" + ] + }, + { + "input": "feat: pwa", + "output": [ + "code" + ] + }, + { + "input": ":iphone: mobile", + "output": [ + "platform" + ] + }, + { + "input": "program", + "output": [ + "platform" + ] + }, + { + "input": "backer finding", + "output": [ + "fundingFinding" + ] + }, + { + "input": "digital ocean", + "output": [ + "infra" + ] + }, + { + "input": "safeguard", + "output": [ + "security" + ] + }, + { + "input": "iac", + "output": [ + "infra" + ] + }, + { + "input": "javascript", + "output": [ + "code" + ] + }, + { + "input": "integration test", + "output": [ + "test" + ] + }, + { + "input": "glo", + "output": [ + "projectManagement" + ] + }, + { + "input": "porting", + "output": [ + "platform" + ] + }, + { + "input": "status: on hold", + "output": [ + "null" + ] + }, + { + "input": "status: hacktoberfest approved", + "output": [ + "null" + ] + }, + { + "input": "evaluation", + "output": [ + "test" + ] + }, + { + "input": "go client internal release", + "output": [ + "infra" + ] + }, + { + "input": "type: test", + "output": [ + "test" + ] + }, + { + "input": "must-triage", + "output": [ + "null" + ] + }, + { + "input": "gradle", + "output": [ + "infra" + ] + }, + { + "input": "accessibility", + "output": [ + "a11y" + ] + }, + { + "input": "status: work in progress", + "output": [ + "null" + ] + }, + { + "input": "other language integration feature", + "output": [ + "ideas" + ] + }, + { + "input": "difficulty: medium", + "output": [ + "null" + ] + }, + { + "input": "data wrangling", + "output": [ + "data" + ] + }, + { + "input": "sast", + "output": [ + "security" + ] + }, + { + "input": "tech-debt", + "output": [ + "maintenance" + ] + }, + { + "input": "data entry", + "output": [ + "data" + ] + }, + { + "input": "fault", + "output": [ + "bug" + ] + }, + { + "input": "problem", + "output": [ + "bug" + ] + }, + { + "input": "brand icon", + "output": [ + "design" + ] + }, + { + "input": "internal-issue-created", + "output": [ + "bug" + ] + }, + { + "input": "pmp", + "output": [ + "projectManagement" + ] + }, + { + "input": "bdd", + "output": [ + "test" + ] + }, + { + "input": "checkpoint", + "output": [ + "review" + ] + }, + { + "input": "csharp", + "output": [ + "code" + ] + }, + { + "input": "pr: unreviewed", + "output": [ + "null" + ] + }, + { + "input": "component: test renderer", + "output": [ + "test" + ] + }, + { + "input": "idea", + "output": [ + "ideas" + ] + }, + { + "input": "needs browser testing", + "output": [ + "null" + ] + }, + { + "input": "status: in progress", + "output": [ + "null" + ] + }, + { + "input": "feedback requested", + "output": [ + "null" + ] + }, + { + "input": "wcag", + "output": [ + "a11y" + ] + }, + { + "input": "bugs", + "output": [ + "bug" + ] + }, + { + "input": "mentor", + "output": [ + "mentoring" + ] + }, + { + "input": "economics", + "output": [ + "financial" + ] + }, + { + "input": "lib", + "output": [ + "plugin" + ] + }, + { + "input": "puppet", + "output": [ + "infra" + ] + }, + { + "input": ":speech_balloon: question", + "output": [ + "question" + ] + }, + { + "input": "c/c++", + "output": [ + "code" + ] + }, + { + "input": "type: enhancement :bulb:", + "output": [ + "ideas" + ] + }, + { + "input": "pr: internal", + "output": [ + "code" + ] + }, + { + "input": "business", + "output": [ + "business" + ] + }, + { + "input": "prometheus", + "output": [ + "infra" + ] + }, + { + "input": "triage", + "output": [ + "null" + ] + }, + { + "input": "pr: new feature :rocket:", + "output": [ + "ideas" + ] + }, + { + "input": "type: discuss :speech_balloon:", + "output": [ + "ideas" + ] + }, + { + "input": "doc", + "output": [ + "doc" + ] + }, + { + "input": "ie8", + "output": [ + "platform" + ] + }, + { + "input": "blogs", + "output": [ + "blog" + ] + }, + { + "input": "feat: unit-mocha", + "output": [ + "test" + ] + }, + { + "input": "enterprise", + "output": [ + "business" + ] + }, + { + "input": "component: scheduler", + "output": [ + "null" + ] + }, + { + "input": "regression", + "output": [ + "bug" + ] + }, + { + "input": "spec: class fields", + "output": [ + "doc" + ] + }, + { + "input": "commercial", + "output": [ + "business" + ] + }, + { + "input": "infra", + "output": [ + "infra" + ] + }, + { + "input": "terraform", + "output": [ + "infra" + ] + }, + { + "input": "go", + "output": [ + "code" + ] + }, + { + "input": "figure", + "output": [ + "design" + ] + }, + { + "input": "layout", + "output": [ + "design" + ] + }, + { + "input": "specification", + "output": [ + "doc" + ] + }, + { + "input": "vector image", + "output": [ + "design" + ] + }, + { + "input": "greenkeeper", + "output": [ + "infra" + ] + }, + { + "input": "tdd", + "output": [ + "test" + ] + }, + { + "input": "performance", + "output": [ + "maintenance" + ] + }, + { + "input": "raster image", + "output": [ + "design" + ] + }, + { + "input": "mishap", + "output": [ + "bug" + ] + }, + { + "input": "sketch", + "output": [ + "design" + ] + }, + { + "input": "released", + "output": [ + "null" + ] + }, + { + "input": "linux", + "output": [ + "platform" + ] + }, + { + "input": "font design", + "output": [ + "design" + ] + }, + { + "input": ":rocket: deployment", + "output": [ + "infra" + ] + }, + { + "input": "feat: e2e-nightwatch", + "output": [ + "test" + ] + }, + { + "input": "type: infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "engine vulns", + "output": [ + "security" + ] + }, + { + "input": "syntax feature request", + "output": [ + "ideas" + ] + }, + { + "input": "type: security", + "output": [ + "security" + ] + }, + { + "input": "deliverable", + "output": [ + "projectManagement" + ] + }, + { + "input": "manual", + "output": [ + "doc" + ] + }, + { + "input": "target:osx", + "output": [ + "platform" + ] + }, + { + "input": "axe", + "output": [ + "a11y" + ] + }, + { + "input": ":bug: bug", + "output": [ + "bug" + ] + }, + { + "input": "type: sendgrid enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "operating system", + "output": [ + "platform" + ] + }, + { + "input": "advance developer workflow", + "output": [ + "infra" + ] + }, + { + "input": "safety", + "output": [ + "security" + ] + }, + { + "input": "phonetic", + "output": [ + "audio" + ] + }, + { + "input": "to do", + "output": [ + "maintenance" + ] + }, + { + "input": "concept", + "output": [ + "ideas" + ] + }, + { + "input": "lerna", + "output": [ + "infra" + ] + }, + { + "input": "readme", + "output": [ + "doc" + ] + }, + { + "input": "security", + "output": [ + "security" + ] + }, + { + "input": "music", + "output": [ + "audio" + ] + }, + { + "input": "needs a failing test", + "output": [ + "null" + ] + }, + { + "input": "customer experience", + "output": [ + "design" + ] + }, + { + "input": "extension", + "output": [ + "plugin" + ] + }, + { + "input": "todo", + "output": [ + "maintenance" + ] + }, + { + "input": "lint", + "output": [ + "maintenance" + ] + }, + { + "input": "target:browser", + "output": [ + "platform" + ] + }, + { + "input": "feature request", + "output": [ + "ideas" + ] + }, + { + "input": "component: optimizing compiler", + "output": [ + "code" + ] + }, + { + "input": "css-select", + "output": [ + "code" + ] + }, + { + "input": "figma", + "output": [ + "tool" + ] + }, + { + "input": "finance", + "output": [ + "financial" + ] + }, + { + "input": "closed due to inactivity", + "output": [ + "null" + ] + }, + { + "input": ":rocket: feature request", + "output": [ + "ideas" + ] + }, + { + "input": "jira", + "output": [ + "projectManagement" + ] + }, + { + "input": "survey", + "output": [ + "review" + ] + }, + { + "input": "behavioral user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "multi module", + "output": [ + "maintenance" + ] + }, + { + "input": "discussion :speech_balloon:", + "output": [ + "ideas" + ] + }, + { + "input": "mixing", + "output": [ + "audio" + ] + }, + { + "input": "0 - backlog", + "output": [ + "null" + ] + }, + { + "input": "update", + "output": [ + "maintenance" + ] + }, + { + "input": "present", + "output": [ + "talk" + ] + }, + { + "input": "modules", + "output": [ + "code" + ] + }, + { + "input": "lang-julia", + "output": [ + "code" + ] + }, + { + "input": "usability testing", + "output": [ + "userTesting" + ] + }, + { + "input": "vuln", + "output": [ + "security" + ] + }, + { + "input": "demo", + "output": [ + "example" + ] + }, + { + "input": "corporate event", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "type: refactor", + "output": [ + "code" + ] + }, + { + "input": "spam", + "output": [ + "null" + ] + }, + { + "input": "definition:bug", + "output": [ + "bug" + ] + }, + { + "input": "help wanted", + "output": [ + "null" + ] + }, + { + "input": "type: idea", + "output": [ + "ideas" + ] + }, + { + "input": ":bulb: proposal", + "output": [ + "ideas" + ] + }, + { + "input": "handshakes", + "output": [ + "business" + ] + }, + { + "input": "platform", + "output": [ + "platform" + ] + }, + { + "input": "cli", + "output": [ + "code" + ] + }, + { + "input": "wave", + "output": [ + "a11y" + ] + }, + { + "input": "ansible", + "output": [ + "infra" + ] + }, + { + "input": "lang-convert", + "output": [ + "translation" + ] + }, + { + "input": "feat: eslint", + "output": [ + "maintenance" + ] + }, + { + "input": "gdpr", + "output": [ + "security" + ] + }, + { + "input": "type: doc update", + "output": [ + "doc" + ] + }, + { + "input": "spec: classes", + "output": [ + "doc" + ] + }, + { + "input": "websocket", + "output": [ + "tool" + ] + }, + { + "input": "android", + "output": [ + "platform" + ] + }, + { + "input": "speach", + "output": [ + "talk" + ] + }, + { + "input": "pr: bug fix :bug:", + "output": [ + "bug" + ] + }, + { + "input": "a/b testing", + "output": [ + "userTesting" + ] + }, + { + "input": "chef", + "output": [ + "infra" + ] + }, + { + "input": "patreon", + "output": [ + "financial" + ] + }, + { + "input": "pr: reviewed-changes-requested", + "output": [ + "null" + ] + }, + { + "input": "on hold", + "output": [ + "null" + ] + }, + { + "input": "ui test", + "output": [ + "test" + ] + }, + { + "input": "analysis", + "output": [ + "review" + ] + }, + { + "input": "pr: needs review", + "output": [ + "null" + ] + }, + { + "input": "component: build infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "youtube", + "output": [ + "video" + ] + }, + { + "input": "spec: decorators (legacy)", + "output": [ + "doc" + ] + }, + { + "input": "deployment", + "output": [ + "infra" + ] + }, + { + "input": "mentorship", + "output": [ + "mentoring" + ] + }, + { + "input": "feat: typescript", + "output": [ + "code" + ] + }, + { + "input": "feat: cli", + "output": [ + "code" + ] + }, + { + "input": "utils", + "output": [ + "plugin" + ] + }, + { + "input": "didactic", + "output": [ + "tutorial" + ] + }, + { + "input": "story", + "output": [ + "content" + ] + }, + { + "input": "academia", + "output": [ + "research" + ] + }, + { + "input": "cla signed", + "output": [ + "null" + ] + }, + { + "input": "icebox", + "output": [ + "platform" + ] + }, + { + "input": "meetup", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "examination", + "output": [ + "test" + ] + }, + { + "input": "mobile device support", + "output": [ + "platform" + ] + }, + { + "input": "component: component api", + "output": [ + "code" + ] + }, + { + "input": "spec: decorators", + "output": [ + "doc" + ] + }, + { + "input": "addon", + "output": [ + "plugin" + ] + }, + { + "input": "cracking", + "output": [ + "security" + ] + }, + { + "input": ":sparkles: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "component: hooks", + "output": [ + "code" + ] + }, + { + "input": "improved error handling", + "output": [ + "code" + ] + }, + { + "input": "needs repro", + "output": [ + "null" + ] + }, + { + "input": "upkeep", + "output": [ + "maintenance" + ] + }, + { + "input": "component: reactis", + "output": [ + "code" + ] + }, + { + "input": "pr: ready to be merged", + "output": [ + "null" + ] + }, + { + "input": "sample", + "output": [ + "example" + ] + }, + { + "input": ":white_check_mark: testing", + "output": [ + "test" + ] + }, + { + "input": "maintenance", + "output": [ + "maintenance" + ] + }, + { + "input": "external", + "output": [ + "plugin" + ] + }, + { + "input": "desktop", + "output": [ + "platform" + ] + }, + { + "input": "hacktoberfest", + "output": [ + "code" + ] + }, + { + "input": "data", + "output": [ + "data" + ] + }, + { + "input": "lang-dart", + "output": [ + "code" + ] + }, + { + "input": ".net framework", + "output": [ + "code" + ] + }, + { + "input": "icon", + "output": [ + "design" + ] + }, + { + "input": "grant finder", + "output": [ + "fundingFinding" + ] + }, + { + "input": "needs-research", + "output": [ + "null" + ] + }, + { + "input": "cybersec", + "output": [ + "security" + ] + }, + { + "input": "biz", + "output": [ + "business" + ] + }, + { + "input": "internationalization", + "output": [ + "translation" + ] + }, + { + "input": "utility-lib", + "output": [ + "plugin" + ] + }, + { + "input": "qa", + "output": [ + "test" + ] + }, + { + "input": "do not merge", + "output": [ + "null" + ] + }, + { + "input": "hacked", + "output": [ + "security" + ] + }, + { + "input": "how-to", + "output": [ + "tutorial" + ] + }, + { + "input": "beginner-friendly", + "output": [ + "null" + ] + }, + { + "input": "trello", + "output": [ + "projectManagement" + ] + }, + { + "input": "os", + "output": [ + "platform" + ] + }, + { + "input": "sound", + "output": [ + "audio" + ] + }, + { + "input": "docs improvement", + "output": [ + "doc" + ] + }, + { + "input": ":heavy_plus_sign: feature request", + "output": [ + "ideas" + ] + }, + { + "input": "glitch", + "output": [ + "bug" + ] + }, + { + "input": "cx", + "output": [ + "design" + ] + }, + { + "input": "dependencies", + "output": [ + "maintenance" + ] + }, + { + "input": "inquiry", + "output": [ + "question" + ] + }, + { + "input": "deno", + "output": [ + "platform" + ] + }, + { + "input": "area: crash", + "output": [ + "bug" + ] + }, + { + "input": "camera", + "output": [ + "video" + ] + }, + { + "input": "pr: wip", + "output": [ + "null" + ] + }, + { + "input": "devops: configure", + "output": [ + "infra" + ] + }, + { + "input": "component: dom", + "output": [ + "code" + ] + }, + { + "input": "programming", + "output": [ + "code" + ] + }, + { + "input": "test needed", + "output": [ + "null" + ] + }, + { + "input": "question :question:", + "output": [ + "question" + ] + }, + { + "input": "@font-face", + "output": [ + "design" + ] + }, + { + "input": "rgba", + "output": [ + "design" + ] + }, + { + "input": "parser-specific", + "output": [ + "tool" + ] + }, + { + "input": "pr: new feature", + "output": [ + "ideas" + ] + }, + { + "input": "wikipedia", + "output": [ + "doc" + ] + }, + { + "input": "shell", + "output": [ + "tool" + ] + }, + { + "input": "cmty:feature-request", + "output": [ + "ideas" + ] + }, + { + "input": "contributions", + "output": [ + "maintenance" + ] + }, + { + "input": "tryout", + "output": [ + "test" + ] + }, + { + "input": "needs review", + "output": [ + "null" + ] + }, + { + "input": "thought", + "output": [ + "ideas" + ] + }, + { + "input": "kind/bug", + "output": [ + "bug" + ] + }, + { + "input": "data analysis", + "output": [ + "data" + ] + }, + { + "input": "contenu", + "output": [ + "content" + ] + }, + { + "input": "feat/cli", + "output": [ + "code" + ] + }, + { + "input": "fund investigation", + "output": [ + "fundingFinding" + ] + }, + { + "input": "type: question", + "output": [ + "question" + ] + }, + { + "input": "type: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "basecamp", + "output": [ + "projectManagement" + ] + }, + { + "input": "literature review", + "output": [ + "research" + ] + }, + { + "input": "needs docs", + "output": [ + "null" + ] + }, + { + "input": "socket.io client", + "output": [ + "tool" + ] + }, + { + "input": "fiscal", + "output": [ + "financial" + ] + }, + { + "input": "user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "debug information", + "output": [ + "bug" + ] + }, + { + "input": "frontend", + "output": [ + "code" + ] + }, + { + "input": "area/cli", + "output": [ + "infra" + ] + }, + { + "input": "upstream", + "output": [ + "null" + ] + }, + { + "input": "question :raising_hand:", + "output": [ + "question" + ] + }, + { + "input": "style", + "output": [ + "design" + ] + }, + { + "input": "clean up", + "output": [ + "maintenance" + ] + }, + { + "input": "motif", + "output": [ + "design" + ] + }, + { + "input": "to merge", + "output": [ + "null" + ] + }, + { + "input": "event", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "status: help wanted", + "output": [ + "null" + ] + }, + { + "input": "priority: medium", + "output": [ + "null" + ] + }, + { + "input": "financial backing", + "output": [ + "fundingFinding" + ] + }, + { + "input": "ruby", + "output": [ + "code" + ] + }, + { + "input": "es7", + "output": [ + "code" + ] + }, + { + "input": "warrant", + "output": [ + "security" + ] + }, + { + "input": "cmty:status:cancelled", + "output": [ + "null" + ] + }, + { + "input": "plan", + "output": [ + "ideas" + ] + }, + { + "input": "hackathon", + "output": [ + "code" + ] + }, + { + "input": ":beginner: documentation", + "output": [ + "doc" + ] + }, + { + "input": "typography", + "output": [ + "design" + ] + }, + { + "input": "counsel", + "output": [ + "mentoring" + ] + }, + { + "input": "recording", + "output": [ + "audio" + ] + }, + { + "input": "crowdin", + "output": [ + "translation" + ] + }, + { + "input": "component: eslint rules", + "output": [ + "maintenance" + ] + }, + { + "input": "difficulty: easy", + "output": [ + "null" + ] + }, + { + "input": "repare", + "output": [ + "maintenance" + ] + }, + { + "input": "conference", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "great insight", + "output": [ + "ideas" + ] + }, + { + "input": "phd", + "output": [ + "research" + ] + }, + { + "input": "documentation :orange_book:", + "output": [ + "doc" + ] + }, + { + "input": "type: invalid :x:", + "output": [ + "null" + ] + }, + { + "input": "needs changelog", + "output": [ + "null" + ] + }, + { + "input": "feat: e2e-cypress", + "output": [ + "test" + ] + }, + { + "input": ":lipstick: ui", + "output": [ + "design" + ] + }, + { + "input": "1 - ready", + "output": [ + "null" + ] + }, + { + "input": "backdoor", + "output": [ + "security" + ] + }, + { + "input": "fund collection", + "output": [ + "fundingFinding" + ] + }, + { + "input": "approved", + "output": [ + "null" + ] + }, + { + "input": "talk", + "output": [ + "talk" + ] + }, + { + "input": "subtitle", + "output": [ + "translation" + ] + }, + { + "input": "funding research", + "output": [ + "fundingFinding" + ] + }, + { + "input": "todo :spiral_notepad:", + "output": [ + "maintenance" + ] + }, + { + "input": "review", + "output": [ + "review" + ] + }, + { + "input": "user interface", + "output": [ + "design" + ] + }, + { + "input": "critical", + "output": [ + "null" + ] + }, + { + "input": "business (category)", + "output": [ + "business" + ] + }, + { + "input": "privacy", + "output": [ + "security" + ] + }, + { + "input": "tests", + "output": [ + "test" + ] + }, + { + "input": "duplicate", + "output": [ + "null" + ] + }, + { + "input": "pr: breaking change :boom:", + "output": [ + "code" + ] + }, + { + "input": "web app", + "output": [ + "code" + ] + }, + { + "input": "test", + "output": [ + "test" + ] + }, + { + "input": "check", + "output": [ + "review" + ] + }, + { + "input": "documentation", + "output": [ + "doc" + ] + }, + { + "input": "television", + "output": [ + "video" + ] + }, + { + "input": "uat", + "output": [ + "test" + ] + }, + { + "input": "backer", + "output": [ + "financial" + ] + }, + { + "input": "exploit", + "output": [ + "security" + ] + }, + { + "input": "requires upstream change", + "output": [ + "code" + ] + }, + { + "input": "travis-yml", + "output": [ + "infra" + ] + }, + { + "input": "node", + "output": [ + "platform" + ] + }, + { + "input": "dev experience", + "output": [ + "design" + ] + }, + { + "input": "pr: bug fix", + "output": [ + "bug" + ] + }, + { + "input": "backend", + "output": [ + "code" + ] + }, + { + "input": "data cleaning", + "output": [ + "data" + ] + }, + { + "input": "pr: internal :house:", + "output": [ + "code" + ] + }, + { + "input": ":question: question", + "output": [ + "question" + ] + }, + { + "input": "technical debt", + "output": [ + "maintenance" + ] + }, + { + "input": "core", + "output": [ + "maintenance" + ] + }, + { + "input": "client test", + "output": [ + "userTesting" + ] + }, + { + "input": "weekly-digest", + "output": [ + "blog" + ] + }, + { + "input": "component: shallow renderer", + "output": [ + "code" + ] + }, + { + "input": "commerce", + "output": [ + "business" + ] + }, + { + "input": "browser: ie", + "output": [ + "platform" + ] + }, + { + "input": "hsl", + "output": [ + "design" + ] + }, + { + "input": "status: left out", + "output": [ + "null" + ] + }, + { + "input": ".net standard", + "output": [ + "code" + ] + }, + { + "input": "pr welcome", + "output": [ + "null" + ] + }, + { + "input": "opinions needed", + "output": [ + "ideas" + ] + }, + { + "input": "documents", + "output": [ + "doc" + ] + }, + { + "input": "legacy", + "output": [ + "maintenance" + ] + }, + { + "input": "grafana", + "output": [ + "infra" + ] + }, + { + "input": "react native", + "output": [ + "code" + ] + }, + { + "input": "lang-go", + "output": [ + "code" + ] + }, + { + "input": "tutorial", + "output": [ + "tutorial" + ] + }, + { + "input": "plugin", + "output": [ + "plugin" + ] + }, + { + "input": "logo", + "output": [ + "design" + ] + }, + { + "input": ":grey_question: question", + "output": [ + "question" + ] + }, + { + "input": "refactoring", + "output": [ + "code" + ] + }, + { + "input": "browser: safari", + "output": [ + "platform" + ] + }, + { + "input": "saltstack", + "output": [ + "infra" + ] + }, + { + "input": "status: available", + "output": [ + "null" + ] + }, + { + "input": "component: server rendering", + "output": [ + "code" + ] + }, + { + "input": "htmlfile", + "output": [ + "code" + ] + }, + { + "input": "theorem", + "output": [ + "ideas" + ] + }, + { + "input": "social", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "internationalisation", + "output": [ + "translation" + ] + }, + { + "input": "definition:enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "enquire", + "output": [ + "question" + ] + }, + { + "input": "packaging", + "output": [ + "platform" + ] + }, + { + "input": "lang-r", + "output": [ + "code" + ] + }, + { + "input": "type: regression :boom:", + "output": [ + "bug" + ] + }, + { + "input": "regression test", + "output": [ + "test" + ] + }, + { + "input": "new api proposal", + "output": [ + "ideas" + ] + }, + { + "input": "container", + "output": [ + "infra" + ] + }, + { + "input": "opencollective", + "output": [ + "financial" + ] + }, + { + "input": "bug report", + "output": [ + "bug" + ] + }, + { + "input": "type: performance", + "output": [ + "maintenance" + ] + }, + { + "input": "new definition", + "output": [ + "code" + ] + }, + { + "input": "pr: documentation", + "output": [ + "doc" + ] + }, + { + "input": ":boom: regression", + "output": [ + "bug" + ] + }, + { + "input": "clickup", + "output": [ + "projectManagement" + ] + }, + { + "input": "docs", + "output": [ + "doc" + ] + }, + { + "input": "installer", + "output": [ + "tool" + ] + }, + { + "input": "statement", + "output": [ + "ideas" + ] + }, + { + "input": "gcp", + "output": [ + "infra" + ] + }, + { + "input": "bug", + "output": [ + "bug" + ] + }, + { + "input": "opinion", + "output": [ + "ideas" + ] + }, + { + "input": "accepted", + "output": [ + "null" + ] + }, + { + "input": "html", + "output": [ + "code" + ] + }, + { + "input": "a11y", + "output": [ + "a11y" + ] + }, + { + "input": "general js", + "output": [ + "code" + ] + }, + { + "input": "unit test", + "output": [ + "test" + ] + }, + { + "input": "speak", + "output": [ + "talk" + ] + }, + { + "input": "brainstorming", + "output": [ + "ideas" + ] + }, + { + "input": "backup", + "output": [ + "maintenance" + ] + }, + { + "input": "status: accepted", + "output": [ + "null" + ] + }, + { + "input": "language", + "output": [ + "translation" + ] + }, + { + "input": "bugfix", + "output": [ + "bug" + ] + }, + { + "input": "question", + "output": [ + "question" + ] + }, + { + "input": "k8s", + "output": [ + "infra" + ] + }, + { + "input": "scrum", + "output": [ + "projectManagement" + ] + }, + { + "input": "paper", + "output": [ + "content" + ] + }, + { + "input": "upstream bug", + "output": [ + "bug" + ] + }, + { + "input": "library", + "output": [ + "tool" + ] + }, + { + "input": "stale", + "output": [ + "null" + ] + }, + { + "input": "testing", + "output": [ + "test" + ] + }, + { + "input": "optimization", + "output": [ + "code" + ] + }, + { + "input": "tv show", + "output": [ + "video" + ] + }, + { + "input": ":apple: ios", + "output": [ + "platform" + ] + }, + { + "input": "priority: low", + "output": [ + "null" + ] + }, + { + "input": "spec: async functions", + "output": [ + "doc" + ] + }, + { + "input": "target:gnu/linux", + "output": [ + "platform" + ] + }, + { + "input": "focus groups", + "output": [ + "userTesting" + ] + }, + { + "input": "dependency-update", + "output": [ + "maintenance" + ] + }, + { + "input": "dependency related", + "output": [ + "maintenance" + ] + }, + { + "input": "wip", + "output": [ + "null" + ] + }, + { + "input": "bootstrap", + "output": [ + "tool" + ] + }, + { + "input": "developer experience", + "output": [ + "design" + ] + }, + { + "input": "breaking change", + "output": [ + "code" + ] + }, + { + "input": "usability", + "output": [ + "a11y" + ] + }, + { + "input": "*nix", + "output": [ + "platform" + ] + }, + { + "input": "externs", + "output": [ + "plugin" + ] + }, + { + "input": "critique", + "output": [ + "review" + ] + }, + { + "input": "prince2", + "output": [ + "projectManagement" + ] + }, + { + "input": "demonstration", + "output": [ + "example" + ] + }, + { + "input": "pr: dependency ⬆️", + "output": [ + "maintenance" + ] + }, + { + "input": "pr: docs :memo:", + "output": [ + "doc" + ] + }, + { + "input": "windows", + "output": [ + "platform" + ] + }, + { + "input": "revisitinfuture", + "output": [ + "ideas" + ] + }, + { + "input": "tips", + "output": [ + "ideas" + ] + }, + { + "input": "reference", + "output": [ + "example" + ] + }, + { + "input": "priority: high", + "output": [ + "null" + ] + }, + { + "input": "cmty:bug-report", + "output": [ + "bug" + ] + }, + { + "input": "feat: babel", + "output": [ + "tool" + ] + }, + { + "input": "flashsocket", + "output": [ + "tool" + ] + }, + { + "input": "target:unix", + "output": [ + "platform" + ] + }, + { + "input": "npm", + "output": [ + "infra" + ] + }, + { + "input": "site reliability", + "output": [ + "maintenance" + ] + }, + { + "input": "enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "chore", + "output": [ + "maintenance" + ] + }, + { + "input": "adapter", + "output": [ + "plugin" + ] + }, + { + "input": "slides", + "output": [ + "talk" + ] + }, + { + "input": "query", + "output": [ + "question" + ] + }, + { + "input": "feature", + "output": [ + "ideas" + ] + }, + { + "input": "chat (category)", + "output": [ + "ideas" + ] + }, + { + "input": "major", + "output": [ + "null" + ] + }, + { + "input": "release: alpha", + "output": [ + "null" + ] + }, + { + "input": ":lock: security", + "output": [ + "security" + ] + }, + { + "input": "newsletter", + "output": [ + "content" + ] + }, + { + "input": "verification", + "output": [ + "test" + ] + }, + { + "input": "color", + "output": [ + "design" + ] + }, + { + "input": "containerd", + "output": [ + "infra" + ] + }, + { + "input": ":doughnut: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "sentry", + "output": [ + "infra" + ] + }, + { + "input": "dissertation", + "output": [ + "research" + ] + }, + { + "input": "mentoring", + "output": [ + "mentoring" + ] + }, + { + "input": "confer", + "output": [ + "talk" + ] + }, + { + "input": "component: core utilities", + "output": [ + "maintenance" + ] + }, + { + "input": "infosec", + "output": [ + "security" + ] + }, + { + "input": "vulnerability", + "output": [ + "security" + ] + }, + { + "input": "has pr", + "output": [ + "null" + ] + }, + { + "input": "status: code review request", + "output": [ + "null" + ] + }, + { + "input": "teaching", + "output": [ + "tutorial" + ] + }, + { + "input": "target:ios", + "output": [ + "platform" + ] + }, + { + "input": "protection", + "output": [ + "security" + ] + }, + { + "input": ":robot: android", + "output": [ + "platform" + ] + }, + { + "input": "type: documentation :book:", + "output": [ + "doc" + ] + }, + { + "input": "webaim", + "output": [ + "a11y" + ] + }, + { + "input": "wontfix", + "output": [ + "null" + ] + }, + { + "input": "needs triage", + "output": [ + "null" + ] + }, + { + "input": "contribution welcome", + "output": [ + "null" + ] + }, + { + "input": "target:macos", + "output": [ + "platform" + ] + }, + { + "input": "assertion", + "output": [ + "test" + ] + }, + { + "input": "blog", + "output": [ + "blog" + ] + }, + { + "input": "review in progress", + "output": [ + "null" + ] + }, + { + "input": "node next", + "output": [ + "platform" + ] + }, + { + "input": "future architecture enhancements", + "output": [ + "ideas" + ] + }, + { + "input": "pmi", + "output": [ + "projectManagement" + ] + }, + { + "input": "promotion", + "output": [ + "promotion" + ] + }, + { + "input": "validation", + "output": [ + "review" + ] + }, + { + "input": "art", + "output": [ + "design" + ] + }, + { + "input": "film", + "output": [ + "video" + ] + }, + { + "input": "bitbucket cloud", + "output": [ + "infra" + ] + }, + { + "input": "labour", + "output": [ + "maintenance" + ] + }, + { + "input": "python", + "output": [ + "code" + ] + }, + { + "input": "suggestion", + "output": [ + "ideas" + ] + }, + { + "input": "future crypto enhancements", + "output": [ + "ideas" + ] + }, + { + "input": "attitudinal user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "electron", + "output": [ + "tool" + ] + }, + { + "input": "trial", + "output": [ + "test" + ] + }, + { + "input": "definition:request", + "output": [ + "ideas" + ] + }, + { + "input": "pr: good example", + "output": [ + "example" + ] + }, + { + "input": "data protection", + "output": [ + "security" + ] + }, + { + "input": "resolution: support redirect", + "output": [ + "null" + ] + }, + { + "input": "cloud", + "output": [ + "infra" + ] + }, + { + "input": "target:android", + "output": [ + "platform" + ] + }, + { + "input": "assessment", + "output": [ + "test" + ] + }, + { + "input": "monitor", + "output": [ + "maintenance" + ] + }, + { + "input": "css", + "output": [ + "code" + ] + }, + { + "input": "hack", + "output": [ + "code" + ] + }, + { + "input": "translation", + "output": [ + "translation" + ] + }, + { + "input": "research opportunity", + "output": [ + "research" + ] + }, + { + "input": "vultr", + "output": [ + "infra" + ] + }, + { + "input": "kubernetes", + "output": [ + "infra" + ] + }, + { + "input": "discussion", + "output": [ + "ideas" + ] + }, + { + "input": "needs a example app.", + "output": [ + "null" + ] + }, + { + "input": "wiki", + "output": [ + "doc" + ] + }, + { + "input": "parser", + "output": [ + "tool" + ] + }, + { + "input": "feat: pwa", + "output": [ + "code" + ] + }, + { + "input": ":iphone: mobile", + "output": [ + "platform" + ] + }, + { + "input": "program", + "output": [ + "platform" + ] + }, + { + "input": "backer finding", + "output": [ + "fundingFinding" + ] + }, + { + "input": "digital ocean", + "output": [ + "infra" + ] + }, + { + "input": "safeguard", + "output": [ + "security" + ] + }, + { + "input": "iac", + "output": [ + "infra" + ] + }, + { + "input": "javascript", + "output": [ + "code" + ] + }, + { + "input": "integration test", + "output": [ + "test" + ] + }, + { + "input": "glo", + "output": [ + "projectManagement" + ] + }, + { + "input": "porting", + "output": [ + "platform" + ] + }, + { + "input": "status: on hold", + "output": [ + "null" + ] + }, + { + "input": "status: hacktoberfest approved", + "output": [ + "null" + ] + }, + { + "input": "evaluation", + "output": [ + "test" + ] + }, + { + "input": "go client internal release", + "output": [ + "infra" + ] + }, + { + "input": "type: test", + "output": [ + "test" + ] + }, + { + "input": "must-triage", + "output": [ + "null" + ] + }, + { + "input": "gradle", + "output": [ + "infra" + ] + }, + { + "input": "accessibility", + "output": [ + "a11y" + ] + }, + { + "input": "status: work in progress", + "output": [ + "null" + ] + }, + { + "input": "other language integration feature", + "output": [ + "ideas" + ] + }, + { + "input": "difficulty: medium", + "output": [ + "null" + ] + }, + { + "input": "data wrangling", + "output": [ + "data" + ] + }, + { + "input": "sast", + "output": [ + "security" + ] + }, + { + "input": "tech-debt", + "output": [ + "maintenance" + ] + }, + { + "input": "data entry", + "output": [ + "data" + ] + }, + { + "input": "fault", + "output": [ + "bug" + ] + }, + { + "input": "problem", + "output": [ + "bug" + ] + }, + { + "input": "brand icon", + "output": [ + "design" + ] + }, + { + "input": "internal-issue-created", + "output": [ + "bug" + ] + }, + { + "input": "pmp", + "output": [ + "projectManagement" + ] + }, + { + "input": "bdd", + "output": [ + "test" + ] + }, + { + "input": "checkpoint", + "output": [ + "review" + ] + }, + { + "input": "csharp", + "output": [ + "code" + ] + }, + { + "input": "pr: unreviewed", + "output": [ + "null" + ] + }, + { + "input": "component: test renderer", + "output": [ + "test" + ] + }, + { + "input": "idea", + "output": [ + "ideas" + ] + }, + { + "input": "needs browser testing", + "output": [ + "null" + ] + }, + { + "input": "status: in progress", + "output": [ + "null" + ] + }, + { + "input": "feedback requested", + "output": [ + "null" + ] + }, + { + "input": "wcag", + "output": [ + "a11y" + ] + }, + { + "input": "bugs", + "output": [ + "bug" + ] + }, + { + "input": "mentor", + "output": [ + "mentoring" + ] + }, + { + "input": "economics", + "output": [ + "financial" + ] + }, + { + "input": "lib", + "output": [ + "plugin" + ] + }, + { + "input": "puppet", + "output": [ + "infra" + ] + }, + { + "input": ":speech_balloon: question", + "output": [ + "question" + ] + }, + { + "input": "c/c++", + "output": [ + "code" + ] + }, + { + "input": "type: enhancement :bulb:", + "output": [ + "ideas" + ] + }, + { + "input": "pr: internal", + "output": [ + "code" + ] + }, + { + "input": "business", + "output": [ + "business" + ] + }, + { + "input": "prometheus", + "output": [ + "infra" + ] + }, + { + "input": "triage", + "output": [ + "null" + ] + }, + { + "input": "pr: new feature :rocket:", + "output": [ + "ideas" + ] + }, + { + "input": "type: discuss :speech_balloon:", + "output": [ + "ideas" + ] + }, + { + "input": "doc", + "output": [ + "doc" + ] + }, + { + "input": "ie8", + "output": [ + "platform" + ] + }, + { + "input": "blogs", + "output": [ + "blog" + ] + }, + { + "input": "feat: unit-mocha", + "output": [ + "test" + ] + }, + { + "input": "enterprise", + "output": [ + "business" + ] + }, + { + "input": "component: scheduler", + "output": [ + "null" + ] + }, + { + "input": "regression", + "output": [ + "bug" + ] + }, + { + "input": "spec: class fields", + "output": [ + "doc" + ] + }, + { + "input": "commercial", + "output": [ + "business" + ] + }, + { + "input": "infra", + "output": [ + "infra" + ] + }, + { + "input": "terraform", + "output": [ + "infra" + ] + }, + { + "input": "go", + "output": [ + "code" + ] + }, + { + "input": "figure", + "output": [ + "design" + ] + }, + { + "input": "layout", + "output": [ + "design" + ] + }, + { + "input": "specification", + "output": [ + "doc" + ] + }, + { + "input": "vector image", + "output": [ + "design" + ] + }, + { + "input": "greenkeeper", + "output": [ + "infra" + ] + }, + { + "input": "tdd", + "output": [ + "test" + ] + }, + { + "input": "performance", + "output": [ + "maintenance" + ] + }, + { + "input": "raster image", + "output": [ + "design" + ] + }, + { + "input": "mishap", + "output": [ + "bug" + ] + }, + { + "input": "sketch", + "output": [ + "design" + ] + }, + { + "input": "released", + "output": [ + "null" + ] + }, + { + "input": "linux", + "output": [ + "platform" + ] + }, + { + "input": "font design", + "output": [ + "design" + ] + }, + { + "input": ":rocket: deployment", + "output": [ + "infra" + ] + }, + { + "input": "feat: e2e-nightwatch", + "output": [ + "test" + ] + }, + { + "input": "type: infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "engine vulns", + "output": [ + "security" + ] + }, + { + "input": "syntax feature request", + "output": [ + "ideas" + ] + }, + { + "input": "type: security", + "output": [ + "security" + ] + }, + { + "input": "deliverable", + "output": [ + "projectManagement" + ] + }, + { + "input": "manual", + "output": [ + "doc" + ] + }, + { + "input": "target:osx", + "output": [ + "platform" + ] + }, + { + "input": "axe", + "output": [ + "a11y" + ] + }, + { + "input": ":bug: bug", + "output": [ + "bug" + ] + }, + { + "input": "type: sendgrid enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "operating system", + "output": [ + "platform" + ] + }, + { + "input": "advance developer workflow", + "output": [ + "infra" + ] + }, + { + "input": "safety", + "output": [ + "security" + ] + }, + { + "input": "phonetic", + "output": [ + "audio" + ] + }, + { + "input": "to do", + "output": [ + "maintenance" + ] + }, + { + "input": "concept", + "output": [ + "ideas" + ] + }, + { + "input": "lerna", + "output": [ + "infra" + ] + }, + { + "input": "readme", + "output": [ + "doc" + ] + }, + { + "input": "security", + "output": [ + "security" + ] + }, + { + "input": "music", + "output": [ + "audio" + ] + }, + { + "input": "needs a failing test", + "output": [ + "null" + ] + }, + { + "input": "customer experience", + "output": [ + "design" + ] + }, + { + "input": "extension", + "output": [ + "plugin" + ] + }, + { + "input": "todo", + "output": [ + "maintenance" + ] + }, + { + "input": "lint", + "output": [ + "maintenance" + ] + }, + { + "input": "target:browser", + "output": [ + "platform" + ] + }, + { + "input": "feature request", + "output": [ + "ideas" + ] + }, + { + "input": "component: optimizing compiler", + "output": [ + "code" + ] + }, + { + "input": "css-select", + "output": [ + "code" + ] + }, + { + "input": "figma", + "output": [ + "tool" + ] + }, + { + "input": "finance", + "output": [ + "financial" + ] + }, + { + "input": "closed due to inactivity", + "output": [ + "null" + ] + }, + { + "input": ":rocket: feature request", + "output": [ + "ideas" + ] + }, + { + "input": "jira", + "output": [ + "projectManagement" + ] + }, + { + "input": "survey", + "output": [ + "review" + ] + }, + { + "input": "behavioral user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "multi module", + "output": [ + "maintenance" + ] + }, + { + "input": "discussion :speech_balloon:", + "output": [ + "ideas" + ] + }, + { + "input": "mixing", + "output": [ + "audio" + ] + }, + { + "input": "0 - backlog", + "output": [ + "null" + ] + }, + { + "input": "update", + "output": [ + "maintenance" + ] + }, + { + "input": "present", + "output": [ + "talk" + ] + }, + { + "input": "modules", + "output": [ + "code" + ] + }, + { + "input": "lang-julia", + "output": [ + "code" + ] + }, + { + "input": "usability testing", + "output": [ + "userTesting" + ] + }, + { + "input": "vuln", + "output": [ + "security" + ] + }, + { + "input": "demo", + "output": [ + "example" + ] + }, + { + "input": "corporate event", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "type: refactor", + "output": [ + "code" + ] + }, + { + "input": "spam", + "output": [ + "null" + ] + }, + { + "input": "definition:bug", + "output": [ + "bug" + ] + }, + { + "input": "help wanted", + "output": [ + "null" + ] + }, + { + "input": "type: idea", + "output": [ + "ideas" + ] + }, + { + "input": ":bulb: proposal", + "output": [ + "ideas" + ] + }, + { + "input": "handshakes", + "output": [ + "business" + ] + }, + { + "input": "platform", + "output": [ + "platform" + ] + }, + { + "input": "cli", + "output": [ + "code" + ] + }, + { + "input": "wave", + "output": [ + "a11y" + ] + }, + { + "input": "ansible", + "output": [ + "infra" + ] + }, + { + "input": "lang-convert", + "output": [ + "translation" + ] + }, + { + "input": "feat: eslint", + "output": [ + "maintenance" + ] + }, + { + "input": "gdpr", + "output": [ + "security" + ] + }, + { + "input": "type: doc update", + "output": [ + "doc" + ] + }, + { + "input": "spec: classes", + "output": [ + "doc" + ] + }, + { + "input": "websocket", + "output": [ + "tool" + ] + }, + { + "input": "android", + "output": [ + "platform" + ] + }, + { + "input": "speach", + "output": [ + "talk" + ] + }, + { + "input": "pr: bug fix :bug:", + "output": [ + "bug" + ] + }, + { + "input": "a/b testing", + "output": [ + "userTesting" + ] + }, + { + "input": "chef", + "output": [ + "infra" + ] + }, + { + "input": "patreon", + "output": [ + "financial" + ] + }, + { + "input": "pr: reviewed-changes-requested", + "output": [ + "null" + ] + }, + { + "input": "on hold", + "output": [ + "null" + ] + }, + { + "input": "ui test", + "output": [ + "test" + ] + }, + { + "input": "analysis", + "output": [ + "review" + ] + }, + { + "input": "pr: needs review", + "output": [ + "null" + ] + }, + { + "input": "component: build infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "youtube", + "output": [ + "video" + ] + }, + { + "input": "spec: decorators (legacy)", + "output": [ + "doc" + ] + }, + { + "input": "deployment", + "output": [ + "infra" + ] + }, + { + "input": "mentorship", + "output": [ + "mentoring" + ] + }, + { + "input": "feat: typescript", + "output": [ + "code" + ] + }, + { + "input": "feat: cli", + "output": [ + "code" + ] + }, + { + "input": "utils", + "output": [ + "plugin" + ] + }, + { + "input": "didactic", + "output": [ + "tutorial" + ] + }, + { + "input": "story", + "output": [ + "content" + ] + }, + { + "input": "academia", + "output": [ + "research" + ] + }, + { + "input": "component: developer tools", + "output": [ + "tool" + ] + }, + { + "input": "inspiration", + "output": [ + "ideas" + ] + }, + { + "input": "business process", + "output": [ + "business" + ] + }, + { + "input": "sustain", + "output": [ + "maintenance" + ] + }, + { + "input": "confirmed", + "output": [ + "null" + ] + }, + { + "input": "type: question :grey_question:", + "output": [ + "question" + ] + }, + { + "input": "cmty:question", + "output": [ + "question" + ] + }, + { + "input": "need-info", + "output": [ + "null" + ] + }, + { + "input": "sustenance", + "output": [ + "maintenance" + ] + }, + { + "input": "good first issue", + "output": [ + "null" + ] + }, + { + "input": "kind/discussion", + "output": [ + "ideas" + ] + }, + { + "input": "palette", + "output": [ + "design" + ] + }, + { + "input": "azure ad", + "output": [ + "infra" + ] + }, + { + "input": "data collection", + "output": [ + "data" + ] + }, + { + "input": "external-bugs", + "output": [ + "bug" + ] + }, + { + "input": "deal", + "output": [ + "business" + ] + }, + { + "input": "hacking", + "output": [ + "security" + ] + }, + { + "input": "kind/question", + "output": [ + "question" + ] + }, + { + "input": "video", + "output": [ + "video" + ] + }, + { + "input": "component: test utils", + "output": [ + "test" + ] + }, + { + "input": "hsv", + "output": [ + "design" + ] + }, + { + "input": "thesis", + "output": [ + "content" + ] + }, + { + "input": "pentesting", + "output": [ + "security" + ] + }, + { + "input": "design", + "output": [ + "design" + ] + }, + { + "input": "website copy", + "output": [ + "content" + ] + }, + { + "input": "type: bug :bug:", + "output": [ + "bug" + ] + }, + { + "input": "guide", + "output": [ + "tutorial" + ] + }, + { + "input": "next meetup!", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "feat: ui", + "output": [ + "design" + ] + }, + { + "input": "mastering", + "output": [ + "audio" + ] + }, + { + "input": "steps", + "output": [ + "doc" + ] + }, + { + "input": "abandoned", + "output": [ + "null" + ] + }, + { + "input": "badges", + "output": [ + "doc" + ] + }, + { + "input": "sponsor", + "output": [ + "mentoring" + ] + }, + { + "input": "assess", + "output": [ + "test" + ] + }, + { + "input": "pr: merged", + "output": [ + "null" + ] + }, + { + "input": "vlog", + "output": [ + "video" + ] + }, + { + "input": "acceptance testing", + "output": [ + "test" + ] + }, + { + "input": "hot discussion", + "output": [ + "ideas" + ] + }, + { + "input": "tv", + "output": [ + "video" + ] + }, + { + "input": "soundtrack", + "output": [ + "audio" + ] + }, + { + "input": "design (category)", + "output": [ + "design" + ] + }, + { + "input": "ci/cd", + "output": [ + "infra" + ] + }, + { + "input": "multi-cloud", + "output": [ + "infra" + ] + }, + { + "input": "funding finder", + "output": [ + "fundingFinding" + ] + }, + { + "input": "difficulty: hard", + "output": [ + "null" + ] + }, + { + "input": "documentation :book:", + "output": [ + "doc" + ] + }, + { + "input": "diary", + "output": [ + "blog" + ] + }, + { + "input": "standard", + "output": [ + "doc" + ] + }, + { + "input": "colour", + "output": [ + "design" + ] + }, + { + "input": ":computer: desktop", + "output": [ + "platform" + ] + }, + { + "input": "flaw", + "output": [ + "bug" + ] + }, + { + "input": "reliability", + "output": [ + "maintenance" + ] + }, + { + "input": "feat: cli-service build", + "output": [ + "code" + ] + }, + { + "input": "blocked", + "output": [ + "null" + ] + }, + { + "input": "type: maintenance :construction:", + "output": [ + "maintenance" + ] + }, + { + "input": "ios", + "output": [ + "platform" + ] + }, + { + "input": "planned feature", + "output": [ + "ideas" + ] + }, + { + "input": "kind/feature-request", + "output": [ + "ideas" + ] + }, + { + "input": "rfc", + "output": [ + "ideas" + ] + }, + { + "input": "image", + "output": [ + "design" + ] + }, + { + "input": "stock", + "output": [ + "infra" + ] + }, + { + "input": "reminder", + "output": [ + "null" + ] + }, + { + "input": "status: review needed", + "output": [ + "null" + ] + }, + { + "input": "in review", + "output": [ + "null" + ] + }, + { + "input": "lang-crystal", + "output": [ + "code" + ] + }, + { + "input": "pr: breaking change", + "output": [ + "code" + ] + }, + { + "input": "phone", + "output": [ + "platform" + ] + }, + { + "input": "refactor", + "output": [ + "code" + ] + }, + { + "input": "monologue", + "output": [ + "talk" + ] + }, + { + "input": "pr: reviewed-approved", + "output": [ + "null" + ] + }, + { + "input": "new best practice", + "output": [ + "ideas" + ] + }, + { + "input": "lecture", + "output": [ + "tutorial" + ] + }, + { + "input": "backing", + "output": [ + "financial" + ] + }, + { + "input": "website", + "output": [ + "code" + ] + }, + { + "input": "browser issue", + "output": [ + "bug" + ] + }, + { + "input": "aws", + "output": [ + "infra" + ] + }, + { + "input": "pr: polish :nail_care:", + "output": [ + "maintenance" + ] + }, + { + "input": "article", + "output": [ + "content" + ] + }, + { + "input": "peer-review", + "output": [ + "review" + ] + }, + { + "input": "writer-needed", + "output": [ + "null" + ] + }, + { + "input": "eventstorming", + "output": [ + "ideas" + ] + }, + { + "input": "freemasonry icons", + "output": [ + "design" + ] + }, + { + "input": "lean", + "output": [ + "projectManagement" + ] + }, + { + "input": "cannot reproduce", + "output": [ + "null" + ] + }, + { + "input": "paas", + "output": [ + "platform" + ] + }, + { + "input": ".net core", + "output": [ + "code" + ] + }, + { + "input": "wiretap", + "output": [ + "security" + ] + }, + { + "input": "feat: unit-jest", + "output": [ + "test" + ] + }, + { + "input": "instruction", + "output": [ + "doc" + ] + }, + { + "input": "infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "rgb", + "output": [ + "design" + ] + }, + { + "input": "ideas", + "output": [ + "ideas" + ] + }, + { + "input": "target:windows", + "output": [ + "platform" + ] + }, + { + "input": "funding call", + "output": [ + "fundingFinding" + ] + }, + { + "input": "iconography", + "output": [ + "design" + ] + }, + { + "input": "promote", + "output": [ + "promotion" + ] + }, + { + "input": "template", + "output": [ + "example" + ] + }, + { + "input": "support", + "output": [ + "null" + ] + }, + { + "input": "first-timers-only", + "output": [ + "null" + ] + }, + { + "input": "java", + "output": [ + "code" + ] + }, + { + "input": "cdn", + "output": [ + "platform" + ] + }, + { + "input": "pr: new dependency", + "output": [ + "ideas" + ] + }, + { + "input": "status: ready for deploy", + "output": [ + "null" + ] + }, + { + "input": "computer", + "output": [ + "platform" + ] + }, + { + "input": "troubleshooting", + "output": [ + "bug" + ] + }, + { + "input": "spec: bigint", + "output": [ + "doc" + ] + }, + { + "input": "spec: async generators", + "output": [ + "doc" + ] + }, + { + "input": "feature proposal", + "output": [ + "ideas" + ] + }, + { + "input": "e2e test", + "output": [ + "test" + ] + }, + { + "input": "approachability", + "output": [ + "a11y" + ] + }, + { + "input": "investment", + "output": [ + "financial" + ] + }, + { + "input": "conflicts", + "output": [ + "null" + ] + }, + { + "input": "optimisation", + "output": [ + "code" + ] + }, + { + "input": "kotlin", + "output": [ + "code" + ] + }, + { + "input": "planned for next release", + "output": [ + "null" + ] + }, + { + "input": "unconfirmed", + "output": [ + "null" + ] + }, + { + "input": "type: duplicate :repeat:", + "output": [ + "null" + ] + }, + { + "input": "devops: defend", + "output": [ + "infra" + ] + }, + { + "input": "blogging", + "output": [ + "blog" + ] + }, + { + "input": "friendliness", + "output": [ + "a11y" + ] + }, + { + "input": "i18n", + "output": [ + "translation" + ] + }, + { + "input": "review", + "output": [ + "review" + ] + }, + { + "input": "user interface", + "output": [ + "design" + ] + }, + { + "input": "critical", + "output": [ + "null" + ] + }, + { + "input": "business (category)", + "output": [ + "business" + ] + }, + { + "input": "privacy", + "output": [ + "security" + ] + }, + { + "input": "tests", + "output": [ + "test" + ] + }, + { + "input": "duplicate", + "output": [ + "null" + ] + }, + { + "input": "pr: breaking change :boom:", + "output": [ + "code" + ] + }, + { + "input": "web app", + "output": [ + "code" + ] + }, + { + "input": "test", + "output": [ + "test" + ] + }, + { + "input": "check", + "output": [ + "review" + ] + }, + { + "input": "documentation", + "output": [ + "doc" + ] + }, + { + "input": "television", + "output": [ + "video" + ] + }, + { + "input": "uat", + "output": [ + "test" + ] + }, + { + "input": "backer", + "output": [ + "financial" + ] + }, + { + "input": "exploit", + "output": [ + "security" + ] + }, + { + "input": "requires upstream change", + "output": [ + "code" + ] + }, + { + "input": "travis-yml", + "output": [ + "infra" + ] + }, + { + "input": "node", + "output": [ + "platform" + ] + }, + { + "input": "dev experience", + "output": [ + "design" + ] + }, + { + "input": "pr: bug fix", + "output": [ + "bug" + ] + }, + { + "input": "backend", + "output": [ + "code" + ] + }, + { + "input": "data cleaning", + "output": [ + "data" + ] + }, + { + "input": "pr: internal :house:", + "output": [ + "code" + ] + }, + { + "input": ":question: question", + "output": [ + "question" + ] + }, + { + "input": "technical debt", + "output": [ + "maintenance" + ] + }, + { + "input": "core", + "output": [ + "maintenance" + ] + }, + { + "input": "client test", + "output": [ + "userTesting" + ] + }, + { + "input": "weekly-digest", + "output": [ + "blog" + ] + }, + { + "input": "component: shallow renderer", + "output": [ + "code" + ] + }, + { + "input": "commerce", + "output": [ + "business" + ] + }, + { + "input": "browser: ie", + "output": [ + "platform" + ] + }, + { + "input": "hsl", + "output": [ + "design" + ] + }, + { + "input": "status: left out", + "output": [ + "null" + ] + }, + { + "input": ".net standard", + "output": [ + "code" + ] + }, + { + "input": "pr welcome", + "output": [ + "null" + ] + }, + { + "input": "opinions needed", + "output": [ + "ideas" + ] + }, + { + "input": "documents", + "output": [ + "doc" + ] + }, + { + "input": "legacy", + "output": [ + "maintenance" + ] + }, + { + "input": "grafana", + "output": [ + "infra" + ] + }, + { + "input": "react native", + "output": [ + "code" + ] + }, + { + "input": "lang-go", + "output": [ + "code" + ] + }, + { + "input": "tutorial", + "output": [ + "tutorial" + ] + }, + { + "input": "plugin", + "output": [ + "plugin" + ] + }, + { + "input": "logo", + "output": [ + "design" + ] + }, + { + "input": ":grey_question: question", + "output": [ + "question" + ] + }, + { + "input": "refactoring", + "output": [ + "code" + ] + }, + { + "input": "browser: safari", + "output": [ + "platform" + ] + }, + { + "input": "saltstack", + "output": [ + "infra" + ] + }, + { + "input": "status: available", + "output": [ + "null" + ] + }, + { + "input": "component: server rendering", + "output": [ + "code" + ] + }, + { + "input": "htmlfile", + "output": [ + "code" + ] + }, + { + "input": "theorem", + "output": [ + "ideas" + ] + }, + { + "input": "social", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "internationalisation", + "output": [ + "translation" + ] + }, + { + "input": "definition:enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "enquire", + "output": [ + "question" + ] + }, + { + "input": "packaging", + "output": [ + "platform" + ] + }, + { + "input": "lang-r", + "output": [ + "code" + ] + }, + { + "input": "type: regression :boom:", + "output": [ + "bug" + ] + }, + { + "input": "regression test", + "output": [ + "test" + ] + }, + { + "input": "new api proposal", + "output": [ + "ideas" + ] + }, + { + "input": "container", + "output": [ + "infra" + ] + }, + { + "input": "opencollective", + "output": [ + "financial" + ] + }, + { + "input": "bug report", + "output": [ + "bug" + ] + }, + { + "input": "type: performance", + "output": [ + "maintenance" + ] + }, + { + "input": "new definition", + "output": [ + "code" + ] + }, + { + "input": "pr: documentation", + "output": [ + "doc" + ] + }, + { + "input": ":boom: regression", + "output": [ + "bug" + ] + }, + { + "input": "clickup", + "output": [ + "projectManagement" + ] + }, + { + "input": "docs", + "output": [ + "doc" + ] + }, + { + "input": "installer", + "output": [ + "tool" + ] + }, + { + "input": "statement", + "output": [ + "ideas" + ] + }, + { + "input": "gcp", + "output": [ + "infra" + ] + }, + { + "input": "bug", + "output": [ + "bug" + ] + }, + { + "input": "opinion", + "output": [ + "ideas" + ] + }, + { + "input": "accepted", + "output": [ + "null" + ] + }, + { + "input": "html", + "output": [ + "code" + ] + }, + { + "input": "a11y", + "output": [ + "a11y" + ] + }, + { + "input": "general js", + "output": [ + "code" + ] + }, + { + "input": "unit test", + "output": [ + "test" + ] + }, + { + "input": "speak", + "output": [ + "talk" + ] + }, + { + "input": "brainstorming", + "output": [ + "ideas" + ] + }, + { + "input": "backup", + "output": [ + "maintenance" + ] + }, + { + "input": "status: accepted", + "output": [ + "null" + ] + }, + { + "input": "language", + "output": [ + "translation" + ] + }, + { + "input": "bugfix", + "output": [ + "bug" + ] + }, + { + "input": "question", + "output": [ + "question" + ] + }, + { + "input": "k8s", + "output": [ + "infra" + ] + }, + { + "input": "scrum", + "output": [ + "projectManagement" + ] + }, + { + "input": "paper", + "output": [ + "content" + ] + }, + { + "input": "upstream bug", + "output": [ + "bug" + ] + }, + { + "input": "library", + "output": [ + "tool" + ] + }, + { + "input": "stale", + "output": [ + "null" + ] + }, + { + "input": "testing", + "output": [ + "test" + ] + }, + { + "input": "optimization", + "output": [ + "code" + ] + }, + { + "input": "tv show", + "output": [ + "video" + ] + }, + { + "input": ":apple: ios", + "output": [ + "platform" + ] + }, + { + "input": "priority: low", + "output": [ + "null" + ] + }, + { + "input": "spec: async functions", + "output": [ + "doc" + ] + }, + { + "input": "target:gnu/linux", + "output": [ + "platform" + ] + }, + { + "input": "focus groups", + "output": [ + "userTesting" + ] + }, + { + "input": "dependency-update", + "output": [ + "maintenance" + ] + }, + { + "input": "dependency related", + "output": [ + "maintenance" + ] + }, + { + "input": "wip", + "output": [ + "null" + ] + }, + { + "input": "bootstrap", + "output": [ + "tool" + ] + }, + { + "input": "developer experience", + "output": [ + "design" + ] + }, + { + "input": "breaking change", + "output": [ + "code" + ] + }, + { + "input": "usability", + "output": [ + "a11y" + ] + }, + { + "input": "*nix", + "output": [ + "platform" + ] + }, + { + "input": "externs", + "output": [ + "plugin" + ] + }, + { + "input": "critique", + "output": [ + "review" + ] + }, + { + "input": "prince2", + "output": [ + "projectManagement" + ] + }, + { + "input": "demonstration", + "output": [ + "example" + ] + }, + { + "input": "pr: dependency ⬆️", + "output": [ + "maintenance" + ] + }, + { + "input": "pr: docs :memo:", + "output": [ + "doc" + ] + }, + { + "input": "windows", + "output": [ + "platform" + ] + }, + { + "input": "revisitinfuture", + "output": [ + "ideas" + ] + }, + { + "input": "tips", + "output": [ + "ideas" + ] + }, + { + "input": "reference", + "output": [ + "example" + ] + }, + { + "input": "priority: high", + "output": [ + "null" + ] + }, + { + "input": "cmty:bug-report", + "output": [ + "bug" + ] + }, + { + "input": "feat: babel", + "output": [ + "tool" + ] + }, + { + "input": "flashsocket", + "output": [ + "tool" + ] + }, + { + "input": "target:unix", + "output": [ + "platform" + ] + }, + { + "input": "npm", + "output": [ + "infra" + ] + }, + { + "input": "site reliability", + "output": [ + "maintenance" + ] + }, + { + "input": "enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "chore", + "output": [ + "maintenance" + ] + }, + { + "input": "adapter", + "output": [ + "plugin" + ] + }, + { + "input": "slides", + "output": [ + "talk" + ] + }, + { + "input": "query", + "output": [ + "question" + ] + }, + { + "input": "feature", + "output": [ + "ideas" + ] + }, + { + "input": "chat (category)", + "output": [ + "ideas" + ] + }, + { + "input": "major", + "output": [ + "null" + ] + }, + { + "input": "release: alpha", + "output": [ + "null" + ] + }, + { + "input": ":lock: security", + "output": [ + "security" + ] + }, + { + "input": "newsletter", + "output": [ + "content" + ] + }, + { + "input": "verification", + "output": [ + "test" + ] + }, + { + "input": "color", + "output": [ + "design" + ] + }, + { + "input": "containerd", + "output": [ + "infra" + ] + }, + { + "input": ":doughnut: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "sentry", + "output": [ + "infra" + ] + }, + { + "input": "dissertation", + "output": [ + "research" + ] + }, + { + "input": "mentoring", + "output": [ + "mentoring" + ] + }, + { + "input": "confer", + "output": [ + "talk" + ] + }, + { + "input": "component: core utilities", + "output": [ + "maintenance" + ] + }, + { + "input": "infosec", + "output": [ + "security" + ] + }, + { + "input": "vulnerability", + "output": [ + "security" + ] + }, + { + "input": "has pr", + "output": [ + "null" + ] + }, + { + "input": "status: code review request", + "output": [ + "null" + ] + }, + { + "input": "teaching", + "output": [ + "tutorial" + ] + }, + { + "input": "target:ios", + "output": [ + "platform" + ] + }, + { + "input": "protection", + "output": [ + "security" + ] + }, + { + "input": ":robot: android", + "output": [ + "platform" + ] + }, + { + "input": "type: documentation :book:", + "output": [ + "doc" + ] + }, + { + "input": "webaim", + "output": [ + "a11y" + ] + }, + { + "input": "wontfix", + "output": [ + "null" + ] + }, + { + "input": "needs triage", + "output": [ + "null" + ] + }, + { + "input": "contribution welcome", + "output": [ + "null" + ] + }, + { + "input": "target:macos", + "output": [ + "platform" + ] + }, + { + "input": "assertion", + "output": [ + "test" + ] + }, + { + "input": "blog", + "output": [ + "blog" + ] + }, + { + "input": "review in progress", + "output": [ + "null" + ] + }, + { + "input": "node next", + "output": [ + "platform" + ] + }, + { + "input": "future architecture enhancements", + "output": [ + "ideas" + ] + }, + { + "input": "pmi", + "output": [ + "projectManagement" + ] + }, + { + "input": "promotion", + "output": [ + "promotion" + ] + }, + { + "input": "validation", + "output": [ + "review" + ] + }, + { + "input": "art", + "output": [ + "design" + ] + }, + { + "input": "film", + "output": [ + "video" + ] + }, + { + "input": "bitbucket cloud", + "output": [ + "infra" + ] + }, + { + "input": "labour", + "output": [ + "maintenance" + ] + }, + { + "input": "python", + "output": [ + "code" + ] + }, + { + "input": "suggestion", + "output": [ + "ideas" + ] + }, + { + "input": "future crypto enhancements", + "output": [ + "ideas" + ] + }, + { + "input": "attitudinal user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "electron", + "output": [ + "tool" + ] + }, + { + "input": "trial", + "output": [ + "test" + ] + }, + { + "input": "definition:request", + "output": [ + "ideas" + ] + }, + { + "input": "pr: good example", + "output": [ + "example" + ] + }, + { + "input": "data protection", + "output": [ + "security" + ] + }, + { + "input": "resolution: support redirect", + "output": [ + "null" + ] + }, + { + "input": "cloud", + "output": [ + "infra" + ] + }, + { + "input": "target:android", + "output": [ + "platform" + ] + }, + { + "input": "assessment", + "output": [ + "test" + ] + }, + { + "input": "monitor", + "output": [ + "maintenance" + ] + }, + { + "input": "css", + "output": [ + "code" + ] + }, + { + "input": "hack", + "output": [ + "code" + ] + }, + { + "input": "translation", + "output": [ + "translation" + ] + }, + { + "input": "research opportunity", + "output": [ + "research" + ] + }, + { + "input": "vultr", + "output": [ + "infra" + ] + }, + { + "input": "kubernetes", + "output": [ + "infra" + ] + }, + { + "input": "discussion", + "output": [ + "ideas" + ] + }, + { + "input": "needs a example app.", + "output": [ + "null" + ] + }, + { + "input": "wiki", + "output": [ + "doc" + ] + }, + { + "input": "parser", + "output": [ + "tool" + ] + }, + { + "input": "feat: pwa", + "output": [ + "code" + ] + }, + { + "input": ":iphone: mobile", + "output": [ + "platform" + ] + }, + { + "input": "program", + "output": [ + "platform" + ] + }, + { + "input": "backer finding", + "output": [ + "fundingFinding" + ] + }, + { + "input": "digital ocean", + "output": [ + "infra" + ] + }, + { + "input": "safeguard", + "output": [ + "security" + ] + }, + { + "input": "iac", + "output": [ + "infra" + ] + }, + { + "input": "javascript", + "output": [ + "code" + ] + }, + { + "input": "integration test", + "output": [ + "test" + ] + }, + { + "input": "glo", + "output": [ + "projectManagement" + ] + }, + { + "input": "porting", + "output": [ + "platform" + ] + }, + { + "input": "status: on hold", + "output": [ + "null" + ] + }, + { + "input": "status: hacktoberfest approved", + "output": [ + "null" + ] + }, + { + "input": "evaluation", + "output": [ + "test" + ] + }, + { + "input": "go client internal release", + "output": [ + "infra" + ] + }, + { + "input": "type: test", + "output": [ + "test" + ] + }, + { + "input": "must-triage", + "output": [ + "null" + ] + }, + { + "input": "gradle", + "output": [ + "infra" + ] + }, + { + "input": "accessibility", + "output": [ + "a11y" + ] + }, + { + "input": "status: work in progress", + "output": [ + "null" + ] + }, + { + "input": "other language integration feature", + "output": [ + "ideas" + ] + }, + { + "input": "difficulty: medium", + "output": [ + "null" + ] + }, + { + "input": "data wrangling", + "output": [ + "data" + ] + }, + { + "input": "sast", + "output": [ + "security" + ] + }, + { + "input": "tech-debt", + "output": [ + "maintenance" + ] + }, + { + "input": "data entry", + "output": [ + "data" + ] + }, + { + "input": "fault", + "output": [ + "bug" + ] + }, + { + "input": "problem", + "output": [ + "bug" + ] + }, + { + "input": "brand icon", + "output": [ + "design" + ] + }, + { + "input": "internal-issue-created", + "output": [ + "bug" + ] + }, + { + "input": "pmp", + "output": [ + "projectManagement" + ] + }, + { + "input": "bdd", + "output": [ + "test" + ] + }, + { + "input": "checkpoint", + "output": [ + "review" + ] + }, + { + "input": "csharp", + "output": [ + "code" + ] + }, + { + "input": "pr: unreviewed", + "output": [ + "null" + ] + }, + { + "input": "component: test renderer", + "output": [ + "test" + ] + }, + { + "input": "idea", + "output": [ + "ideas" + ] + }, + { + "input": "needs browser testing", + "output": [ + "null" + ] + }, + { + "input": "status: in progress", + "output": [ + "null" + ] + }, + { + "input": "feedback requested", + "output": [ + "null" + ] + }, + { + "input": "wcag", + "output": [ + "a11y" + ] + }, + { + "input": "bugs", + "output": [ + "bug" + ] + }, + { + "input": "mentor", + "output": [ + "mentoring" + ] + }, + { + "input": "economics", + "output": [ + "financial" + ] + }, + { + "input": "lib", + "output": [ + "plugin" + ] + }, + { + "input": "puppet", + "output": [ + "infra" + ] + }, + { + "input": ":speech_balloon: question", + "output": [ + "question" + ] + }, + { + "input": "c/c++", + "output": [ + "code" + ] + }, + { + "input": "type: enhancement :bulb:", + "output": [ + "ideas" + ] + }, + { + "input": "pr: internal", + "output": [ + "code" + ] + }, + { + "input": "business", + "output": [ + "business" + ] + }, + { + "input": "prometheus", + "output": [ + "infra" + ] + }, + { + "input": "triage", + "output": [ + "null" + ] + }, + { + "input": "pr: new feature :rocket:", + "output": [ + "ideas" + ] + }, + { + "input": "type: discuss :speech_balloon:", + "output": [ + "ideas" + ] + }, + { + "input": "doc", + "output": [ + "doc" + ] + }, + { + "input": "ie8", + "output": [ + "platform" + ] + }, + { + "input": "blogs", + "output": [ + "blog" + ] + }, + { + "input": "feat: unit-mocha", + "output": [ + "test" + ] + }, + { + "input": "enterprise", + "output": [ + "business" + ] + }, + { + "input": "component: scheduler", + "output": [ + "null" + ] + }, + { + "input": "regression", + "output": [ + "bug" + ] + }, + { + "input": "spec: class fields", + "output": [ + "doc" + ] + }, + { + "input": "commercial", + "output": [ + "business" + ] + }, + { + "input": "infra", + "output": [ + "infra" + ] + }, + { + "input": "terraform", + "output": [ + "infra" + ] + }, + { + "input": "go", + "output": [ + "code" + ] + }, + { + "input": "figure", + "output": [ + "design" + ] + }, + { + "input": "layout", + "output": [ + "design" + ] + }, + { + "input": "specification", + "output": [ + "doc" + ] + }, + { + "input": "vector image", + "output": [ + "design" + ] + }, + { + "input": "greenkeeper", + "output": [ + "infra" + ] + }, + { + "input": "tdd", + "output": [ + "test" + ] + }, + { + "input": "performance", + "output": [ + "maintenance" + ] + }, + { + "input": "raster image", + "output": [ + "design" + ] + }, + { + "input": "mishap", + "output": [ + "bug" + ] + }, + { + "input": "sketch", + "output": [ + "design" + ] + }, + { + "input": "released", + "output": [ + "null" + ] + }, + { + "input": "linux", + "output": [ + "platform" + ] + }, + { + "input": "font design", + "output": [ + "design" + ] + }, + { + "input": ":rocket: deployment", + "output": [ + "infra" + ] + }, + { + "input": "feat: e2e-nightwatch", + "output": [ + "test" + ] + }, + { + "input": "type: infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "engine vulns", + "output": [ + "security" + ] + }, + { + "input": "syntax feature request", + "output": [ + "ideas" + ] + }, + { + "input": "type: security", + "output": [ + "security" + ] + }, + { + "input": "deliverable", + "output": [ + "projectManagement" + ] + }, + { + "input": "manual", + "output": [ + "doc" + ] + }, + { + "input": "target:osx", + "output": [ + "platform" + ] + }, + { + "input": "axe", + "output": [ + "a11y" + ] + }, + { + "input": ":bug: bug", + "output": [ + "bug" + ] + }, + { + "input": "type: sendgrid enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "operating system", + "output": [ + "platform" + ] + }, + { + "input": "advance developer workflow", + "output": [ + "infra" + ] + }, + { + "input": "safety", + "output": [ + "security" + ] + }, + { + "input": "phonetic", + "output": [ + "audio" + ] + }, + { + "input": "to do", + "output": [ + "maintenance" + ] + }, + { + "input": "concept", + "output": [ + "ideas" + ] + }, + { + "input": "lerna", + "output": [ + "infra" + ] + }, + { + "input": "readme", + "output": [ + "doc" + ] + }, + { + "input": "security", + "output": [ + "security" + ] + }, + { + "input": "music", + "output": [ + "audio" + ] + }, + { + "input": "needs a failing test", + "output": [ + "null" + ] + }, + { + "input": "customer experience", + "output": [ + "design" + ] + }, + { + "input": "extension", + "output": [ + "plugin" + ] + }, + { + "input": "todo", + "output": [ + "maintenance" + ] + }, + { + "input": "lint", + "output": [ + "maintenance" + ] + }, + { + "input": "target:browser", + "output": [ + "platform" + ] + }, + { + "input": "feature request", + "output": [ + "ideas" + ] + }, + { + "input": "component: optimizing compiler", + "output": [ + "code" + ] + }, + { + "input": "css-select", + "output": [ + "code" + ] + }, + { + "input": "figma", + "output": [ + "tool" + ] + }, + { + "input": "finance", + "output": [ + "financial" + ] + }, + { + "input": "closed due to inactivity", + "output": [ + "null" + ] + }, + { + "input": ":rocket: feature request", + "output": [ + "ideas" + ] + }, + { + "input": "jira", + "output": [ + "projectManagement" + ] + }, + { + "input": "survey", + "output": [ + "review" + ] + }, + { + "input": "behavioral user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "multi module", + "output": [ + "maintenance" + ] + }, + { + "input": "discussion :speech_balloon:", + "output": [ + "ideas" + ] + }, + { + "input": "mixing", + "output": [ + "audio" + ] + }, + { + "input": "0 - backlog", + "output": [ + "null" + ] + }, + { + "input": "update", + "output": [ + "maintenance" + ] + }, + { + "input": "present", + "output": [ + "talk" + ] + }, + { + "input": "modules", + "output": [ + "code" + ] + }, + { + "input": "lang-julia", + "output": [ + "code" + ] + }, + { + "input": "usability testing", + "output": [ + "userTesting" + ] + }, + { + "input": "vuln", + "output": [ + "security" + ] + }, + { + "input": "demo", + "output": [ + "example" + ] + }, + { + "input": "corporate event", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "type: refactor", + "output": [ + "code" + ] + }, + { + "input": "spam", + "output": [ + "null" + ] + }, + { + "input": "definition:bug", + "output": [ + "bug" + ] + }, + { + "input": "help wanted", + "output": [ + "null" + ] + }, + { + "input": "type: idea", + "output": [ + "ideas" + ] + }, + { + "input": ":bulb: proposal", + "output": [ + "ideas" + ] + }, + { + "input": "handshakes", + "output": [ + "business" + ] + }, + { + "input": "platform", + "output": [ + "platform" + ] + }, + { + "input": "cli", + "output": [ + "code" + ] + }, + { + "input": "wave", + "output": [ + "a11y" + ] + }, + { + "input": "ansible", + "output": [ + "infra" + ] + }, + { + "input": "lang-convert", + "output": [ + "translation" + ] + }, + { + "input": "feat: eslint", + "output": [ + "maintenance" + ] + }, + { + "input": "gdpr", + "output": [ + "security" + ] + }, + { + "input": "type: doc update", + "output": [ + "doc" + ] + }, + { + "input": "spec: classes", + "output": [ + "doc" + ] + }, + { + "input": "websocket", + "output": [ + "tool" + ] + }, + { + "input": "android", + "output": [ + "platform" + ] + }, + { + "input": "speach", + "output": [ + "talk" + ] + }, + { + "input": "pr: bug fix :bug:", + "output": [ + "bug" + ] + }, + { + "input": "a/b testing", + "output": [ + "userTesting" + ] + }, + { + "input": "chef", + "output": [ + "infra" + ] + }, + { + "input": "patreon", + "output": [ + "financial" + ] + }, + { + "input": "pr: reviewed-changes-requested", + "output": [ + "null" + ] + }, + { + "input": "on hold", + "output": [ + "null" + ] + }, + { + "input": "ui test", + "output": [ + "test" + ] + }, + { + "input": "analysis", + "output": [ + "review" + ] + }, + { + "input": "pr: needs review", + "output": [ + "null" + ] + }, + { + "input": "component: build infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "youtube", + "output": [ + "video" + ] + }, + { + "input": "spec: decorators (legacy)", + "output": [ + "doc" + ] + }, + { + "input": "deployment", + "output": [ + "infra" + ] + }, + { + "input": "mentorship", + "output": [ + "mentoring" + ] + }, + { + "input": "feat: typescript", + "output": [ + "code" + ] + }, + { + "input": "feat: cli", + "output": [ + "code" + ] + }, + { + "input": "utils", + "output": [ + "plugin" + ] + }, + { + "input": "didactic", + "output": [ + "tutorial" + ] + }, + { + "input": "story", + "output": [ + "content" + ] + }, + { + "input": "academia", + "output": [ + "research" + ] + }, + { + "input": "component: developer tools", + "output": [ + "tool" + ] + }, + { + "input": "inspiration", + "output": [ + "ideas" + ] + }, + { + "input": "business process", + "output": [ + "business" + ] + }, + { + "input": "sustain", + "output": [ + "maintenance" + ] + }, + { + "input": "confirmed", + "output": [ + "null" + ] + }, + { + "input": "type: question :grey_question:", + "output": [ + "question" + ] + }, + { + "input": "cmty:question", + "output": [ + "question" + ] + }, + { + "input": "need-info", + "output": [ + "null" + ] + }, + { + "input": "sustenance", + "output": [ + "maintenance" + ] + }, + { + "input": "good first issue", + "output": [ + "null" + ] + }, + { + "input": "kind/discussion", + "output": [ + "ideas" + ] + }, + { + "input": "palette", + "output": [ + "design" + ] + }, + { + "input": "azure ad", + "output": [ + "infra" + ] + }, + { + "input": "data collection", + "output": [ + "data" + ] + }, + { + "input": "external-bugs", + "output": [ + "bug" + ] + }, + { + "input": "deal", + "output": [ + "business" + ] + }, + { + "input": "hacking", + "output": [ + "security" + ] + }, + { + "input": "kind/question", + "output": [ + "question" + ] + }, + { + "input": "video", + "output": [ + "video" + ] + }, + { + "input": "component: test utils", + "output": [ + "test" + ] + }, + { + "input": "hsv", + "output": [ + "design" + ] + }, + { + "input": "thesis", + "output": [ + "content" + ] + }, + { + "input": "pentesting", + "output": [ + "security" + ] + }, + { + "input": "design", + "output": [ + "design" + ] + }, + { + "input": "website copy", + "output": [ + "content" + ] + }, + { + "input": "type: bug :bug:", + "output": [ + "bug" + ] + }, + { + "input": "guide", + "output": [ + "tutorial" + ] + }, + { + "input": "next meetup!", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "feat: ui", + "output": [ + "design" + ] + }, + { + "input": "mastering", + "output": [ + "audio" + ] + }, + { + "input": "steps", + "output": [ + "doc" + ] + }, + { + "input": "abandoned", + "output": [ + "null" + ] + }, + { + "input": "badges", + "output": [ + "doc" + ] + }, + { + "input": "sponsor", + "output": [ + "mentoring" + ] + }, + { + "input": "assess", + "output": [ + "test" + ] + }, + { + "input": "pr: merged", + "output": [ + "null" + ] + }, + { + "input": "vlog", + "output": [ + "video" + ] + }, + { + "input": "acceptance testing", + "output": [ + "test" + ] + }, + { + "input": "hot discussion", + "output": [ + "ideas" + ] + }, + { + "input": "tv", + "output": [ + "video" + ] + }, + { + "input": "soundtrack", + "output": [ + "audio" + ] + }, + { + "input": "design (category)", + "output": [ + "design" + ] + }, + { + "input": "ci/cd", + "output": [ + "infra" + ] + }, + { + "input": "multi-cloud", + "output": [ + "infra" + ] + }, + { + "input": "funding finder", + "output": [ + "fundingFinding" + ] + }, + { + "input": "difficulty: hard", + "output": [ + "null" + ] + }, + { + "input": "documentation :book:", + "output": [ + "doc" + ] + }, + { + "input": "diary", + "output": [ + "blog" + ] + }, + { + "input": "standard", + "output": [ + "doc" + ] + }, + { + "input": "colour", + "output": [ + "design" + ] + }, + { + "input": ":computer: desktop", + "output": [ + "platform" + ] + }, + { + "input": "flaw", + "output": [ + "bug" + ] + }, + { + "input": "reliability", + "output": [ + "maintenance" + ] + }, + { + "input": "feat: cli-service build", + "output": [ + "code" + ] + }, + { + "input": "blocked", + "output": [ + "null" + ] + }, + { + "input": "type: maintenance :construction:", + "output": [ + "maintenance" + ] + }, + { + "input": "ios", + "output": [ + "platform" + ] + }, + { + "input": "planned feature", + "output": [ + "ideas" + ] + }, + { + "input": "kind/feature-request", + "output": [ + "ideas" + ] + }, + { + "input": "rfc", + "output": [ + "ideas" + ] + }, + { + "input": "image", + "output": [ + "design" + ] + }, + { + "input": "stock", + "output": [ + "infra" + ] + }, + { + "input": "reminder", + "output": [ + "null" + ] + }, + { + "input": "status: review needed", + "output": [ + "null" + ] + }, + { + "input": "in review", + "output": [ + "null" + ] + }, + { + "input": "lang-crystal", + "output": [ + "code" + ] + }, + { + "input": "pr: breaking change", + "output": [ + "code" + ] + }, + { + "input": "phone", + "output": [ + "platform" + ] + }, + { + "input": "refactor", + "output": [ + "code" + ] + }, + { + "input": "monologue", + "output": [ + "talk" + ] + }, + { + "input": "pr: reviewed-approved", + "output": [ + "null" + ] + }, + { + "input": "new best practice", + "output": [ + "ideas" + ] + }, + { + "input": "lecture", + "output": [ + "tutorial" + ] + }, + { + "input": "backing", + "output": [ + "financial" + ] + }, + { + "input": "website", + "output": [ + "code" + ] + }, + { + "input": "browser issue", + "output": [ + "bug" + ] + }, + { + "input": "aws", + "output": [ + "infra" + ] + }, + { + "input": "pr: polish :nail_care:", + "output": [ + "maintenance" + ] + }, + { + "input": "article", + "output": [ + "content" + ] + }, + { + "input": "peer-review", + "output": [ + "review" + ] + }, + { + "input": "writer-needed", + "output": [ + "null" + ] + }, + { + "input": "eventstorming", + "output": [ + "ideas" + ] + }, + { + "input": "freemasonry icons", + "output": [ + "design" + ] + }, + { + "input": "lean", + "output": [ + "projectManagement" + ] + }, + { + "input": "cannot reproduce", + "output": [ + "null" + ] + }, + { + "input": "paas", + "output": [ + "platform" + ] + }, + { + "input": ".net core", + "output": [ + "code" + ] + }, + { + "input": "wiretap", + "output": [ + "security" + ] + }, + { + "input": "feat: unit-jest", + "output": [ + "test" + ] + }, + { + "input": "instruction", + "output": [ + "doc" + ] + }, + { + "input": "infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "rgb", + "output": [ + "design" + ] + }, + { + "input": "ideas", + "output": [ + "ideas" + ] + }, + { + "input": "target:windows", + "output": [ + "platform" + ] + }, + { + "input": "funding call", + "output": [ + "fundingFinding" + ] + }, + { + "input": "iconography", + "output": [ + "design" + ] + }, + { + "input": "promote", + "output": [ + "promotion" + ] + }, + { + "input": "template", + "output": [ + "example" + ] + }, + { + "input": "support", + "output": [ + "null" + ] + }, + { + "input": "first-timers-only", + "output": [ + "null" + ] + }, + { + "input": "java", + "output": [ + "code" + ] + }, + { + "input": "cdn", + "output": [ + "platform" + ] + }, + { + "input": "pr: new dependency", + "output": [ + "ideas" + ] + }, + { + "input": "status: ready for deploy", + "output": [ + "null" + ] + }, + { + "input": "computer", + "output": [ + "platform" + ] + }, + { + "input": "troubleshooting", + "output": [ + "bug" + ] + }, + { + "input": "spec: bigint", + "output": [ + "doc" + ] + }, + { + "input": "spec: async generators", + "output": [ + "doc" + ] + }, + { + "input": "feature proposal", + "output": [ + "ideas" + ] + }, + { + "input": "e2e test", + "output": [ + "test" + ] + }, + { + "input": "approachability", + "output": [ + "a11y" + ] + }, + { + "input": "investment", + "output": [ + "financial" + ] + }, + { + "input": "conflicts", + "output": [ + "null" + ] + }, + { + "input": "optimisation", + "output": [ + "code" + ] + }, + { + "input": "kotlin", + "output": [ + "code" + ] + }, + { + "input": "planned for next release", + "output": [ + "null" + ] + }, + { + "input": "unconfirmed", + "output": [ + "null" + ] + }, + { + "input": "type: duplicate :repeat:", + "output": [ + "null" + ] + }, + { + "input": "devops: defend", + "output": [ + "infra" + ] + }, + { + "input": "blogging", + "output": [ + "blog" + ] + }, + { + "input": "friendliness", + "output": [ + "a11y" + ] + }, + { + "input": "i18n", + "output": [ + "translation" + ] + }, + { + "input": "cla signed", + "output": [ + "null" + ] + }, + { + "input": "icebox", + "output": [ + "platform" + ] + }, + { + "input": "meetup", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "examination", + "output": [ + "test" + ] + }, + { + "input": "mobile device support", + "output": [ + "platform" + ] + }, + { + "input": "component: component api", + "output": [ + "code" + ] + }, + { + "input": "spec: decorators", + "output": [ + "doc" + ] + }, + { + "input": "addon", + "output": [ + "plugin" + ] + }, + { + "input": "cracking", + "output": [ + "security" + ] + }, + { + "input": ":sparkles: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "component: hooks", + "output": [ + "code" + ] + }, + { + "input": "improved error handling", + "output": [ + "code" + ] + }, + { + "input": "needs repro", + "output": [ + "null" + ] + }, + { + "input": "upkeep", + "output": [ + "maintenance" + ] + }, + { + "input": "component: reactis", + "output": [ + "code" + ] + }, + { + "input": "pr: ready to be merged", + "output": [ + "null" + ] + }, + { + "input": "sample", + "output": [ + "example" + ] + }, + { + "input": ":white_check_mark: testing", + "output": [ + "test" + ] + }, + { + "input": "maintenance", + "output": [ + "maintenance" + ] + }, + { + "input": "external", + "output": [ + "plugin" + ] + }, + { + "input": "desktop", + "output": [ + "platform" + ] + }, + { + "input": "hacktoberfest", + "output": [ + "code" + ] + }, + { + "input": "data", + "output": [ + "data" + ] + }, + { + "input": "lang-dart", + "output": [ + "code" + ] + }, + { + "input": ".net framework", + "output": [ + "code" + ] + }, + { + "input": "icon", + "output": [ + "design" + ] + }, + { + "input": "grant finder", + "output": [ + "fundingFinding" + ] + }, + { + "input": "needs-research", + "output": [ + "null" + ] + }, + { + "input": "cybersec", + "output": [ + "security" + ] + }, + { + "input": "biz", + "output": [ + "business" + ] + }, + { + "input": "internationalization", + "output": [ + "translation" + ] + }, + { + "input": "utility-lib", + "output": [ + "plugin" + ] + }, + { + "input": "qa", + "output": [ + "test" + ] + }, + { + "input": "do not merge", + "output": [ + "null" + ] + }, + { + "input": "hacked", + "output": [ + "security" + ] + }, + { + "input": "how-to", + "output": [ + "tutorial" + ] + }, + { + "input": "beginner-friendly", + "output": [ + "null" + ] + }, + { + "input": "trello", + "output": [ + "projectManagement" + ] + }, + { + "input": "os", + "output": [ + "platform" + ] + }, + { + "input": "sound", + "output": [ + "audio" + ] + }, + { + "input": "docs improvement", + "output": [ + "doc" + ] + }, + { + "input": ":heavy_plus_sign: feature request", + "output": [ + "ideas" + ] + }, + { + "input": "glitch", + "output": [ + "bug" + ] + }, + { + "input": "cx", + "output": [ + "design" + ] + }, + { + "input": "dependencies", + "output": [ + "maintenance" + ] + }, + { + "input": "inquiry", + "output": [ + "question" + ] + }, + { + "input": "deno", + "output": [ + "platform" + ] + }, + { + "input": "area: crash", + "output": [ + "bug" + ] + }, + { + "input": "camera", + "output": [ + "video" + ] + }, + { + "input": "pr: wip", + "output": [ + "null" + ] + }, + { + "input": "devops: configure", + "output": [ + "infra" + ] + }, + { + "input": "component: dom", + "output": [ + "code" + ] + }, + { + "input": "programming", + "output": [ + "code" + ] + }, + { + "input": "test needed", + "output": [ + "null" + ] + }, + { + "input": "question :question:", + "output": [ + "question" + ] + }, + { + "input": "@font-face", + "output": [ + "design" + ] + }, + { + "input": "rgba", + "output": [ + "design" + ] + }, + { + "input": "parser-specific", + "output": [ + "tool" + ] + }, + { + "input": "pr: new feature", + "output": [ + "ideas" + ] + }, + { + "input": "wikipedia", + "output": [ + "doc" + ] + }, + { + "input": "shell", + "output": [ + "tool" + ] + }, + { + "input": "cmty:feature-request", + "output": [ + "ideas" + ] + }, + { + "input": "contributions", + "output": [ + "maintenance" + ] + }, + { + "input": "tryout", + "output": [ + "test" + ] + }, + { + "input": "needs review", + "output": [ + "null" + ] + }, + { + "input": "thought", + "output": [ + "ideas" + ] + }, + { + "input": "kind/bug", + "output": [ + "bug" + ] + }, + { + "input": "data analysis", + "output": [ + "data" + ] + }, + { + "input": "contenu", + "output": [ + "content" + ] + }, + { + "input": "feat/cli", + "output": [ + "code" + ] + }, + { + "input": "fund investigation", + "output": [ + "fundingFinding" + ] + }, + { + "input": "type: question", + "output": [ + "question" + ] + }, + { + "input": "type: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "basecamp", + "output": [ + "projectManagement" + ] + }, + { + "input": "literature review", + "output": [ + "research" + ] + }, + { + "input": "needs docs", + "output": [ + "null" + ] + }, + { + "input": "socket.io client", + "output": [ + "tool" + ] + }, + { + "input": "fiscal", + "output": [ + "financial" + ] + }, + { + "input": "user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "debug information", + "output": [ + "bug" + ] + }, + { + "input": "frontend", + "output": [ + "code" + ] + }, + { + "input": "area/cli", + "output": [ + "infra" + ] + }, + { + "input": "upstream", + "output": [ + "null" + ] + }, + { + "input": "question :raising_hand:", + "output": [ + "question" + ] + }, + { + "input": "style", + "output": [ + "design" + ] + }, + { + "input": "clean up", + "output": [ + "maintenance" + ] + }, + { + "input": "motif", + "output": [ + "design" + ] + }, + { + "input": "to merge", + "output": [ + "null" + ] + }, + { + "input": "event", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "status: help wanted", + "output": [ + "null" + ] + }, + { + "input": "priority: medium", + "output": [ + "null" + ] + }, + { + "input": "financial backing", + "output": [ + "fundingFinding" + ] + }, + { + "input": "ruby", + "output": [ + "code" + ] + }, + { + "input": "es7", + "output": [ + "code" + ] + }, + { + "input": "warrant", + "output": [ + "security" + ] + }, + { + "input": "cmty:status:cancelled", + "output": [ + "null" + ] + }, + { + "input": "plan", + "output": [ + "ideas" + ] + }, + { + "input": "hackathon", + "output": [ + "code" + ] + }, + { + "input": ":beginner: documentation", + "output": [ + "doc" + ] + }, + { + "input": "typography", + "output": [ + "design" + ] + }, + { + "input": "counsel", + "output": [ + "mentoring" + ] + }, + { + "input": "recording", + "output": [ + "audio" + ] + }, + { + "input": "crowdin", + "output": [ + "translation" + ] + }, + { + "input": "component: eslint rules", + "output": [ + "maintenance" + ] + }, + { + "input": "difficulty: easy", + "output": [ + "null" + ] + }, + { + "input": "repare", + "output": [ + "maintenance" + ] + }, + { + "input": "conference", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "great insight", + "output": [ + "ideas" + ] + }, + { + "input": "phd", + "output": [ + "research" + ] + }, + { + "input": "documentation :orange_book:", + "output": [ + "doc" + ] + }, + { + "input": "type: invalid :x:", + "output": [ + "null" + ] + }, + { + "input": "needs changelog", + "output": [ + "null" + ] + }, + { + "input": "feat: e2e-cypress", + "output": [ + "test" + ] + }, + { + "input": ":lipstick: ui", + "output": [ + "design" + ] + }, + { + "input": "1 - ready", + "output": [ + "null" + ] + }, + { + "input": "backdoor", + "output": [ + "security" + ] + }, + { + "input": "fund collection", + "output": [ + "fundingFinding" + ] + }, + { + "input": "approved", + "output": [ + "null" + ] + }, + { + "input": "talk", + "output": [ + "talk" + ] + }, + { + "input": "subtitle", + "output": [ + "translation" + ] + }, + { + "input": "funding research", + "output": [ + "fundingFinding" + ] + }, + { + "input": "todo :spiral_notepad:", + "output": [ + "maintenance" + ] + }, + { + "input": "feat: babel", + "output": [ + "tool" + ] + }, + { + "input": "flashsocket", + "output": [ + "tool" + ] + }, + { + "input": "target:unix", + "output": [ + "platform" + ] + }, + { + "input": "npm", + "output": [ + "infra" + ] + }, + { + "input": "site reliability", + "output": [ + "maintenance" + ] + }, + { + "input": "enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "chore", + "output": [ + "maintenance" + ] + }, + { + "input": "adapter", + "output": [ + "plugin" + ] + }, + { + "input": "slides", + "output": [ + "talk" + ] + }, + { + "input": "query", + "output": [ + "question" + ] + }, + { + "input": "feature", + "output": [ + "ideas" + ] + }, + { + "input": "chat (category)", + "output": [ + "ideas" + ] + }, + { + "input": "major", + "output": [ + "null" + ] + }, + { + "input": "release: alpha", + "output": [ + "null" + ] + }, + { + "input": ":lock: security", + "output": [ + "security" + ] + }, + { + "input": "newsletter", + "output": [ + "content" + ] + }, + { + "input": "verification", + "output": [ + "test" + ] + }, + { + "input": "color", + "output": [ + "design" + ] + }, + { + "input": "containerd", + "output": [ + "infra" + ] + }, + { + "input": ":doughnut: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "sentry", + "output": [ + "infra" + ] + }, + { + "input": "dissertation", + "output": [ + "research" + ] + }, + { + "input": "mentoring", + "output": [ + "mentoring" + ] + }, + { + "input": "confer", + "output": [ + "talk" + ] + }, + { + "input": "component: core utilities", + "output": [ + "maintenance" + ] + }, + { + "input": "infosec", + "output": [ + "security" + ] + }, + { + "input": "vulnerability", + "output": [ + "security" + ] + }, + { + "input": "has pr", + "output": [ + "null" + ] + }, + { + "input": "status: code review request", + "output": [ + "null" + ] + }, + { + "input": "teaching", + "output": [ + "tutorial" + ] + }, + { + "input": "target:ios", + "output": [ + "platform" + ] + }, + { + "input": "protection", + "output": [ + "security" + ] + }, + { + "input": ":robot: android", + "output": [ + "platform" + ] + }, + { + "input": "type: documentation :book:", + "output": [ + "doc" + ] + }, + { + "input": "webaim", + "output": [ + "a11y" + ] + }, + { + "input": "wontfix", + "output": [ + "null" + ] + }, + { + "input": "needs triage", + "output": [ + "null" + ] + }, + { + "input": "contribution welcome", + "output": [ + "null" + ] + }, + { + "input": "target:macos", + "output": [ + "platform" + ] + }, + { + "input": "assertion", + "output": [ + "test" + ] + }, + { + "input": "blog", + "output": [ + "blog" + ] + }, + { + "input": "review in progress", + "output": [ + "null" + ] + }, + { + "input": "node next", + "output": [ + "platform" + ] + }, + { + "input": "future architecture enhancements", + "output": [ + "ideas" + ] + }, + { + "input": "pmi", + "output": [ + "projectManagement" + ] + }, + { + "input": "promotion", + "output": [ + "promotion" + ] + }, + { + "input": "validation", + "output": [ + "review" + ] + }, + { + "input": "art", + "output": [ + "design" + ] + }, + { + "input": "film", + "output": [ + "video" + ] + }, + { + "input": "bitbucket cloud", + "output": [ + "infra" + ] + }, + { + "input": "labour", + "output": [ + "maintenance" + ] + }, + { + "input": "python", + "output": [ + "code" + ] + }, + { + "input": "suggestion", + "output": [ + "ideas" + ] + }, + { + "input": "future crypto enhancements", + "output": [ + "ideas" + ] + }, + { + "input": "attitudinal user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "electron", + "output": [ + "tool" + ] + }, + { + "input": "trial", + "output": [ + "test" + ] + }, + { + "input": "definition:request", + "output": [ + "ideas" + ] + }, + { + "input": "pr: good example", + "output": [ + "example" + ] + }, + { + "input": "data protection", + "output": [ + "security" + ] + }, + { + "input": "resolution: support redirect", + "output": [ + "null" + ] + }, + { + "input": "cloud", + "output": [ + "infra" + ] + }, + { + "input": "target:android", + "output": [ + "platform" + ] + }, + { + "input": "assessment", + "output": [ + "test" + ] + }, + { + "input": "monitor", + "output": [ + "maintenance" + ] + }, + { + "input": "css", + "output": [ + "code" + ] + }, + { + "input": "hack", + "output": [ + "code" + ] + }, + { + "input": "translation", + "output": [ + "translation" + ] + }, + { + "input": "research opportunity", + "output": [ + "research" + ] + }, + { + "input": "vultr", + "output": [ + "infra" + ] + }, + { + "input": "kubernetes", + "output": [ + "infra" + ] + }, + { + "input": "discussion", + "output": [ + "ideas" + ] + }, + { + "input": "needs a example app.", + "output": [ + "null" + ] + }, + { + "input": "wiki", + "output": [ + "doc" + ] + }, + { + "input": "parser", + "output": [ + "tool" + ] + }, + { + "input": "feat: pwa", + "output": [ + "code" + ] + }, + { + "input": ":iphone: mobile", + "output": [ + "platform" + ] + }, + { + "input": "program", + "output": [ + "platform" + ] + }, + { + "input": "backer finding", + "output": [ + "fundingFinding" + ] + }, + { + "input": "digital ocean", + "output": [ + "infra" + ] + }, + { + "input": "safeguard", + "output": [ + "security" + ] + }, + { + "input": "iac", + "output": [ + "infra" + ] + }, + { + "input": "javascript", + "output": [ + "code" + ] + }, + { + "input": "integration test", + "output": [ + "test" + ] + }, + { + "input": "glo", + "output": [ + "projectManagement" + ] + }, + { + "input": "porting", + "output": [ + "platform" + ] + }, + { + "input": "status: on hold", + "output": [ + "null" + ] + }, + { + "input": "status: hacktoberfest approved", + "output": [ + "null" + ] + }, + { + "input": "evaluation", + "output": [ + "test" + ] + }, + { + "input": "go client internal release", + "output": [ + "infra" + ] + }, + { + "input": "type: test", + "output": [ + "test" + ] + }, + { + "input": "must-triage", + "output": [ + "null" + ] + }, + { + "input": "gradle", + "output": [ + "infra" + ] + }, + { + "input": "accessibility", + "output": [ + "a11y" + ] + }, + { + "input": "status: work in progress", + "output": [ + "null" + ] + }, + { + "input": "other language integration feature", + "output": [ + "ideas" + ] + }, + { + "input": "difficulty: medium", + "output": [ + "null" + ] + }, + { + "input": "data wrangling", + "output": [ + "data" + ] + }, + { + "input": "sast", + "output": [ + "security" + ] + }, + { + "input": "tech-debt", + "output": [ + "maintenance" + ] + }, + { + "input": "data entry", + "output": [ + "data" + ] + }, + { + "input": "fault", + "output": [ + "bug" + ] + }, + { + "input": "problem", + "output": [ + "bug" + ] + }, + { + "input": "brand icon", + "output": [ + "design" + ] + }, + { + "input": "internal-issue-created", + "output": [ + "bug" + ] + }, + { + "input": "pmp", + "output": [ + "projectManagement" + ] + }, + { + "input": "bdd", + "output": [ + "test" + ] + }, + { + "input": "checkpoint", + "output": [ + "review" + ] + }, + { + "input": "csharp", + "output": [ + "code" + ] + }, + { + "input": "pr: unreviewed", + "output": [ + "null" + ] + }, + { + "input": "component: test renderer", + "output": [ + "test" + ] + }, + { + "input": "idea", + "output": [ + "ideas" + ] + }, + { + "input": "needs browser testing", + "output": [ + "null" + ] + }, + { + "input": "status: in progress", + "output": [ + "null" + ] + }, + { + "input": "feedback requested", + "output": [ + "null" + ] + }, + { + "input": "wcag", + "output": [ + "a11y" + ] + }, + { + "input": "bugs", + "output": [ + "bug" + ] + }, + { + "input": "mentor", + "output": [ + "mentoring" + ] + }, + { + "input": "economics", + "output": [ + "financial" + ] + }, + { + "input": "lib", + "output": [ + "plugin" + ] + }, + { + "input": "puppet", + "output": [ + "infra" + ] + }, + { + "input": ":speech_balloon: question", + "output": [ + "question" + ] + }, + { + "input": "c/c++", + "output": [ + "code" + ] + }, + { + "input": "type: enhancement :bulb:", + "output": [ + "ideas" + ] + }, + { + "input": "pr: internal", + "output": [ + "code" + ] + }, + { + "input": "business", + "output": [ + "business" + ] + }, + { + "input": "prometheus", + "output": [ + "infra" + ] + }, + { + "input": "triage", + "output": [ + "null" + ] + }, + { + "input": "pr: new feature :rocket:", + "output": [ + "ideas" + ] + }, + { + "input": "type: discuss :speech_balloon:", + "output": [ + "ideas" + ] + }, + { + "input": "doc", + "output": [ + "doc" + ] + }, + { + "input": "ie8", + "output": [ + "platform" + ] + }, + { + "input": "blogs", + "output": [ + "blog" + ] + }, + { + "input": "feat: unit-mocha", + "output": [ + "test" + ] + }, + { + "input": "enterprise", + "output": [ + "business" + ] + }, + { + "input": "component: scheduler", + "output": [ + "null" + ] + }, + { + "input": "regression", + "output": [ + "bug" + ] + }, + { + "input": "spec: class fields", + "output": [ + "doc" + ] + }, + { + "input": "commercial", + "output": [ + "business" + ] + }, + { + "input": "infra", + "output": [ + "infra" + ] + }, + { + "input": "terraform", + "output": [ + "infra" + ] + }, + { + "input": "go", + "output": [ + "code" + ] + }, + { + "input": "figure", + "output": [ + "design" + ] + }, + { + "input": "layout", + "output": [ + "design" + ] + }, + { + "input": "specification", + "output": [ + "doc" + ] + }, + { + "input": "vector image", + "output": [ + "design" + ] + }, + { + "input": "greenkeeper", + "output": [ + "infra" + ] + }, + { + "input": "tdd", + "output": [ + "test" + ] + }, + { + "input": "performance", + "output": [ + "maintenance" + ] + }, + { + "input": "raster image", + "output": [ + "design" + ] + }, + { + "input": "mishap", + "output": [ + "bug" + ] + }, + { + "input": "sketch", + "output": [ + "design" + ] + }, + { + "input": "released", + "output": [ + "null" + ] + }, + { + "input": "linux", + "output": [ + "platform" + ] + }, + { + "input": "font design", + "output": [ + "design" + ] + }, + { + "input": ":rocket: deployment", + "output": [ + "infra" + ] + }, + { + "input": "feat: e2e-nightwatch", + "output": [ + "test" + ] + }, + { + "input": "type: infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "engine vulns", + "output": [ + "security" + ] + }, + { + "input": "syntax feature request", + "output": [ + "ideas" + ] + }, + { + "input": "type: security", + "output": [ + "security" + ] + }, + { + "input": "deliverable", + "output": [ + "projectManagement" + ] + }, + { + "input": "manual", + "output": [ + "doc" + ] + }, + { + "input": "target:osx", + "output": [ + "platform" + ] + }, + { + "input": "axe", + "output": [ + "a11y" + ] + }, + { + "input": ":bug: bug", + "output": [ + "bug" + ] + }, + { + "input": "type: sendgrid enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "operating system", + "output": [ + "platform" + ] + }, + { + "input": "advance developer workflow", + "output": [ + "infra" + ] + }, + { + "input": "safety", + "output": [ + "security" + ] + }, + { + "input": "phonetic", + "output": [ + "audio" + ] + }, + { + "input": "to do", + "output": [ + "maintenance" + ] + }, + { + "input": "concept", + "output": [ + "ideas" + ] + }, + { + "input": "lerna", + "output": [ + "infra" + ] + }, + { + "input": "readme", + "output": [ + "doc" + ] + }, + { + "input": "security", + "output": [ + "security" + ] + }, + { + "input": "music", + "output": [ + "audio" + ] + }, + { + "input": "needs a failing test", + "output": [ + "null" + ] + }, + { + "input": "customer experience", + "output": [ + "design" + ] + }, + { + "input": "extension", + "output": [ + "plugin" + ] + }, + { + "input": "todo", + "output": [ + "maintenance" + ] + }, + { + "input": "lint", + "output": [ + "maintenance" + ] + }, + { + "input": "target:browser", + "output": [ + "platform" + ] + }, + { + "input": "feature request", + "output": [ + "ideas" + ] + }, + { + "input": "component: optimizing compiler", + "output": [ + "code" + ] + }, + { + "input": "css-select", + "output": [ + "code" + ] + }, + { + "input": "figma", + "output": [ + "tool" + ] + }, + { + "input": "finance", + "output": [ + "financial" + ] + }, + { + "input": "closed due to inactivity", + "output": [ + "null" + ] + }, + { + "input": ":rocket: feature request", + "output": [ + "ideas" + ] + }, + { + "input": "jira", + "output": [ + "projectManagement" + ] + }, + { + "input": "survey", + "output": [ + "review" + ] + }, + { + "input": "behavioral user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "multi module", + "output": [ + "maintenance" + ] + }, + { + "input": "discussion :speech_balloon:", + "output": [ + "ideas" + ] + }, + { + "input": "mixing", + "output": [ + "audio" + ] + }, + { + "input": "0 - backlog", + "output": [ + "null" + ] + }, + { + "input": "update", + "output": [ + "maintenance" + ] + }, + { + "input": "present", + "output": [ + "talk" + ] + }, + { + "input": "modules", + "output": [ + "code" + ] + }, + { + "input": "lang-julia", + "output": [ + "code" + ] + }, + { + "input": "usability testing", + "output": [ + "userTesting" + ] + }, + { + "input": "vuln", + "output": [ + "security" + ] + }, + { + "input": "demo", + "output": [ + "example" + ] + }, + { + "input": "corporate event", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "type: refactor", + "output": [ + "code" + ] + }, + { + "input": "spam", + "output": [ + "null" + ] + }, + { + "input": "definition:bug", + "output": [ + "bug" + ] + }, + { + "input": "help wanted", + "output": [ + "null" + ] + }, + { + "input": "type: idea", + "output": [ + "ideas" + ] + }, + { + "input": ":bulb: proposal", + "output": [ + "ideas" + ] + }, + { + "input": "handshakes", + "output": [ + "business" + ] + }, + { + "input": "platform", + "output": [ + "platform" + ] + }, + { + "input": "cli", + "output": [ + "code" + ] + }, + { + "input": "wave", + "output": [ + "a11y" + ] + }, + { + "input": "ansible", + "output": [ + "infra" + ] + }, + { + "input": "lang-convert", + "output": [ + "translation" + ] + }, + { + "input": "feat: eslint", + "output": [ + "maintenance" + ] + }, + { + "input": "gdpr", + "output": [ + "security" + ] + }, + { + "input": "type: doc update", + "output": [ + "doc" + ] + }, + { + "input": "spec: classes", + "output": [ + "doc" + ] + }, + { + "input": "websocket", + "output": [ + "tool" + ] + }, + { + "input": "android", + "output": [ + "platform" + ] + }, + { + "input": "speach", + "output": [ + "talk" + ] + }, + { + "input": "pr: bug fix :bug:", + "output": [ + "bug" + ] + }, + { + "input": "a/b testing", + "output": [ + "userTesting" + ] + }, + { + "input": "chef", + "output": [ + "infra" + ] + }, + { + "input": "patreon", + "output": [ + "financial" + ] + }, + { + "input": "pr: reviewed-changes-requested", + "output": [ + "null" + ] + }, + { + "input": "on hold", + "output": [ + "null" + ] + }, + { + "input": "ui test", + "output": [ + "test" + ] + }, + { + "input": "analysis", + "output": [ + "review" + ] + }, + { + "input": "pr: needs review", + "output": [ + "null" + ] + }, + { + "input": "component: build infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "youtube", + "output": [ + "video" + ] + }, + { + "input": "spec: decorators (legacy)", + "output": [ + "doc" + ] + }, + { + "input": "deployment", + "output": [ + "infra" + ] + }, + { + "input": "mentorship", + "output": [ + "mentoring" + ] + }, + { + "input": "feat: typescript", + "output": [ + "code" + ] + }, + { + "input": "feat: cli", + "output": [ + "code" + ] + }, + { + "input": "utils", + "output": [ + "plugin" + ] + }, + { + "input": "didactic", + "output": [ + "tutorial" + ] + }, + { + "input": "story", + "output": [ + "content" + ] + }, + { + "input": "academia", + "output": [ + "research" + ] + }, + { + "input": "component: developer tools", + "output": [ + "tool" + ] + }, + { + "input": "inspiration", + "output": [ + "ideas" + ] + }, + { + "input": "business process", + "output": [ + "business" + ] + }, + { + "input": "sustain", + "output": [ + "maintenance" + ] + }, + { + "input": "confirmed", + "output": [ + "null" + ] + }, + { + "input": "type: question :grey_question:", + "output": [ + "question" + ] + }, + { + "input": "cmty:question", + "output": [ + "question" + ] + }, + { + "input": "need-info", + "output": [ + "null" + ] + }, + { + "input": "sustenance", + "output": [ + "maintenance" + ] + }, + { + "input": "good first issue", + "output": [ + "null" + ] + }, + { + "input": "kind/discussion", + "output": [ + "ideas" + ] + }, + { + "input": "palette", + "output": [ + "design" + ] + }, + { + "input": "azure ad", + "output": [ + "infra" + ] + }, + { + "input": "data collection", + "output": [ + "data" + ] + }, + { + "input": "external-bugs", + "output": [ + "bug" + ] + }, + { + "input": "deal", + "output": [ + "business" + ] + }, + { + "input": "hacking", + "output": [ + "security" + ] + }, + { + "input": "kind/question", + "output": [ + "question" + ] + }, + { + "input": "video", + "output": [ + "video" + ] + }, + { + "input": "component: test utils", + "output": [ + "test" + ] + }, + { + "input": "hsv", + "output": [ + "design" + ] + }, + { + "input": "thesis", + "output": [ + "content" + ] + }, + { + "input": "pentesting", + "output": [ + "security" + ] + }, + { + "input": "design", + "output": [ + "design" + ] + }, + { + "input": "website copy", + "output": [ + "content" + ] + }, + { + "input": "type: bug :bug:", + "output": [ + "bug" + ] + }, + { + "input": "guide", + "output": [ + "tutorial" + ] + }, + { + "input": "next meetup!", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "feat: ui", + "output": [ + "design" + ] + }, + { + "input": "mastering", + "output": [ + "audio" + ] + }, + { + "input": "steps", + "output": [ + "doc" + ] + }, + { + "input": "abandoned", + "output": [ + "null" + ] + }, + { + "input": "badges", + "output": [ + "doc" + ] + }, + { + "input": "sponsor", + "output": [ + "mentoring" + ] + }, + { + "input": "assess", + "output": [ + "test" + ] + }, + { + "input": "pr: merged", + "output": [ + "null" + ] + }, + { + "input": "vlog", + "output": [ + "video" + ] + }, + { + "input": "acceptance testing", + "output": [ + "test" + ] + }, + { + "input": "hot discussion", + "output": [ + "ideas" + ] + }, + { + "input": "tv", + "output": [ + "video" + ] + }, + { + "input": "soundtrack", + "output": [ + "audio" + ] + }, + { + "input": "design (category)", + "output": [ + "design" + ] + }, + { + "input": "ci/cd", + "output": [ + "infra" + ] + }, + { + "input": "multi-cloud", + "output": [ + "infra" + ] + }, + { + "input": "funding finder", + "output": [ + "fundingFinding" + ] + }, + { + "input": "difficulty: hard", + "output": [ + "null" + ] + }, + { + "input": "documentation :book:", + "output": [ + "doc" + ] + }, + { + "input": "diary", + "output": [ + "blog" + ] + }, + { + "input": "standard", + "output": [ + "doc" + ] + }, + { + "input": "colour", + "output": [ + "design" + ] + }, + { + "input": ":computer: desktop", + "output": [ + "platform" + ] + }, + { + "input": "flaw", + "output": [ + "bug" + ] + }, + { + "input": "reliability", + "output": [ + "maintenance" + ] + }, + { + "input": "feat: cli-service build", + "output": [ + "code" + ] + }, + { + "input": "blocked", + "output": [ + "null" + ] + }, + { + "input": "type: maintenance :construction:", + "output": [ + "maintenance" + ] + }, + { + "input": "ios", + "output": [ + "platform" + ] + }, + { + "input": "planned feature", + "output": [ + "ideas" + ] + }, + { + "input": "kind/feature-request", + "output": [ + "ideas" + ] + }, + { + "input": "rfc", + "output": [ + "ideas" + ] + }, + { + "input": "image", + "output": [ + "design" + ] + }, + { + "input": "stock", + "output": [ + "infra" + ] + }, + { + "input": "reminder", + "output": [ + "null" + ] + }, + { + "input": "status: review needed", + "output": [ + "null" + ] + }, + { + "input": "in review", + "output": [ + "null" + ] + }, + { + "input": "lang-crystal", + "output": [ + "code" + ] + }, + { + "input": "pr: breaking change", + "output": [ + "code" + ] + }, + { + "input": "phone", + "output": [ + "platform" + ] + }, + { + "input": "refactor", + "output": [ + "code" + ] + }, + { + "input": "monologue", + "output": [ + "talk" + ] + }, + { + "input": "pr: reviewed-approved", + "output": [ + "null" + ] + }, + { + "input": "new best practice", + "output": [ + "ideas" + ] + }, + { + "input": "lecture", + "output": [ + "tutorial" + ] + }, + { + "input": "backing", + "output": [ + "financial" + ] + }, + { + "input": "website", + "output": [ + "code" + ] + }, + { + "input": "browser issue", + "output": [ + "bug" + ] + }, + { + "input": "aws", + "output": [ + "infra" + ] + }, + { + "input": "pr: polish :nail_care:", + "output": [ + "maintenance" + ] + }, + { + "input": "article", + "output": [ + "content" + ] + }, + { + "input": "peer-review", + "output": [ + "review" + ] + }, + { + "input": "writer-needed", + "output": [ + "null" + ] + }, + { + "input": "eventstorming", + "output": [ + "ideas" + ] + }, + { + "input": "freemasonry icons", + "output": [ + "design" + ] + }, + { + "input": "lean", + "output": [ + "projectManagement" + ] + }, + { + "input": "cannot reproduce", + "output": [ + "null" + ] + }, + { + "input": "paas", + "output": [ + "platform" + ] + }, + { + "input": ".net core", + "output": [ + "code" + ] + }, + { + "input": "wiretap", + "output": [ + "security" + ] + }, + { + "input": "feat: unit-jest", + "output": [ + "test" + ] + }, + { + "input": "instruction", + "output": [ + "doc" + ] + }, + { + "input": "infrastructure", + "output": [ + "infra" + ] + }, + { + "input": "rgb", + "output": [ + "design" + ] + }, + { + "input": "ideas", + "output": [ + "ideas" + ] + }, + { + "input": "target:windows", + "output": [ + "platform" + ] + }, + { + "input": "funding call", + "output": [ + "fundingFinding" + ] + }, + { + "input": "iconography", + "output": [ + "design" + ] + }, + { + "input": "promote", + "output": [ + "promotion" + ] + }, + { + "input": "template", + "output": [ + "example" + ] + }, + { + "input": "support", + "output": [ + "null" + ] + }, + { + "input": "first-timers-only", + "output": [ + "null" + ] + }, + { + "input": "java", + "output": [ + "code" + ] + }, + { + "input": "cdn", + "output": [ + "platform" + ] + }, + { + "input": "pr: new dependency", + "output": [ + "ideas" + ] + }, + { + "input": "status: ready for deploy", + "output": [ + "null" + ] + }, + { + "input": "computer", + "output": [ + "platform" + ] + }, + { + "input": "troubleshooting", + "output": [ + "bug" + ] + }, + { + "input": "spec: bigint", + "output": [ + "doc" + ] + }, + { + "input": "spec: async generators", + "output": [ + "doc" + ] + }, + { + "input": "feature proposal", + "output": [ + "ideas" + ] + }, + { + "input": "e2e test", + "output": [ + "test" + ] + }, + { + "input": "approachability", + "output": [ + "a11y" + ] + }, + { + "input": "investment", + "output": [ + "financial" + ] + }, + { + "input": "conflicts", + "output": [ + "null" + ] + }, + { + "input": "optimisation", + "output": [ + "code" + ] + }, + { + "input": "kotlin", + "output": [ + "code" + ] + }, + { + "input": "planned for next release", + "output": [ + "null" + ] + }, + { + "input": "unconfirmed", + "output": [ + "null" + ] + }, + { + "input": "type: duplicate :repeat:", + "output": [ + "null" + ] + }, + { + "input": "devops: defend", + "output": [ + "infra" + ] + }, + { + "input": "blogging", + "output": [ + "blog" + ] + }, + { + "input": "friendliness", + "output": [ + "a11y" + ] + }, + { + "input": "i18n", + "output": [ + "translation" + ] + }, + { + "input": "cla signed", + "output": [ + "null" + ] + }, + { + "input": "icebox", + "output": [ + "platform" + ] + }, + { + "input": "meetup", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "examination", + "output": [ + "test" + ] + }, + { + "input": "mobile device support", + "output": [ + "platform" + ] + }, + { + "input": "component: component api", + "output": [ + "code" + ] + }, + { + "input": "spec: decorators", + "output": [ + "doc" + ] + }, + { + "input": "addon", + "output": [ + "plugin" + ] + }, + { + "input": "cracking", + "output": [ + "security" + ] + }, + { + "input": ":sparkles: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "component: hooks", + "output": [ + "code" + ] + }, + { + "input": "improved error handling", + "output": [ + "code" + ] + }, + { + "input": "needs repro", + "output": [ + "null" + ] + }, + { + "input": "upkeep", + "output": [ + "maintenance" + ] + }, + { + "input": "component: reactis", + "output": [ + "code" + ] + }, + { + "input": "pr: ready to be merged", + "output": [ + "null" + ] + }, + { + "input": "sample", + "output": [ + "example" + ] + }, + { + "input": ":white_check_mark: testing", + "output": [ + "test" + ] + }, + { + "input": "maintenance", + "output": [ + "maintenance" + ] + }, + { + "input": "external", + "output": [ + "plugin" + ] + }, + { + "input": "desktop", + "output": [ + "platform" + ] + }, + { + "input": "hacktoberfest", + "output": [ + "code" + ] + }, + { + "input": "data", + "output": [ + "data" + ] + }, + { + "input": "lang-dart", + "output": [ + "code" + ] + }, + { + "input": ".net framework", + "output": [ + "code" + ] + }, + { + "input": "icon", + "output": [ + "design" + ] + }, + { + "input": "grant finder", + "output": [ + "fundingFinding" + ] + }, + { + "input": "needs-research", + "output": [ + "null" + ] + }, + { + "input": "cybersec", + "output": [ + "security" + ] + }, + { + "input": "biz", + "output": [ + "business" + ] + }, + { + "input": "internationalization", + "output": [ + "translation" + ] + }, + { + "input": "utility-lib", + "output": [ + "plugin" + ] + }, + { + "input": "qa", + "output": [ + "test" + ] + }, + { + "input": "do not merge", + "output": [ + "null" + ] + }, + { + "input": "hacked", + "output": [ + "security" + ] + }, + { + "input": "how-to", + "output": [ + "tutorial" + ] + }, + { + "input": "beginner-friendly", + "output": [ + "null" + ] + }, + { + "input": "trello", + "output": [ + "projectManagement" + ] + }, + { + "input": "os", + "output": [ + "platform" + ] + }, + { + "input": "sound", + "output": [ + "audio" + ] + }, + { + "input": "docs improvement", + "output": [ + "doc" + ] + }, + { + "input": ":heavy_plus_sign: feature request", + "output": [ + "ideas" + ] + }, + { + "input": "glitch", + "output": [ + "bug" + ] + }, + { + "input": "cx", + "output": [ + "design" + ] + }, + { + "input": "dependencies", + "output": [ + "maintenance" + ] + }, + { + "input": "inquiry", + "output": [ + "question" + ] + }, + { + "input": "deno", + "output": [ + "platform" + ] + }, + { + "input": "area: crash", + "output": [ + "bug" + ] + }, + { + "input": "camera", + "output": [ + "video" + ] + }, + { + "input": "pr: wip", + "output": [ + "null" + ] + }, + { + "input": "devops: configure", + "output": [ + "infra" + ] + }, + { + "input": "component: dom", + "output": [ + "code" + ] + }, + { + "input": "programming", + "output": [ + "code" + ] + }, + { + "input": "test needed", + "output": [ + "null" + ] + }, + { + "input": "question :question:", + "output": [ + "question" + ] + }, + { + "input": "@font-face", + "output": [ + "design" + ] + }, + { + "input": "rgba", + "output": [ + "design" + ] + }, + { + "input": "parser-specific", + "output": [ + "tool" + ] + }, + { + "input": "pr: new feature", + "output": [ + "ideas" + ] + }, + { + "input": "wikipedia", + "output": [ + "doc" + ] + }, + { + "input": "shell", + "output": [ + "tool" + ] + }, + { + "input": "cmty:feature-request", + "output": [ + "ideas" + ] + }, + { + "input": "contributions", + "output": [ + "maintenance" + ] + }, + { + "input": "tryout", + "output": [ + "test" + ] + }, + { + "input": "needs review", + "output": [ + "null" + ] + }, + { + "input": "thought", + "output": [ + "ideas" + ] + }, + { + "input": "kind/bug", + "output": [ + "bug" + ] + }, + { + "input": "data analysis", + "output": [ + "data" + ] + }, + { + "input": "contenu", + "output": [ + "content" + ] + }, + { + "input": "feat/cli", + "output": [ + "code" + ] + }, + { + "input": "fund investigation", + "output": [ + "fundingFinding" + ] + }, + { + "input": "type: question", + "output": [ + "question" + ] + }, + { + "input": "type: enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "basecamp", + "output": [ + "projectManagement" + ] + }, + { + "input": "literature review", + "output": [ + "research" + ] + }, + { + "input": "needs docs", + "output": [ + "null" + ] + }, + { + "input": "socket.io client", + "output": [ + "tool" + ] + }, + { + "input": "fiscal", + "output": [ + "financial" + ] + }, + { + "input": "user testing", + "output": [ + "userTesting" + ] + }, + { + "input": "debug information", + "output": [ + "bug" + ] + }, + { + "input": "frontend", + "output": [ + "code" + ] + }, + { + "input": "area/cli", + "output": [ + "infra" + ] + }, + { + "input": "upstream", + "output": [ + "null" + ] + }, + { + "input": "question :raising_hand:", + "output": [ + "question" + ] + }, + { + "input": "style", + "output": [ + "design" + ] + }, + { + "input": "clean up", + "output": [ + "maintenance" + ] + }, + { + "input": "motif", + "output": [ + "design" + ] + }, + { + "input": "to merge", + "output": [ + "null" + ] + }, + { + "input": "event", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "status: help wanted", + "output": [ + "null" + ] + }, + { + "input": "priority: medium", + "output": [ + "null" + ] + }, + { + "input": "financial backing", + "output": [ + "fundingFinding" + ] + }, + { + "input": "ruby", + "output": [ + "code" + ] + }, + { + "input": "es7", + "output": [ + "code" + ] + }, + { + "input": "warrant", + "output": [ + "security" + ] + }, + { + "input": "cmty:status:cancelled", + "output": [ + "null" + ] + }, + { + "input": "plan", + "output": [ + "ideas" + ] + }, + { + "input": "hackathon", + "output": [ + "code" + ] + }, + { + "input": ":beginner: documentation", + "output": [ + "doc" + ] + }, + { + "input": "typography", + "output": [ + "design" + ] + }, + { + "input": "counsel", + "output": [ + "mentoring" + ] + }, + { + "input": "recording", + "output": [ + "audio" + ] + }, + { + "input": "crowdin", + "output": [ + "translation" + ] + }, + { + "input": "component: eslint rules", + "output": [ + "maintenance" + ] + }, + { + "input": "difficulty: easy", + "output": [ + "null" + ] + }, + { + "input": "repare", + "output": [ + "maintenance" + ] + }, + { + "input": "conference", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "great insight", + "output": [ + "ideas" + ] + }, + { + "input": "phd", + "output": [ + "research" + ] + }, + { + "input": "documentation :orange_book:", + "output": [ + "doc" + ] + }, + { + "input": "type: invalid :x:", + "output": [ + "null" + ] + }, + { + "input": "needs changelog", + "output": [ + "null" + ] + }, + { + "input": "feat: e2e-cypress", + "output": [ + "test" + ] + }, + { + "input": ":lipstick: ui", + "output": [ + "design" + ] + }, + { + "input": "1 - ready", + "output": [ + "null" + ] + }, + { + "input": "backdoor", + "output": [ + "security" + ] + }, + { + "input": "fund collection", + "output": [ + "fundingFinding" + ] + }, + { + "input": "approved", + "output": [ + "null" + ] + }, + { + "input": "talk", + "output": [ + "talk" + ] + }, + { + "input": "subtitle", + "output": [ + "translation" + ] + }, + { + "input": "funding research", + "output": [ + "fundingFinding" + ] + }, + { + "input": "todo :spiral_notepad:", + "output": [ + "maintenance" + ] + }, + { + "input": "review", + "output": [ + "review" + ] + }, + { + "input": "user interface", + "output": [ + "design" + ] + }, + { + "input": "critical", + "output": [ + "null" + ] + }, + { + "input": "business (category)", + "output": [ + "business" + ] + }, + { + "input": "privacy", + "output": [ + "security" + ] + }, + { + "input": "tests", + "output": [ + "test" + ] + }, + { + "input": "duplicate", + "output": [ + "null" + ] + }, + { + "input": "pr: breaking change :boom:", + "output": [ + "code" + ] + }, + { + "input": "web app", + "output": [ + "code" + ] + }, + { + "input": "test", + "output": [ + "test" + ] + }, + { + "input": "check", + "output": [ + "review" + ] + }, + { + "input": "documentation", + "output": [ + "doc" + ] + }, + { + "input": "television", + "output": [ + "video" + ] + }, + { + "input": "uat", + "output": [ + "test" + ] + }, + { + "input": "backer", + "output": [ + "financial" + ] + }, + { + "input": "exploit", + "output": [ + "security" + ] + }, + { + "input": "requires upstream change", + "output": [ + "code" + ] + }, + { + "input": "travis-yml", + "output": [ + "infra" + ] + }, + { + "input": "node", + "output": [ + "platform" + ] + }, + { + "input": "dev experience", + "output": [ + "design" + ] + }, + { + "input": "pr: bug fix", + "output": [ + "bug" + ] + }, + { + "input": "backend", + "output": [ + "code" + ] + }, + { + "input": "data cleaning", + "output": [ + "data" + ] + }, + { + "input": "pr: internal :house:", + "output": [ + "code" + ] + }, + { + "input": ":question: question", + "output": [ + "question" + ] + }, + { + "input": "technical debt", + "output": [ + "maintenance" + ] + }, + { + "input": "core", + "output": [ + "maintenance" + ] + }, + { + "input": "client test", + "output": [ + "userTesting" + ] + }, + { + "input": "weekly-digest", + "output": [ + "blog" + ] + }, + { + "input": "component: shallow renderer", + "output": [ + "code" + ] + }, + { + "input": "commerce", + "output": [ + "business" + ] + }, + { + "input": "browser: ie", + "output": [ + "platform" + ] + }, + { + "input": "hsl", + "output": [ + "design" + ] + }, + { + "input": "status: left out", + "output": [ + "null" + ] + }, + { + "input": ".net standard", + "output": [ + "code" + ] + }, + { + "input": "pr welcome", + "output": [ + "null" + ] + }, + { + "input": "opinions needed", + "output": [ + "ideas" + ] + }, + { + "input": "documents", + "output": [ + "doc" + ] + }, + { + "input": "legacy", + "output": [ + "maintenance" + ] + }, + { + "input": "grafana", + "output": [ + "infra" + ] + }, + { + "input": "react native", + "output": [ + "code" + ] + }, + { + "input": "lang-go", + "output": [ + "code" + ] + }, + { + "input": "tutorial", + "output": [ + "tutorial" + ] + }, + { + "input": "plugin", + "output": [ + "plugin" + ] + }, + { + "input": "logo", + "output": [ + "design" + ] + }, + { + "input": ":grey_question: question", + "output": [ + "question" + ] + }, + { + "input": "refactoring", + "output": [ + "code" + ] + }, + { + "input": "browser: safari", + "output": [ + "platform" + ] + }, + { + "input": "saltstack", + "output": [ + "infra" + ] + }, + { + "input": "status: available", + "output": [ + "null" + ] + }, + { + "input": "component: server rendering", + "output": [ + "code" + ] + }, + { + "input": "htmlfile", + "output": [ + "code" + ] + }, + { + "input": "theorem", + "output": [ + "ideas" + ] + }, + { + "input": "social", + "output": [ + "eventOrganizing" + ] + }, + { + "input": "internationalisation", + "output": [ + "translation" + ] + }, + { + "input": "definition:enhancement", + "output": [ + "maintenance" + ] + }, + { + "input": "enquire", + "output": [ + "question" + ] + }, + { + "input": "packaging", + "output": [ + "platform" + ] + }, + { + "input": "lang-r", + "output": [ + "code" + ] + }, + { + "input": "type: regression :boom:", + "output": [ + "bug" + ] + }, + { + "input": "regression test", + "output": [ + "test" + ] + }, + { + "input": "new api proposal", + "output": [ + "ideas" + ] + }, + { + "input": "container", + "output": [ + "infra" + ] + }, + { + "input": "opencollective", + "output": [ + "financial" + ] + }, + { + "input": "bug report", + "output": [ + "bug" + ] + }, + { + "input": "type: performance", + "output": [ + "maintenance" + ] + }, + { + "input": "new definition", + "output": [ + "code" + ] + }, + { + "input": "pr: documentation", + "output": [ + "doc" + ] + }, + { + "input": ":boom: regression", + "output": [ + "bug" + ] + }, + { + "input": "clickup", + "output": [ + "projectManagement" + ] + }, + { + "input": "docs", + "output": [ + "doc" + ] + }, + { + "input": "installer", + "output": [ + "tool" + ] + }, + { + "input": "statement", + "output": [ + "ideas" + ] + }, + { + "input": "gcp", + "output": [ + "infra" + ] + }, + { + "input": "bug", + "output": [ + "bug" + ] + }, + { + "input": "opinion", + "output": [ + "ideas" + ] + }, + { + "input": "accepted", + "output": [ + "null" + ] + }, + { + "input": "html", + "output": [ + "code" + ] + }, + { + "input": "a11y", + "output": [ + "a11y" + ] + }, + { + "input": "general js", + "output": [ + "code" + ] + }, + { + "input": "unit test", + "output": [ + "test" + ] + }, + { + "input": "speak", + "output": [ + "talk" + ] + }, + { + "input": "brainstorming", + "output": [ + "ideas" + ] + }, + { + "input": "backup", + "output": [ + "maintenance" + ] + }, + { + "input": "status: accepted", + "output": [ + "null" + ] + }, + { + "input": "language", + "output": [ + "translation" + ] + }, + { + "input": "bugfix", + "output": [ + "bug" + ] + }, + { + "input": "question", + "output": [ + "question" + ] + }, + { + "input": "k8s", + "output": [ + "infra" + ] + }, + { + "input": "scrum", + "output": [ + "projectManagement" + ] + }, + { + "input": "paper", + "output": [ + "content" + ] + }, + { + "input": "upstream bug", + "output": [ + "bug" + ] + }, + { + "input": "library", + "output": [ + "tool" + ] + }, + { + "input": "stale", + "output": [ + "null" + ] + }, + { + "input": "testing", + "output": [ + "test" + ] + }, + { + "input": "optimization", + "output": [ + "code" + ] + }, + { + "input": "tv show", + "output": [ + "video" + ] + }, + { + "input": ":apple: ios", + "output": [ + "platform" + ] + }, + { + "input": "priority: low", + "output": [ + "null" + ] + }, + { + "input": "spec: async functions", + "output": [ + "doc" + ] + }, + { + "input": "target:gnu/linux", + "output": [ + "platform" + ] + }, + { + "input": "focus groups", + "output": [ + "userTesting" + ] + }, + { + "input": "dependency-update", + "output": [ + "maintenance" + ] + }, + { + "input": "dependency related", + "output": [ + "maintenance" + ] + }, + { + "input": "wip", + "output": [ + "null" + ] + }, + { + "input": "bootstrap", + "output": [ + "tool" + ] + }, + { + "input": "developer experience", + "output": [ + "design" + ] + }, + { + "input": "breaking change", + "output": [ + "code" + ] + }, + { + "input": "usability", + "output": [ + "a11y" + ] + }, + { + "input": "*nix", + "output": [ + "platform" + ] + }, + { + "input": "externs", + "output": [ + "plugin" + ] + }, + { + "input": "critique", + "output": [ + "review" + ] + }, + { + "input": "prince2", + "output": [ + "projectManagement" + ] + }, + { + "input": "demonstration", + "output": [ + "example" + ] + }, + { + "input": "pr: dependency ⬆️", + "output": [ + "maintenance" + ] + }, + { + "input": "pr: docs :memo:", + "output": [ + "doc" + ] + }, + { + "input": "windows", + "output": [ + "platform" + ] + }, + { + "input": "revisitinfuture", + "output": [ + "ideas" + ] + }, + { + "input": "tips", + "output": [ + "ideas" + ] + }, + { + "input": "reference", + "output": [ + "example" + ] + }, + { + "input": "priority: high", + "output": [ + "null" + ] + }, + { + "input": "cmty:bug-report", + "output": [ + "bug" + ] + } + ] + } +} \ No newline at end of file