resuml 1.20.1 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/core.ts","../src/ats/i18n/en.ts","../src/ats/i18n/de.ts","../src/ats/i18n/index.ts","../src/ats/genericChecks.ts","../data/skills/skills.json","../src/ats/skills/matcher.ts","../src/ats/skills/index.ts","../src/ats/jdMatcher.ts","../src/ats/scoring.ts","../src/ats/index.ts","../src/utils/themeLoader.ts","../src/utils/resumeTemplate.ts","../src/utils/themeInfo.ts"],"sourcesContent":["// Placeholder for core logic\n\nimport { parse } from 'yaml';\nimport merge from 'lodash.merge';\nimport { validate } from '@jsonresume/schema';\nimport type { ResumeSchema as Resume } from './types/resume';\n\nexport type { Resume };\n\n/**\n * Merges and validates resume data objects against the JSON Resume schema.\n * @param yamlContents - An array of YAML strings containing resume data.\n * @returns The merged and validated resume data.\n * @throws Error if validation fails.\n */\nexport async function processResumeData(yamlContents: string[]): Promise<Resume> {\n if (yamlContents.length === 0) {\n throw new Error('No YAML content provided for processing.');\n }\n\n // Parse YAML content and filter out invalid objects\n const dataObjects = yamlContents\n .map((content) => {\n try {\n return parse(content) as Partial<Resume>;\n } catch (error) {\n console.warn('Failed to parse YAML content:', error);\n return null;\n }\n })\n .filter((data): data is Partial<Resume> => typeof data === 'object' && data !== null);\n\n if (dataObjects.length === 0) {\n throw new Error('No valid YAML content found after parsing.');\n }\n\n // Custom array merge to ensure arrays are concatenated\n const customizer = (objValue: unknown, srcValue: unknown) => {\n if (Array.isArray(objValue)) {\n return (objValue as unknown[]).concat(srcValue as unknown[]);\n }\n return undefined; // Let lodash handle it\n };\n\n // Merge data: Concatenate arrays, deep merge objects\n const mergedData = dataObjects.reduce((acc, data) => merge(acc, data, customizer), {});\n\n // Validate using the official JSON Resume validator\n return new Promise((resolve, reject) => {\n validate(mergedData, (errors, isValid) => {\n if (!isValid) {\n reject(\n new Error(`Resume data failed schema validation: ${JSON.stringify(errors, null, 2)}`)\n );\n } else {\n resolve(mergedData);\n }\n });\n });\n}\n","export interface LanguageData {\n actionVerbs: string[];\n pronouns: string[];\n stopWords: string[];\n}\n\nconst en: LanguageData = {\n actionVerbs: [\n // Leadership & Management\n 'achieved', 'administered', 'advanced', 'allocated', 'approved', 'assigned',\n 'authorized', 'chaired', 'consolidated', 'coordinated', 'delegated', 'directed',\n 'established', 'executed', 'headed', 'hired', 'hosted', 'led', 'managed',\n 'mentored', 'motivated', 'orchestrated', 'organized', 'oversaw', 'planned',\n 'presided', 'prioritized', 'produced', 'recruited', 'spearheaded', 'supervised',\n // Technical & Engineering\n 'architected', 'automated', 'built', 'coded', 'configured', 'debugged',\n 'deployed', 'designed', 'developed', 'devised', 'engineered', 'implemented',\n 'installed', 'integrated', 'launched', 'maintained', 'migrated', 'modernized',\n 'optimized', 'overhauled', 'programmed', 'prototyped', 'refactored',\n 'reengineered', 'resolved', 'restructured', 'revamped', 'scaled',\n 'standardized', 'streamlined', 'tested', 'troubleshot', 'upgraded',\n // Achievement & Impact\n 'accelerated', 'accomplished', 'boosted', 'completed', 'contributed',\n 'converted', 'decreased', 'delivered', 'doubled', 'earned', 'eliminated',\n 'exceeded', 'expanded', 'expedited', 'generated', 'grew', 'improved',\n 'increased', 'maximized', 'minimized', 'outperformed', 'pioneered',\n 'recovered', 'reduced', 'saved', 'simplified', 'solved', 'surpassed',\n 'transformed', 'tripled',\n // Communication & Collaboration\n 'advised', 'advocated', 'briefed', 'collaborated', 'communicated',\n 'consulted', 'convinced', 'counseled', 'defined', 'demonstrated',\n 'documented', 'educated', 'facilitated', 'guided', 'influenced',\n 'informed', 'instructed', 'liaised', 'negotiated', 'partnered',\n 'persuaded', 'presented', 'promoted', 'proposed', 'published',\n 'recommended', 'represented', 'trained',\n // Analysis & Research\n 'analyzed', 'assessed', 'audited', 'benchmarked', 'calculated',\n 'compared', 'compiled', 'conducted', 'discovered', 'evaluated',\n 'examined', 'explored', 'forecasted', 'identified', 'inspected',\n 'interpreted', 'investigated', 'mapped', 'measured', 'modeled',\n 'monitored', 'quantified', 'researched', 'reviewed', 'surveyed',\n 'synthesized', 'tracked', 'validated', 'verified',\n // Creation & Innovation\n 'conceptualized', 'crafted', 'created', 'customized', 'formulated',\n 'founded', 'initiated', 'innovated', 'introduced', 'invented',\n 'originated', 'shaped',\n ],\n pronouns: ['i', 'me', 'my', 'mine', 'myself', 'we', 'our', 'ours'],\n stopWords: [\n // Articles & determiners\n 'a', 'an', 'the', 'and', 'or', 'but', 'in', 'on', 'at', 'to', 'for',\n 'of', 'with', 'by', 'from', 'is', 'was', 'are', 'were', 'be', 'been',\n 'being', 'have', 'has', 'had', 'do', 'does', 'did', 'will', 'would',\n 'could', 'should', 'may', 'might', 'shall', 'can', 'this', 'that',\n 'these', 'those', 'it', 'its', 'as', 'if', 'not', 'no', 'so', 'up',\n 'out', 'about', 'into', 'over', 'after', 'before', 'between', 'under',\n 'above', 'below', 'all', 'each', 'every', 'both', 'few', 'more',\n 'most', 'other', 'some', 'such', 'than', 'too', 'very',\n // Pronouns & possessives (also checked by pronoun check, but filter from JD keywords)\n 'you', 'your', 'yours', 'yourself', 'we', 'our', 'ours', 'ourselves',\n 'they', 'them', 'their', 'theirs', 'he', 'she', 'his', 'her', 'hers',\n 'who', 'whom', 'whose', 'which', 'what', 'where', 'when', 'how', 'why',\n // Common JD filler words (not meaningful for skill matching)\n 'able', 'also', 'across', 'already', 'always', 'among', 'any', 'apply',\n 'become', 'believe', 'best', 'bring', 'change', 'come', 'committed',\n 'company', 'comfortable', 'critical', 'current', 'day', 'desired',\n 'either', 'end', 'ensure', 'environment', 'equal', 'even', 'excellent',\n 'exciting', 'exceptional', 'expected', 'experience', 'fast', 'field',\n 'find', 'first',\n 'focused', 'follow', 'get', 'give', 'go', 'going', 'good', 'great',\n 'group', 'grow', 'growing', 'growth', 'help', 'here', 'high', 'highly',\n 'ideal', 'impact', 'important', 'include', 'includes', 'including',\n 'industry', 'interested', 'job', 'join', 'just', 'keep', 'key', 'know',\n 'large', 'latest', 'lead', 'level', 'like', 'location', 'long', 'look',\n 'looking', 'love', 'make', 'many', 'much', 'must', 'need', 'new',\n 'next', 'offer', 'one', 'only', 'open', 'opportunity', 'order',\n 'others', 'own', 'pace', 'part', 'partner', 'passionate', 'people',\n 'per', 'play', 'plus', 'position', 'preferred', 'provide', 'put',\n 'qualifications', 'quickly', 'range', 'related', 'required',\n 'requirements', 'requirement', 'responsible', 'responsibilities',\n 'responsibility', 'result', 'right', 'role', 'run',\n 'same', 'see', 'seek', 'seeking', 'set', 'several', 'since',\n 'skills', 'someone', 'start', 'state', 'still', 'strong', 'success',\n 'successful', 'support', 'sure', 'take', 'team', 'then', 'there',\n 'thing', 'think', 'through', 'time', 'together', 'top', 'truly',\n 'try', 'two', 'type', 'use', 'used', 'using', 'value', 'want',\n 'way', 'well', 'while', 'within', 'without', 'work', 'working',\n 'world', 'would', 'year', 'years',\n // Section headers & structural words (not technical skills)\n 'description', 'overview', 'summary', 'duties', 'bachelor', 'bachelors',\n 'master', 'masters', 'degree', 'phd', 'minimum', 'preferred',\n 'implement', 'process', 'robust', 'consistent', 'operations',\n // URL/email/domain fragments\n 'http', 'https', 'www', 'com', 'org', 'net', 'mailto',\n // Resume/YAML schema field names (in case raw YAML is pasted)\n 'name', 'keywords', 'highlights', 'startdate', 'enddate', 'website',\n 'profiles', 'basics', 'position', 'institution', 'studytype',\n 'fluency', 'issuer', 'network', 'username', 'countrycode', 'region',\n // Generic nouns that aren't skills\n 'product', 'company', 'service', 'services', 'platform', 'solutions',\n 'ability', 'opportunity', 'candidate', 'applicant', 'position',\n 'salary', 'compensation', 'benefits', 'perks', 'bonus',\n 'development', 'management', 'knowledge', 'modern', 'advanced',\n 'practices', 'nice', 'technologies', 'technology', 'frameworks',\n 'framework', 'tools', 'data', 'based', 'contribute', 'contributions',\n 'migration', 'leading', 'source', 'visit',\n // Common verbs & verb forms (not technical skills, supplement action verbs list)\n 'collaborate', 'collaborating', 'collaboratively', 'communicate',\n 'communicating', 'contributing', 'coordinate', 'coordinating',\n 'demonstrate', 'demonstrating', 'design', 'designing', 'designed',\n 'develop', 'developing', 'developed', 'drive', 'driving', 'driven',\n 'enable', 'enabling', 'evaluate', 'evaluating', 'execute', 'executing',\n 'facilitate', 'facilitating', 'identify', 'identifying', 'influence',\n 'influencing', 'interact', 'interacting', 'lead', 'leverage',\n 'leveraging', 'manage', 'managing', 'mentor', 'mentoring', 'operate',\n 'operating', 'optimize', 'optimizing', 'participate', 'participating',\n 'report', 'reporting', 'solve', 'solving', 'understand', 'understanding',\n // Common adjectives & descriptors (not technical skills)\n 'fluent', 'proficient', 'deep', 'solid', 'proven', 'hands-on',\n 'detail-oriented', 'results-driven', 'self-motivated', 'proactive',\n 'creative', 'innovative', 'dynamic', 'strategic', 'analytical',\n 'collaborative', 'effective', 'efficient', 'reliable', 'flexible',\n 'adaptable', 'motivated', 'dedicated', 'capable', 'qualified',\n 'diverse', 'inclusive', 'global', 'local', 'remote', 'hybrid',\n 'onsite', 'full-time', 'part-time', 'contract', 'permanent',\n // Role titles & department names (not skills themselves)\n 'designer', 'designers', 'developer', 'developers', 'engineer',\n 'engineers', 'manager', 'managers', 'director', 'analyst', 'analysts',\n 'architect', 'architects', 'consultant', 'consultants', 'specialist',\n 'specialists', 'coordinator', 'lead', 'principal', 'staff', 'junior',\n 'mid', 'department', 'organization', 'division', 'stakeholder',\n 'stakeholders', 'client', 'clients', 'customer', 'customers',\n // Date & time words\n 'date', 'dates', 'month', 'months', 'week', 'weeks', 'daily',\n 'weekly', 'monthly', 'quarterly', 'annual', 'annually',\n // More generic words that aren't skills\n 'code', 'coding', 'url', 'contact', 'information', 'apply', 'application',\n 'review', 'reviews', 'quality', 'scale', 'scalable', 'system', 'systems',\n 'solution', 'feature', 'features', 'project', 'projects', 'build',\n 'building', 'deliver', 'delivery', 'cross-functional',\n ],\n};\n\nexport default en;\n","import type { LanguageData } from './en';\n\nconst de: LanguageData = {\n actionVerbs: [\n // Führung & Management\n 'geleitet', 'geführt', 'koordiniert', 'organisiert', 'verwaltet',\n 'delegiert', 'beaufsichtigt', 'betreut', 'eingestellt', 'motiviert',\n 'verantwortet', 'gesteuert', 'überwacht', 'priorisiert', 'geplant',\n // Technik & Entwicklung\n 'entwickelt', 'implementiert', 'programmiert', 'konfiguriert', 'automatisiert',\n 'deployt', 'gebaut', 'entworfen', 'integriert', 'migriert', 'modernisiert',\n 'optimiert', 'refaktoriert', 'skaliert', 'standardisiert', 'getestet',\n 'aufgebaut', 'eingeführt', 'bereitgestellt', 'umgesetzt',\n // Leistung & Ergebnisse\n 'verbessert', 'gesteigert', 'reduziert', 'beschleunigt', 'erreicht',\n 'übertroffen', 'erweitert', 'vereinfacht', 'gelöst', 'transformiert',\n 'erhöht', 'verdoppelt', 'verdreifacht', 'generiert', 'gespart',\n 'maximiert', 'minimiert', 'eliminiert', 'geliefert', 'abgeschlossen',\n // Kommunikation & Zusammenarbeit\n 'beraten', 'präsentiert', 'dokumentiert', 'geschult', 'trainiert',\n 'vermittelt', 'kommuniziert', 'verhandelt', 'zusammengearbeitet',\n 'unterstützt', 'gefördert', 'empfohlen', 'vorgestellt', 'publiziert',\n // Analyse & Forschung\n 'analysiert', 'bewertet', 'evaluiert', 'untersucht', 'erforscht',\n 'identifiziert', 'gemessen', 'überwacht', 'validiert', 'verifiziert',\n 'geprüft', 'verglichen', 'recherchiert', 'quantifiziert',\n // Kreation & Innovation\n 'konzipiert', 'erstellt', 'gestaltet', 'initiiert', 'innoviert',\n 'eingeführt', 'gegründet', 'formuliert',\n ],\n pronouns: ['ich', 'mich', 'mir', 'mein', 'meine', 'meinem', 'meiner', 'meines', 'wir', 'unser', 'unsere'],\n stopWords: [\n 'ein', 'eine', 'einer', 'eines', 'einem', 'der', 'die', 'das', 'den',\n 'dem', 'des', 'und', 'oder', 'aber', 'in', 'an', 'auf', 'zu', 'für',\n 'von', 'mit', 'bei', 'aus', 'ist', 'war', 'sind', 'waren', 'wird',\n 'wurde', 'werden', 'hat', 'hatte', 'haben', 'hatten', 'sein', 'kann',\n 'könnte', 'soll', 'sollte', 'muss', 'musste', 'darf', 'diese',\n 'dieser', 'dieses', 'diesem', 'diesen', 'als', 'wenn', 'nicht',\n 'kein', 'keine', 'so', 'auch', 'noch', 'schon', 'nach', 'vor',\n 'über', 'unter', 'zwischen', 'durch', 'ohne', 'um', 'bis',\n 'alle', 'jede', 'jeder', 'jedes', 'mehr', 'viel', 'sehr',\n ],\n};\n\nexport default de;\n","import en from './en';\nimport de from './de';\nimport type { LanguageData } from './en';\n\nexport type { LanguageData };\n\nconst languages: Record<string, LanguageData> = { en, de };\n\nexport function getLanguageData(language: string): LanguageData {\n return languages[language] ?? languages['en'] ?? en;\n}\n","import type { ResumeSchema } from '../types/resume';\nimport type { AtsCheck } from './types';\nimport { getLanguageData } from './i18n/index';\n\ntype CheckFn = (resume: ResumeSchema, language: string) => AtsCheck;\n\nfunction wordCount(text: string): number {\n return text.trim().split(/\\s+/).filter(Boolean).length;\n}\n\nfunction getFirstWord(text: string): string {\n return text.trim().split(/\\s+/)[0]?.toLowerCase().replace(/[^a-zA-ZäöüßÄÖÜàáâãéèêëíìîïóòôõúùûüñç]/g, '') || '';\n}\n\nconst contactComplete: CheckFn = (resume) => {\n const b = resume.basics;\n const hasName = !!b?.name;\n const hasEmail = !!b?.email;\n const hasPhone = !!b?.phone;\n const hasCity = !!b?.location?.city;\n const fields = [hasName, hasEmail, hasPhone, hasCity];\n const presentCount = fields.filter(Boolean).length;\n const passed = presentCount === fields.length;\n const missing: string[] = [];\n if (!hasName) missing.push('name');\n if (!hasEmail) missing.push('email');\n if (!hasPhone) missing.push('phone');\n if (!hasCity) missing.push('location.city');\n\n return {\n id: 'contact-complete',\n category: 'contact',\n weight: 'high',\n passed,\n score: Math.round((presentCount / fields.length) * 100),\n message: passed\n ? 'Contact information is complete.'\n : `Missing contact fields: ${missing.join(', ')}.`,\n suggestion: passed ? undefined : `Add the following to your basics section: ${missing.join(', ')}.`,\n };\n};\n\nconst hasSummary: CheckFn = (resume) => {\n const summary = resume.basics?.summary?.trim();\n if (!summary) {\n return {\n id: 'has-summary',\n category: 'content',\n weight: 'high',\n passed: false,\n score: 0,\n message: 'No professional summary found.',\n suggestion: 'Add a 2-4 sentence professional summary to your basics section highlighting your experience and key skills.',\n };\n }\n const words = wordCount(summary);\n const tooShort = words < 15;\n const tooLong = words > 100;\n const passed = !tooShort && !tooLong;\n let score = 100;\n if (tooShort) score = Math.round((words / 15) * 60);\n if (tooLong) score = Math.max(60, 100 - (words - 100));\n\n return {\n id: 'has-summary',\n category: 'content',\n weight: 'high',\n passed,\n score,\n message: tooShort\n ? `Summary is too short (${words} words). Aim for 15-100 words.`\n : tooLong\n ? `Summary is too long (${words} words). Aim for 15-100 words.`\n : `Summary length is good (${words} words).`,\n suggestion: tooShort\n ? 'Expand your summary to describe your experience, expertise, and career goals in 15-100 words.'\n : tooLong\n ? 'Shorten your summary to the most impactful 15-100 words. Focus on key achievements and expertise.'\n : undefined,\n };\n};\n\nconst hasLinkedin: CheckFn = (resume) => {\n const profiles = resume.basics?.profiles || [];\n const linkedin = profiles.find(\n (p) => p.network?.toLowerCase() === 'linkedin' || p.url?.toLowerCase().includes('linkedin.com')\n );\n return {\n id: 'has-linkedin',\n category: 'contact',\n weight: 'medium',\n passed: !!linkedin,\n score: linkedin ? 100 : 0,\n message: linkedin ? 'LinkedIn profile found.' : 'No LinkedIn profile found.',\n suggestion: linkedin ? undefined : 'Add a LinkedIn profile to your basics.profiles section.',\n };\n};\n\nconst workHighlights: CheckFn = (resume) => {\n const work = resume.work || [];\n if (work.length === 0) {\n return {\n id: 'work-highlights',\n category: 'content',\n weight: 'high',\n passed: false,\n score: 0,\n message: 'No work experience entries found.',\n suggestion: 'Add work experience entries with highlights describing your accomplishments.',\n };\n }\n const minHighlights = 2;\n const entriesWithEnough = work.filter((w) => (w.highlights?.length || 0) >= minHighlights);\n const passed = entriesWithEnough.length === work.length;\n const score = Math.round((entriesWithEnough.length / work.length) * 100);\n const lacking = work\n .filter((w) => (w.highlights?.length || 0) < minHighlights)\n .map((w) => `\"${w.position || 'Unknown'} at ${w.name || 'Unknown'}\" (${w.highlights?.length || 0} highlights)`);\n\n return {\n id: 'work-highlights',\n category: 'content',\n weight: 'high',\n passed,\n score,\n message: passed\n ? 'All work entries have sufficient highlights.'\n : `Some work entries need more highlights: ${lacking.join('; ')}.`,\n suggestion: passed\n ? undefined\n : `Add at least ${minHighlights} bullet-point highlights to each work entry describing specific accomplishments.`,\n };\n};\n\nconst actionVerbs: CheckFn = (resume, language) => {\n const langData = getLanguageData(language);\n const verbs = new Set(langData.actionVerbs);\n const allHighlights: { text: string; source: string }[] = [];\n\n for (const w of resume.work || []) {\n for (const h of w.highlights || []) {\n allHighlights.push({ text: h, source: `${w.position || ''} at ${w.name || ''}` });\n }\n }\n for (const p of resume.projects || []) {\n for (const h of p.highlights || []) {\n allHighlights.push({ text: h, source: `project \"${p.name || ''}\"` });\n }\n }\n for (const v of resume.volunteer || []) {\n for (const h of v.highlights || []) {\n allHighlights.push({ text: h, source: `volunteer at ${v.organization || ''}` });\n }\n }\n\n if (allHighlights.length === 0) {\n return {\n id: 'action-verbs',\n category: 'content',\n weight: 'high',\n passed: false,\n score: 0,\n message: 'No highlights found to check for action verbs.',\n suggestion: 'Add highlights to your work, project, or volunteer entries starting with strong action verbs.',\n };\n }\n\n const withActionVerb = allHighlights.filter((h) => verbs.has(getFirstWord(h.text)));\n const withoutActionVerb = allHighlights.filter((h) => !verbs.has(getFirstWord(h.text)));\n const passed = withoutActionVerb.length === 0;\n const score = Math.round((withActionVerb.length / allHighlights.length) * 100);\n\n const examples = withoutActionVerb.slice(0, 3).map(\n (h) => `\"${h.text.substring(0, 60)}${h.text.length > 60 ? '...' : ''}\" (${h.source})`\n );\n\n return {\n id: 'action-verbs',\n category: 'content',\n weight: 'high',\n passed,\n score,\n message: passed\n ? 'All highlights start with action verbs.'\n : `${withoutActionVerb.length} of ${allHighlights.length} highlights don't start with an action verb.`,\n suggestion: passed\n ? undefined\n : `Start each highlight with a strong action verb (e.g., \"Developed\", \"Implemented\", \"Led\"). Fix: ${examples.join('; ')}.`,\n };\n};\n\nconst quantifiedImpact: CheckFn = (resume) => {\n const quantPattern = /\\d+%?|\\$[\\d,]+|[\\d,]+\\+?\\s*(users|clients|customers|people|team|members|projects|applications|servers|services|endpoints|requests|transactions)/i;\n const allHighlights: string[] = [];\n\n for (const w of resume.work || []) {\n allHighlights.push(...(w.highlights || []));\n }\n for (const p of resume.projects || []) {\n allHighlights.push(...(p.highlights || []));\n }\n\n if (allHighlights.length === 0) {\n return {\n id: 'quantified-impact',\n category: 'content',\n weight: 'medium',\n passed: false,\n score: 0,\n message: 'No highlights found to check for quantified impact.',\n suggestion: 'Add measurable results to your highlights (e.g., \"Reduced load time by 40%\", \"Managed team of 8\").',\n };\n }\n\n const quantified = allHighlights.filter((h) => quantPattern.test(h));\n const ratio = quantified.length / allHighlights.length;\n // At least 50% of highlights should have numbers\n const passed = ratio >= 0.5;\n const score = Math.min(100, Math.round(ratio * 200)); // 50% = 100 score\n\n return {\n id: 'quantified-impact',\n category: 'content',\n weight: 'medium',\n passed,\n score,\n message: passed\n ? `${quantified.length} of ${allHighlights.length} highlights include quantified results.`\n : `Only ${quantified.length} of ${allHighlights.length} highlights include numbers or metrics.`,\n suggestion: passed\n ? undefined\n : 'Add specific numbers, percentages, or metrics to your highlights (e.g., \"Improved performance by 30%\", \"Managed $2M budget\").',\n };\n};\n\nconst dateConsistency: CheckFn = (resume) => {\n const work = resume.work || [];\n if (work.length < 2) {\n return {\n id: 'date-consistency',\n category: 'structure',\n weight: 'medium',\n passed: true,\n score: 100,\n message: 'Date consistency check passed (fewer than 2 work entries).',\n };\n }\n\n const issues: string[] = [];\n\n // Check that each entry has a startDate\n for (const w of work) {\n if (!w.startDate) {\n issues.push(`\"${w.position || 'Unknown'} at ${w.name || 'Unknown'}\" is missing a start date.`);\n }\n }\n\n // Check for gaps > 6 months between consecutive jobs\n const sorted = [...work]\n .filter((w): w is typeof w & { startDate: string } => Boolean(w.startDate))\n .sort((a, b) => (a.startDate > b.startDate ? 1 : -1));\n\n for (let i = 0; i < sorted.length - 1; i++) {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n const current = sorted[i]!;\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n const next = sorted[i + 1]!;\n const endDate = current.endDate ?? current.startDate;\n const gapMs = new Date(next.startDate).getTime() - new Date(endDate).getTime();\n const gapMonths = gapMs / (1000 * 60 * 60 * 24 * 30);\n\n if (gapMonths > 6) {\n issues.push(\n `Gap of ~${Math.round(gapMonths)} months between \"${current.name ?? 'Unknown'}\" (ended ${endDate}) and \"${next.name ?? 'Unknown'}\" (started ${next.startDate}).`\n );\n }\n }\n\n const passed = issues.length === 0;\n return {\n id: 'date-consistency',\n category: 'structure',\n weight: 'medium',\n passed,\n score: passed ? 100 : Math.max(0, 100 - issues.length * 25),\n message: passed\n ? 'Work experience dates are consistent with no major gaps.'\n : `Date issues found: ${issues.join(' ')}`,\n suggestion: passed\n ? undefined\n : 'Ensure all work entries have start dates. If there are employment gaps, consider adding freelance, volunteer, or education entries to fill them.',\n };\n};\n\nconst skillsPopulated: CheckFn = (resume) => {\n const skills = resume.skills || [];\n const minCategories = 3;\n const categoriesWithKeywords = skills.filter((s) => s.keywords && s.keywords.length > 0);\n const passed = categoriesWithKeywords.length >= minCategories;\n const score = Math.min(100, Math.round((categoriesWithKeywords.length / minCategories) * 100));\n\n return {\n id: 'skills-populated',\n category: 'structure',\n weight: 'medium',\n passed,\n score,\n message: passed\n ? `${categoriesWithKeywords.length} skill categories with keywords found.`\n : `Only ${categoriesWithKeywords.length} skill categories with keywords found (need at least ${minCategories}).`,\n suggestion: passed\n ? undefined\n : `Add at least ${minCategories} skill categories with specific keywords (e.g., \"Languages: TypeScript, Python\", \"Frameworks: React, Node.js\").`,\n };\n};\n\nconst educationComplete: CheckFn = (resume) => {\n const education = resume.education || [];\n if (education.length === 0) {\n return {\n id: 'education-complete',\n category: 'structure',\n weight: 'low',\n passed: false,\n score: 0,\n message: 'No education entries found.',\n suggestion: 'Add at least one education entry with institution, area, and studyType.',\n };\n }\n\n const complete = education.filter((e) => e.institution && e.area && e.studyType);\n const passed = complete.length === education.length;\n const score = Math.round((complete.length / education.length) * 100);\n const incomplete = education\n .filter((e) => !e.institution || !e.area || !e.studyType)\n .map((e) => {\n const missing: string[] = [];\n if (!e.institution) missing.push('institution');\n if (!e.area) missing.push('area');\n if (!e.studyType) missing.push('studyType');\n return `\"${e.institution || 'Unknown'}\" missing: ${missing.join(', ')}`;\n });\n\n return {\n id: 'education-complete',\n category: 'structure',\n weight: 'low',\n passed,\n score,\n message: passed\n ? 'All education entries are complete.'\n : `Incomplete education entries: ${incomplete.join('; ')}.`,\n suggestion: passed\n ? undefined\n : 'Ensure each education entry has institution, area (field of study), and studyType (degree type).',\n };\n};\n\nconst noPronouns: CheckFn = (resume, language) => {\n const langData = getLanguageData(language);\n const pronounSet = new Set(langData.pronouns);\n\n const textBlocks: { text: string; source: string }[] = [];\n\n if (resume.basics?.summary) {\n textBlocks.push({ text: resume.basics.summary, source: 'summary' });\n }\n for (const w of resume.work || []) {\n if (w.summary) textBlocks.push({ text: w.summary, source: `work summary (${w.name || 'Unknown'})` });\n for (const h of w.highlights || []) {\n textBlocks.push({ text: h, source: `work highlight (${w.name || 'Unknown'})` });\n }\n }\n for (const p of resume.projects || []) {\n if (p.description) textBlocks.push({ text: p.description, source: `project (${p.name || 'Unknown'})` });\n for (const h of p.highlights || []) {\n textBlocks.push({ text: h, source: `project highlight (${p.name || 'Unknown'})` });\n }\n }\n\n const found: { pronoun: string; source: string }[] = [];\n for (const block of textBlocks) {\n const words = block.text.toLowerCase().split(/\\s+/);\n for (const word of words) {\n const clean = word.replace(/[^a-zA-ZäöüßÄÖÜ]/g, '');\n if (pronounSet.has(clean)) {\n found.push({ pronoun: clean, source: block.source });\n }\n }\n }\n\n const passed = found.length === 0;\n const uniquePronouns = [...new Set(found.map((f) => f.pronoun))];\n const examples = found.slice(0, 3).map((f) => `\"${f.pronoun}\" in ${f.source}`);\n\n return {\n id: 'no-pronouns',\n category: 'content',\n weight: 'medium',\n passed,\n score: passed ? 100 : Math.max(0, 100 - found.length * 15),\n message: passed\n ? 'No first-person pronouns found in resume content.'\n : `Found ${found.length} first-person pronoun(s): ${uniquePronouns.join(', ')}.`,\n suggestion: passed\n ? undefined\n : `Remove first-person pronouns from your resume. Instead of \"I managed a team\", write \"Managed a team\". Found: ${examples.join('; ')}.`,\n };\n};\n\nconst sectionCompleteness: CheckFn = (resume) => {\n const required = ['basics', 'work', 'education', 'skills'] as const;\n const present = required.filter((section) => {\n const value = resume[section];\n if (Array.isArray(value)) return value.length > 0;\n return value !== undefined;\n });\n const missing = required.filter((s) => !present.includes(s));\n const passed = missing.length === 0;\n\n return {\n id: 'section-completeness',\n category: 'structure',\n weight: 'low',\n passed,\n score: Math.round((present.length / required.length) * 100),\n message: passed\n ? 'All essential resume sections are present.'\n : `Missing essential sections: ${missing.join(', ')}.`,\n suggestion: passed ? undefined : `Add the following sections to your resume: ${missing.join(', ')}.`,\n };\n};\n\nexport const allChecks: CheckFn[] = [\n contactComplete,\n hasSummary,\n hasLinkedin,\n workHighlights,\n actionVerbs,\n quantifiedImpact,\n dateConsistency,\n skillsPopulated,\n educationComplete,\n noPronouns,\n sectionCompleteness,\n];\n\nexport function runGenericChecks(resume: ResumeSchema, language: string): AtsCheck[] {\n return allChecks.map((check) => check(resume, language));\n}\n","{\"version\":1,\"generatedAt\":\"2026-04-22T13:58:48.172Z\",\"sources\":[\"onet-29.0\",\"resuml-emerging\"],\"license\":\"O*NET: public domain; emerging list: MIT (this repo)\",\"count\":1869,\"skills\":[{\"id\":\"net\",\"canonical\":\".NET\",\"aliases\":[\".NET Core\",\"dotnet\"],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"10-key-calculators\",\"canonical\":\"10-key calculators\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"2ab-ilock-security-services\",\"canonical\":\"2AB iLock Security Services\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"3d-graphic-design\",\"canonical\":\"3D graphic design\",\"aliases\":[\"3D graphic design software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"3d-graphics\",\"canonical\":\"3D graphics\",\"aliases\":[\"3D graphics software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"3m-post-it-app\",\"canonical\":\"3M Post-it App\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"5am-glassbox-translational-research\",\"canonical\":\"5AM Glassbox Translational Research\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"a-mathematical-programming-language-ampl\",\"canonical\":\"A mathematical programming language AMPL\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"a-programming-language-apl\",\"canonical\":\"A programming language APL\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ab-initio\",\"canonical\":\"Ab Initio\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"abc-compiler\",\"canonical\":\"ABC Compiler\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"abc-the-aspectbench-compiler-for-aspectj\",\"canonical\":\"ABC: the AspectBench Compiler for AspectJ\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"access-management\",\"canonical\":\"Access management\",\"aliases\":[\"Access management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"accessdata-ftk\",\"canonical\":\"AccessData FTK\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"accessibility\",\"canonical\":\"Accessibility\",\"aliases\":[\"a11y\",\"WCAG\"],\"type\":\"practice\",\"hot\":true,\"sources\":[\"emerging\"]},{\"id\":\"acmestudio\",\"canonical\":\"AcmeStudio\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"acresso-installanywhere\",\"canonical\":\"Acresso InstallAnywhere\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"acronis-recovery-expert\",\"canonical\":\"Acronis Recovery Expert\",\"aliases\":[\"ARE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"actano-rplan\",\"canonical\":\"Actano Rplan\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"active-directory\",\"canonical\":\"Active directory\",\"aliases\":[\"Active directory software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"actix\",\"canonical\":\"Actix\",\"aliases\":[],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"actuate-eclipse-birt\",\"canonical\":\"Actuate Eclipse BIRT\",\"aliases\":[\"AEB\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ada\",\"canonical\":\"Ada\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"adaptive-metadata-manager\",\"canonical\":\"Adaptive Metadata Manager\",\"aliases\":[\"AMM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ademero-content-central\",\"canonical\":\"Ademero Content Central\",\"aliases\":[\"ACC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"adeptia-etl-suite\",\"canonical\":\"Adeptia ETL Suite\",\"aliases\":[\"AES\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"adexa-egps-suite\",\"canonical\":\"Adexa eGPS Suite\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ado-net\",\"canonical\":\"ADO.NET\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-acrobat\",\"canonical\":\"Adobe Acrobat\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-actionscript\",\"canonical\":\"Adobe ActionScript\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-after-effects\",\"canonical\":\"Adobe After Effects\",\"aliases\":[\"AAE\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-air\",\"canonical\":\"Adobe AIR\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-coldfusion\",\"canonical\":\"Adobe ColdFusion\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-creative-cloud\",\"canonical\":\"Adobe Creative Cloud\",\"aliases\":[\"Adobe Creative Cloud software\",\"ACC\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-director\",\"canonical\":\"Adobe Director\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-distiller\",\"canonical\":\"Adobe Distiller\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-dreamweaver\",\"canonical\":\"Adobe Dreamweaver\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-experience-manager\",\"canonical\":\"Adobe Experience Manager\",\"aliases\":[\"AEM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-flex\",\"canonical\":\"Adobe Flex\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-framemaker\",\"canonical\":\"Adobe FrameMaker\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-freehand-mx\",\"canonical\":\"Adobe FreeHand MX\",\"aliases\":[\"AFM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-illustrator\",\"canonical\":\"Adobe Illustrator\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-indesign\",\"canonical\":\"Adobe InDesign\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-macromedia-homesite\",\"canonical\":\"Adobe Macromedia HomeSite\",\"aliases\":[\"AMH\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-pagemaker\",\"canonical\":\"Adobe PageMaker\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-photoshop\",\"canonical\":\"Adobe Photoshop\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-postscript\",\"canonical\":\"Adobe PostScript\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"adobe-xd\",\"canonical\":\"Adobe XD\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"adp-workforce-now\",\"canonical\":\"ADP Workforce Now\",\"aliases\":[\"AWN\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"advanced-business-application-programming-abap\",\"canonical\":\"Advanced business application programming ABAP\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"advanced-numerical\",\"canonical\":\"Advanced numerical\",\"aliases\":[\"Advanced numerical software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"advanced-processing-and-imaging-optiview-ecm\",\"canonical\":\"Advanced Processing and Imaging OptiView ECM\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"aec-software-fasttrack-schedule\",\"canonical\":\"AEC Software FastTrack Schedule\",\"aliases\":[\"ASFS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"aerial-bucket-trucks\",\"canonical\":\"Aerial bucket trucks\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"agile\",\"canonical\":\"Agile\",\"aliases\":[\"Scrum\",\"Kanban\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"agronomic-modeling\",\"canonical\":\"Agronomic modeling\",\"aliases\":[\"Agronomic modeling software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"airflow\",\"canonical\":\"Airflow\",\"aliases\":[\"Apache Airflow\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"airmagnet-enterprise\",\"canonical\":\"AirMagnet Enterprise\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"airtable\",\"canonical\":\"Airtable\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ajax\",\"canonical\":\"AJAX\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"alfresco-software-alfresco\",\"canonical\":\"Alfresco Software Alfresco\",\"aliases\":[\"ASA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"algae\",\"canonical\":\"Algae\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"algorithmic\",\"canonical\":\"Algorithmic\",\"aliases\":[\"Algorithmic software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"algorithmic-language-algol\",\"canonical\":\"Algorithmic language ALGOL\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"allaire-coldfusion\",\"canonical\":\"Allaire ColdFusion\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"allscripts-healthcare-automation\",\"canonical\":\"Allscripts healthcare automation\",\"aliases\":[\"Allscripts healthcare automation software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"allscripts-professional-ehr\",\"canonical\":\"Allscripts Professional EHR\",\"aliases\":[\"APE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"allscripts-sunrise\",\"canonical\":\"Allscripts Sunrise\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"alteryx\",\"canonical\":\"Alteryx\",\"aliases\":[\"Alteryx software\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"altia-design\",\"canonical\":\"Altia Design\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"altova-mapforce\",\"canonical\":\"Altova MapForce\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"amazon-data-pipeline\",\"canonical\":\"Amazon Data Pipeline\",\"aliases\":[\"ADP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"amazon-dynamodb\",\"canonical\":\"Amazon DynamoDB\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"amazon-elastic-compute-cloud-ec2\",\"canonical\":\"Amazon Elastic Compute Cloud EC2\",\"aliases\":[\"AECCE\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"amazon-elastic-container-service-ecs\",\"canonical\":\"Amazon Elastic Container Service ECS\",\"aliases\":[\"AECSE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"amazon-kinesis\",\"canonical\":\"Amazon Kinesis\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"amazon-redshift\",\"canonical\":\"Amazon Redshift\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"amazon-simple-storage-service-s3\",\"canonical\":\"Amazon Simple Storage Service S3\",\"aliases\":[\"ASSSS\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"amazon-web-services-aws\",\"canonical\":\"Amazon Web Services AWS\",\"aliases\":[\"Amazon Web Services AWS software\",\"AWSA\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"amazon-web-services-aws-cloudformation\",\"canonical\":\"Amazon Web Services AWS CloudFormation\",\"aliases\":[\"AWSAC\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"amazon-web-services-aws-sagemaker\",\"canonical\":\"Amazon Web Services AWS SageMaker\",\"aliases\":[\"AWSAS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"american-national-standards-institute-ansi-c\",\"canonical\":\"American National Standards Institute ANSI C\",\"aliases\":[\"ANSIAC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"amkai-amkaicharts\",\"canonical\":\"Amkai AmkaiCharts\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ampl\",\"canonical\":\"AMPL\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"amplifier-probes\",\"canonical\":\"Amplifier probes\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"ams-realtime-projects\",\"canonical\":\"AMS REALTIME Projects\",\"aliases\":[\"ARP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"analyse-it\",\"canonical\":\"Analyse-it\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"analysis-and-visualization-of-time-sequences-avts\",\"canonical\":\"Analysis and Visualization of Time Sequences AVTS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"angoss-knowledgeseeker\",\"canonical\":\"Angoss KnowledgeSEEKER\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"angular\",\"canonical\":\"Angular\",\"aliases\":[\"AngularJS\",\"Angular.js\"],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"ansible\",\"canonical\":\"Ansible\",\"aliases\":[\"Ansible software\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"ant-design\",\"canonical\":\"Ant Design\",\"aliases\":[\"AntD\"],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"anthillpro\",\"canonical\":\"AnthillPro\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"anthropic\",\"canonical\":\"Anthropic\",\"aliases\":[\"Claude\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"anti-phishing\",\"canonical\":\"Anti-phishing\",\"aliases\":[\"Anti-phishing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"anti-spyware\",\"canonical\":\"Anti-spyware\",\"aliases\":[\"Anti-spyware software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"anti-trojan\",\"canonical\":\"Anti-Trojan\",\"aliases\":[\"Anti-Trojan software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"antivirus\",\"canonical\":\"Antivirus\",\"aliases\":[\"Antivirus software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"aonix-software-through-pictures\",\"canonical\":\"Aonix Software Through Pictures\",\"aliases\":[\"ASTP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-airflow\",\"canonical\":\"Apache Airflow\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-ant\",\"canonical\":\"Apache Ant\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-avro\",\"canonical\":\"Apache Avro\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-cassandra\",\"canonical\":\"Apache Cassandra\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-continuum\",\"canonical\":\"Apache Continuum\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-flume\",\"canonical\":\"Apache Flume\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-groovy\",\"canonical\":\"Apache Groovy\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-gump\",\"canonical\":\"Apache Gump\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-hadoop\",\"canonical\":\"Apache Hadoop\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-hbase\",\"canonical\":\"Apache HBase\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-hive\",\"canonical\":\"Apache Hive\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-http-server\",\"canonical\":\"Apache HTTP Server\",\"aliases\":[\"AHS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-jmeter\",\"canonical\":\"Apache JMeter\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-kafka\",\"canonical\":\"Apache Kafka\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-mahout\",\"canonical\":\"Apache Mahout\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-maven\",\"canonical\":\"Apache Maven\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-mxnet\",\"canonical\":\"Apache MXNet\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-oozie\",\"canonical\":\"Apache Oozie\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-pig\",\"canonical\":\"Apache Pig\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-solr\",\"canonical\":\"Apache Solr\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-spark\",\"canonical\":\"Apache Spark\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-sqoop\",\"canonical\":\"Apache Sqoop\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-struts\",\"canonical\":\"Apache Struts\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-subversion-svn\",\"canonical\":\"Apache Subversion SVN\",\"aliases\":[\"ASS\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"apache-tomcat\",\"canonical\":\"Apache Tomcat\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"apatar\",\"canonical\":\"Apatar\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apfloat\",\"canonical\":\"Apfloat\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apollo\",\"canonical\":\"Apollo\",\"aliases\":[\"Apollo Client\",\"Apollo GraphQL\"],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"apple-cocoa\",\"canonical\":\"Apple Cocoa\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apple-final-cut-pro\",\"canonical\":\"Apple Final Cut Pro\",\"aliases\":[\"AFCP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apple-ios\",\"canonical\":\"Apple iOS\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"apple-keynote\",\"canonical\":\"Apple Keynote\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apple-macos\",\"canonical\":\"Apple macOS\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"apple-safari\",\"canonical\":\"Apple Safari\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"apple-shazam\",\"canonical\":\"Apple Shazam\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"application-management\",\"canonical\":\"Application management\",\"aliases\":[\"Application management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"application-server\",\"canonical\":\"Application server\",\"aliases\":[\"Application server software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"application-servers\",\"canonical\":\"Application servers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"appraisal\",\"canonical\":\"Appraisal\",\"aliases\":[\"Appraisal software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"aptech-systems-gauss\",\"canonical\":\"Aptech Systems GAUSS\",\"aliases\":[\"ASG\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"arcgis-web-appbuilder\",\"canonical\":\"ArcGIS Web AppBuilder\",\"aliases\":[\"AWA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"architecture-description-language-adl\",\"canonical\":\"Architecture description language ADL\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"arcsight-enterprise-threat-and-risk-management\",\"canonical\":\"ArcSight Enterprise Threat and Risk Management\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"arfit\",\"canonical\":\"ARfit\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"argocd\",\"canonical\":\"ArgoCD\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"armon-technologies-xlactuary\",\"canonical\":\"ARMON Technologies XLActuary\",\"aliases\":[\"ATX\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"arping\",\"canonical\":\"Arping\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"articulated-robots\",\"canonical\":\"Articulated robots\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"aruba-networks-airwave\",\"canonical\":\"Aruba Networks AirWave\",\"aliases\":[\"ANA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ascensio-systems-teamlab\",\"canonical\":\"Ascensio Systems TeamLab\",\"aliases\":[\"AST\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"asg-technologies-asg-zeke\",\"canonical\":\"ASG Technologies ASG-Zeke\",\"aliases\":[\"ATA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"asp-net\",\"canonical\":\"ASP.NET\",\"aliases\":[\"ASP.NET Core\"],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"assembla\",\"canonical\":\"Assembla\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"asset-management-administration\",\"canonical\":\"Asset management administration\",\"aliases\":[\"Asset management administration software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"aster-data-ncluster\",\"canonical\":\"Aster Data nCluster\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"astro\",\"canonical\":\"Astro\",\"aliases\":[],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"asynchronous-transfer-mode-atm-analyzers\",\"canonical\":\"Asynchronous transfer mode ATM analyzers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"atlassian-bamboo\",\"canonical\":\"Atlassian Bamboo\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"atlassian-bitbucket\",\"canonical\":\"Atlassian Bitbucket\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"atlassian-confluence\",\"canonical\":\"Atlassian Confluence\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"atlassian-hipchat\",\"canonical\":\"Atlassian HipChat\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"atlassian-jira\",\"canonical\":\"Atlassian JIRA\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"attask\",\"canonical\":\"AtTask\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"audioconferencing\",\"canonical\":\"Audioconferencing\",\"aliases\":[\"Audioconferencing systems\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"augmint\",\"canonical\":\"Augmint\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"autocoders\",\"canonical\":\"Autocoders\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"autodesk-3ds-max\",\"canonical\":\"Autodesk 3ds Max\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"autodesk-autocad\",\"canonical\":\"Autodesk AutoCAD\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"autodesk-land-desktop\",\"canonical\":\"Autodesk Land Desktop\",\"aliases\":[\"ALD\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"autodesk-mapguide\",\"canonical\":\"Autodesk MapGuide\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"autodesk-maya\",\"canonical\":\"Autodesk Maya\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"autodesk-revit\",\"canonical\":\"Autodesk Revit\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"autodesk-scaleform\",\"canonical\":\"Autodesk Scaleform\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"autodesk-topobase\",\"canonical\":\"Autodesk Topobase\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"automated-audit-trail-analysis\",\"canonical\":\"Automated audit trail analysis\",\"aliases\":[\"Automated audit trail analysis software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"automated-document-generation\",\"canonical\":\"Automated document generation\",\"aliases\":[\"Automated document generation software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"automated-installation\",\"canonical\":\"Automated installation\",\"aliases\":[\"Automated installation software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"automated-media-tracking\",\"canonical\":\"Automated media tracking\",\"aliases\":[\"Automated media tracking software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"automatic-forecasting-systems-autobox\",\"canonical\":\"Automatic Forecasting Systems Autobox\",\"aliases\":[\"AFSA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"automation-centre-trackersuite-net\",\"canonical\":\"Automation Centre TrackerSuite.Net\",\"aliases\":[\"ACT\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"autonomy-imanage-worksite\",\"canonical\":\"Autonomy iManage WorkSite\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"avaya-identity-engines\",\"canonical\":\"Avaya Identity Engines\",\"aliases\":[\"AIE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"awk\",\"canonical\":\"AWK\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"aws\",\"canonical\":\"AWS\",\"aliases\":[\"Amazon Web Services\"],\"type\":\"platform\",\"hot\":true,\"sources\":[\"emerging\"]},{\"id\":\"axum\",\"canonical\":\"Axum\",\"aliases\":[],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"axure-rp\",\"canonical\":\"Axure RP\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"aztec\",\"canonical\":\"Aztec\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"azure-devops\",\"canonical\":\"Azure DevOps\",\"aliases\":[\"ADO\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"b-method\",\"canonical\":\"B-Method\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"b-w-port-scanner\",\"canonical\":\"B&W Port Scanner\",\"aliases\":[\"BPS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"backbone-js\",\"canonical\":\"Backbone.js\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"backup-and-archival\",\"canonical\":\"Backup and archival\",\"aliases\":[\"Backup and archival software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"backup-servers\",\"canonical\":\"Backup servers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"balsamiq-studios-balsamiq-mockups\",\"canonical\":\"Balsamiq Studios Balsamiq Mockups\",\"aliases\":[\"BSBM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"basecamp\",\"canonical\":\"Basecamp\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"bash\",\"canonical\":\"Bash\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"basic-local-alignment-search-tool-blast\",\"canonical\":\"Basic Local Alignment Search Tool BLAST\",\"aliases\":[\"BLASTB\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"basis-bbx-visualpro-5\",\"canonical\":\"Basis BBx VisualPRO/5\",\"aliases\":[\"BBV\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"bea-tuxedo\",\"canonical\":\"BEA Tuxedo\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"beginner-s-all-purpose-symbolic-instruction-code-basic\",\"canonical\":\"Beginner's all-purpose symbolic instruction code BASIC\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"bentley-microstation\",\"canonical\":\"Bentley MicroStation\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"bentley-systems-projectwise\",\"canonical\":\"Bentley Systems ProjectWise\",\"aliases\":[\"BSP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"berkeley-internet-domain-name-bind\",\"canonical\":\"Berkeley Internet Domain Name BIND\",\"aliases\":[\"BIDNB\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"bigloo-scheme\",\"canonical\":\"Bigloo Scheme\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"bigquery\",\"canonical\":\"BigQuery\",\"aliases\":[],\"type\":\"database\",\"hot\":false,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"bioconductor\",\"canonical\":\"Bioconductor\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"biome\",\"canonical\":\"Biome\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"bit-error-rate-testers-bert\",\"canonical\":\"Bit error rate testers BERT\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"bitbucket\",\"canonical\":\"Bitbucket\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"bitwizard-b-v-mtr\",\"canonical\":\"BitWizard B.V. mtr\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"bizmatics-prognocis-emr\",\"canonical\":\"Bizmatics PrognoCIS EMR\",\"aliases\":[\"BPE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"blackbaud-the-raiser-s-edge\",\"canonical\":\"Blackbaud The Raiser's Edge\",\"aliases\":[\"BTRE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"blackberry-enterprise-server\",\"canonical\":\"BlackBerry Enterprise Server\",\"aliases\":[\"BES\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"blackboard\",\"canonical\":\"Blackboard\",\"aliases\":[\"Blackboard software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"blade-servers\",\"canonical\":\"Blade servers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"blink\",\"canonical\":\"Blink\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"bmc-software-change-manager\",\"canonical\":\"BMC Software Change Manager\",\"aliases\":[\"BSCM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"bmc-software-control-m\",\"canonical\":\"BMC Software Control-M\",\"aliases\":[\"BSC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"bmc-software-recovery-manager-rman\",\"canonical\":\"BMC Software Recovery Manager RMAN\",\"aliases\":[\"BSRMR\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"bmc-software-remedy-it-service-management-suite\",\"canonical\":\"BMC Software Remedy IT Service Management Suite\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"bootstrap\",\"canonical\":\"Bootstrap\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"border-gateway-protocol-bgp\",\"canonical\":\"Border Gateway Protocol BGP\",\"aliases\":[\"BGPB\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"borland-silktest\",\"canonical\":\"Borland SilkTest\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"borland-visibroker\",\"canonical\":\"Borland VisiBroker\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"bourne-shell\",\"canonical\":\"Bourne Shell\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"bowtie\",\"canonical\":\"Bowtie\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"brightwork-pmpoint\",\"canonical\":\"BrightWork pmPoint\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"broadband-aggregation-equipment\",\"canonical\":\"Broadband aggregation equipment\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"broadsoft-broadworks\",\"canonical\":\"BroadSoft BroadWorks\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"broadvision\",\"canonical\":\"BroadVision\",\"aliases\":[\"BroadVision software\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"bugzilla\",\"canonical\":\"Bugzilla\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"bun\",\"canonical\":\"Bun\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"burrows-wheeler-aligner-bwa\",\"canonical\":\"Burrows-Wheeler Aligner BWA\",\"aliases\":[\"BAB\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"business-forecast-systems-forecast-pro\",\"canonical\":\"Business Forecast Systems Forecast Pro\",\"aliases\":[\"BFSFP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"business-intelligence\",\"canonical\":\"Business intelligence\",\"aliases\":[\"Business intelligence software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"business-intelligence-system\",\"canonical\":\"Business intelligence system\",\"aliases\":[\"Business intelligence system software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"business-objects-data-integrator\",\"canonical\":\"Business Objects Data Integrator\",\"aliases\":[\"BODI\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"business-process-management-bpm\",\"canonical\":\"Business process management BPM\",\"aliases\":[\"Business process management BPM software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"c-for-graphics-cg\",\"canonical\":\"C for Graphics cg\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"c-shell\",\"canonical\":\"C shell\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"c\",\"canonical\":\"C#\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"c\",\"canonical\":\"C++\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"ca-easytrieve-report-generator\",\"canonical\":\"CA Easytrieve Report Generator\",\"aliases\":[\"CERG\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ca-etrust\",\"canonical\":\"CA eTrust\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ca-idms\",\"canonical\":\"CA IDMS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ca-siteminder\",\"canonical\":\"CA SiteMinder\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ca-technologies-ca-clarity-ppm-for-it-governance\",\"canonical\":\"CA Technologies CA Clarity PPM for IT Governance\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ca-technologies-erwin-data-modeler\",\"canonical\":\"CA Technologies ERWin Data Modeler\",\"aliases\":[\"CTEDM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cabinet-ng-cng-safe\",\"canonical\":\"Cabinet NG CNG-SAFE\",\"aliases\":[\"CNC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cable-analyzers\",\"canonical\":\"Cable analyzers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"cable-cutters\",\"canonical\":\"Cable cutters\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"cable-plows\",\"canonical\":\"Cable plows\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"cable-qualification-testers\",\"canonical\":\"Cable qualification testers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"cable-testers\",\"canonical\":\"Cable testers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"cable-tie-guns\",\"canonical\":\"Cable tie guns\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"cable-verifiers\",\"canonical\":\"Cable verifiers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"caching-engines\",\"canonical\":\"Caching engines\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"calendar-and-scheduling\",\"canonical\":\"Calendar and scheduling\",\"aliases\":[\"Calendar and scheduling software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"call-accounting\",\"canonical\":\"Call accounting\",\"aliases\":[\"Call accounting software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"call-center\",\"canonical\":\"Call center\",\"aliases\":[\"Call center software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"call-processing-language-cpl\",\"canonical\":\"Call-processing language CPL\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"camfit-data-limited-microfit\",\"canonical\":\"Camfit Data Limited Microfit\",\"aliases\":[\"CDLM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"canonical-launchpad\",\"canonical\":\"Canonical Launchpad\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"canu\",\"canonical\":\"Canu\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"capacity-planning\",\"canonical\":\"Capacity planning\",\"aliases\":[\"Capacity planning software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"capsys-capture\",\"canonical\":\"CAPSYS Capture\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cascading-style-sheets-css\",\"canonical\":\"Cascading style sheets CSS\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"cash-flow\",\"canonical\":\"Cash flow\",\"aliases\":[\"Cash flow software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cassandra\",\"canonical\":\"Cassandra\",\"aliases\":[],\"type\":\"database\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"cast-sql-builder\",\"canonical\":\"CAST SQL Builder\",\"aliases\":[\"CSB\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"catalog-navigation\",\"canonical\":\"Catalog navigation\",\"aliases\":[\"Catalog navigation software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cda-international-manifold\",\"canonical\":\"CDA International Manifold\",\"aliases\":[\"CDA International Manifold System\",\"CIM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"central-desktop\",\"canonical\":\"Central Desktop\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cerner-millennium\",\"canonical\":\"Cerner Millennium\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cerner-powerchart\",\"canonical\":\"Cerner PowerChart\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"chai\",\"canonical\":\"Chai\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"chakra-ui\",\"canonical\":\"Chakra UI\",\"aliases\":[\"Chakra\"],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"channel-banks\",\"canonical\":\"Channel banks\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"charm\",\"canonical\":\"Charm++\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"chartware-emr\",\"canonical\":\"ChartWare EMR\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"chatbot\",\"canonical\":\"Chatbot\",\"aliases\":[\"Chatbot software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"check-point-next-generation-secure-web-gateway\",\"canonical\":\"Check Point Next Generation Secure Web Gateway\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"chef\",\"canonical\":\"Chef\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"ci-cd\",\"canonical\":\"CI/CD\",\"aliases\":[\"CICD\",\"Continuous Integration\",\"Continuous Delivery\",\"Continuous Deployment\"],\"type\":\"practice\",\"hot\":true,\"sources\":[\"emerging\"]},{\"id\":\"circleci\",\"canonical\":\"CircleCI\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"circuit-testers\",\"canonical\":\"Circuit testers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"cisco-ios\",\"canonical\":\"Cisco IOS\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cisco-systems-cisco-netflow-collection-engine\",\"canonical\":\"Cisco Systems Cisco NetFlow Collection Engine\",\"aliases\":[\"CSCNCE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cisco-systems-cisco-traffic-analyzer\",\"canonical\":\"Cisco Systems Cisco Traffic Analyzer\",\"aliases\":[\"CSCTA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cisco-systems-cisco-web-cache-communication-protocol-wccp\",\"canonical\":\"Cisco Systems Cisco Web Cache Communication Protocol WCCP\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cisco-systems-ciscoworks\",\"canonical\":\"Cisco Systems CiscoWorks\",\"aliases\":[\"CSC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cisco-systems-ciscoworks-lan-management-solution\",\"canonical\":\"Cisco Systems CiscoWorks LAN Management Solution\",\"aliases\":[\"CSCLMS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cisco-systems-gateway-load-balancing-protocol-glbp\",\"canonical\":\"Cisco Systems Gateway Load Balancing Protocol GLBP\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cisco-systems-hot-standby-router-protocol-hsrp\",\"canonical\":\"Cisco Systems Hot Standby Router Protocol HSRP\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cisco-systems-wireless-control-system-wcs\",\"canonical\":\"Cisco Systems Wireless Control System WCS\",\"aliases\":[\"CSWCSW\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cisco-webex\",\"canonical\":\"Cisco Webex\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"citrix-cloud-computing\",\"canonical\":\"Citrix cloud computing\",\"aliases\":[\"Citrix cloud computing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"citrix-xenapp\",\"canonical\":\"Citrix XenApp\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"clarified-networks-clarified-analyzer\",\"canonical\":\"Clarified Networks Clarified Analyzer\",\"aliases\":[\"CNCA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"claritas-prizm-ne\",\"canonical\":\"Claritas PRIZM NE\",\"aliases\":[\"CPN\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"clarity-systems-ibm-clarity\",\"canonical\":\"Clarity Systems IBM Clarity\",\"aliases\":[\"CSIC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"clarizen\",\"canonical\":\"Clarizen\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cleartrial\",\"canonical\":\"ClearTrial\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"clickhouse\",\"canonical\":\"ClickHouse\",\"aliases\":[],\"type\":\"database\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"clinical-trial-management\",\"canonical\":\"Clinical trial management\",\"aliases\":[\"Clinical trial management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"clinical-trials-database\",\"canonical\":\"Clinical trials database\",\"aliases\":[\"Clinical trials database software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"clipper\",\"canonical\":\"Clipper\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cloud-computing-servers\",\"canonical\":\"Cloud computing servers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"cloudera-impala\",\"canonical\":\"Cloudera Impala\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cloudflare\",\"canonical\":\"Cloudflare\",\"aliases\":[\"Cloudflare Workers\",\"Workers\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"cloveretl\",\"canonical\":\"CloverETL\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"clustalw\",\"canonical\":\"ClustalW\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cluster\",\"canonical\":\"Cluster\",\"aliases\":[\"Cluster systems\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"cluster-server\",\"canonical\":\"Cluster server\",\"aliases\":[\"Cluster server software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"clustering\",\"canonical\":\"Clustering\",\"aliases\":[\"Clustering software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"clustermatic\",\"canonical\":\"Clustermatic\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cmake\",\"canonical\":\"CMake\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"coaxial-cable-testers\",\"canonical\":\"Coaxial cable testers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"code-generator\",\"canonical\":\"Code generator\",\"aliases\":[\"Code generator software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"code-hosting\",\"canonical\":\"Code hosting\",\"aliases\":[\"Code hosting software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"code-munger\",\"canonical\":\"Code munger\",\"aliases\":[\"Code munger software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"code-review\",\"canonical\":\"Code Review\",\"aliases\":[\"Code Reviews\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"codefutures-dbshards\",\"canonical\":\"CodeFutures dbShards\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"coffeecup-the-html-editor\",\"canonical\":\"CoffeeCup The HTML Editor\",\"aliases\":[\"CTHE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"coglin-mill-rodin\",\"canonical\":\"Coglin Mill RODIN\",\"aliases\":[\"CMR\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"colasoft-capsa-enterprise\",\"canonical\":\"Colasoft Capsa Enterprise\",\"aliases\":[\"CCE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"colasoft-capsa-free\",\"canonical\":\"Colasoft Capsa Free\",\"aliases\":[\"CCF\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"collaborative-application-lifecycle-management-alm\",\"canonical\":\"Collaborative application lifecycle management ALM\",\"aliases\":[\"Collaborative application lifecycle management ALM software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"collaborative-application-markup-language-caml\",\"canonical\":\"Collaborative Application Markup Language CAML\",\"aliases\":[\"CAMLC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"collaborative-editing\",\"canonical\":\"Collaborative editing\",\"aliases\":[\"Collaborative editing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"combo-crimping\",\"canonical\":\"Combo crimping\",\"aliases\":[\"Combo crimping tools\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"command-interpreters\",\"canonical\":\"Command interpreters\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"common-business-oriented-language-cobol\",\"canonical\":\"Common business oriented language COBOL\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"common-gateway-interface-cgi\",\"canonical\":\"Common gateway interface CGI\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"common-lisp-object-system-clos\",\"canonical\":\"Common Lisp Object System CLOS\",\"aliases\":[\"CLOSC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"communication-cable-testers\",\"canonical\":\"Communication cable testers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"communications-analyzers\",\"canonical\":\"Communications analyzers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"compaction-tampers\",\"canonical\":\"Compaction tampers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"compaq-insight-manager\",\"canonical\":\"Compaq Insight Manager\",\"aliases\":[\"CIM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"compatibility-testing\",\"canonical\":\"Compatibility testing\",\"aliases\":[\"Compatibility testing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"compilers\",\"canonical\":\"Compilers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"compliance-testing\",\"canonical\":\"Compliance testing\",\"aliases\":[\"Compliance testing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"component-object-model-com\",\"canonical\":\"Component object model COM\",\"aliases\":[\"Component object model COM software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"component-based-scalable-logical-architecture-csla\",\"canonical\":\"Component-based Scalable Logical Architecture CSLA\",\"aliases\":[\"CSLAC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"computational-statistics\",\"canonical\":\"Computational statistics\",\"aliases\":[\"Computational statistics software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"computer-aided-design-and-drafting-cadd\",\"canonical\":\"Computer aided design and drafting CADD\",\"aliases\":[\"Computer aided design and drafting CADD software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"computer-aided-design-and-drafting-software-cadd\",\"canonical\":\"Computer aided design and drafting software CADD\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"computer-aided-design-cad\",\"canonical\":\"Computer aided design CAD\",\"aliases\":[\"Computer aided design CAD software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"computer-aided-software-engineering-case\",\"canonical\":\"Computer aided software engineering CASE\",\"aliases\":[\"Computer aided software engineering CASE tools\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"computer-algebra-system-for-algebraic-geometry-casa\",\"canonical\":\"Computer Algebra System for Algebraic Geometry CASA\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"computer-associates-arcserv-backup\",\"canonical\":\"Computer Associates ArcServ Backup\",\"aliases\":[\"CAAB\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"computer-associates-log-analyzer\",\"canonical\":\"Computer Associates Log Analyzer\",\"aliases\":[\"CALA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"computer-based-training\",\"canonical\":\"Computer based training\",\"aliases\":[\"Computer based training software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"computer-clusters\",\"canonical\":\"Computer clusters\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"computer-data-input-scanners\",\"canonical\":\"Computer data input scanners\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"computer-forensic\",\"canonical\":\"Computer forensic\",\"aliases\":[\"Computer forensic software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"computer-hard-disk-drives\",\"canonical\":\"Computer hard disk drives\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"computer-intrusion-detection\",\"canonical\":\"Computer intrusion detection\",\"aliases\":[\"Computer intrusion detection systems\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"computer-laser-printers\",\"canonical\":\"Computer laser printers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"computer-network-routers\",\"canonical\":\"Computer network routers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"computer-network-switches\",\"canonical\":\"Computer network switches\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"computer-on-line-real-time-applications-language-coral-66\",\"canonical\":\"Computer On-line Real-time Applications Language CORAL 66\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"computer-scanners\",\"canonical\":\"Computer scanners\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"computer-servers\",\"canonical\":\"Computer servers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"computer-system-diagnostics\",\"canonical\":\"Computer system diagnostics\",\"aliases\":[\"Computer system diagnostics software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"computer-tool-kits\",\"canonical\":\"Computer tool kits\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"computer-workstation-setups\",\"canonical\":\"Computer workstation setups\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"computerized-physician-order-entry-cpoe\",\"canonical\":\"Computerized physician order entry CPOE\",\"aliases\":[\"Computerized physician order entry CPOE software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"computhink-viewwise\",\"canonical\":\"Computhink ViewWise\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"compuware-clientvantage-agentless-monitoring\",\"canonical\":\"Compuware ClientVantage Agentless Monitoring\",\"aliases\":[\"CCAM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"conarc-ichannel\",\"canonical\":\"Conarc iChannel\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"concurrency-control\",\"canonical\":\"Concurrency control\",\"aliases\":[\"Concurrency control software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"configuration-management\",\"canonical\":\"Configuration management\",\"aliases\":[\"Configuration management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"confluence\",\"canonical\":\"Confluence\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"conformance-and-validation-testing\",\"canonical\":\"Conformance and validation testing\",\"aliases\":[\"Conformance and validation testing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"congruity-technologies-inspector\",\"canonical\":\"Congruity Technologies Inspector\",\"aliases\":[\"CTI\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"connectivity\",\"canonical\":\"Connectivity\",\"aliases\":[\"Connectivity software\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"content-filter\",\"canonical\":\"Content filter\",\"aliases\":[\"Content filter software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"content-servers\",\"canonical\":\"Content servers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"continuity-testers\",\"canonical\":\"Continuity testers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"continuous-integration\",\"canonical\":\"Continuous integration\",\"aliases\":[\"Continuous integration software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"coordinate-geometry-cogo\",\"canonical\":\"Coordinate geometry COGO\",\"aliases\":[\"Coordinate geometry COGO software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"copy-machines\",\"canonical\":\"Copy machines\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"corel-coreldraw-graphics-suite\",\"canonical\":\"Corel CorelDraw Graphics Suite\",\"aliases\":[\"CCGS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cost-estimating\",\"canonical\":\"Cost estimating\",\"aliases\":[\"Cost estimating software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"couchbase-server\",\"canonical\":\"Couchbase Server\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"countersoft-gemini\",\"canonical\":\"Countersoft Gemini\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cross-functional-collaboration\",\"canonical\":\"Cross-functional Collaboration\",\"aliases\":[\"cross-functional\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"crosstec-netop-remote-control\",\"canonical\":\"CrossTec NetOp Remote Control\",\"aliases\":[\"CNRC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cruisecontrol\",\"canonical\":\"CruiseControl\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cryptographic-key-management\",\"canonical\":\"Cryptographic key management\",\"aliases\":[\"Cryptographic key management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cufflinks\",\"canonical\":\"Cufflinks\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"customer-information-control-system-cics\",\"canonical\":\"Customer information control system CICS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"customer-relationship-management-crm\",\"canonical\":\"Customer relationship management CRM\",\"aliases\":[\"Customer relationship management CRM software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"cypress\",\"canonical\":\"Cypress\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"cytel-statxact\",\"canonical\":\"Cytel StatXact\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"daptiv-ppm\",\"canonical\":\"Daptiv PPM\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"dartware-intermapper\",\"canonical\":\"Dartware InterMapper\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"dassault-systemes-catia\",\"canonical\":\"Dassault Systemes CATIA\",\"aliases\":[\"DSC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"dassault-systemes-solidworks\",\"canonical\":\"Dassault Systemes SolidWorks\",\"aliases\":[\"DSS\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"data-analysis\",\"canonical\":\"Data analysis\",\"aliases\":[\"Data analysis software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"data-conversion\",\"canonical\":\"Data conversion\",\"aliases\":[\"Data conversion software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"data-definition-language-ddl\",\"canonical\":\"Data definition language DDL\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"data-dictionary\",\"canonical\":\"Data dictionary\",\"aliases\":[\"Data dictionary software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"data-entry\",\"canonical\":\"Data entry\",\"aliases\":[\"Data entry software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"data-manipulation-language-dml\",\"canonical\":\"Data manipulation language DML\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"data-mapping\",\"canonical\":\"Data mapping\",\"aliases\":[\"Data mapping software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"data-mining\",\"canonical\":\"Data mining\",\"aliases\":[\"Data mining software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"data-modeling\",\"canonical\":\"Data modeling\",\"aliases\":[\"Data modeling software\",\"Data Model\",\"Data Models\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"data-recovery-software-sql-server-data-recovery\",\"canonical\":\"Data Recovery Software SQL Server Data Recovery\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"data-transformation-services-dts\",\"canonical\":\"Data transformation services DTS\",\"aliases\":[\"Data transformation services DTS software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"data-validation\",\"canonical\":\"Data validation\",\"aliases\":[\"Data validation software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"data-visualization\",\"canonical\":\"Data visualization\",\"aliases\":[\"Data visualization software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"data-warehouse\",\"canonical\":\"Data warehouse\",\"aliases\":[\"Data warehouse software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"data-warehouse-appliances\",\"canonical\":\"Data warehouse appliances\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"database\",\"canonical\":\"Database\",\"aliases\":[\"Database software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"database-capacity-planning\",\"canonical\":\"Database capacity planning\",\"aliases\":[\"Database capacity planning software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"database-cloning\",\"canonical\":\"Database cloning\",\"aliases\":[\"Database cloning software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"database-design\",\"canonical\":\"Database design\",\"aliases\":[\"Database design software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"database-management\",\"canonical\":\"Database management\",\"aliases\":[\"Database management software\",\"Database management systems\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"database-security\",\"canonical\":\"Database security\",\"aliases\":[\"Database security software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"database-testing\",\"canonical\":\"Database testing\",\"aliases\":[\"Database testing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"datadescription-datadesk\",\"canonical\":\"DataDescription DataDesk\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"datadog\",\"canonical\":\"Datadog\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"datavision\",\"canonical\":\"DataVision\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"day-software-cq5-web-content-management\",\"canonical\":\"Day Software CQ5 Web Content Management\",\"aliases\":[\"DSCWCM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"db-tech-ras\",\"canonical\":\"DB Tech RAS\",\"aliases\":[\"DTR\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"dbase\",\"canonical\":\"dBASE\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"dbase-plus\",\"canonical\":\"dBASE Plus\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"dbt\",\"canonical\":\"dbt\",\"aliases\":[\"data build tool\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"dbtools-software-dbmanager-professional\",\"canonical\":\"DBTools Software DBManager Professional\",\"aliases\":[\"DSDP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"debugging\",\"canonical\":\"Debugging\",\"aliases\":[\"Debugging software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"debugview\",\"canonical\":\"Debugview\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"decompilers\",\"canonical\":\"Decompilers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"defect-tracking\",\"canonical\":\"Defect tracking\",\"aliases\":[\"Defect tracking software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"delphi-technology\",\"canonical\":\"Delphi Technology\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"deno\",\"canonical\":\"Deno\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"deployment\",\"canonical\":\"Deployment\",\"aliases\":[\"Deployment software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"design-systems\",\"canonical\":\"Design Systems\",\"aliases\":[\"Design System\"],\"type\":\"practice\",\"hot\":true,\"sources\":[\"emerging\"]},{\"id\":\"desktop-computers\",\"canonical\":\"Desktop computers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"desktop-partitioning\",\"canonical\":\"Desktop partitioning\",\"aliases\":[\"Desktop partitioning software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"diagramming\",\"canonical\":\"Diagramming\",\"aliases\":[\"Diagramming software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"diameter\",\"canonical\":\"Diameter\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"difequ\",\"canonical\":\"DifEqu\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"dig\",\"canonical\":\"Dig\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"digger-derricks\",\"canonical\":\"Digger derricks\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"digital-cameras\",\"canonical\":\"Digital cameras\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"digital-power-meters\",\"canonical\":\"Digital power meters\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"digital-tapes\",\"canonical\":\"Digital tapes\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"digital-video-cameras\",\"canonical\":\"Digital video cameras\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"digitizers\",\"canonical\":\"Digitizers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"directory-servers\",\"canonical\":\"Directory servers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"disarea-5pm\",\"canonical\":\"Disarea 5pm\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"disaster-recovery\",\"canonical\":\"Disaster recovery\",\"aliases\":[\"Disaster recovery software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"discrete-dynamics-lab-ddlab\",\"canonical\":\"Discrete Dynamics Lab DDLab\",\"aliases\":[\"DDLD\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"discrete-event-simulation\",\"canonical\":\"Discrete event simulation\",\"aliases\":[\"Discrete event simulation software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"disk-operating-system-dos\",\"canonical\":\"Disk operating system DOS\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"distributed-component-object-model-dcom\",\"canonical\":\"Distributed component object model DCOM\",\"aliases\":[\"Distributed component object model DCOM software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"distributed-database-management\",\"canonical\":\"Distributed database management\",\"aliases\":[\"Distributed database management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"distributed-heterogeneous-computers\",\"canonical\":\"Distributed heterogeneous computers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"django\",\"canonical\":\"Django\",\"aliases\":[],\"type\":\"framework\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"doc-it-dm\",\"canonical\":\"Doc.It DM\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"docker\",\"canonical\":\"Docker\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"document-imaging\",\"canonical\":\"Document imaging\",\"aliases\":[\"Document imaging software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"document-indexing\",\"canonical\":\"Document indexing\",\"aliases\":[\"Document indexing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"document-management-system\",\"canonical\":\"Document management system\",\"aliases\":[\"Document management system software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"document-object-model-dom-scripting\",\"canonical\":\"Document Object Model DOM Scripting\",\"aliases\":[\"DOMDS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"docusign-esignature\",\"canonical\":\"DocuSign eSignature\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"domain-name-servers-dns\",\"canonical\":\"Domain name servers DNS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"domain-name-system-dns\",\"canonical\":\"Domain name system DNS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"domain-driven-design\",\"canonical\":\"Domain-Driven Design\",\"aliases\":[\"DDD\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"dos-shell-script\",\"canonical\":\"DOS shell script\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"dotproject\",\"canonical\":\"dotProject\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"doxygen\",\"canonical\":\"Doxygen\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"drizzle\",\"canonical\":\"Drizzle\",\"aliases\":[\"Drizzle ORM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"dropbox\",\"canonical\":\"Dropbox\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"drug-coding\",\"canonical\":\"Drug coding\",\"aliases\":[\"Drug coding software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"drupal\",\"canonical\":\"Drupal\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"dsp-development-dadisp\",\"canonical\":\"DSP Development DADiSP\",\"aliases\":[\"DDD\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"dynamic-analysis\",\"canonical\":\"Dynamic analysis\",\"aliases\":[\"Dynamic analysis software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"dynamic-host-configuration-protocol-dhcp\",\"canonical\":\"Dynamic host configuration protocol DHCP\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"dynamic-hypertext-markup-language-dhtml\",\"canonical\":\"Dynamic hypertext markup language DHTML\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"dynamic-modeling\",\"canonical\":\"Dynamic modeling\",\"aliases\":[\"Dynamic modeling software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"dynamodb\",\"canonical\":\"DynamoDB\",\"aliases\":[],\"type\":\"database\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"dynatrace\",\"canonical\":\"Dynatrace\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"dzs-software-solutions-clinplus\",\"canonical\":\"DZS Software Solutions ClinPlus\",\"aliases\":[\"DSSC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"e-mds\",\"canonical\":\"e-MDs\",\"aliases\":[\"e-MDs software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"e-pattern-language\",\"canonical\":\"E++ pattern language\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"easycis\",\"canonical\":\"easyCIS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"eclinicalworks-ehr\",\"canonical\":\"eClinicalWorks EHR\",\"aliases\":[\"eClinicalWorks EHR software\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"eclipse-ide\",\"canonical\":\"Eclipse IDE\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"eclipse-jersey\",\"canonical\":\"Eclipse Jersey\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"econometric-software-limdep\",\"canonical\":\"Econometric Software LIMDEP\",\"aliases\":[\"ESL\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"edge-computing\",\"canonical\":\"Edge Computing\",\"aliases\":[\"edge functions\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"edgewell-trac\",\"canonical\":\"Edgewell Trac\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"edulastic\",\"canonical\":\"Edulastic\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"eiffel\",\"canonical\":\"Eiffel\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ej-technologies-jprofiler\",\"canonical\":\"ej-technologies JProfiler\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"eko\",\"canonical\":\"Eko\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"elasticsearch\",\"canonical\":\"Elasticsearch\",\"aliases\":[\"ES\"],\"type\":\"database\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"electriccloud-electriccommander\",\"canonical\":\"ElectricCloud ElectricCommander\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"electricity-monitors\",\"canonical\":\"Electricity monitors\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"electronic-data-capture-edc\",\"canonical\":\"Electronic data capture EDC\",\"aliases\":[\"Electronic data capture EDC software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"electronic-design-automation-eda\",\"canonical\":\"Electronic design automation EDA\",\"aliases\":[\"Electronic design automation EDA software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"electronic-medical-administration-record-emar\",\"canonical\":\"Electronic medical administration record eMAR\",\"aliases\":[\"Electronic medical administration record eMAR software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"element-management\",\"canonical\":\"Element management\",\"aliases\":[\"Element management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"element-software-copper\",\"canonical\":\"Element Software Copper\",\"aliases\":[\"ESC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"elesoft-research\",\"canonical\":\"EleSoft Research\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"elixir\",\"canonical\":\"Elixir\",\"aliases\":[],\"type\":\"language\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"ellucian-banner-erp\",\"canonical\":\"Ellucian Banner ERP\",\"aliases\":[\"EBE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"elysia\",\"canonical\":\"Elysia\",\"aliases\":[],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"email\",\"canonical\":\"Email\",\"aliases\":[\"Email software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"email-management\",\"canonical\":\"Email management\",\"aliases\":[\"Email management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"embarcadero-delphi\",\"canonical\":\"Embarcadero Delphi\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"embarcadero-er-studio-xe\",\"canonical\":\"Embarcadero ER/Studio XE\",\"aliases\":[\"EEX\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"embarcadero-jbuilder\",\"canonical\":\"Embarcadero JBuilder\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"embarcadero-technologies-dbartisan\",\"canonical\":\"Embarcadero Technologies DBArtisan\",\"aliases\":[\"ETD\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"embedded-systems-development\",\"canonical\":\"Embedded systems development\",\"aliases\":[\"Embedded systems development software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"embeddings\",\"canonical\":\"Embeddings\",\"aliases\":[],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"emc-captiva\",\"canonical\":\"EMC Captiva\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"emc-document-sciences-xpression\",\"canonical\":\"EMC Document Sciences xPression\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"emc-documentum\",\"canonical\":\"EMC Documentum\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"emc-ionix-network-configuration-manager\",\"canonical\":\"EMC Ionix Network Configuration Manager\",\"aliases\":[\"EINCM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"emc-networker\",\"canonical\":\"EMC NetWorker\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"emc-smarts-network-protocol-manager\",\"canonical\":\"EMC Smarts Network Protocol Manager\",\"aliases\":[\"ESNPM\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"emc-symmetrix-dmx\",\"canonical\":\"EMC Symmetrix DMX\",\"aliases\":[\"ESD\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"emerald-software-group-emerald-green-office\",\"canonical\":\"Emerald Software Group Emerald Green Office\",\"aliases\":[\"ESGEGO\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"emotion\",\"canonical\":\"Emotion\",\"aliases\":[],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"encryption\",\"canonical\":\"Encryption\",\"aliases\":[\"Encryption software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"end-to-end-encryption\",\"canonical\":\"End-to-end encryption\",\"aliases\":[\"End-to-end encryption software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"endeavour-agile-alm\",\"canonical\":\"Endeavour Agile ALM\",\"aliases\":[\"EAA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"enhanced-interior-gateway-routing-protocol-eigrp\",\"canonical\":\"Enhanced Interior Gateway Routing Protocol EIGRP\",\"aliases\":[\"EIGRPE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"enterprise-application-integration-eai\",\"canonical\":\"Enterprise application integration EAI\",\"aliases\":[\"Enterprise application integration EAI software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"enterprise-javabeans\",\"canonical\":\"Enterprise JavaBeans\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"enterprise-report-management-erm\",\"canonical\":\"Enterprise report management ERM\",\"aliases\":[\"Enterprise report management ERM software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"enterprise-resource-planning-erp\",\"canonical\":\"Enterprise resource planning ERP\",\"aliases\":[\"Enterprise resource planning ERP software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"epharmasolutions-emvr\",\"canonical\":\"ePharmaSolutions eMVR\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"epic\",\"canonical\":\"Epic\",\"aliases\":[\"Epic Systems\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"esbuild\",\"canonical\":\"esbuild\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"eslint\",\"canonical\":\"ESLint\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"esri-arceditor\",\"canonical\":\"ESRI ArcEditor\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"esri-arcexplorer\",\"canonical\":\"ESRI ArcExplorer\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"esri-arcgis\",\"canonical\":\"ESRI ArcGIS\",\"aliases\":[\"ESRI ArcGIS software\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"esri-arcgis-arcpy\",\"canonical\":\"ESRI ArcGIS ArcPy\",\"aliases\":[\"EAA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"esri-arcgis-geostatistical-analyst\",\"canonical\":\"ESRI ArcGIS Geostatistical Analyst\",\"aliases\":[\"EAGA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"esri-arcgis-spatial-analyst\",\"canonical\":\"ESRI ArcGIS Spatial Analyst\",\"aliases\":[\"EASA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"esri-arcgis-survey-123\",\"canonical\":\"ESRI ArcGIS Survey 123\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"esri-arcims\",\"canonical\":\"ESRI ArcIMS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"esri-arcinfo\",\"canonical\":\"ESRI ArcInfo\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"esri-arcpad\",\"canonical\":\"ESRI ArcPad\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"esri-arcsde\",\"canonical\":\"ESRI ArcSDE\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"esri-arcview\",\"canonical\":\"ESRI ArcView\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ethereal\",\"canonical\":\"Ethereal\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ettercap-ng\",\"canonical\":\"Ettercap NG\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"event-log-monitor\",\"canonical\":\"Event log monitor\",\"aliases\":[\"Event log monitor software\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"event-driven-architecture\",\"canonical\":\"Event-Driven Architecture\",\"aliases\":[\"EDA\",\"event-driven\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"event-driven-state-machines-programming\",\"canonical\":\"Event-driven State-machines Programming\",\"aliases\":[\"ESP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ever-team-eversuite-content-management\",\"canonical\":\"Ever Team EverSuite Content Management\",\"aliases\":[\"ETECM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"evernote\",\"canonical\":\"Evernote\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"express\",\"canonical\":\"Express\",\"aliases\":[\"Express.js\",\"ExpressJS\"],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"ext-js\",\"canonical\":\"Ext JS\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"extensible-hypertext-markup-language-xhtml\",\"canonical\":\"Extensible hypertext markup language XHTML\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"extensible-markup-language-xml\",\"canonical\":\"Extensible markup language XML\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"extensible-stylesheet-language-transformations-xslt\",\"canonical\":\"Extensible stylesheet language transformations XSLT\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"extensible-stylesheet-language-xsl\",\"canonical\":\"Extensible stylesheet language XSL\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"fabasoft-folio\",\"canonical\":\"Fabasoft Folio\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"fabric-analyzers\",\"canonical\":\"Fabric analyzers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"facebook\",\"canonical\":\"Facebook\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"facetime\",\"canonical\":\"FaceTime\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"fastapi\",\"canonical\":\"FastAPI\",\"aliases\":[],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"fastify\",\"canonical\":\"Fastify\",\"aliases\":[],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"fault-testing\",\"canonical\":\"Fault testing\",\"aliases\":[\"Fault testing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"feng-office-collaboration-platform\",\"canonical\":\"Feng Office Collaboration Platform\",\"aliases\":[\"FOCP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"fiber-optic-cable-splicers\",\"canonical\":\"Fiber optic cable splicers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"fiber-optic-cable-strippers\",\"canonical\":\"Fiber optic cable strippers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"fiber-optic-fault-locators\",\"canonical\":\"Fiber optic fault locators\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"fiber-optic-fusion-splicers\",\"canonical\":\"Fiber optic fusion splicers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"fiber-optic-power-meters\",\"canonical\":\"Fiber optic power meters\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"fiber-optic-strippers\",\"canonical\":\"Fiber optic strippers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"fiber-optic-tweezers\",\"canonical\":\"Fiber optic tweezers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"fiber-scribes\",\"canonical\":\"Fiber scribes\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"fibre-channel-protocol-analyzers\",\"canonical\":\"Fibre channel protocol analyzers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"field-inspection-microscopes\",\"canonical\":\"Field inspection microscopes\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"figma\",\"canonical\":\"Figma\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"file-compression\",\"canonical\":\"File compression\",\"aliases\":[\"File compression software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"file-server\",\"canonical\":\"File server\",\"aliases\":[\"File server software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"file-servers\",\"canonical\":\"File servers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"file-system\",\"canonical\":\"File system\",\"aliases\":[\"File system software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"filehold-systems-filehold\",\"canonical\":\"FileHold Systems FileHold\",\"aliases\":[\"FSF\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"filemaker-pro\",\"canonical\":\"FileMaker Pro\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"filemon\",\"canonical\":\"FileMon\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"filevision\",\"canonical\":\"FileVision\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"finalbuilder\",\"canonical\":\"FinalBuilder\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"firebase\",\"canonical\":\"Firebase\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"firewall\",\"canonical\":\"Firewall\",\"aliases\":[\"Firewall software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"firewall-equipment\",\"canonical\":\"Firewall equipment\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"fish-tapes\",\"canonical\":\"Fish tapes\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"fitnesse\",\"canonical\":\"FitNesse\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"flash-disks\",\"canonical\":\"Flash disks\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"flask\",\"canonical\":\"Flask\",\"aliases\":[],\"type\":\"framework\",\"hot\":false,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"flat-file-checker\",\"canonical\":\"Flat File Checker\",\"aliases\":[\"FFC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"flat-head-screwdrivers\",\"canonical\":\"Flat head screwdrivers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"flexbox\",\"canonical\":\"FlexBox\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"flipgrid\",\"canonical\":\"Flipgrid\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"flow-chart\",\"canonical\":\"Flow chart\",\"aliases\":[\"Flow chart software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"fluent-ui\",\"canonical\":\"Fluent UI\",\"aliases\":[\"FluentUI\",\"Fluent\"],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"fluke-networks-enterprise-lanmeter\",\"canonical\":\"Fluke Networks Enterprise LANMeter\",\"aliases\":[\"FNEL\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"fly-io\",\"canonical\":\"Fly.io\",\"aliases\":[\"fly\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"fog-creek-software-fogbugz\",\"canonical\":\"Fog Creek Software FogBugz\",\"aliases\":[\"FCSF\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"formula-translation-translator-fortran\",\"canonical\":\"Formula translation/translator FORTRAN\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"forth\",\"canonical\":\"Forth\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"fortress-medical-clindex\",\"canonical\":\"Fortress Medical Clindex\",\"aliases\":[\"FMC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"forum-one-communications-projectspaces\",\"canonical\":\"Forum One Communications ProjectSpaces\",\"aliases\":[\"FOCP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"framer-motion\",\"canonical\":\"Framer Motion\",\"aliases\":[],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"free-field-speakers\",\"canonical\":\"Free-field speakers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"functional-testing\",\"canonical\":\"Functional testing\",\"aliases\":[\"Functional testing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"fund-accounting\",\"canonical\":\"Fund accounting\",\"aliases\":[\"Fund accounting software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"gambit-scheme\",\"canonical\":\"Gambit Scheme\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ganttproject\",\"canonical\":\"GanttProject\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ge-healthcare-centricity-emr\",\"canonical\":\"GE Healthcare Centricity EMR\",\"aliases\":[\"GHCE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"general-algebraic-modeling-system-gams\",\"canonical\":\"General algebraic modeling system GAMS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"genome-analysis-toolkit-gatk\",\"canonical\":\"Genome Analysis Toolkit GATK\",\"aliases\":[\"GATG\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"genscan\",\"canonical\":\"GENSCAN\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"geographic-information-system-gis\",\"canonical\":\"Geographic information system GIS\",\"aliases\":[\"Geographic information system GIS software\",\"Geographic information system GIS systems\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"geomview\",\"canonical\":\"Geomview\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ggy-axis\",\"canonical\":\"GGY AXIS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ghidra\",\"canonical\":\"Ghidra\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"gin\",\"canonical\":\"Gin\",\"aliases\":[],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"git\",\"canonical\":\"Git\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"github\",\"canonical\":\"GitHub\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"github-actions\",\"canonical\":\"GitHub Actions\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"gitlab\",\"canonical\":\"GitLab\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"gitlab-ci\",\"canonical\":\"GitLab CI\",\"aliases\":[\"GitLab CI/CD\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"glasscubes\",\"canonical\":\"Glasscubes\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"global-positioning-system-gps\",\"canonical\":\"Global positioning system GPS\",\"aliases\":[\"Global positioning system GPS software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"global-positioning-system-gps-receivers\",\"canonical\":\"Global positioning system GPS receivers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"gnu-image-manipulation-program-gimp\",\"canonical\":\"GNU Image Manipulation Program GIMP\",\"aliases\":[\"GIMPG\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"gnu-octave\",\"canonical\":\"GNU Octave\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"go\",\"canonical\":\"Go\",\"aliases\":[\"Golang\"],\"type\":\"language\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"google-ads\",\"canonical\":\"Google Ads\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"google-analytics\",\"canonical\":\"Google Analytics\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"google-android\",\"canonical\":\"Google Android\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"google-angular\",\"canonical\":\"Google Angular\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"google-classroom\",\"canonical\":\"Google Classroom\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"google-cloud\",\"canonical\":\"Google Cloud\",\"aliases\":[\"Google Cloud software\",\"GCP\",\"Google Cloud Platform\"],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"google-docs\",\"canonical\":\"Google Docs\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"google-drive\",\"canonical\":\"Google Drive\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"google-earth-pro\",\"canonical\":\"Google Earth Pro\",\"aliases\":[\"GEP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"google-gmail\",\"canonical\":\"Google Gmail\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"google-looker-analytics\",\"canonical\":\"Google Looker Analytics\",\"aliases\":[\"GLA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"google-meet\",\"canonical\":\"Google Meet\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"google-sheets\",\"canonical\":\"Google Sheets\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"google-sites\",\"canonical\":\"Google Sites\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"google-slides\",\"canonical\":\"Google Slides\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"google-workspace\",\"canonical\":\"Google Workspace\",\"aliases\":[\"Google Workspace software\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"gradle\",\"canonical\":\"Gradle\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"grafana\",\"canonical\":\"Grafana\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"grafana-labs-grafana-cloud\",\"canonical\":\"Grafana Labs Grafana Cloud\",\"aliases\":[\"GLGC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"grails\",\"canonical\":\"Grails\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"graphical-user-interface-gui-builder\",\"canonical\":\"Graphical user interface GUI builder\",\"aliases\":[\"Graphical user interface GUI builder software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"graphical-user-interface-gui-design\",\"canonical\":\"Graphical user interface GUI design\",\"aliases\":[\"Graphical user interface GUI design software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"graphics\",\"canonical\":\"Graphics\",\"aliases\":[\"Graphics software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"graphics-display-cards\",\"canonical\":\"Graphics display cards\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"graphics-pipelines\",\"canonical\":\"Graphics pipelines\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"graphics-processing-unit-gpu\",\"canonical\":\"Graphics processing unit GPU\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"graphics-programming-environment-grape\",\"canonical\":\"Graphics Programming Environment GRAPE\",\"aliases\":[\"GPEG\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"graphics-workstations\",\"canonical\":\"Graphics workstations\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"graphing-calculators\",\"canonical\":\"Graphing calculators\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"graphpad-software-graphpad-prism\",\"canonical\":\"GraphPad Software GraphPad Prism\",\"aliases\":[\"GSGP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"graphql\",\"canonical\":\"GraphQL\",\"aliases\":[],\"type\":\"library\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"greatis-object-inspector\",\"canonical\":\"Greatis Object Inspector\",\"aliases\":[\"GOI\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"greenhills-ada-compilers\",\"canonical\":\"Greenhills Ada compilers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"greenplum-database\",\"canonical\":\"Greenplum Database\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"groupme\",\"canonical\":\"GroupMe\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"grpc\",\"canonical\":\"gRPC\",\"aliases\":[],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"guidance-software-encase-enterprise\",\"canonical\":\"Guidance Software EnCase Enterprise\",\"aliases\":[\"GSEE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"guidance-software-encase-forensic\",\"canonical\":\"Guidance Software EnCase Forensic\",\"aliases\":[\"GSEF\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"handheld-computers\",\"canonical\":\"Handheld computers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"hard-disk-drives\",\"canonical\":\"Hard disk drives\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"hashicorp-vagrant\",\"canonical\":\"HashiCorp Vagrant\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"haskell\",\"canonical\":\"Haskell\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"headless-ui\",\"canonical\":\"Headless UI\",\"aliases\":[],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"healthcare-common-procedure-coding-system-hcpcs\",\"canonical\":\"Healthcare common procedure coding system HCPCS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"healthcare-management\",\"canonical\":\"Healthcare management\",\"aliases\":[\"Healthcare management system\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"helm\",\"canonical\":\"Helm\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"help-desk\",\"canonical\":\"Help desk\",\"aliases\":[\"Help desk software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"heroku\",\"canonical\":\"Heroku\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"hewlett-packard-exstream-dialogue\",\"canonical\":\"Hewlett Packard Exstream Dialogue\",\"aliases\":[\"HPED\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"hewlett-packard-hp-ux\",\"canonical\":\"Hewlett Packard HP-UX\",\"aliases\":[\"HPH\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"hewlett-packard-loadrunner\",\"canonical\":\"Hewlett Packard LoadRunner\",\"aliases\":[\"HPL\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"hewlett-packard-hp-network-node-manager\",\"canonical\":\"Hewlett-Packard HP Network Node Manager\",\"aliases\":[\"HHNNM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"hewlett-packard-hp-quicktest-professional\",\"canonical\":\"Hewlett-Packard HP QuickTest Professional\",\"aliases\":[\"HHQP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"hewlett-packard-hp-testdirector-for-quality-center\",\"canonical\":\"Hewlett-Packard HP TestDirector for Quality Center\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"hewlett-packard-hp-winrunner\",\"canonical\":\"Hewlett-Packard HP WinRunner\",\"aliases\":[\"HHW\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"hibernate-orm\",\"canonical\":\"Hibernate ORM\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"high-end-computer-servers\",\"canonical\":\"High end computer servers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"high-throughput-screening-hts\",\"canonical\":\"High throughput screening HTS\",\"aliases\":[\"High throughput screening HTS systems\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"high-end-database-servers\",\"canonical\":\"High-end database servers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"high-performance-cluster-hpc-computers\",\"canonical\":\"High-performance cluster HPC computers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"high-performance-software-libraries\",\"canonical\":\"High-performance software libraries\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"high-speed-networking-testbeds\",\"canonical\":\"High-speed networking testbeds\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"hit-software-allora\",\"canonical\":\"HiT Software Allora\",\"aliases\":[\"HSA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"honeypot\",\"canonical\":\"Honeypot\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"hono\",\"canonical\":\"Hono\",\"aliases\":[],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"hp-dataprotector\",\"canonical\":\"HP DataProtector\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"hp-fortify\",\"canonical\":\"HP Fortify\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"hp-webinspect\",\"canonical\":\"HP WebInspect\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"hubspot\",\"canonical\":\"HubSpot\",\"aliases\":[\"HubSpot software\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"hugging-face\",\"canonical\":\"Hugging Face\",\"aliases\":[\"HuggingFace\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"human-resource-management-software-hrms\",\"canonical\":\"Human resource management software HRMS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"hydrological-modeling\",\"canonical\":\"Hydrological modeling\",\"aliases\":[\"Hydrological modeling software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"hyland-software-onbase\",\"canonical\":\"Hyland Software OnBase\",\"aliases\":[\"HSO\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"hyperion-solutions-hyperion-intelligence\",\"canonical\":\"Hyperion Solutions Hyperion Intelligence\",\"aliases\":[\"HSHI\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"hyperoffice-collaboration-suite\",\"canonical\":\"HyperOffice Collaboration Suite\",\"aliases\":[\"HCS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"hyperspace\",\"canonical\":\"HyperSpace\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"hypertext-markup-language-html\",\"canonical\":\"Hypertext markup language HTML\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"i-lign\",\"canonical\":\"i-lign\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-adstar\",\"canonical\":\"IBM ADSTAR\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-aix\",\"canonical\":\"IBM AIX\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-bpm-blueprint\",\"canonical\":\"IBM BPM Blueprint\",\"aliases\":[\"IBB\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-clarity-systems-clarity\",\"canonical\":\"IBM Clarity Systems Clarity\",\"aliases\":[\"ICSC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-cognos-impromptu\",\"canonical\":\"IBM Cognos Impromptu\",\"aliases\":[\"ICI\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-content-manager\",\"canonical\":\"IBM Content Manager\",\"aliases\":[\"ICM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-db2\",\"canonical\":\"IBM DB2\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-director\",\"canonical\":\"IBM Director\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-domino\",\"canonical\":\"IBM Domino\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-filenet-content-manager\",\"canonical\":\"IBM FileNet Content Manager\",\"aliases\":[\"IFCM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-ilog\",\"canonical\":\"IBM ILOG\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-informix\",\"canonical\":\"IBM Informix\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-infosphere-datastage\",\"canonical\":\"IBM InfoSphere DataStage\",\"aliases\":[\"IID\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-infosphere-information-server\",\"canonical\":\"IBM Infosphere Information Server\",\"aliases\":[\"IIIS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-infosphere-warehouse\",\"canonical\":\"IBM InfoSphere Warehouse\",\"aliases\":[\"IIW\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-interactive-system-productivity-facility-ispf\",\"canonical\":\"IBM Interactive System Productivity Facility ISPF\",\"aliases\":[\"IISPFI\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-lotus-1-2-3\",\"canonical\":\"IBM Lotus 1-2-3\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-lotus-notes\",\"canonical\":\"IBM Lotus Notes\",\"aliases\":[\"ILN\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-lotus-sametime\",\"canonical\":\"IBM Lotus SameTime\",\"aliases\":[\"ILS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-middleware\",\"canonical\":\"IBM Middleware\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-mvs\",\"canonical\":\"IBM MVS\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-netezza-twinfin\",\"canonical\":\"IBM Netezza TwinFin\",\"aliases\":[\"INT\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-netview\",\"canonical\":\"IBM NetView\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-notes\",\"canonical\":\"IBM Notes\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-power-systems\",\"canonical\":\"IBM Power Systems\",\"aliases\":[\"IBM Power Systems software\",\"IPS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-qradar-siem\",\"canonical\":\"IBM QRadar SIEM\",\"aliases\":[\"IQS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-rational-apex\",\"canonical\":\"IBM Rational Apex\",\"aliases\":[\"IRA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-rational-application-developer\",\"canonical\":\"IBM Rational Application Developer\",\"aliases\":[\"IRAD\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-rational-build-forge\",\"canonical\":\"IBM Rational Build Forge\",\"aliases\":[\"IRBF\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-rational-clearcase\",\"canonical\":\"IBM Rational ClearCase\",\"aliases\":[\"IRC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-rational-clearquest\",\"canonical\":\"IBM Rational ClearQuest\",\"aliases\":[\"IRC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-rational-data-architect\",\"canonical\":\"IBM Rational Data Architect\",\"aliases\":[\"IRDA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-rational-purifyplus\",\"canonical\":\"IBM Rational PurifyPlus\",\"aliases\":[\"IRP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-rational-requirements-composer\",\"canonical\":\"IBM Rational Requirements Composer\",\"aliases\":[\"IRRC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-rational-requisitepro\",\"canonical\":\"IBM Rational RequisitePro\",\"aliases\":[\"IRR\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-rational-robot\",\"canonical\":\"IBM Rational Robot\",\"aliases\":[\"IRR\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-rational-rose-xde\",\"canonical\":\"IBM Rational Rose XDE\",\"aliases\":[\"IRRX\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-rational-system-architect\",\"canonical\":\"IBM Rational System Architect\",\"aliases\":[\"IRSA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-resource-access-control-facility-racf\",\"canonical\":\"IBM Resource Access Control Facility RACF\",\"aliases\":[\"IRACFR\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-security-network-intrusion-prevention\",\"canonical\":\"IBM Security Network Intrusion Prevention\",\"aliases\":[\"IBM Security Network Intrusion Prevention System\",\"ISNIP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-software-configuration-and-library-manager-sclm\",\"canonical\":\"IBM Software Configuration and Library Manager SCLM\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-spss-amos\",\"canonical\":\"IBM SPSS Amos\",\"aliases\":[\"ISA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-spss-answertree\",\"canonical\":\"IBM SPSS AnswerTree\",\"aliases\":[\"ISA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-spss-statistics\",\"canonical\":\"IBM SPSS Statistics\",\"aliases\":[\"ISS\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-terraform\",\"canonical\":\"IBM Terraform\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-tivoli\",\"canonical\":\"IBM Tivoli\",\"aliases\":[\"IBM Tivoli software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-tivoli-access-management-tam\",\"canonical\":\"IBM Tivoli Access Management TAM\",\"aliases\":[\"ITAMT\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-tivoli-identity-management-tim\",\"canonical\":\"IBM Tivoli Identity Management TIM\",\"aliases\":[\"ITIMT\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-tivoli-netview-distribution-manager\",\"canonical\":\"IBM Tivoli NetView Distribution Manager\",\"aliases\":[\"ITNDM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-unica-enterprise\",\"canonical\":\"IBM Unica Enterprise\",\"aliases\":[\"IUE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-websphere\",\"canonical\":\"IBM WebSphere\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-websphere-mq\",\"canonical\":\"IBM WebSphere MQ\",\"aliases\":[\"IWM\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"ibm-z-os-operating\",\"canonical\":\"IBM z/OS operating\",\"aliases\":[\"IBM z/OS operating systems\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"icon-programming-language\",\"canonical\":\"ICON programming language\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"iea-software-emerald\",\"canonical\":\"IEA Software Emerald\",\"aliases\":[\"ISE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ifconfig\",\"canonical\":\"ifconfig\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"igrafx\",\"canonical\":\"iGrafx\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ilog-opl-cplex-development\",\"canonical\":\"ILOG OPL-CPLEX Development\",\"aliases\":[\"ILOG OPL-CPLEX Development System\",\"IOD\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"image-capture-devices\",\"canonical\":\"Image capture devices\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"imagine-that-extend-or\",\"canonical\":\"Imagine That Extend OR\",\"aliases\":[\"ITEO\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"imperva-securesphere\",\"canonical\":\"Imperva SecureSphere\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"in-circuit-emulators-ice\",\"canonical\":\"In circuit emulators ICE\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"incremental-compiler\",\"canonical\":\"Incremental compiler\",\"aliases\":[\"Incremental compiler software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"index-tuning\",\"canonical\":\"Index tuning\",\"aliases\":[\"Index tuning software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"infoblox-netmri\",\"canonical\":\"Infoblox NetMRI\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"infoblox-security-and-networking\",\"canonical\":\"Infoblox security and networking\",\"aliases\":[\"Infoblox security and networking software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"infobright-community-edition-ice\",\"canonical\":\"Infobright Community Edition ICE\",\"aliases\":[\"ICEI\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"informatica\",\"canonical\":\"Informatica\",\"aliases\":[\"Informatica software\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"informatica-big-data\",\"canonical\":\"Informatica Big Data\",\"aliases\":[\"IBD\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"informatica-corporation-powercenter\",\"canonical\":\"Informatica Corporation PowerCenter\",\"aliases\":[\"ICP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"informatica-data-explorer\",\"canonical\":\"Informatica Data Explorer\",\"aliases\":[\"IDE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"informatica-powercenter\",\"canonical\":\"Informatica PowerCenter\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"information-builders-webfocus\",\"canonical\":\"Information Builders WebFOCUS\",\"aliases\":[\"IBW\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"information-systems-integration\",\"canonical\":\"Information systems integration\",\"aliases\":[\"Information systems integration software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"inforsense-inforsense\",\"canonical\":\"InforSense InforSense\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"infrared-fiber-meters\",\"canonical\":\"Infrared fiber meters\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"infrared-thermometers\",\"canonical\":\"Infrared thermometers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"inline-code-expander\",\"canonical\":\"Inline code expander\",\"aliases\":[\"Inline code expander software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"inloox\",\"canonical\":\"InLoox\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"inscribe\",\"canonical\":\"InScribe\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"insightful-s-plus\",\"canonical\":\"Insightful S-PLUS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"installshield\",\"canonical\":\"InstallShield\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"insulation-resistance-testers\",\"canonical\":\"Insulation resistance testers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"insureware-icrfs-elrf\",\"canonical\":\"Insureware ICRFS-ELRF\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"integrated-development-environment-ide\",\"canonical\":\"Integrated development environment IDE\",\"aliases\":[\"Integrated development environment IDE software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"integrated-services-digital-network-isdn-analyzers\",\"canonical\":\"Integrated services digital network ISDN analyzers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"integration-testing\",\"canonical\":\"Integration testing\",\"aliases\":[\"Integration testing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"integrity-verification\",\"canonical\":\"Integrity verification\",\"aliases\":[\"Integrity verification software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"intel-data-migration\",\"canonical\":\"Intel Data Migration\",\"aliases\":[\"Intel Data Migration Software\",\"IDM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"intel-integrated-performance-primitives\",\"canonical\":\"Intel Integrated Performance Primitives\",\"aliases\":[\"IIPP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"intel-math-kernel-library\",\"canonical\":\"Intel Math Kernel Library\",\"aliases\":[\"IMKL\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"intelligent-hubs\",\"canonical\":\"Intelligent hubs\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"interactive-mathematical-proof-system-imps\",\"canonical\":\"Interactive Mathematical Proof System IMPS\",\"aliases\":[\"IMPSI\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"interactive-voice-response\",\"canonical\":\"Interactive voice response\",\"aliases\":[\"Interactive voice response software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"interface-computers-data-loader\",\"canonical\":\"Interface Computers Data Loader\",\"aliases\":[\"ICDL\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"interface-definition-language-idl\",\"canonical\":\"Interface definition language IDL\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"intermediate-system-to-intermediate-system-is-is\",\"canonical\":\"Intermediate System to Intermediate System IS-IS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"intermine\",\"canonical\":\"InterMine\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"internationalization\",\"canonical\":\"Internationalization\",\"aliases\":[\"i18n\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"internet-browser\",\"canonical\":\"Internet browser\",\"aliases\":[\"Internet browser software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"internet-protocol-security-ipsec\",\"canonical\":\"Internet Protocol Security IPSEC\",\"aliases\":[\"IPSI\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"interoperability-testing\",\"canonical\":\"Interoperability testing\",\"aliases\":[\"Interoperability testing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"interpreter\",\"canonical\":\"Interpreter\",\"aliases\":[\"Interpreter software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"interstate-connection-icon\",\"canonical\":\"Interstate connection ICON\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"intland-software-codebeamer\",\"canonical\":\"Intland Software codeBeamer\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"intrusion-detection-system-ids\",\"canonical\":\"Intrusion detection system IDS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"intrusion-prevention-system-ips\",\"canonical\":\"Intrusion prevention system IPS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"invicti-acunetix\",\"canonical\":\"Invicti Acunetix\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"invision\",\"canonical\":\"InVision\",\"aliases\":[\"InVision software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"invivo-data-epx-epro-management\",\"canonical\":\"Invivo Data EPX ePRO Management\",\"aliases\":[\"Invivo Data EPX ePRO Management System\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"iona-orbix\",\"canonical\":\"IONA Orbix\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ipconfig\",\"canonical\":\"ipconfig\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ipfilter\",\"canonical\":\"IpFilter\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ipro\",\"canonical\":\"iPro\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ipswitch-whatsup-gold\",\"canonical\":\"Ipswitch WhatsUp Gold\",\"aliases\":[\"IWG\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"iptables\",\"canonical\":\"IpTables\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"iss-realsecure\",\"canonical\":\"ISS RealSecure\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"issue-tracking-system\",\"canonical\":\"Issue tracking system\",\"aliases\":[\"Issue tracking system software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"itt-visual-information-solutions-envi\",\"canonical\":\"ITT Visual Information Solutions ENVI\",\"aliases\":[\"IVISE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"jacal\",\"canonical\":\"JACAL\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"jack-termination\",\"canonical\":\"Jack termination\",\"aliases\":[\"Jack termination tools\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"jamboard\",\"canonical\":\"JamBoard\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"javascript\",\"canonical\":\"JavaScript\",\"aliases\":[\"JS\",\"ECMAScript\"],\"type\":\"language\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"javascript-framework\",\"canonical\":\"JavaScript framework\",\"aliases\":[\"JavaScript framework software\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"javascript-object-notation-json\",\"canonical\":\"JavaScript Object Notation JSON\",\"aliases\":[\"JONJ\"],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"jekyll\",\"canonical\":\"Jekyll\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"jenkins\",\"canonical\":\"Jenkins\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"jenkins-ci\",\"canonical\":\"Jenkins CI\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"jest\",\"canonical\":\"Jest\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"jetbrains-intellij-idea\",\"canonical\":\"JetBrains IntelliJ IDEA\",\"aliases\":[\"JII\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"jetbrains-phpstorm\",\"canonical\":\"JetBrains PhpStorm\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"jetbrains-team-city\",\"canonical\":\"JetBrains Team City\",\"aliases\":[\"JTC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"jfrog-artifactory\",\"canonical\":\"JFrog Artifactory\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"jira\",\"canonical\":\"Jira\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"jitterbit\",\"canonical\":\"Jitterbit\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"job-control-language-jcl\",\"canonical\":\"Job control language JCL\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"joomla\",\"canonical\":\"Joomla\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"jotai\",\"canonical\":\"Jotai\",\"aliases\":[],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"jquery\",\"canonical\":\"jQuery\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"julia\",\"canonical\":\"Julia\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"juniper-networks-netscreen-security-manager\",\"canonical\":\"Juniper Networks NetScreen-Security Manager\",\"aliases\":[\"JNNM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"junit\",\"canonical\":\"JUnit\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"jupyter\",\"canonical\":\"Jupyter\",\"aliases\":[\"Jupyter software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"jupyter-notebook\",\"canonical\":\"Jupyter Notebook\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"just-in-time-compiler\",\"canonical\":\"Just-in-time compiler\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"jwt\",\"canonical\":\"JWT\",\"aliases\":[],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"kafka\",\"canonical\":\"Kafka\",\"aliases\":[\"Apache Kafka\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"kali-linux\",\"canonical\":\"Kali Linux\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"kalido-information-engine\",\"canonical\":\"Kalido Information Engine\",\"aliases\":[\"KIE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"kant\",\"canonical\":\"KANT\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"kapwing\",\"canonical\":\"Kapwing\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"keras\",\"canonical\":\"Keras\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"keystroke-monitoring\",\"canonical\":\"Keystroke monitoring\",\"aliases\":[\"Keystroke monitoring software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"kforge\",\"canonical\":\"Kforge\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"kidasa-milestones-professional\",\"canonical\":\"Kidasa Milestones Professional\",\"aliases\":[\"KMP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"kika-veracity\",\"canonical\":\"KIKA Veracity\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"koffice-org-kplato\",\"canonical\":\"KOffice.org Kplato\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"kommandcore\",\"canonical\":\"KommandCore\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"kornshell\",\"canonical\":\"KornShell\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"kotlin\",\"canonical\":\"Kotlin\",\"aliases\":[],\"type\":\"language\",\"hot\":false,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"kseg\",\"canonical\":\"KSEG\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"kubeflow\",\"canonical\":\"Kubeflow\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"kubernetes\",\"canonical\":\"Kubernetes\",\"aliases\":[\"K8s\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"lamp-stack\",\"canonical\":\"LAMP Stack\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"landmark-graphics-geographix\",\"canonical\":\"Landmark Graphics GeoGraphix\",\"aliases\":[\"LGG\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"langchain\",\"canonical\":\"LangChain\",\"aliases\":[],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"laptop-computers\",\"canonical\":\"Laptop computers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"laravel\",\"canonical\":\"Laravel\",\"aliases\":[],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"large-format-plotters\",\"canonical\":\"Large-format plotters\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"laser-facsimile-machines\",\"canonical\":\"Laser facsimile machines\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"laser-printers\",\"canonical\":\"Laser printers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"laser-scanners\",\"canonical\":\"Laser scanners\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"laserfiche-rio\",\"canonical\":\"Laserfiche Rio\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"lavalys-everest\",\"canonical\":\"Lavalys Everest\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"learning-management-system-lms\",\"canonical\":\"Learning management system LMS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"leica-geosystems-erdas-imagine\",\"canonical\":\"Leica Geosystems ERDAS IMAGINE\",\"aliases\":[\"LGEI\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"lerna\",\"canonical\":\"Lerna\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"lewis-ellis-leapps\",\"canonical\":\"Lewis & Ellis LEAPPS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"lexisnexis\",\"canonical\":\"LexisNexis\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"libreoffice\",\"canonical\":\"LibreOffice\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"license-management\",\"canonical\":\"License management\",\"aliases\":[\"License management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"light-detection-and-ranging-lidar\",\"canonical\":\"Light detection and ranging LIDAR\",\"aliases\":[\"Light detection and ranging LIDAR systems\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"lighting-grids\",\"canonical\":\"Lighting grids\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"lightweight-directory-access-protocol-ldap-servers\",\"canonical\":\"Lightweight directory access protocol LDAP servers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"lindo-systems-lindo-api\",\"canonical\":\"LINDO Systems LINDO API\",\"aliases\":[\"LSLA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"lindo-systems-lingo\",\"canonical\":\"LINDO Systems LINGO\",\"aliases\":[\"LSL\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"linear\",\"canonical\":\"Linear\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"link-analyzers\",\"canonical\":\"Link analyzers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"link-encryption\",\"canonical\":\"Link encryption\",\"aliases\":[\"Link encryption software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"linkedin\",\"canonical\":\"LinkedIn\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"linux\",\"canonical\":\"Linux\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"liquid-crystal-display-lcd-projectors\",\"canonical\":\"Liquid crystal display LCD projectors\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"liquidplanner\",\"canonical\":\"LiquidPlanner\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"list-processing-language-lisp\",\"canonical\":\"List processing language LISP\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"llamaindex\",\"canonical\":\"LlamaIndex\",\"aliases\":[],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"load-balancers\",\"canonical\":\"Load balancers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"load-testing\",\"canonical\":\"Load testing\",\"aliases\":[\"Load testing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"local-area-network-lan\",\"canonical\":\"Local area network LAN\",\"aliases\":[\"Local area network LAN software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"local-area-network-lan-analyzers\",\"canonical\":\"Local area network LAN analyzers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"local-area-network-lan-switches\",\"canonical\":\"Local area network LAN switches\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"logic-analyzers\",\"canonical\":\"Logic analyzers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"logic-software-easy-projects-net\",\"canonical\":\"Logic Software Easy Projects.NET\",\"aliases\":[\"LSEP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"logical-partition-lpar\",\"canonical\":\"Logical partition LPAR\",\"aliases\":[\"Logical partition LPAR software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"logmatrix-nervecenter\",\"canonical\":\"LogMatrix NerveCenter\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"logmein-gotomeeting\",\"canonical\":\"LogMeIn GoToMeeting\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"logmein-gotowebinar\",\"canonical\":\"LogMeIn GoToWebinar\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"logo-design\",\"canonical\":\"Logo design\",\"aliases\":[\"Logo design software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"logrhythm\",\"canonical\":\"LogRhythm\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"loom\",\"canonical\":\"Loom\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"low-level-debugger\",\"canonical\":\"Low-level debugger\",\"aliases\":[\"Low-level debugger software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"low-level-virtual-machine-llvm-compilers\",\"canonical\":\"Low-level virtual machine LLVM compilers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"lua\",\"canonical\":\"Lua\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"lucent-vitalsuite\",\"canonical\":\"Lucent VitalSuite\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"lucid-iq-cmp\",\"canonical\":\"Lucid IQ CMP\",\"aliases\":[\"LIC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"luntbuild\",\"canonical\":\"LuntBuild\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mac-helpmate\",\"canonical\":\"Mac HelpMate\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mackichan-software-scientific-workplace\",\"canonical\":\"MacKichan Software Scientific WorkPlace\",\"aliases\":[\"MSSW\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"madrigal-soft-tools-delegator\",\"canonical\":\"Madrigal Soft Tools Delegator\",\"aliases\":[\"MSTD\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"magellan-firmware\",\"canonical\":\"Magellan Firmware\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"magma-design-automation\",\"canonical\":\"Magma Design Automation\",\"aliases\":[\"Magma Design Automation software\",\"MDA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"magneto-optical-discs\",\"canonical\":\"Magneto optical discs\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"magneto-optical-drives\",\"canonical\":\"Magneto optical drives\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"mail-transport-servers\",\"canonical\":\"Mail transport servers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"mainframe-computers\",\"canonical\":\"Mainframe computers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"mainframe-operating\",\"canonical\":\"Mainframe operating\",\"aliases\":[\"Mainframe operating systems\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"management-information-base-mib\",\"canonical\":\"Management information base MIB\",\"aliases\":[\"Management information base MIB software\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"management-information-systems-mis\",\"canonical\":\"Management information systems MIS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mantisbt\",\"canonical\":\"MantisBT\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"maplesoft-maple\",\"canonical\":\"Maplesoft Maple\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mapr-converged-data-platform\",\"canonical\":\"MapR Converged Data Platform\",\"aliases\":[\"MCDP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mapreduce-big-data\",\"canonical\":\"MapReduce big data\",\"aliases\":[\"MapReduce big data software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mariadb\",\"canonical\":\"MariaDB\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"marketo-marketing-automation\",\"canonical\":\"Marketo Marketing Automation\",\"aliases\":[\"MMA\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"marklogic\",\"canonical\":\"MarkLogic\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mass-storage-devices\",\"canonical\":\"Mass storage devices\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"massively-parallel-processors-mpp\",\"canonical\":\"Massively parallel processors MPP\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"matchware-mindview\",\"canonical\":\"MatchWare MindView\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"material-ui\",\"canonical\":\"Material UI\",\"aliases\":[\"MUI\",\"Material-UI\"],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"mathematical\",\"canonical\":\"Mathematical\",\"aliases\":[\"Mathematical software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mathsoft-mathcad\",\"canonical\":\"Mathsoft Mathcad\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mathworks-simulink\",\"canonical\":\"MathWorks Simulink\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"maxima\",\"canonical\":\"Maxima\",\"aliases\":[\"Maxima Software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"maximal-software-mpl-modeling\",\"canonical\":\"Maximal Software MPL Modeling\",\"aliases\":[\"Maximal Software MPL Modeling System\",\"MSMM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mcafee\",\"canonical\":\"McAfee\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mcafee-enterprise-security-manager\",\"canonical\":\"McAfee Enterprise Security Manager\",\"aliases\":[\"MESM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mcafee-virusscan\",\"canonical\":\"McAfee VirusScan\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mckesson-ansos-one-staff\",\"canonical\":\"McKesson ANSOS One-Staff\",\"aliases\":[\"MAO\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"media-storage-management\",\"canonical\":\"Media storage management\",\"aliases\":[\"Media storage management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"medical-condition-coding\",\"canonical\":\"Medical condition coding\",\"aliases\":[\"Medical condition coding software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"medical-image-database\",\"canonical\":\"Medical image database\",\"aliases\":[\"Medical image database systems\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"medical-procedure-coding\",\"canonical\":\"Medical procedure coding\",\"aliases\":[\"Medical procedure coding software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"medidata-rave-data-management\",\"canonical\":\"Medidata Rave Data Management\",\"aliases\":[\"MRDM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"meditech\",\"canonical\":\"MEDITECH\",\"aliases\":[\"MEDITECH software\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"meditech-healthcare-information-system-hcis\",\"canonical\":\"MEDITECH Healthcare Information System HCIS\",\"aliases\":[\"MHISH\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mediware-closedloop-clinical\",\"canonical\":\"Mediware ClosedLoop Clinical\",\"aliases\":[\"Mediware ClosedLoop Clinical Systems\",\"MCC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mediware-information-systems-medicoe\",\"canonical\":\"Mediware Information Systems MediCOE\",\"aliases\":[\"MISM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"medscribbler-enterprise\",\"canonical\":\"Medscribbler Enterprise\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mentoring\",\"canonical\":\"Mentoring\",\"aliases\":[],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"merge-healthcare-etrials\",\"canonical\":\"Merge Healthcare eTrials\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mesquite-software-csim\",\"canonical\":\"Mesquite Software CSIM\",\"aliases\":[\"MSC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"metasploit\",\"canonical\":\"Metasploit\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"meteorjs\",\"canonical\":\"MeteorJS\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"micosoft-sql-server-analysis-services-ssas\",\"canonical\":\"Micosoft SQL Server Analysis Services SSAS\",\"aliases\":[\"MSSASS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"micro-focus-openview\",\"canonical\":\"Micro Focus OpenView\",\"aliases\":[\"MFO\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microcomputers\",\"canonical\":\"Microcomputers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"microfour-practicestudio-net-emr\",\"canonical\":\"MicroFour PracticeStudio.NET EMR\",\"aliases\":[\"MPE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"micromuse-netcool\",\"canonical\":\"Micromuse NetCool\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"micropress-vtex\",\"canonical\":\"MicroPress VTeX\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microservices\",\"canonical\":\"Microservices\",\"aliases\":[],\"type\":\"practice\",\"hot\":true,\"sources\":[\"emerging\"]},{\"id\":\"microservices-architecture\",\"canonical\":\"Microservices Architecture\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-net-framework\",\"canonical\":\"Microsoft .NET Framework\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-access\",\"canonical\":\"Microsoft Access\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-active-directory\",\"canonical\":\"Microsoft Active Directory\",\"aliases\":[\"MAD\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-active-server-pages-asp\",\"canonical\":\"Microsoft Active Server Pages ASP\",\"aliases\":[\"MASPA\"],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-activex\",\"canonical\":\"Microsoft ActiveX\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-asp-net\",\"canonical\":\"Microsoft ASP.NET\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-asp-net-core-mvc\",\"canonical\":\"Microsoft ASP.NET Core MVC\",\"aliases\":[\"MACM\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-azure\",\"canonical\":\"Microsoft Azure\",\"aliases\":[\"Microsoft Azure software\",\"Azure\"],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"microsoft-azure-devops-services\",\"canonical\":\"Microsoft Azure DevOps Services\",\"aliases\":[\"MADS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-azure-sentinel\",\"canonical\":\"Microsoft Azure Sentinel\",\"aliases\":[\"MAS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-commerce-server\",\"canonical\":\"Microsoft Commerce Server\",\"aliases\":[\"MCS\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-defender-antivirus\",\"canonical\":\"Microsoft Defender Antivirus\",\"aliases\":[\"MDA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-directx\",\"canonical\":\"Microsoft DirectX\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-dns-server\",\"canonical\":\"Microsoft DNS Server\",\"aliases\":[\"MDS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-dynamics\",\"canonical\":\"Microsoft Dynamics\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-dynamics-gp\",\"canonical\":\"Microsoft Dynamics GP\",\"aliases\":[\"MDG\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-esp-sdk\",\"canonical\":\"Microsoft ESP SDK\",\"aliases\":[\"MES\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-excel\",\"canonical\":\"Microsoft Excel\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-exchange\",\"canonical\":\"Microsoft Exchange\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-expression-blend\",\"canonical\":\"Microsoft Expression Blend\",\"aliases\":[\"MEB\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-extensible-application-markup-language\",\"canonical\":\"Microsoft Extensible Application Markup Language\",\"aliases\":[\"XAML\",\"MEAML\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-forefront-identify-manager\",\"canonical\":\"Microsoft Forefront Identify Manager\",\"aliases\":[\"MFIM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-forefront-threat-management-gateway\",\"canonical\":\"Microsoft Forefront Threat Management Gateway\",\"aliases\":[\"MFTMG\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-frontpage\",\"canonical\":\"Microsoft FrontPage\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-high-level-shader-language-hlsl\",\"canonical\":\"Microsoft High Level Shader Language HLSL\",\"aliases\":[\"MHLSLH\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-hyper-v-server\",\"canonical\":\"Microsoft Hyper-V Server\",\"aliases\":[\"MHS\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-internet-explorer\",\"canonical\":\"Microsoft Internet Explorer\",\"aliases\":[\"MIE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-internet-information-services\",\"canonical\":\"Microsoft Internet Information Services\",\"aliases\":[\"IIS\",\"MIIS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-mappoint\",\"canonical\":\"Microsoft MapPoint\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-network-monitor\",\"canonical\":\"Microsoft Network Monitor\",\"aliases\":[\"MNM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-office\",\"canonical\":\"Microsoft Office\",\"aliases\":[\"Microsoft Office software\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-office-document-imaging\",\"canonical\":\"Microsoft Office Document Imaging\",\"aliases\":[\"MODI\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-office-sharepoint-server-moss\",\"canonical\":\"Microsoft Office SharePoint Server MOSS\",\"aliases\":[\"MOSSM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-onenote\",\"canonical\":\"Microsoft OneNote\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-operating\",\"canonical\":\"Microsoft operating\",\"aliases\":[\"Microsoft operating system\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-outlook\",\"canonical\":\"Microsoft Outlook\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-power-bi\",\"canonical\":\"Microsoft Power BI\",\"aliases\":[\"MPB\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-powerpoint\",\"canonical\":\"Microsoft PowerPoint\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-powershell\",\"canonical\":\"Microsoft PowerShell\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-proclarity\",\"canonical\":\"Microsoft Proclarity\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-publisher\",\"canonical\":\"Microsoft Publisher\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-security-esssentials\",\"canonical\":\"Microsoft Security Esssentials\",\"aliases\":[\"MSE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-sharepoint\",\"canonical\":\"Microsoft SharePoint\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-silverlight\",\"canonical\":\"Microsoft Silverlight\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-sql-server\",\"canonical\":\"Microsoft SQL Server\",\"aliases\":[\"MSS\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-sql-server-integration-services-ssis\",\"canonical\":\"Microsoft SQL Server Integration Services SSIS\",\"aliases\":[\"MSSISS\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-sql-server-reporting-services-ssrs\",\"canonical\":\"Microsoft SQL Server Reporting Services SSRS\",\"aliases\":[\"MSSRSS\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-systems-management-server\",\"canonical\":\"Microsoft Systems Management Server\",\"aliases\":[\"MSMS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-team-foundation-server\",\"canonical\":\"Microsoft Team Foundation Server\",\"aliases\":[\"MTFS\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-teams\",\"canonical\":\"Microsoft Teams\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-transact-structural-query-language-t-sql\",\"canonical\":\"Microsoft transact-structural query language T-SQL\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-virtual-server\",\"canonical\":\"Microsoft Virtual Server\",\"aliases\":[\"MVS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-visio\",\"canonical\":\"Microsoft Visio\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-visual-basic\",\"canonical\":\"Microsoft Visual Basic\",\"aliases\":[\"MVB\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-visual-basic-for-applications-vba\",\"canonical\":\"Microsoft Visual Basic for Applications VBA\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-visual-basic-scripting-edition-vbscript\",\"canonical\":\"Microsoft Visual Basic Scripting Edition VBScript\",\"aliases\":[\"MVBSEV\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-visual-basic-net\",\"canonical\":\"Microsoft Visual Basic.NET\",\"aliases\":[\"MVB\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-visual-c-net\",\"canonical\":\"Microsoft Visual C# .NET\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-visual-foxpro\",\"canonical\":\"Microsoft Visual FoxPro\",\"aliases\":[\"MVF\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-visual-interdev\",\"canonical\":\"Microsoft Visual InterDev\",\"aliases\":[\"MVI\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-visual-sourcesafe\",\"canonical\":\"Microsoft Visual SourceSafe\",\"aliases\":[\"MVS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-visual-studio\",\"canonical\":\"Microsoft Visual Studio\",\"aliases\":[\"MVS\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-visual-studio-net\",\"canonical\":\"Microsoft Visual Studio.NET\",\"aliases\":[\"MVS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-volume-shadow-copy-service\",\"canonical\":\"Microsoft Volume Shadow Copy Service\",\"aliases\":[\"MVSCS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-windows\",\"canonical\":\"Microsoft Windows\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-windows-powershell\",\"canonical\":\"Microsoft Windows PowerShell\",\"aliases\":[\"MWP\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-windows-pre-installation-environment\",\"canonical\":\"Microsoft Windows Pre-installation Environment\",\"aliases\":[\"MWPE\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-windows-sdk\",\"canonical\":\"Microsoft Windows SDK\",\"aliases\":[\"MWS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-windows-server\",\"canonical\":\"Microsoft Windows Server\",\"aliases\":[\"MWS\"],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-windows-sysprep\",\"canonical\":\"Microsoft Windows Sysprep\",\"aliases\":[\"MWS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-windows-terminal-services-access-manager\",\"canonical\":\"Microsoft Windows Terminal Services Access Manager\",\"aliases\":[\"MWTSAM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-windows-xp\",\"canonical\":\"Microsoft Windows XP\",\"aliases\":[\"MWX\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"microsoft-word\",\"canonical\":\"Microsoft Word\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"microstrategy\",\"canonical\":\"MicroStrategy\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"migration\",\"canonical\":\"Migration\",\"aliases\":[\"Migration software\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"migration-testing\",\"canonical\":\"Migration testing\",\"aliases\":[\"Migration testing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"milliman-corporate-affinity\",\"canonical\":\"Milliman Corporate Affinity\",\"aliases\":[\"MCA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"milliman-reservepro\",\"canonical\":\"Milliman ReservePro\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mind-mapping\",\"canonical\":\"Mind mapping\",\"aliases\":[\"Mind mapping software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mindgenius\",\"canonical\":\"MindGenius\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"minitab\",\"canonical\":\"Minitab\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"miro\",\"canonical\":\"Miro\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"mitre-att-ck\",\"canonical\":\"MITRE ATT&CK\",\"aliases\":[\"MITRE ATT&CK software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mixed-code-generator\",\"canonical\":\"Mixed code generator\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mixed-integer-optimizer-minto\",\"canonical\":\"Mixed integer optimizer MINTO\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mlflow\",\"canonical\":\"Mlflow\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"mobile-robots\",\"canonical\":\"Mobile robots\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"mobx\",\"canonical\":\"MobX\",\"aliases\":[],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"mocha\",\"canonical\":\"Mocha\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"modelkinetix-modelmaker\",\"canonical\":\"ModelKinetix ModelMaker\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"modula\",\"canonical\":\"Modula\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mongodb\",\"canonical\":\"MongoDB\",\"aliases\":[\"Mongo\"],\"type\":\"database\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"monorepo\",\"canonical\":\"Monorepo\",\"aliases\":[\"monorepos\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"moodle\",\"canonical\":\"Moodle\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"motherboards\",\"canonical\":\"Motherboards\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"mozilla-firefox\",\"canonical\":\"Mozilla Firefox\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mpi-micro-planner-x-pert\",\"canonical\":\"MPI Micro Planner X-Pert\",\"aliases\":[\"MMPX\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ms-dos-bootable-disks\",\"canonical\":\"MS-DOS-bootable disks\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"mulesoft\",\"canonical\":\"MuleSoft\",\"aliases\":[\"MuleSoft software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"multi-conductor-cables\",\"canonical\":\"Multi-conductor cables\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"multi-core-central-processing-unit-cpu\",\"canonical\":\"Multi-core central processing unit CPU\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"multi-line-telephone\",\"canonical\":\"Multi-line telephone\",\"aliases\":[\"Multi-line telephone systems\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"multi-router-traffic-grapher-mrtg\",\"canonical\":\"Multi-router traffic grapher MRTG\",\"aliases\":[\"Multi-router traffic grapher MRTG software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"multidimensional-expressions-mdx\",\"canonical\":\"Multidimensional Expressions MDX\",\"aliases\":[\"MEM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"multimeters\",\"canonical\":\"Multimeters\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"multipath-corporation-fast-matrix-solver-fms\",\"canonical\":\"Multipath Corporation Fast Matrix Solver FMS\",\"aliases\":[\"MCFMSF\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"multiprotocol-label-switching-mpls\",\"canonical\":\"Multiprotocol Label Switching MPLS\",\"aliases\":[\"MLSM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"multisensory-data-representation\",\"canonical\":\"Multisensory data representation\",\"aliases\":[\"Multisensory data representation software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mumps-m\",\"canonical\":\"MUMPS M\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mutation-testing\",\"canonical\":\"Mutation testing\",\"aliases\":[\"Mutation testing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"muthen-muthen-mplus\",\"canonical\":\"Muthen & Muthen Mplus\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"mysql\",\"canonical\":\"MySQL\",\"aliases\":[],\"type\":\"database\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"nagios\",\"canonical\":\"Nagios\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"national-instruments-labview\",\"canonical\":\"National Instruments LabVIEW\",\"aliases\":[\"NIL\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"national-land-cover-database-nlcd\",\"canonical\":\"National Land Cover Database NLCD\",\"aliases\":[\"NLCDN\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"nbtstat\",\"canonical\":\"nbtstat\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ncr-teradata-warehouse-miner\",\"canonical\":\"NCR Teradata Warehouse Miner\",\"aliases\":[\"NTWM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ncss-power-analysis-and-sample-size-pass\",\"canonical\":\"NCSS Power Analysis and Sample Size PASS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"nearpod\",\"canonical\":\"Nearpod\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"neo4j\",\"canonical\":\"Neo4j\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"neon\",\"canonical\":\"Neon\",\"aliases\":[],\"type\":\"database\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"nestjs\",\"canonical\":\"NestJS\",\"aliases\":[\"Nest.js\",\"Nest\"],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"netiq\",\"canonical\":\"NetIQ\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"netlify\",\"canonical\":\"Netlify\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"netreo-omnicenter\",\"canonical\":\"Netreo OmniCenter\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"netscout-infinitistream-console\",\"canonical\":\"NetScout InfinitiStream Console\",\"aliases\":[\"NIC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"netscout-sniffer-global-analyzer\",\"canonical\":\"NetScout Sniffer Global Analyzer\",\"aliases\":[\"NSGA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"netscout-sniffer-portable-professional-analyzer\",\"canonical\":\"NetScout Sniffer Portable Professional Analyzer\",\"aliases\":[\"NSPPA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"netsmart-technologies-carenet\",\"canonical\":\"Netsmart Technologies CareNet\",\"aliases\":[\"NTC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"netstat\",\"canonical\":\"netstat\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"netsuite-erp\",\"canonical\":\"NetSuite ERP\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-address-management\",\"canonical\":\"Network address management\",\"aliases\":[\"Network address management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-address-translation-nat-appliances\",\"canonical\":\"Network address translation NAT appliances\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"network-addressable-storage-nas\",\"canonical\":\"Network addressable storage NAS\",\"aliases\":[\"Network addressable storage NAS software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-analyzers\",\"canonical\":\"Network analyzers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"network-and-component-performance-analysis\",\"canonical\":\"Network and component performance analysis\",\"aliases\":[\"Network and component performance analysis software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-and-system-vulnerability-assessment\",\"canonical\":\"Network and system vulnerability assessment\",\"aliases\":[\"Network and system vulnerability assessment software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-architecture-design\",\"canonical\":\"Network architecture design\",\"aliases\":[\"Network architecture design software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-availability-monitoring\",\"canonical\":\"Network availability monitoring\",\"aliases\":[\"Network availability monitoring software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-bridge\",\"canonical\":\"Network bridge\",\"aliases\":[\"Network bridge software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-cabling\",\"canonical\":\"Network cabling\",\"aliases\":[\"Network cabling systems\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"network-channel-service-units-csu-or-data-service-units-dsu\",\"canonical\":\"Network channel service units CSU or data service units DSU\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"network-connectivity-testers\",\"canonical\":\"Network connectivity testers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"network-design\",\"canonical\":\"Network design\",\"aliases\":[\"Network design software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-directory-services\",\"canonical\":\"Network directory services\",\"aliases\":[\"Network directory services software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-documentation\",\"canonical\":\"Network documentation\",\"aliases\":[\"Network documentation software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-file-servers\",\"canonical\":\"Network file servers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"network-instruments-observer-standard\",\"canonical\":\"Network Instruments Observer Standard\",\"aliases\":[\"NIOS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-interface-cards-nic\",\"canonical\":\"Network interface cards NIC\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"network-intrusion-detection\",\"canonical\":\"Network intrusion detection\",\"aliases\":[\"Network intrusion detection software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-intrusion-prevention-systems-nips\",\"canonical\":\"Network intrusion prevention systems NIPS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-management\",\"canonical\":\"Network management\",\"aliases\":[\"Network management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-modeling-mapping-and-analysis\",\"canonical\":\"Network modeling, mapping, and analysis\",\"aliases\":[\"Network modeling, mapping, and analysis software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-monitoring\",\"canonical\":\"Network monitoring\",\"aliases\":[\"Network monitoring software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-multimeters\",\"canonical\":\"Network multimeters\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"network-reporting\",\"canonical\":\"Network reporting\",\"aliases\":[\"Network reporting software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-routers\",\"canonical\":\"Network routers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"network-security-auditing\",\"canonical\":\"Network security auditing\",\"aliases\":[\"Network security auditing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-server-load-balancers\",\"canonical\":\"Network server load balancers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"network-shutdown\",\"canonical\":\"Network shutdown\",\"aliases\":[\"Network shutdown software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-storage\",\"canonical\":\"Network storage\",\"aliases\":[\"Network storage software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-storage-arrays\",\"canonical\":\"Network storage arrays\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"network-switches\",\"canonical\":\"Network switches\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"network-traffic-flow-monitoring-and-analysis\",\"canonical\":\"Network traffic flow monitoring and analysis\",\"aliases\":[\"Network traffic flow monitoring and analysis software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-traffic-probe\",\"canonical\":\"Network traffic probe\",\"aliases\":[\"Network traffic probe software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-attached-storage-nas-equipment\",\"canonical\":\"Network-attached storage NAS equipment\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"network-hardware-and-software-auditing\",\"canonical\":\"Network, hardware, and software auditing\",\"aliases\":[\"Network, hardware, and software auditing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"network-server-and-operating-system-optimization\",\"canonical\":\"Network, server and operating system optimization\",\"aliases\":[\"Network, server and operating system optimization software\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"new-relic\",\"canonical\":\"New Relic\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"newgen-software-technologies-omnidocs\",\"canonical\":\"Newgen Software Technologies OmniDocs\",\"aliases\":[\"NSTO\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"next-js\",\"canonical\":\"Next.js\",\"aliases\":[\"NextJS\",\"Next\"],\"type\":\"framework\",\"hot\":true,\"sources\":[\"emerging\"]},{\"id\":\"nextgen-healthcare-information-systems-emr\",\"canonical\":\"NextGen Healthcare Information Systems EMR\",\"aliases\":[\"NHISE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ngrep\",\"canonical\":\"ngrep\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"niksun-netdetector\",\"canonical\":\"NIKSUN NetDetector\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ninian-huddle\",\"canonical\":\"Ninian Huddle\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"nmap\",\"canonical\":\"Nmap\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"node-js\",\"canonical\":\"Node.js\",\"aliases\":[\"NodeJS\",\"Node\"],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"norton-antivirus\",\"canonical\":\"Norton AntiVirus\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"nortonlifelock-cybersecurity\",\"canonical\":\"NortonLifeLock cybersecurity\",\"aliases\":[\"NortonLifeLock cybersecurity software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"nosql\",\"canonical\":\"NoSQL\",\"aliases\":[],\"type\":\"language\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"notebook-computers\",\"canonical\":\"Notebook computers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"notion\",\"canonical\":\"Notion\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"novastor-novabackup\",\"canonical\":\"NovaStor NovaBACKUP\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"novell-edirectory\",\"canonical\":\"Novell eDirectory\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"novell-netware-management-station\",\"canonical\":\"Novell NetWare Management Station\",\"aliases\":[\"NNMS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"npm\",\"canonical\":\"npm\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"nslookup\",\"canonical\":\"Nslookup\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"nuclear-magnetic-resonance-nmr-spectrometers\",\"canonical\":\"Nuclear magnetic resonance NMR spectrometers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"numeritek-numerica\",\"canonical\":\"Numeritek NUMERICA\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"numpy\",\"canonical\":\"NumPy\",\"aliases\":[],\"type\":\"library\",\"hot\":false,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"nunit\",\"canonical\":\"NUnit\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"nunjucks\",\"canonical\":\"Nunjucks\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"nut-drivers\",\"canonical\":\"Nut drivers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"nuxt-js\",\"canonical\":\"Nuxt.js\",\"aliases\":[\"Nuxt\",\"NuxtJS\"],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"nx\",\"canonical\":\"Nx\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"o3spaces-workplace\",\"canonical\":\"O3spaces Workplace\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oak-mountain-software-annuityvalue\",\"canonical\":\"Oak Mountain Software AnnuityValue\",\"aliases\":[\"OMSA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oauth\",\"canonical\":\"OAuth\",\"aliases\":[\"OAuth2\",\"OAuth 2.0\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"oberon\",\"canonical\":\"Oberon\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"object-database-management-system-odbms\",\"canonical\":\"Object database management system ODBMS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"object-management-group-object-request-broker\",\"canonical\":\"Object Management Group Object Request Broker\",\"aliases\":[\"OMGORB\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"object-oriented-development-environment\",\"canonical\":\"Object oriented development environment\",\"aliases\":[\"Object oriented development environment software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"objectif-lune-planetpress-suite\",\"canonical\":\"Objectif Lune PlanetPress Suite\",\"aliases\":[\"OLPS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"objective-c\",\"canonical\":\"Objective C\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"objective-caml\",\"canonical\":\"Objective Caml\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"objective-decision-contactizer-pro\",\"canonical\":\"Objective Decision Contactizer Pro\",\"aliases\":[\"ODCP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"objective-electronic-document-management\",\"canonical\":\"Objective Electronic Document Management\",\"aliases\":[\"OEDM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"observability\",\"canonical\":\"Observability\",\"aliases\":[],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"office-gemini-diamond-vision\",\"canonical\":\"Office Gemini Diamond Vision\",\"aliases\":[\"OGDV\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"officework-software-turboproject\",\"canonical\":\"OfficeWork Software TurboProject\",\"aliases\":[\"OST\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oidc\",\"canonical\":\"OIDC\",\"aliases\":[\"OpenID Connect\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"omni-group-omnigraffle\",\"canonical\":\"Omni Group OmniGraffle\",\"aliases\":[\"OGO\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"one-pass-compiler\",\"canonical\":\"One pass compiler\",\"aliases\":[\"One pass compiler software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"online-traffic-calculator\",\"canonical\":\"Online traffic calculator\",\"aliases\":[\"Online traffic calculator software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"open-dynamics-collabtive\",\"canonical\":\"Open Dynamics Collabtive\",\"aliases\":[\"ODC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"open-end-wrenches\",\"canonical\":\"Open end wrenches\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"open-graphics-library-opengl\",\"canonical\":\"Open Graphics Library OpenGL\",\"aliases\":[\"OGLO\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"open-shortest-path-first-ospf\",\"canonical\":\"Open Shortest Path First OSPF\",\"aliases\":[\"OSPFO\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"open-source-routing-protocols-ospf\",\"canonical\":\"Open source routing protocols OSPF\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"open-text-web-solutions\",\"canonical\":\"Open Text Web Solutions\",\"aliases\":[\"OTWS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"openai\",\"canonical\":\"OpenAI\",\"aliases\":[\"OpenAI API\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"openai-chatgpt\",\"canonical\":\"OpenAI ChatGPT\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"openclinica\",\"canonical\":\"OpenClinica\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"opendocman\",\"canonical\":\"OpenDocMan\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"opengl\",\"canonical\":\"OpenGL\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"openmake-software-meister\",\"canonical\":\"OpenMake Software Meister\",\"aliases\":[\"OSM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"openmake-software-mojo\",\"canonical\":\"OpenMake Software Mojo\",\"aliases\":[\"OSM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"opensearch\",\"canonical\":\"OpenSearch\",\"aliases\":[],\"type\":\"database\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"openservice-open-nervecenter\",\"canonical\":\"OpenService Open NerveCenter\",\"aliases\":[\"OON\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"opentelemetry\",\"canonical\":\"OpenTelemetry\",\"aliases\":[\"OTel\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"opentext-livelink-ecm\",\"canonical\":\"OpenText Livelink ECM\",\"aliases\":[\"OLE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"openvas\",\"canonical\":\"OpenVAS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"operating-system-monitoring\",\"canonical\":\"Operating system monitoring\",\"aliases\":[\"Operating system monitoring software\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"operating-system-process-control\",\"canonical\":\"Operating system process control\",\"aliases\":[\"Operating system process control software\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"operating-system-shells\",\"canonical\":\"Operating system shells\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"opnet-apmxpert\",\"canonical\":\"OPNET APMXpert\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"opnet-sp-sentinel\",\"canonical\":\"OPNET SP Sentinel\",\"aliases\":[\"OSS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"optical-character-recognition-ocr\",\"canonical\":\"Optical character recognition OCR\",\"aliases\":[\"Optical character recognition OCR software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"optical-disk-drives\",\"canonical\":\"Optical disk drives\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"optical-network-management\",\"canonical\":\"Optical network management\",\"aliases\":[\"Optical network management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"optical-power-meters\",\"canonical\":\"Optical power meters\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"optical-spectrum-analyzers\",\"canonical\":\"Optical spectrum analyzers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"optical-time-domain-reflectometers-otdr\",\"canonical\":\"Optical time domain reflectometers OTDR\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"optimization\",\"canonical\":\"Optimization\",\"aliases\":[\"Optimization software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-application-express-apex\",\"canonical\":\"Oracle Application Express APEX\",\"aliases\":[\"OAEA\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-application-server\",\"canonical\":\"Oracle Application Server\",\"aliases\":[\"OAS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-business-intelligence-discoverer\",\"canonical\":\"Oracle Business Intelligence Discoverer\",\"aliases\":[\"OBID\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-business-intelligence-enterprise-edition\",\"canonical\":\"Oracle Business Intelligence Enterprise Edition\",\"aliases\":[\"OBIEE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-business-intelligence-suite\",\"canonical\":\"Oracle Business Intelligence Suite\",\"aliases\":[\"OBIS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-clinical\",\"canonical\":\"Oracle Clinical\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-cloud\",\"canonical\":\"Oracle Cloud\",\"aliases\":[\"Oracle Cloud software\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-data-guard\",\"canonical\":\"Oracle Data Guard\",\"aliases\":[\"ODG\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-data-integrator\",\"canonical\":\"Oracle Data Integrator\",\"aliases\":[\"ODI\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-database\",\"canonical\":\"Oracle Database\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-designer\",\"canonical\":\"Oracle Designer\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-e-business-suite-financials\",\"canonical\":\"Oracle E-Business Suite Financials\",\"aliases\":[\"OESF\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-eloqua\",\"canonical\":\"Oracle Eloqua\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-enterprise-manager\",\"canonical\":\"Oracle Enterprise Manager\",\"aliases\":[\"OEM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-enterprise-manager-cloud-control\",\"canonical\":\"Oracle Enterprise Manager Cloud Control\",\"aliases\":[\"OEMCC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-essbase\",\"canonical\":\"Oracle Essbase\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-fusion\",\"canonical\":\"Oracle Fusion\",\"aliases\":[\"Oracle Fusion Applications\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-fusion-middleware\",\"canonical\":\"Oracle Fusion Middleware\",\"aliases\":[\"OFM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-golden-gate\",\"canonical\":\"Oracle Golden Gate\",\"aliases\":[\"OGG\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-hyperion\",\"canonical\":\"Oracle Hyperion\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-java\",\"canonical\":\"Oracle Java\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-java-2-platform-enterprise-edition-j2ee\",\"canonical\":\"Oracle Java 2 Platform Enterprise Edition J2EE\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-java-enterprise-edition-ee\",\"canonical\":\"Oracle Java Enterprise Edition EE\",\"aliases\":[\"OJEEE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-java-message-service-jms\",\"canonical\":\"Oracle Java Message Service JMS\",\"aliases\":[\"OJMSJ\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-javaserver-pages-jsp\",\"canonical\":\"Oracle JavaServer Pages JSP\",\"aliases\":[\"OJPJ\"],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-jd-edwards-enterpriseone\",\"canonical\":\"Oracle JD Edwards EnterpriseOne\",\"aliases\":[\"OJEE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-jdbc\",\"canonical\":\"Oracle JDBC\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-jdeveloper\",\"canonical\":\"Oracle Jdeveloper\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-learning-management\",\"canonical\":\"Oracle Learning Management\",\"aliases\":[\"OLM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-master-data-management-mdm-suite\",\"canonical\":\"Oracle Master Data Management MDM Suite\",\"aliases\":[\"OMDMMS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-migration-workbench\",\"canonical\":\"Oracle Migration Workbench\",\"aliases\":[\"OMW\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-net-manager\",\"canonical\":\"Oracle Net Manager\",\"aliases\":[\"ONM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-peoplesoft\",\"canonical\":\"Oracle PeopleSoft\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-peoplesoft-financials\",\"canonical\":\"Oracle PeopleSoft Financials\",\"aliases\":[\"OPF\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-pl-sql\",\"canonical\":\"Oracle PL/SQL\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-real-application-cluster-rac\",\"canonical\":\"Oracle Real Application Cluster RAC\",\"aliases\":[\"ORACR\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-recovery-manager\",\"canonical\":\"Oracle Recovery Manager\",\"aliases\":[\"ORM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-remote-data-capture\",\"canonical\":\"Oracle Remote Data Capture\",\"aliases\":[\"ORDC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-reports\",\"canonical\":\"Oracle Reports\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-siebel-marketing-resource-management\",\"canonical\":\"Oracle Siebel Marketing Resource Management\",\"aliases\":[\"OSMRM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-solaris\",\"canonical\":\"Oracle Solaris\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-sql-developer\",\"canonical\":\"Oracle SQL Developer\",\"aliases\":[\"OSD\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-sql-loader\",\"canonical\":\"Oracle SQL Loader\",\"aliases\":[\"OSL\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-sql-plus\",\"canonical\":\"Oracle SQL Plus\",\"aliases\":[\"OSP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-taleo\",\"canonical\":\"Oracle Taleo\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-unified-directory\",\"canonical\":\"Oracle Unified Directory\",\"aliases\":[\"OUD\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-universal-content-management\",\"canonical\":\"Oracle Universal Content Management\",\"aliases\":[\"OUCM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-warehouse-builder\",\"canonical\":\"Oracle Warehouse Builder\",\"aliases\":[\"OWB\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"oracle-weblogic-server\",\"canonical\":\"Oracle WebLogic Server\",\"aliases\":[\"OWS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"orcad-capture\",\"canonical\":\"OrCAD Capture\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"overhead-projectors\",\"canonical\":\"Overhead projectors\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"packet-analysis\",\"canonical\":\"Packet analysis\",\"aliases\":[\"Packet analysis software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"packet-analysis-equipment\",\"canonical\":\"Packet analysis equipment\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"packet-analyzers\",\"canonical\":\"Packet analyzers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"packet-filter\",\"canonical\":\"Packet filter\",\"aliases\":[\"Packet filter software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"packet-tracing\",\"canonical\":\"Packet tracing\",\"aliases\":[\"Packet tracing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"palbridge-ubidesk\",\"canonical\":\"Palbridge Ubidesk\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"palo-alto-networks-next-generation-security-platform\",\"canonical\":\"Palo Alto Networks Next-Generation Security Platform\",\"aliases\":[\"PANNSP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"pan-tilt-zoom-cameras\",\"canonical\":\"Pan-tilt-zoom cameras\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"pandas\",\"canonical\":\"pandas\",\"aliases\":[],\"type\":\"library\",\"hot\":false,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"panorama-novaview\",\"canonical\":\"Panorama NovaView\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"paraccel-analytic-database\",\"canonical\":\"ParAccel Analytic Database\",\"aliases\":[\"PAD\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"parallel-systems\",\"canonical\":\"Parallel systems\",\"aliases\":[\"Parallel systems software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"parcel\",\"canonical\":\"Parcel\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"parentsquare\",\"canonical\":\"ParentSquare\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"pari-gp\",\"canonical\":\"PARI/GP\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"partial-class-generator\",\"canonical\":\"Partial class generator\",\"aliases\":[\"Partial class generator software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"pascal\",\"canonical\":\"Pascal\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"password-cracker\",\"canonical\":\"Password cracker\",\"aliases\":[\"Password cracker software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"password-management\",\"canonical\":\"Password management\",\"aliases\":[\"Password management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"patch-and-update-management\",\"canonical\":\"Patch and update management\",\"aliases\":[\"Patch and update management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"patch-management\",\"canonical\":\"Patch management\",\"aliases\":[\"Patch management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"patient-monitoring\",\"canonical\":\"Patient monitoring\",\"aliases\":[\"Patient monitoring systems\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"patient-tracking\",\"canonical\":\"Patient tracking\",\"aliases\":[\"Patient tracking software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"pegasystems-smartbpm\",\"canonical\":\"Pegasystems SmartBPM\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"penetration-testing\",\"canonical\":\"Penetration testing\",\"aliases\":[\"Penetration testing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"pentaho-kettle\",\"canonical\":\"Pentaho Kettle\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"perceptive-software-imagenow\",\"canonical\":\"Perceptive Software ImageNow\",\"aliases\":[\"PSI\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"perforce\",\"canonical\":\"Perforce\",\"aliases\":[\"Perforce software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"perforce-helix\",\"canonical\":\"Perforce Helix\",\"aliases\":[\"Perforce Helix software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"perforce-software-configuration-management\",\"canonical\":\"Perforce Software Configuration Management\",\"aliases\":[\"Perforce Software Configuration Management System\",\"PSCM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"perl\",\"canonical\":\"Perl\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"perl-shell\",\"canonical\":\"Perl shell\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"personable-workflow-dms\",\"canonical\":\"Personable Workflow DMS\",\"aliases\":[\"PWD\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"personal-computer-diagnostic\",\"canonical\":\"Personal computer diagnostic\",\"aliases\":[\"Personal computer diagnostic software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"personal-computers\",\"canonical\":\"Personal computers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"personal-digital-assistants-pda\",\"canonical\":\"Personal digital assistants PDA\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"phantomjs\",\"canonical\":\"PhantomJS\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"phase-forward-clintrial\",\"canonical\":\"Phase Forward Clintrial\",\"aliases\":[\"PFC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"phillips-head-screwdrivers\",\"canonical\":\"Phillips head screwdrivers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"phoenix\",\"canonical\":\"Phoenix\",\"aliases\":[],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"photocopiers\",\"canonical\":\"Photocopiers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"photocopying-equipment\",\"canonical\":\"Photocopying equipment\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"php\",\"canonical\":\"PHP\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"phylip\",\"canonical\":\"PHYLIP\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"picis-caresuite\",\"canonical\":\"Picis CareSuite\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ping-identity\",\"canonical\":\"Ping Identity\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"pipe-benders\",\"canonical\":\"Pipe benders\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"planbox\",\"canonical\":\"Planbox\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"planetscale\",\"canonical\":\"PlanetScale\",\"aliases\":[],\"type\":\"database\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"planisware\",\"canonical\":\"Planisware\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"planview-process-builder\",\"canonical\":\"Planview Process Builder\",\"aliases\":[\"PPB\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"platform-as-a-service-paas\",\"canonical\":\"Platform as a service PaaS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"playwright\",\"canonical\":\"Playwright\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"plotters\",\"canonical\":\"Plotters\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"plug-in-file\",\"canonical\":\"Plug-in file\",\"aliases\":[\"Plug-in file software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"pm-ase-quickbuild\",\"canonical\":\"pm ase QuickBuild\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"pnpm\",\"canonical\":\"pnpm\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"polaris-parallelizing-compilers\",\"canonical\":\"Polaris parallelizing compilers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"polarity-testers\",\"canonical\":\"Polarity testers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"polhemus-fasttrack\",\"canonical\":\"Polhemus Fasttrack\",\"aliases\":[\"Polhemus Fasttrack System\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"poll-everywhere\",\"canonical\":\"Poll Everywhere\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"polymath-software-polymath\",\"canonical\":\"Polymath Software POLYMATH\",\"aliases\":[\"PSP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"polysystems-asset-delphi\",\"canonical\":\"PolySystems Asset Delphi\",\"aliases\":[\"PAD\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"popkin-system-architect\",\"canonical\":\"Popkin System Architect\",\"aliases\":[\"PSA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"port-analyzer-adapters\",\"canonical\":\"Port analyzer adapters\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"port-scanners\",\"canonical\":\"Port scanners\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"portable-data-collectors\",\"canonical\":\"Portable data collectors\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"portable-drills\",\"canonical\":\"Portable drills\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"portswigger-burp-suite\",\"canonical\":\"Portswigger BurP Suite\",\"aliases\":[\"PBS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"postgresql\",\"canonical\":\"PostgreSQL\",\"aliases\":[\"Postgres\"],\"type\":\"database\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"postman\",\"canonical\":\"Postman\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"power-meters\",\"canonical\":\"Power meters\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"power-saws\",\"canonical\":\"Power saws\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"powerline-monitors\",\"canonical\":\"Powerline monitors\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"powersoft-powerbuilder\",\"canonical\":\"PowerSoft PowerBuilder\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ppd-eloader\",\"canonical\":\"PPD eLoader\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"presentation\",\"canonical\":\"Presentation\",\"aliases\":[\"Presentation software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"prettier\",\"canonical\":\"Prettier\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"pricing\",\"canonical\":\"Pricing\",\"aliases\":[\"Pricing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"prisma\",\"canonical\":\"Prisma\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"program-checksumming\",\"canonical\":\"Program checksumming\",\"aliases\":[\"Program checksumming software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"programming-language-one-pl-i\",\"canonical\":\"Programming language one PL/I\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"progress-openedge-abl\",\"canonical\":\"Progress OpenEdge ABL\",\"aliases\":[\"POA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"progress-sonic-esb\",\"canonical\":\"Progress Sonic ESB\",\"aliases\":[\"PSE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"progress-webspeed-workshop\",\"canonical\":\"Progress WebSpeed Workshop\",\"aliases\":[\"PWW\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"progressive-web-app\",\"canonical\":\"Progressive Web App\",\"aliases\":[\"PWA\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"projectlibre\",\"canonical\":\"ProjectLibre\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"projecturf\",\"canonical\":\"Projecturf\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"prolog\",\"canonical\":\"Prolog\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"prometheus\",\"canonical\":\"Prometheus\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"promodel\",\"canonical\":\"ProModel\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"protocol-analyzers\",\"canonical\":\"Protocol analyzers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"provalis-research-simstat\",\"canonical\":\"Provalis Research Simstat\",\"aliases\":[\"PRS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ptc-creo-parametric\",\"canonical\":\"PTC Creo Parametric\",\"aliases\":[\"PCP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"pulumi\",\"canonical\":\"Pulumi\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"punch-down-insertion\",\"canonical\":\"Punch down insertion\",\"aliases\":[\"Punch down insertion tools\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"punchdown\",\"canonical\":\"Punchdown\",\"aliases\":[\"Punchdown tools\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"puppet\",\"canonical\":\"Puppet\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"putty\",\"canonical\":\"PuTTY\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"pyspark\",\"canonical\":\"PySpark\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"python\",\"canonical\":\"Python\",\"aliases\":[],\"type\":\"language\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"pytorch\",\"canonical\":\"PyTorch\",\"aliases\":[],\"type\":\"framework\",\"hot\":false,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"qgis\",\"canonical\":\"QGIS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"qlik\",\"canonical\":\"Qlik\",\"aliases\":[\"Qlik software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"qlik-tech-qlikview\",\"canonical\":\"Qlik Tech QlikView\",\"aliases\":[\"QTQ\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"qnx\",\"canonical\":\"QNX\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"qsm-slim-suite\",\"canonical\":\"QSM SLIM Suite\",\"aliases\":[\"QSS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"qualys-cloud-platform\",\"canonical\":\"Qualys Cloud Platform\",\"aliases\":[\"QCP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"quantitative-micro-software-eviews\",\"canonical\":\"Quantitative Micro Software EViews\",\"aliases\":[\"QMSE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"quarter-inch-cartridge-qic-tapes\",\"canonical\":\"Quarter inch cartridge QIC tapes\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"quest-bigbrother\",\"canonical\":\"Quest BigBrother\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"quest-central\",\"canonical\":\"Quest Central\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"quest-erwin-data-modeler\",\"canonical\":\"Quest Erwin Data Modeler\",\"aliases\":[\"QEDM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"quest-foglight\",\"canonical\":\"Quest Foglight\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"quest-shareplex\",\"canonical\":\"Quest SharePlex\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"quest-sql-optimizer-for-oracle\",\"canonical\":\"Quest SQL Optimizer for Oracle\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"quickbase-business-management\",\"canonical\":\"QuickBase business management\",\"aliases\":[\"QuickBase business management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"qwik\",\"canonical\":\"Qwik\",\"aliases\":[],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"rabbitmq\",\"canonical\":\"RabbitMQ\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"radio-frequency-cables\",\"canonical\":\"Radio frequency cables\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"radio-frequency-rf-antennas\",\"canonical\":\"Radio frequency RF antennas\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"radio-interference-detection-rid-devices\",\"canonical\":\"Radio interference detection RID devices\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"radix-ui\",\"canonical\":\"Radix UI\",\"aliases\":[\"Radix\"],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"rag\",\"canonical\":\"RAG\",\"aliases\":[\"Retrieval Augmented Generation\",\"retrieval-augmented generation\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"rails\",\"canonical\":\"Rails\",\"aliases\":[\"Ruby on Rails\",\"RoR\"],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"railway\",\"canonical\":\"Railway\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"rapid-i-rapidminer\",\"canonical\":\"Rapid-I RapidMiner\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"rapid7-nexpose\",\"canonical\":\"Rapid7 Nexpose\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"rapide\",\"canonical\":\"Rapide\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"rat-stats\",\"canonical\":\"RAT-STATS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"react\",\"canonical\":\"React\",\"aliases\":[\"React.js\",\"ReactJS\"],\"type\":\"framework\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"react-native\",\"canonical\":\"React Native\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"react-query\",\"canonical\":\"React Query\",\"aliases\":[\"TanStack Query\",\"tanstack-query\"],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"react-redux\",\"canonical\":\"React Redux\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"real-time-motion-capture\",\"canonical\":\"Real time motion capture\",\"aliases\":[\"Real time motion capture systems\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"real-time-operating-system-rtos\",\"canonical\":\"Real time operating system RTOS\",\"aliases\":[\"Real time operating system RTOS software\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"recoil\",\"canonical\":\"Recoil\",\"aliases\":[],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"records-management\",\"canonical\":\"Records management\",\"aliases\":[\"Records management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"recovery-testing\",\"canonical\":\"Recovery testing\",\"aliases\":[\"Recovery testing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"recrystallize-crystal-reports\",\"canonical\":\"ReCrystallize Crystal Reports\",\"aliases\":[\"RCR\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"red-hat-ansible-engine\",\"canonical\":\"Red Hat Ansible Engine\",\"aliases\":[\"RHAE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"red-hat-enterprise-linux\",\"canonical\":\"Red Hat Enterprise Linux\",\"aliases\":[\"RHEL\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"red-hat-openshift\",\"canonical\":\"Red Hat OpenShift\",\"aliases\":[\"RHO\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"red-hat-wildfly\",\"canonical\":\"Red Hat WildFly\",\"aliases\":[\"RHW\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"redgate-sql-server\",\"canonical\":\"Redgate SQL Server\",\"aliases\":[\"RSS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"redis\",\"canonical\":\"Redis\",\"aliases\":[],\"type\":\"database\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"redmine\",\"canonical\":\"Redmine\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"redundant-array-of-independent-disks-raid\",\"canonical\":\"Redundant array of independent disks RAID\",\"aliases\":[\"Redundant array of independent disks RAID systems\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"redux\",\"canonical\":\"Redux\",\"aliases\":[\"Redux Toolkit\",\"RTK\"],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"reflectometers\",\"canonical\":\"Reflectometers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"regmon\",\"canonical\":\"RegMon\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"regression-testing\",\"canonical\":\"Regression testing\",\"aliases\":[\"Regression testing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"relational-database\",\"canonical\":\"Relational database\",\"aliases\":[\"Relational database software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"relational-database-management\",\"canonical\":\"Relational database management\",\"aliases\":[\"Relational database management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"relational-database-management-system\",\"canonical\":\"Relational database management system\",\"aliases\":[\"Relational database management system software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"relational-database-management-system-rdms\",\"canonical\":\"Relational database management system RDMS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"relay\",\"canonical\":\"Relay\",\"aliases\":[],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"remix\",\"canonical\":\"Remix\",\"aliases\":[],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"remote-access\",\"canonical\":\"Remote access\",\"aliases\":[\"Remote access software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"remote-access-servers\",\"canonical\":\"Remote access servers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"remote-authentication-dial-in-user-service-radius\",\"canonical\":\"Remote authentication dial-in user service RADIUS\",\"aliases\":[\"Remote authentication dial-in user service RADIUS software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"remote-control\",\"canonical\":\"Remote control\",\"aliases\":[\"Remote control software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"remote-desktop-control\",\"canonical\":\"Remote desktop control\",\"aliases\":[\"Remote desktop control software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"remote-install-server\",\"canonical\":\"Remote install server\",\"aliases\":[\"Remote install server software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"remote-monitoring\",\"canonical\":\"Remote monitoring\",\"aliases\":[\"Remote monitoring software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"render\",\"canonical\":\"Render\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"render-farms\",\"canonical\":\"Render farms\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"reporting\",\"canonical\":\"Reporting\",\"aliases\":[\"Reporting software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"requirejs\",\"canonical\":\"RequireJS\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"requirements-analysis\",\"canonical\":\"Requirements analysis\",\"aliases\":[\"Requirements analysis software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"requirements-management\",\"canonical\":\"Requirements management\",\"aliases\":[\"Requirements management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"resource-management\",\"canonical\":\"Resource management\",\"aliases\":[\"Resource management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"rest-api\",\"canonical\":\"REST API\",\"aliases\":[\"RESTful API\",\"REST APIs\",\"REST\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"restful-api\",\"canonical\":\"RESTful API\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"restructured-extended-executor-rexx\",\"canonical\":\"Restructured extended executor REXX\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"retargetable-compiler\",\"canonical\":\"Retargetable compiler\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"revision-control\",\"canonical\":\"Revision control\",\"aliases\":[\"Revision control software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"rice-simulator-for-ilp-multiprocessors-rsim\",\"canonical\":\"Rice Simulator for ILP Multiprocessors RSIM\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"risk-assessment\",\"canonical\":\"Risk assessment\",\"aliases\":[\"Risk assessment software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"riverbed-technology\",\"canonical\":\"Riverbed Technology\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"rockware-arcmap\",\"canonical\":\"RockWare ArcMap\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"rockwell-automation-arena\",\"canonical\":\"Rockwell Automation Arena\",\"aliases\":[\"RAA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"rogue-wave-software-imsl-numerical-libraries\",\"canonical\":\"Rogue Wave Software IMSL Numerical Libraries\",\"aliases\":[\"RWSINL\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"rollup\",\"canonical\":\"Rollup\",\"aliases\":[\"Rollup.js\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"root-cause-analysis\",\"canonical\":\"Root cause analysis\",\"aliases\":[\"Root cause analysis software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"root-kit-detection\",\"canonical\":\"Root kit detection\",\"aliases\":[\"Root kit detection software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"route\",\"canonical\":\"Route\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"router\",\"canonical\":\"Router\",\"aliases\":[\"Router software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"roxio-retrospect\",\"canonical\":\"Roxio Retrospect\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ruby\",\"canonical\":\"Ruby\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"ruby-on-rails\",\"canonical\":\"Ruby on Rails\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"rust\",\"canonical\":\"Rust\",\"aliases\":[],\"type\":\"language\",\"hot\":true,\"sources\":[\"emerging\"]},{\"id\":\"rust-programming-language\",\"canonical\":\"Rust programming language\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"safe-software-fme\",\"canonical\":\"Safe Software FME\",\"aliases\":[\"SSF\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sage-50-accounting\",\"canonical\":\"Sage 50 Accounting\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sage-accounting\",\"canonical\":\"Sage Accounting\",\"aliases\":[\"Sage Accounting Software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"salesforce\",\"canonical\":\"Salesforce\",\"aliases\":[\"Salesforce software\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"salesforce-marketing-cloud\",\"canonical\":\"Salesforce Marketing Cloud\",\"aliases\":[\"SMC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"salesforce-visualforce\",\"canonical\":\"Salesforce Visualforce\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sand\",\"canonical\":\"SAND\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sap\",\"canonical\":\"SAP\",\"aliases\":[\"SAP software\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"sap-adaptive-server-enterprise\",\"canonical\":\"SAP Adaptive Server Enterprise\",\"aliases\":[\"SASE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sap-business-intelligence\",\"canonical\":\"SAP Business Intelligence\",\"aliases\":[\"SBI\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sap-business-objects\",\"canonical\":\"SAP Business Objects\",\"aliases\":[\"SBO\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sap-businessobjects-crystal-reports\",\"canonical\":\"SAP BusinessObjects Crystal Reports\",\"aliases\":[\"SBCR\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sap-businessobjects-data-integrator\",\"canonical\":\"SAP BusinessObjects Data Integrator\",\"aliases\":[\"SBDI\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sap-businessobjects-desktop-intelligence\",\"canonical\":\"SAP BusinessObjects Desktop Intelligence\",\"aliases\":[\"SBDI\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sap-crystal-reports\",\"canonical\":\"SAP Crystal Reports\",\"aliases\":[\"SCR\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sap-dms\",\"canonical\":\"SAP DMS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sap-erp-financials\",\"canonical\":\"SAP ERP Financials\",\"aliases\":[\"SEF\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sap-iq\",\"canonical\":\"SAP IQ\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sap-master-data-management-mdm\",\"canonical\":\"SAP Master Data Management MDM\",\"aliases\":[\"SMDMM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sap-netweaver\",\"canonical\":\"SAP NetWeaver\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sap-netweaver-bw\",\"canonical\":\"SAP NetWeaver BW\",\"aliases\":[\"SNB\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sap-powerbuilder\",\"canonical\":\"SAP PowerBuilder\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sap-powerdesigner\",\"canonical\":\"SAP PowerDesigner\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sap-replication-server\",\"canonical\":\"SAP Replication Server\",\"aliases\":[\"SRS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"saperion-ecm\",\"canonical\":\"Saperion ECM\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sas\",\"canonical\":\"SAS\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"sas-data-integration-server\",\"canonical\":\"SAS Data Integration Server\",\"aliases\":[\"SDIS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sas-data-integration-studio\",\"canonical\":\"SAS Data Integration Studio\",\"aliases\":[\"SDIS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sas-enterprise-miner\",\"canonical\":\"SAS Enterprise Miner\",\"aliases\":[\"SEM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sas-jmp\",\"canonical\":\"SAS JMP\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sas-connect\",\"canonical\":\"SAS/CONNECT\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sas-stat\",\"canonical\":\"SAS/STAT\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"scala\",\"canonical\":\"Scala\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"scanners\",\"canonical\":\"Scanners\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"scheduling\",\"canonical\":\"Scheduling\",\"aliases\":[\"Scheduling software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"scheme\",\"canonical\":\"Scheme\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"schoology\",\"canonical\":\"Schoology\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"scientific-software-international-ssi-lisrel\",\"canonical\":\"Scientific Software International SSI LISREL\",\"aliases\":[\"SSISL\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sciforma\",\"canonical\":\"Sciforma\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"scikit-learn\",\"canonical\":\"Scikit-learn\",\"aliases\":[\"sklearn\"],\"type\":\"library\",\"hot\":false,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"scipy\",\"canonical\":\"SciPy\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"screencast-o-matic\",\"canonical\":\"Screencast-O-Matic\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"screencastify\",\"canonical\":\"Screencastify\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"screwdrivers\",\"canonical\":\"Screwdrivers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"scriptella\",\"canonical\":\"Scriptella\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"secure-internet-filtering\",\"canonical\":\"Secure internet filtering\",\"aliases\":[\"Secure internet filtering software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"secure-shell-ssh\",\"canonical\":\"Secure shell SSH\",\"aliases\":[\"Secure shell SSH software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"security-assertion-markup-language-saml\",\"canonical\":\"Security assertion markup language SAML\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"security-incident-management\",\"canonical\":\"Security incident management\",\"aliases\":[\"Security incident management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"security-risk-assessment\",\"canonical\":\"Security risk assessment\",\"aliases\":[\"Security risk assessment software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"security-testing\",\"canonical\":\"Security testing\",\"aliases\":[\"Security testing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"seesaw\",\"canonical\":\"Seesaw\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"segue-silkperformer\",\"canonical\":\"Segue SilkPerformer\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"seimens-healthineers\",\"canonical\":\"Seimens Healthineers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"selenium\",\"canonical\":\"Selenium\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"semiconductor-based-sequencers\",\"canonical\":\"Semiconductor-based sequencers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"sentry\",\"canonical\":\"Sentry\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"sentryone-sql-sentry\",\"canonical\":\"SentryOne SQL Sentry\",\"aliases\":[\"SSS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"serial-port-cards\",\"canonical\":\"Serial port cards\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"server-side-rendering\",\"canonical\":\"Server-Side Rendering\",\"aliases\":[\"SSR\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"serverless\",\"canonical\":\"Serverless\",\"aliases\":[],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"servicenow\",\"canonical\":\"ServiceNow\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"session-initiation-protocol-sip\",\"canonical\":\"Session Initiation Protocol SIP\",\"aliases\":[\"SIPS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"shadcn-ui\",\"canonical\":\"shadcn/ui\",\"aliases\":[\"shadcn\",\"shadcn ui\"],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"sharedplan-software-sharedplan-pro\",\"canonical\":\"SharedPlan Software SharedPlan Pro\",\"aliases\":[\"SSSP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"shell-script\",\"canonical\":\"Shell script\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"shiny\",\"canonical\":\"Shiny\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"siemens-teamcenter\",\"canonical\":\"Siemens Teamcenter\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sierra-scientific-software-cris\",\"canonical\":\"Sierra Scientific Software CRIS\",\"aliases\":[\"SSSC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"silver-peak\",\"canonical\":\"Silver Peak\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"simple-api-for-xml-sax\",\"canonical\":\"Simple API for XML SAX\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"simple-directmedia-layer-sdl\",\"canonical\":\"Simple DirectMedia Layer SDL\",\"aliases\":[\"SDLS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"simple-mail-transfer-protocol-smtp\",\"canonical\":\"Simple mail transfer protocol SMTP\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"simple-network-management-protocol-snmp\",\"canonical\":\"Simple network management protocol SNMP\",\"aliases\":[\"Simple network management protocol SNMP software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"simulation\",\"canonical\":\"Simulation\",\"aliases\":[\"Simulation software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"simulation-program-with-integrated-circuit-emphasis-spice\",\"canonical\":\"Simulation program with integrated circuit emphasis SPICE\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"single-sign-on-sso\",\"canonical\":\"Single sign-on SSO\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sisense-prism\",\"canonical\":\"SiSense Prism\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sitecore-cms\",\"canonical\":\"Sitecore CMS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sitemaster-sitesmart\",\"canonical\":\"SiteMaster SiteSmart\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sketch\",\"canonical\":\"Sketch\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"skype\",\"canonical\":\"Skype\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"slack\",\"canonical\":\"Slack\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"slido-interaction\",\"canonical\":\"Slido interaction\",\"aliases\":[\"Slido interaction software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"smalltalk\",\"canonical\":\"Smalltalk\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"smart-card-management\",\"canonical\":\"Smart card management\",\"aliases\":[\"Smart card management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"smart-phones\",\"canonical\":\"Smart phones\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"smartbear-software-automated-build-studio\",\"canonical\":\"SmartBear Software Automated Build Studio\",\"aliases\":[\"SSABS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"smartbear-software-automatedqa-testcomplete\",\"canonical\":\"SmartBear Software AutomatedQA TestComplete\",\"aliases\":[\"SSAT\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"smartphones\",\"canonical\":\"Smartphones\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"smartsheet\",\"canonical\":\"Smartsheet\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"smsi-twister-data-integrator\",\"canonical\":\"SMSi Twister Data Integrator\",\"aliases\":[\"STDI\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"smugmug-flickr\",\"canonical\":\"SmugMug Flickr\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sniffer-investigator\",\"canonical\":\"Sniffer Investigator\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"snort\",\"canonical\":\"Snort\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"snowflake\",\"canonical\":\"Snowflake\",\"aliases\":[],\"type\":\"database\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"soapware-emr\",\"canonical\":\"SOAPware EMR\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"social-media-sites\",\"canonical\":\"Social media sites\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"software-as-a-service-saas\",\"canonical\":\"Software as a service SaaS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"software-asset-management-sam\",\"canonical\":\"Software asset management SAM\",\"aliases\":[\"Software asset management SAM software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"software-distribution\",\"canonical\":\"Software distribution\",\"aliases\":[\"Software distribution software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"software-distribution-management\",\"canonical\":\"Software distribution management\",\"aliases\":[\"Software distribution management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"software-libraries\",\"canonical\":\"Software libraries\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"soil-survey-geographic-ssurgo\",\"canonical\":\"Soil Survey Geographic SSURGO\",\"aliases\":[\"SSGS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"solarwinds\",\"canonical\":\"SolarWinds\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"soldering-irons\",\"canonical\":\"Soldering irons\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"solid\",\"canonical\":\"Solid\",\"aliases\":[\"SolidJS\",\"Solid.js\"],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"solidity\",\"canonical\":\"Solidity\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sonarqube\",\"canonical\":\"SonarQube\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sonicwall-sonicos-enhanced\",\"canonical\":\"Sonicwall SonicOS Enhanced\",\"aliases\":[\"SSE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sony-sound-forge\",\"canonical\":\"Sony Sound Forge\",\"aliases\":[\"SSF\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sorenson-media-sorenson-squeeze\",\"canonical\":\"Sorenson Media Sorenson Squeeze\",\"aliases\":[\"SMSS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sound-development\",\"canonical\":\"Sound development\",\"aliases\":[\"Sound development software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"source-code-editor\",\"canonical\":\"Source code editor\",\"aliases\":[\"Source code editor software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"source-code-management-scm\",\"canonical\":\"Source code management SCM\",\"aliases\":[\"Source code management SCM software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"source-code-migration\",\"canonical\":\"Source code migration\",\"aliases\":[\"Source code migration software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"spacy\",\"canonical\":\"spaCy\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"spark\",\"canonical\":\"Spark\",\"aliases\":[\"Apache Spark\",\"PySpark\"],\"type\":\"framework\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"sparta-systems-trackwise\",\"canonical\":\"Sparta Systems TrackWise\",\"aliases\":[\"SST\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"spectraquest\",\"canonical\":\"SpectraQuest\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"spectrum-analyzers\",\"canonical\":\"Spectrum analyzers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"splunk-enterprise\",\"canonical\":\"Splunk Enterprise\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"spreadsheet\",\"canonical\":\"Spreadsheet\",\"aliases\":[\"Spreadsheet software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"spring-boot\",\"canonical\":\"Spring Boot\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"spring-framework\",\"canonical\":\"Spring Framework\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"sql\",\"canonical\":\"SQL\",\"aliases\":[],\"type\":\"language\",\"hot\":true,\"sources\":[\"emerging\"]},{\"id\":\"sqlite\",\"canonical\":\"SQLite\",\"aliases\":[],\"type\":\"database\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"ss-c-pts\",\"canonical\":\"SS&C PTS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sso\",\"canonical\":\"SSO\",\"aliases\":[\"Single Sign-On\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"stac-software-reachout\",\"canonical\":\"Stac Software ReachOut\",\"aliases\":[\"SSR\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"stack-smashing-protection-ssp\",\"canonical\":\"Stack smashing protection SSP\",\"aliases\":[\"Stack smashing protection SSP software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"stakeholder-management\",\"canonical\":\"Stakeholder Management\",\"aliases\":[],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"standpipe-studios-vertabase\",\"canonical\":\"Standpipe Studios Vertabase\",\"aliases\":[\"SSV\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"stanford-business-software-minos\",\"canonical\":\"Stanford Business Software MINOS\",\"aliases\":[\"SBSM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"stanford-business-software-snopt\",\"canonical\":\"Stanford Business Software SNOPT\",\"aliases\":[\"SBSS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"stat-ease-design-ease\",\"canonical\":\"Stat-Ease Design-Ease\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"stat-ease-design-expert\",\"canonical\":\"Stat-Ease Design-Expert\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"stat-systems-qd-clinical\",\"canonical\":\"STAT! Systems QD Clinical\",\"aliases\":[\"SSQC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"statacorp-stata\",\"canonical\":\"StataCorp Stata\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"statcom-patient-flow-logistics-enterprise-suite\",\"canonical\":\"StatCom Patient Flow Logistics Enterprise Suite\",\"aliases\":[\"SPFLES\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"state-soil-geographic-statsgo-database\",\"canonical\":\"State Soil Geographic STATSGO Database\",\"aliases\":[\"SSGSD\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"static-analysis\",\"canonical\":\"Static analysis\",\"aliases\":[\"Static analysis software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"static-site-generation\",\"canonical\":\"Static Site Generation\",\"aliases\":[\"SSG\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"statistica\",\"canonical\":\"STATISTICA\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"statistical\",\"canonical\":\"Statistical\",\"aliases\":[\"Statistical software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"statistical-solutions-bmdp\",\"canonical\":\"Statistical Solutions BMDP\",\"aliases\":[\"SSB\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"statpoint-statgraphics-centurion\",\"canonical\":\"StatPoint STATGRAPHICS Centurion\",\"aliases\":[\"SSC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"stereographic-projectors\",\"canonical\":\"Stereographic projectors\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"storage-area-network-san\",\"canonical\":\"Storage area network SAN\",\"aliases\":[\"Storage area network SAN software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"storage-area-network-san-switches\",\"canonical\":\"Storage area network SAN switches\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"storage-management\",\"canonical\":\"Storage management\",\"aliases\":[\"Storage management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"storage-servers\",\"canonical\":\"Storage servers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"storybook\",\"canonical\":\"Storybook\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"strategic-reporting-systems-reportsmith\",\"canonical\":\"Strategic Reporting Systems ReportSmith\",\"aliases\":[\"SRSR\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"stress-testing\",\"canonical\":\"Stress testing\",\"aliases\":[\"Stress testing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"string-oriented-symbolic-language-snobol\",\"canonical\":\"String oriented symbolic language SNOBOL\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"structure-prediction\",\"canonical\":\"Structure prediction\",\"aliases\":[\"Structure prediction software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"structured-query-language-sql\",\"canonical\":\"Structured query language SQL\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"structured-query-report-sqr\",\"canonical\":\"Structured Query Report SQR\",\"aliases\":[\"SQRS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"studymanager-sponsor-edition\",\"canonical\":\"StudyManager Sponsor Edition\",\"aliases\":[\"SSE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"styled-components\",\"canonical\":\"Styled Components\",\"aliases\":[\"styled-components\"],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"stylite-egroupware\",\"canonical\":\"Stylite eGroupWare\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sun-microsystems-java\",\"canonical\":\"Sun Microsystems Java\",\"aliases\":[\"SMJ\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sun-microsystems-java-persistence-api\",\"canonical\":\"Sun Microsystems Java Persistence API\",\"aliases\":[\"SMJPA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sun-microsystems-java-servlet-api\",\"canonical\":\"Sun Microsystems Java Servlet API\",\"aliases\":[\"SMJSA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"sun-microsystems-sun-one\",\"canonical\":\"Sun Microsystems Sun ONE\",\"aliases\":[\"SMSO\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"supabase\",\"canonical\":\"Supabase\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"superanova\",\"canonical\":\"SuperANOVA\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"supercomputers\",\"canonical\":\"Supercomputers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"supervisory-control-and-data-acquisition-scada\",\"canonical\":\"Supervisory control and data acquisition SCADA\",\"aliases\":[\"Supervisory control and data acquisition SCADA software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"svelte\",\"canonical\":\"Svelte\",\"aliases\":[\"SvelteKit\"],\"type\":\"framework\",\"hot\":true,\"sources\":[\"emerging\"]},{\"id\":\"swc\",\"canonical\":\"SWC\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"swift\",\"canonical\":\"Swift\",\"aliases\":[],\"type\":\"language\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"swr\",\"canonical\":\"SWR\",\"aliases\":[],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"symantec-blue-coat-data-loss-prevention\",\"canonical\":\"Symantec Blue Coat Data Loss Prevention\",\"aliases\":[\"SBCDLP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"symantec-endpoint-protection\",\"canonical\":\"Symantec Endpoint Protection\",\"aliases\":[\"SEP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"symantec-ghost-solution-suite\",\"canonical\":\"Symantec Ghost Solution Suite\",\"aliases\":[\"SGSS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"symantec-intruder-alert\",\"canonical\":\"Symantec Intruder Alert\",\"aliases\":[\"SIA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"symantec-livestate\",\"canonical\":\"Symantec LiveState\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"symantec-norton-utilities\",\"canonical\":\"Symantec Norton Utilities\",\"aliases\":[\"SNU\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"symantec-pcanywhere\",\"canonical\":\"Symantec pcAnywhere\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"symantec-veritas-netbackup\",\"canonical\":\"Symantec Veritas NetBackup\",\"aliases\":[\"SVN\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"symantec-visual-cafe\",\"canonical\":\"Symantec Visual Cafe\",\"aliases\":[\"SVC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"symark-powerbroker\",\"canonical\":\"Symark PowerBroker\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"symbolic-debugger\",\"canonical\":\"Symbolic debugger\",\"aliases\":[\"Symbolic debugger software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"symetric-sciences-symetric\",\"canonical\":\"SyMetric Sciences SyMetric\",\"aliases\":[\"SSS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"symmetrica\",\"canonical\":\"Symmetrica\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"synamed-emr\",\"canonical\":\"SynaMed EMR\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"synchronous-optical-network-sonet-analyzers\",\"canonical\":\"Synchronous optical network SONET analyzers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"syntactically-awesome-style-sheets-sass\",\"canonical\":\"Syntactically awesome style sheets SASS\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"synthetic-aperture-radar-sar\",\"canonical\":\"Synthetic aperture radar SAR\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"systat-software-sigmaplot\",\"canonical\":\"Systat Software SigmaPlot\",\"aliases\":[\"SSS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"systat-software-sigmastat\",\"canonical\":\"Systat Software SigmaStat\",\"aliases\":[\"SSS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"system-and-data-disaster-recovery\",\"canonical\":\"System and data disaster recovery\",\"aliases\":[\"System and data disaster recovery software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"system-testing\",\"canonical\":\"System testing\",\"aliases\":[\"System testing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"systems-and-application-deployment-and-migration\",\"canonical\":\"Systems and application deployment and migration\",\"aliases\":[\"Systems and application deployment and migration software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"systems-and-applications-migration\",\"canonical\":\"Systems and applications migration\",\"aliases\":[\"Systems and applications migration software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"systems-and-data-disaster-recovery\",\"canonical\":\"Systems and data disaster recovery\",\"aliases\":[\"Systems and data disaster recovery software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"systems-integration\",\"canonical\":\"Systems integration\",\"aliases\":[\"Systems integration software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"systemware\",\"canonical\":\"Systemware\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"t-birds\",\"canonical\":\"T-Birds\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"tableau\",\"canonical\":\"Tableau\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"tablet-computers\",\"canonical\":\"Tablet computers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"tailwind-css\",\"canonical\":\"Tailwind CSS\",\"aliases\":[\"Tailwind\",\"TailwindCSS\"],\"type\":\"framework\",\"hot\":true,\"sources\":[\"emerging\"]},{\"id\":\"talend-big-data-integration\",\"canonical\":\"Talend Big Data Integration\",\"aliases\":[\"TBDI\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"talend-data-fabric\",\"canonical\":\"Talend Data Fabric\",\"aliases\":[\"TDF\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"talend-open-studio\",\"canonical\":\"Talend Open Studio\",\"aliases\":[\"TOS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"talendforge\",\"canonical\":\"TalendForge\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"tanium\",\"canonical\":\"Tanium\",\"aliases\":[\"Tanium software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"tanstack\",\"canonical\":\"TanStack\",\"aliases\":[],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"tape-backup-system\",\"canonical\":\"Tape backup system\",\"aliases\":[\"Tape backup system software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"tape-libraries\",\"canonical\":\"Tape libraries\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"taskjuggler\",\"canonical\":\"TaskJuggler\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"tax\",\"canonical\":\"Tax\",\"aliases\":[\"Tax software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"tcpdump\",\"canonical\":\"Tcpdump\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"teamdynamixhe\",\"canonical\":\"TeamDynamixHE\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"technical-leadership\",\"canonical\":\"Technical Leadership\",\"aliases\":[\"Tech Lead\",\"Tech Leadership\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"telelogic-system-architect\",\"canonical\":\"Telelogic System Architect\",\"aliases\":[\"TSA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"tenable-nessus\",\"canonical\":\"Tenable Nessus\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"tensorflow\",\"canonical\":\"TensorFlow\",\"aliases\":[],\"type\":\"framework\",\"hot\":false,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"teradata-active-enterprise-data-warehouse\",\"canonical\":\"Teradata Active Enterprise Data Warehouse\",\"aliases\":[\"TAEDW\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"teradata-bteq\",\"canonical\":\"Teradata BTEQ\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"teradata-database\",\"canonical\":\"Teradata Database\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"teradata-fastexport\",\"canonical\":\"Teradata FastExport\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"teradata-fastload\",\"canonical\":\"Teradata FastLoad\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"teradata-parallel-transporter\",\"canonical\":\"Teradata Parallel Transporter\",\"aliases\":[\"TPT\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"teradata-tpump\",\"canonical\":\"Teradata Tpump\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"terraform\",\"canonical\":\"Terraform\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"test-data-generator\",\"canonical\":\"Test data generator\",\"aliases\":[\"Test data generator software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"test-design\",\"canonical\":\"Test design\",\"aliases\":[\"Test design software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"test-implementation\",\"canonical\":\"Test implementation\",\"aliases\":[\"Test implementation software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"test-lights\",\"canonical\":\"Test lights\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"test-driven-development\",\"canonical\":\"Test-Driven Development\",\"aliases\":[\"TDD\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"testing-library\",\"canonical\":\"Testing Library\",\"aliases\":[\"React Testing Library\",\"RTL\"],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"testng\",\"canonical\":\"TestNG\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"texas-medical-software-springcharts-emr\",\"canonical\":\"Texas Medical Software SpringCharts EMR\",\"aliases\":[\"TMSSE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"the-mathwizards-mathviews\",\"canonical\":\"The MathWizards MathViews\",\"aliases\":[\"TMM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"the-mathworks-matlab\",\"canonical\":\"The MathWorks MATLAB\",\"aliases\":[\"TMM\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"the-omni-group-omniplan\",\"canonical\":\"The Omni Group OmniPlan\",\"aliases\":[\"TOGO\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"thermo-fisher-scientific-ion-reporter\",\"canonical\":\"Thermo Fisher Scientific Ion Reporter\",\"aliases\":[\"TFSIR\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"thomson-reuters-filecabinet-cs\",\"canonical\":\"Thomson Reuters FileCabinet CS\",\"aliases\":[\"TRFC\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"thomson-reuters-gofileroom\",\"canonical\":\"Thomson Reuters GoFileRoom\",\"aliases\":[\"TRG\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"thoughtworks-studio-mingle\",\"canonical\":\"ThoughtWorks Studio Mingle\",\"aliases\":[\"TSM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"threaded-code-compiler\",\"canonical\":\"Threaded code compiler\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"throughput-testers\",\"canonical\":\"Throughput testers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"tibco-s-plus\",\"canonical\":\"Tibco S-PLUS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"tibco-spotfire\",\"canonical\":\"TIBCO Spotfire\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"ticket-information-tracking\",\"canonical\":\"Ticket information tracking\",\"aliases\":[\"Ticket information tracking software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"tier-generator\",\"canonical\":\"Tier generator\",\"aliases\":[\"Tier generator software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"tigris-cabie\",\"canonical\":\"Tigris Cabie\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"time-domain-reflectometers\",\"canonical\":\"Time domain reflectometers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"time-reporting\",\"canonical\":\"Time reporting\",\"aliases\":[\"Time reporting software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"time-sharing-option-tso\",\"canonical\":\"Time sharing option TSO\",\"aliases\":[\"Time sharing option TSO software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"tksoftware-rcm\",\"canonical\":\"TKSoftware RCM\",\"aliases\":[\"TKSoftware RCM software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"toadsoft-toad\",\"canonical\":\"ToadSoft Toad\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"tone-generators\",\"canonical\":\"Tone generators\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"tone-test-sets\",\"canonical\":\"Tone test sets\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"tool-command-language-tcl\",\"canonical\":\"Tool command language Tcl\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"topaz-enterprise-software-suite\",\"canonical\":\"TOPAZ Enterprise Software Suite\",\"aliases\":[\"TESS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"tophat\",\"canonical\":\"TopHat\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"towers-perrin-moses\",\"canonical\":\"Towers Perrin MoSes\",\"aliases\":[\"TPM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"traceroute\",\"canonical\":\"Traceroute\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"traffic-shapers\",\"canonical\":\"Traffic shapers\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"transact-sql\",\"canonical\":\"Transact-SQL\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"transparent-interconnection-of-lots-of-links-trill\",\"canonical\":\"Transparent Interconnection of Lots of Links TRILL\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"travis\",\"canonical\":\"Travis\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"treeno-software-treeno-content-server\",\"canonical\":\"Treeno Software Treeno Content Server\",\"aliases\":[\"TSTCS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"trenchers\",\"canonical\":\"Trenchers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"trend-micro-tippingpoint\",\"canonical\":\"Trend Micro TippingPoint\",\"aliases\":[\"TMT\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"trimble-pathfinder-office\",\"canonical\":\"Trimble Pathfinder Office\",\"aliases\":[\"TPO\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"trimble-sketchup-pro\",\"canonical\":\"Trimble SketchUp Pro\",\"aliases\":[\"TSP\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"trpc\",\"canonical\":\"tRPC\",\"aliases\":[],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"turbopack\",\"canonical\":\"Turbopack\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"turborepo\",\"canonical\":\"Turborepo\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"twiki\",\"canonical\":\"Twiki\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"typeorm\",\"canonical\":\"TypeORM\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"typescript\",\"canonical\":\"TypeScript\",\"aliases\":[\"TS\"],\"type\":\"language\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"ubuntu\",\"canonical\":\"Ubuntu\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"unawave\",\"canonical\":\"Unawave\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"unified-modeling-language-uml\",\"canonical\":\"Unified modeling language UML\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"unistat-statistical-package\",\"canonical\":\"UNISTAT Statistical Package\",\"aliases\":[\"USP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"unit-testing\",\"canonical\":\"Unit testing\",\"aliases\":[\"Unit testing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"unity-technologies-unity\",\"canonical\":\"Unity Technologies Unity\",\"aliases\":[\"UTU\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"universal-serial-bus-usb-flash-drives\",\"canonical\":\"Universal serial bus USB flash drives\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"unix\",\"canonical\":\"UNIX\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"unix-shell\",\"canonical\":\"UNIX Shell\",\"aliases\":[],\"type\":\"platform\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"usability-testing\",\"canonical\":\"Usability testing\",\"aliases\":[\"Usability testing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"user-interface-design\",\"canonical\":\"User interface design\",\"aliases\":[\"User interface design software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"userzoom\",\"canonical\":\"UserZoom\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"vector-search\",\"canonical\":\"Vector Search\",\"aliases\":[],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"vercel\",\"canonical\":\"Vercel\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"verilog\",\"canonical\":\"Verilog\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"veritas-netbackup\",\"canonical\":\"Veritas NetBackup\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"version-control\",\"canonical\":\"Version control\",\"aliases\":[\"Version control software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"vertafore-imageright\",\"canonical\":\"Vertafore ImageRight\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"video-editing\",\"canonical\":\"Video editing\",\"aliases\":[\"Video editing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"video-gaming-equipment\",\"canonical\":\"Video gaming equipment\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"video-projectors\",\"canonical\":\"Video projectors\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"videoconferencing\",\"canonical\":\"Videoconferencing\",\"aliases\":[\"Videoconferencing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"videoconferencing-equipment\",\"canonical\":\"Videoconferencing equipment\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"vignette-content-management\",\"canonical\":\"Vignette Content Management\",\"aliases\":[\"VCM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"vignette-portal\",\"canonical\":\"Vignette Portal\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"virage-vs-archive\",\"canonical\":\"Virage VS Archive\",\"aliases\":[\"VVA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"virtual-battlespace-2-vbs2\",\"canonical\":\"Virtual Battlespace 2 VBS2\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"virtual-local-area-network-management\",\"canonical\":\"Virtual local area network management\",\"aliases\":[\"Virtual local area network management software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"virtual-network-computing-vnc\",\"canonical\":\"Virtual network computing VNC\",\"aliases\":[\"Virtual network computing VNC software\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"virtual-private-networking-vpn\",\"canonical\":\"Virtual private networking VPN\",\"aliases\":[\"Virtual private networking VPN software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"virtual-router-redundancy-protocol-vrrp\",\"canonical\":\"Virtual Router Redundancy Protocol VRRP\",\"aliases\":[\"VRRPV\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"virus-scanning\",\"canonical\":\"Virus scanning\",\"aliases\":[\"Virus scanning software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"visible-razor\",\"canonical\":\"Visible Razor\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"visicu-eicu\",\"canonical\":\"VISICU eICU\",\"aliases\":[\"VISICU eICU Program\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"visual-numerics-ts-wave\",\"canonical\":\"Visual Numerics TS-WAVE\",\"aliases\":[\"VNT\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"visual-paradigm-db-visual-architect\",\"canonical\":\"Visual Paradigm DB Visual ARCHITECT\",\"aliases\":[\"VPDVA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"vite\",\"canonical\":\"Vite\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"emerging\"]},{\"id\":\"vitest\",\"canonical\":\"Vitest\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"vitria-m3o-operational-intelligence\",\"canonical\":\"Vitria M3O Operational Intelligence\",\"aliases\":[\"VMOI\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"vme-powerpc-vxworks\",\"canonical\":\"VME PowerPC VxWorks\",\"aliases\":[\"VPV\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"vmware\",\"canonical\":\"VMware\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"vmware-esx-server\",\"canonical\":\"VMWare ESX Server\",\"aliases\":[\"VES\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"vmware-workstation\",\"canonical\":\"VMWare Workstation\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"voice-over-internet-protocol-voip\",\"canonical\":\"Voice over internet protocol VoIP\",\"aliases\":[\"Voice over internet protocol VoIP systems\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"voice-over-internet-protocol-voip-system\",\"canonical\":\"Voice over internet protocol VoIP system\",\"aliases\":[\"Voice over internet protocol VoIP system software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"voice-switches\",\"canonical\":\"Voice switches\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"voltage-testers\",\"canonical\":\"Voltage testers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"vormetric-application-encryption\",\"canonical\":\"Vormetric Application Encryption\",\"aliases\":[\"VAE\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"vsconline-vpmi\",\"canonical\":\"VSCOnline VPMi\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"vue-js\",\"canonical\":\"Vue.js\",\"aliases\":[\"Vue\",\"VueJS\"],\"type\":\"framework\",\"hot\":true,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"waikato-environment-for-knowledge-analysis-weka\",\"canonical\":\"Waikato Environment for Knowledge Analysis Weka\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"watir\",\"canonical\":\"Watir\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"wbs-goplan\",\"canonical\":\"WBS Goplan\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"web-application\",\"canonical\":\"Web application\",\"aliases\":[\"Web application software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"web-browser\",\"canonical\":\"Web browser\",\"aliases\":[\"Web browser software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"web-content-management-system-cms\",\"canonical\":\"Web content management system CMS\",\"aliases\":[\"Web content management system CMS software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"web-design\",\"canonical\":\"Web design\",\"aliases\":[\"Web design software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"web-server\",\"canonical\":\"Web server\",\"aliases\":[\"Web server software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"web-servers\",\"canonical\":\"Web servers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"web-service-definition-language-wdsl\",\"canonical\":\"Web service definition language WDSL\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"web2project\",\"canonical\":\"web2project\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"webassembly\",\"canonical\":\"WebAssembly\",\"aliases\":[\"Wasm\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"webfocus\",\"canonical\":\"WebFOCUS\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"webpack\",\"canonical\":\"webpack\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\",\"emerging\"]},{\"id\":\"websense-data-loss-prevention\",\"canonical\":\"Websense Data Loss Prevention\",\"aliases\":[\"WDLP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"websockets\",\"canonical\":\"WebSockets\",\"aliases\":[\"WebSocket\"],\"type\":\"practice\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"webtrends-analytics\",\"canonical\":\"WebTrends Analytics\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"westbrook-fortis\",\"canonical\":\"Westbrook Fortis\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"wevideo\",\"canonical\":\"WeVideo\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"wide-area-network-wan\",\"canonical\":\"Wide area network WAN\",\"aliases\":[\"Wide area network WAN software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"wide-area-network-wan-analyzers\",\"canonical\":\"Wide area network WAN analyzers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"wide-area-network-wan-optimization\",\"canonical\":\"Wide area network WAN optimization\",\"aliases\":[\"Wide area network WAN optimization software\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"wide-area-network-wan-switches\",\"canonical\":\"Wide area network WAN switches\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"wildpackets-omnipeek-network-analyzer\",\"canonical\":\"WildPackets OmniPeek Network Analyzer\",\"aliases\":[\"WONA\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"win-ce\",\"canonical\":\"Win CE\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"winches\",\"canonical\":\"Winches\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"wind-river-systems-vxworks\",\"canonical\":\"Wind River Systems VxWorks\",\"aliases\":[\"WRSV\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"wind-river-vxworks\",\"canonical\":\"Wind River VxWorks\",\"aliases\":[\"WRV\"],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"winmerge\",\"canonical\":\"WinMerge\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"wire-crimpers\",\"canonical\":\"Wire crimpers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"wire-locators\",\"canonical\":\"Wire locators\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"wire-mappers\",\"canonical\":\"Wire mappers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"wire-pullers\",\"canonical\":\"Wire pullers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"wire-wrap-guns\",\"canonical\":\"Wire wrap guns\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"wireless-access-points-wap\",\"canonical\":\"Wireless access points WAP\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"wireless-local-area-network-wlan-controllers\",\"canonical\":\"Wireless local area network WLAN controllers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"wireless-network-controllers\",\"canonical\":\"Wireless network controllers\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"wireshark\",\"canonical\":\"Wireshark\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"wisdomforce-databasesync\",\"canonical\":\"WisdomForce DatabaseSync\",\"aliases\":[\"WisdomForce DatabaseSync System\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"wise-solutions-wise-for-windows-installer\",\"canonical\":\"Wise Solutions Wise for Windows Installer\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"wolfram-research-mathematica\",\"canonical\":\"Wolfram Research Mathematica\",\"aliases\":[\"WRM\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"word-processing\",\"canonical\":\"Word processing\",\"aliases\":[\"Word processing software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"wordpress\",\"canonical\":\"WordPress\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"workday\",\"canonical\":\"Workday\",\"aliases\":[\"Workday software\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"workflow\",\"canonical\":\"Workflow\",\"aliases\":[\"Workflow software\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"workstations\",\"canonical\":\"Workstations\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tools\"]},{\"id\":\"wrike\",\"canonical\":\"Wrike\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"xcode\",\"canonical\":\"Xcode\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"xerces2-java-parser\",\"canonical\":\"Xerces2 Java Parser\",\"aliases\":[\"XJP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"xerox-docushare\",\"canonical\":\"Xerox DocuShare\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"xgboost\",\"canonical\":\"XGBoost\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"xgobi\",\"canonical\":\"XGobi\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"xlisp-stat\",\"canonical\":\"XLISP-STAT\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"xml-path-language-xpath\",\"canonical\":\"XML Path Language XPATH\",\"aliases\":[\"XPLX\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"xplanner\",\"canonical\":\"Xplanner\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"xquery\",\"canonical\":\"xQuery\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"xythos-enterprise-document-management-suite\",\"canonical\":\"Xythos Enterprise Document Management Suite\",\"aliases\":[\"XEDMS\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"yardi\",\"canonical\":\"Yardi\",\"aliases\":[\"Yardi software\"],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"yarn\",\"canonical\":\"Yarn\",\"aliases\":[\"Yarn Workspaces\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"yourkit-java-profiler\",\"canonical\":\"YourKit Java Profiler\",\"aliases\":[\"YJP\"],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"youtube\",\"canonical\":\"YouTube\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"zabbix\",\"canonical\":\"Zabbix\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"zend-framework\",\"canonical\":\"Zend Framework\",\"aliases\":[],\"type\":\"platform\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"zig\",\"canonical\":\"Zig\",\"aliases\":[],\"type\":\"language\",\"hot\":false,\"sources\":[\"emerging\"]},{\"id\":\"zmanda-amanda\",\"canonical\":\"Zmanda Amanda\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"zoho-projects\",\"canonical\":\"Zoho Projects\",\"aliases\":[],\"type\":\"tool\",\"hot\":false,\"sources\":[\"onet-tech\"]},{\"id\":\"zoom\",\"canonical\":\"Zoom\",\"aliases\":[],\"type\":\"tool\",\"hot\":true,\"sources\":[\"onet-tech\"]},{\"id\":\"zustand\",\"canonical\":\"Zustand\",\"aliases\":[],\"type\":\"library\",\"hot\":false,\"sources\":[\"emerging\"]}]}","import type { Skill, SkillMatch } from './types';\n\n/**\n * Tokenize text for skill matching.\n *\n * Splits on whitespace and sentence punctuation, but keeps internal punctuation\n * that's part of a skill name (e.g. \"Node.js\", \"CI/CD\", \"shadcn/ui\", \"c#\", \"c++\").\n * Returns normalized lowercase tokens alongside their original form.\n */\nexport interface Token {\n raw: string;\n norm: string;\n isAllUpper: boolean; // whether raw has ≥ 2 consecutive uppercase chars (acronym-ish)\n}\n\n/**\n * Chars that can appear inside a skill token (letters, digits, plus, hash,\n * dot, slash, hyphen). Anything else is a separator.\n *\n * Char-class check on a single char, constant-time, not ReDoS-susceptible\n * (CodeQL js/polynomial-redos flagged the previous regex-based tokenizer).\n */\nfunction isTokenChar(ch: string): boolean {\n if (ch >= 'a' && ch <= 'z') return true;\n if (ch >= 'A' && ch <= 'Z') return true;\n if (ch >= '0' && ch <= '9') return true;\n return ch === '.' || ch === '/' || ch === '-' || ch === '+' || ch === '#' || ch === '_';\n}\n\nfunction isLetter(ch: string): boolean {\n return (ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z');\n}\n\nfunction isDigit(ch: string): boolean {\n return ch >= '0' && ch <= '9';\n}\n\n/**\n * Strip boundary chars that aren't valid leading/trailing parts of a skill\n * token, e.g. trailing commas, periods followed by space, quotes. Internal\n * punctuation (Node.js, CI/CD, shadcn/ui) is preserved.\n */\nfunction trimTokenBoundary(tok: string): string {\n let start = 0;\n let end = tok.length;\n // Letters, digits, '+' and '#' are valid leading chars; everything else (. / -) gets stripped\n while (start < end) {\n const ch = tok.charAt(start);\n if (isLetter(ch) || isDigit(ch) || ch === '+' || ch === '#') break;\n start++;\n }\n while (end > start) {\n const ch = tok.charAt(end - 1);\n if (isLetter(ch) || isDigit(ch) || ch === '+' || ch === '#') break;\n end--;\n }\n return start === 0 && end === tok.length ? tok : tok.slice(start, end);\n}\n\n/**\n * Linear-time tokenizer. Iterates once over the string, accumulating runs of\n * token chars. Avoids regex alternation and unbounded quantifiers to keep\n * worst-case complexity O(n) even on adversarial inputs.\n */\nexport function tokenize(text: string): Token[] {\n const tokens: Token[] = [];\n const len = text.length;\n let i = 0;\n while (i < len) {\n // Skip separators\n while (i < len && !isTokenChar(text.charAt(i))) i++;\n // Accumulate token\n const start = i;\n while (i < len && isTokenChar(text.charAt(i))) i++;\n if (i === start) continue;\n const raw = trimTokenBoundary(text.slice(start, i));\n if (!raw) continue;\n // Require at least one letter or digit or + or #\n let hasCore = false;\n for (let k = 0; k < raw.length; k++) {\n const ch = raw.charAt(k);\n if (isLetter(ch) || isDigit(ch) || ch === '+' || ch === '#') {\n hasCore = true;\n break;\n }\n }\n if (!hasCore) continue;\n // Compute isAllUpper by scanning letters once\n let letterCount = 0;\n let upperCount = 0;\n for (let k = 0; k < raw.length; k++) {\n const ch = raw.charAt(k);\n if (isLetter(ch)) {\n letterCount++;\n if (ch >= 'A' && ch <= 'Z') upperCount++;\n }\n }\n const isAllUpper = letterCount >= 2 && upperCount === letterCount;\n tokens.push({ raw, norm: raw.toLowerCase(), isAllUpper });\n }\n return tokens;\n}\n\n/**\n * Normalize a skill label into token strings. Splits on whitespace only,\n * internal punctuation (dots, slashes, hyphens, plus/hash) stays attached to\n * its token. Skill labels come from our own JSON, not user input, so the\n * simple regex split is safe here.\n */\nfunction phraseToTokens(phrase: string): string[] {\n return phrase\n .toLowerCase()\n .split(/\\s+/)\n .map((t) => trimTokenBoundary(t))\n .filter(Boolean);\n}\n\ninterface PhraseCandidate {\n skillIdx: number;\n phraseTokens: string[]; // lowercase, whitespace-split\n requiresCaseMatch: boolean; // true for all-caps acronyms, avoids \"IS\"/\"IT\"/\"NO\" collisions\n}\n\n/**\n * Acronym-shaped phrase: 2–6 uppercase letters, single token. These collide\n * with common English words when matched case-insensitively, so we require the\n * original text to also be in uppercase.\n */\nfunction looksLikeAcronym(phrase: string): boolean {\n const trimmed = phrase.trim();\n if (/\\s/.test(trimmed)) return false;\n if (trimmed.length < 2 || trimmed.length > 6) return false;\n const letters = trimmed.replace(/[^a-zA-Z]/g, '');\n return letters.length >= 2 && letters === letters.toUpperCase();\n}\n\n/**\n * Indexed skill database for fast longest-match lookup.\n *\n * Strategy: group all skill phrases (canonical + every alias) by their first\n * token. For each first token we get a list of candidate phrases, sorted\n * longest-first so we find the most specific match first (e.g. \"React Query\"\n * beats \"React\" when the text contains both words adjacent).\n */\nexport class SkillIndex {\n private readonly skills: readonly Skill[];\n private readonly byFirstToken: Map<string, PhraseCandidate[]> = new Map();\n private readonly maxPhraseLen: number;\n\n constructor(skills: readonly Skill[]) {\n this.skills = skills;\n let maxLen = 1;\n skills.forEach((skill, i) => {\n for (const phrase of [skill.canonical, ...skill.aliases]) {\n const tokens = phraseToTokens(phrase);\n const first = tokens[0];\n if (!first) continue;\n maxLen = Math.max(maxLen, tokens.length);\n const list = this.byFirstToken.get(first);\n const entry: PhraseCandidate = {\n skillIdx: i,\n phraseTokens: tokens,\n requiresCaseMatch: looksLikeAcronym(phrase),\n };\n if (list) list.push(entry);\n else this.byFirstToken.set(first, [entry]);\n }\n });\n // Sort each bucket longest-first so we try specific matches before general ones\n for (const list of this.byFirstToken.values()) {\n list.sort((a, b) => b.phraseTokens.length - a.phraseTokens.length);\n }\n this.maxPhraseLen = maxLen;\n }\n\n /**\n * Scan text for skills. Longest-match wins at each position, e.g. \"Next.js\"\n * doesn't also fire \"Next\", and \"Google Cloud Platform\" doesn't also fire\n * \"Google\".\n *\n * Returns a list of unique skills with occurrence counts.\n */\n scan(text: string): SkillMatch[] {\n const tokens = tokenize(text);\n const hits = new Map<number, number>(); // skillIdx → occurrences\n\n let i = 0;\n while (i < tokens.length) {\n const head = tokens[i];\n if (!head) break;\n const bucket = this.byFirstToken.get(head.norm);\n if (!bucket) { i++; continue; }\n\n let matched = false;\n for (const cand of bucket) {\n const len = cand.phraseTokens.length;\n if (i + len > tokens.length) continue;\n let ok = true;\n for (let k = 0; k < len; k++) {\n const tok = tokens[i + k];\n if (!tok || tok.norm !== cand.phraseTokens[k]) { ok = false; break; }\n }\n if (!ok) continue;\n // Acronym guard: require the original text to be all-caps when the\n // phrase is acronym-shaped (e.g. \"ARE\" only matches \"ARE\", not \"are\")\n if (cand.requiresCaseMatch && !head.isAllUpper) continue;\n hits.set(cand.skillIdx, (hits.get(cand.skillIdx) ?? 0) + 1);\n i += len;\n matched = true;\n break;\n }\n if (!matched) i++;\n }\n\n const result: SkillMatch[] = [];\n for (const [skillIdx, count] of hits) {\n const skill = this.skills[skillIdx];\n if (!skill) continue;\n result.push({ skill, occurrences: count });\n }\n // Sort: hot skills first, then by frequency, then canonical asc\n result.sort((a, b) => {\n if (a.skill.hot !== b.skill.hot) return a.skill.hot ? -1 : 1;\n if (a.occurrences !== b.occurrences) return b.occurrences - a.occurrences;\n return a.skill.canonical.localeCompare(b.skill.canonical);\n });\n return result;\n }\n\n get size(): number { return this.skills.length; }\n get maxPhraseTokens(): number { return this.maxPhraseLen; }\n}\n\n/** Synchronous constructor (takes preloaded data, used by tests). */\nexport function buildSkillIndex(skills: readonly Skill[]): SkillIndex {\n return new SkillIndex(skills);\n}\n","// eslint-disable-next-line @typescript-eslint/no-require-imports\nimport skillsData from '../../../data/skills/skills.json';\nimport { buildSkillIndex, SkillIndex, tokenize } from './matcher';\nimport type { Skill, SkillMatch, SkillType } from './types';\n\nexport type { Skill, SkillMatch, SkillType };\nexport { SkillIndex, tokenize };\n\nlet cached: SkillIndex | null = null;\n\n/**\n * Bundled ATS skill taxonomy: ~1.9k skills from O*NET (US DOL, public domain)\n * plus a curated emerging-tech allowlist. Used for keyword extraction from\n * job descriptions and resumes.\n */\nexport function getSkillIndex(): SkillIndex {\n if (!cached) cached = buildSkillIndex((skillsData as { skills: Skill[] }).skills);\n return cached;\n}\n\n/** Reset for tests. */\nexport function _resetSkillIndexCache(): void {\n cached = null;\n}\n","import type { ResumeSchema } from '../types/resume';\nimport type { AtsKeywordMatch } from './types';\nimport { getSkillIndex, type SkillMatch } from './skills';\n\n/**\n * Extract text content from a resume for skill matching.\n */\nfunction extractResumeText(resume: ResumeSchema): string {\n const parts: string[] = [];\n\n if (resume.basics?.summary) parts.push(resume.basics.summary);\n if (resume.basics?.label) parts.push(resume.basics.label);\n\n for (const w of resume.work || []) {\n if (w.position) parts.push(w.position);\n if (w.summary) parts.push(w.summary);\n parts.push(...(w.highlights || []));\n }\n for (const s of resume.skills || []) {\n if (s.name) parts.push(s.name);\n parts.push(...(s.keywords || []));\n }\n for (const p of resume.projects || []) {\n if (p.name) parts.push(p.name);\n if (p.description) parts.push(p.description);\n parts.push(...(p.highlights || []));\n }\n for (const e of resume.education || []) {\n if (e.area) parts.push(e.area);\n if (e.studyType) parts.push(e.studyType);\n parts.push(...(e.courses || []));\n }\n for (const c of resume.certificates || []) {\n if (c.name) parts.push(c.name);\n }\n\n return parts.join(' ');\n}\n\n/**\n * Split JD into sections and identify which contain the actual requirements.\n * Skills mentioned in requirement sections get prioritized over skills only\n * mentioned in the company-blurb / benefits sections.\n */\nfunction splitJdSections(text: string): { requirementText: string; fullText: string } {\n const lines = text.split('\\n');\n const reqPatterns = /^(required|requirements?|minimum|preferred|qualifications?|must[\\s-]have|nice[\\s-]to[\\s-]have|what you.?ll|what we.?re looking|skills|technical|you.?ll need|responsibilities|you will)/i;\n const nonReqPatterns = /^(about|summary|who we are|our (company|team|mission)|description|overview|benefits|perks|compensation|salary)/i;\n\n let inReqSection = false;\n const reqLines: string[] = [];\n\n for (const line of lines) {\n const header = line.trim().replace(/[:#*-]/g, '').trim();\n if (reqPatterns.test(header)) inReqSection = true;\n else if (nonReqPatterns.test(header)) inReqSection = false;\n if (inReqSection) reqLines.push(line);\n }\n\n return {\n requirementText: reqLines.join('\\n'),\n fullText: text,\n };\n}\n\n/**\n * Rank skills found in the JD. Gives precedence to skills that appear in\n * requirement sections, are flagged as \"hot technologies\" by O*NET, or\n * appear multiple times.\n */\ninterface RankedSkill {\n canonical: string;\n occurrences: number;\n inRequirementSection: boolean;\n hot: boolean;\n score: number;\n}\n\nfunction rankSkills(\n fullMatches: SkillMatch[],\n requirementMatches: SkillMatch[],\n): RankedSkill[] {\n const reqIds = new Set(requirementMatches.map((m) => m.skill.id));\n return fullMatches.map((m) => {\n const inRequirementSection = reqIds.has(m.skill.id);\n const score =\n m.occurrences * 1.0 +\n (inRequirementSection ? 3.0 : 0) +\n (m.skill.hot ? 1.5 : 0);\n return {\n canonical: m.skill.canonical,\n occurrences: m.occurrences,\n inRequirementSection,\n hot: m.skill.hot,\n score,\n };\n }).sort((a, b) => {\n if (a.inRequirementSection !== b.inRequirementSection) return a.inRequirementSection ? -1 : 1;\n if (a.score !== b.score) return b.score - a.score;\n return a.canonical.localeCompare(b.canonical);\n });\n}\n\n/**\n * Match a job description against a resume using the bundled skills taxonomy.\n *\n * Extraction is positive-filter: only terms recognised as known skills surface\n * as keywords, so prose verbs (\"actually\", \"ship\", \"move\"), contractions\n * (\"doesn't\" → \"doesn\") and generic nouns never leak through.\n */\nexport function matchJobDescription(\n resume: ResumeSchema,\n jobDescription: string,\n _language: string = 'en',\n): AtsKeywordMatch {\n if (!jobDescription.trim()) {\n return { matched: [], missing: [], extra: [], matchPercentage: 0 };\n }\n\n const skillIndex = getSkillIndex();\n\n // Extract skills from the full JD + requirement-only section\n const fullMatches = skillIndex.scan(jobDescription);\n const { requirementText } = splitJdSections(jobDescription);\n const requirementMatches = requirementText.trim()\n ? skillIndex.scan(requirementText)\n : fullMatches;\n\n // Rank and cap: top 25 most relevant skills, prioritising requirements + hot\n const ranked = rankSkills(fullMatches, requirementMatches).slice(0, 25);\n\n // Skills in the resume\n const resumeText = extractResumeText(resume);\n const resumeMatches = skillIndex.scan(resumeText);\n const resumeSkillIds = new Set(resumeMatches.map((m) => m.skill.id));\n\n const matched: string[] = [];\n const missing: string[] = [];\n for (const r of ranked) {\n // Find the skill object by canonical name to resolve id\n const match = fullMatches.find((m) => m.skill.canonical === r.canonical);\n if (!match) continue;\n if (resumeSkillIds.has(match.skill.id)) matched.push(r.canonical);\n else missing.push(r.canonical);\n }\n\n const matchPercentage = ranked.length > 0\n ? Math.round((matched.length / ranked.length) * 100)\n : 0;\n\n // Resume skills not referenced by the JD\n const jdSkillIds = new Set(fullMatches.map((m) => m.skill.id));\n const extra: string[] = [];\n for (const m of resumeMatches) {\n if (!jdSkillIds.has(m.skill.id)) extra.push(m.skill.canonical);\n }\n // Cap extras to avoid overwhelming the UI\n extra.splice(25);\n\n return { matched, missing, extra, matchPercentage };\n}\n","import type { AtsCheck, AtsRating, AtsFitAssessment, AtsKeywordMatch } from './types';\n\nconst weightMultiplier: Record<string, number> = {\n high: 3,\n medium: 2,\n low: 1,\n};\n\n/**\n * Calculate a weighted ATS score from a set of checks.\n */\nexport function calculateScore(checks: AtsCheck[]): number {\n if (checks.length === 0) return 0;\n\n let weightedSum = 0;\n let totalWeight = 0;\n\n for (const check of checks) {\n const mult = weightMultiplier[check.weight] || 1;\n weightedSum += check.score * mult;\n totalWeight += 100 * mult;\n }\n\n return totalWeight > 0 ? Math.round((weightedSum / totalWeight) * 100) : 0;\n}\n\n/**\n * Calculate a combined score from generic checks and optional JD matching.\n */\nexport function calculateCombinedScore(genericScore: number, jdMatchPercentage?: number): number {\n if (jdMatchPercentage === undefined) return genericScore;\n return Math.round(genericScore * 0.6 + jdMatchPercentage * 0.4);\n}\n\n/**\n * Map a numeric score to a human-readable rating.\n */\nexport function scoreToRating(score: number): AtsRating {\n if (score >= 90) return 'excellent';\n if (score >= 75) return 'good';\n if (score >= 60) return 'needs-work';\n return 'poor';\n}\n\n/**\n * Generate a summary string for a given score and rating.\n */\nexport function generateSummary(score: number, rating: AtsRating, hasJd: boolean): string {\n const ratingLabel = {\n excellent: 'Excellent',\n good: 'Good',\n 'needs-work': 'Needs Work',\n poor: 'Poor',\n }[rating];\n\n const base = `ATS Score: ${score}/100 (${ratingLabel})`;\n if (hasJd) {\n return `${base}, includes job description keyword matching.`;\n }\n return `${base}, based on resume structure and content best practices.`;\n}\n\n/**\n * Assess how well a resume fits a job description based on keyword matching.\n */\nexport function assessFit(keywords: AtsKeywordMatch): AtsFitAssessment {\n const { matchPercentage, missing } = keywords;\n if (matchPercentage >= 70) {\n return {\n level: 'strong',\n message: 'Strong fit, your resume aligns well with this job description.',\n };\n }\n const topMissing = missing.slice(0, 5).join(', ');\n if (matchPercentage >= 50) {\n return {\n level: 'partial',\n message: `Partial fit, consider emphasizing transferable skills. Key gaps: ${topMissing}.`,\n };\n }\n return {\n level: 'weak',\n message: `Weak fit, this role requires skills not well represented in your resume. Major gaps: ${topMissing}.`,\n };\n}\n","import type { ResumeSchema } from '../types/resume';\nimport type { AtsResult, AtsOptions } from './types';\nimport { runGenericChecks } from './genericChecks';\nimport { matchJobDescription } from './jdMatcher';\nimport { calculateScore, calculateCombinedScore, scoreToRating, generateSummary, assessFit } from './scoring';\n\n/**\n * Run ATS analysis on a resume.\n *\n * Performs deterministic, offline checks:\n * 1. Generic best-practice checks (contact, content, structure)\n * 2. Optional job-description keyword matching\n *\n * @param resume - Validated resume data\n * @param options - ATS analysis options\n * @returns Full ATS analysis result with score, checks, and suggestions\n */\nexport function analyzeAts(resume: ResumeSchema, options: AtsOptions = {}): AtsResult {\n const language = options.language || 'en';\n\n // Run generic checks\n const checks = runGenericChecks(resume, language);\n const genericScore = calculateScore(checks);\n\n // Run JD matching if provided\n let keywords;\n let fitAssessment;\n if (options.jobDescription) {\n keywords = matchJobDescription(resume, options.jobDescription, language);\n fitAssessment = assessFit(keywords);\n }\n\n // Calculate combined score\n const finalScore = calculateCombinedScore(genericScore, keywords?.matchPercentage);\n const rating = scoreToRating(finalScore);\n const summary = generateSummary(finalScore, rating, !!keywords);\n\n return {\n score: finalScore,\n rating,\n checks,\n keywords,\n fitAssessment,\n summary,\n };\n}\n\nexport type { AtsResult, AtsOptions, AtsCheck, AtsKeywordMatch, AtsFitAssessment } from './types';\n","import { execFileSync } from 'child_process';\nimport { createRequire } from 'module';\n\nconst require = createRequire(import.meta.url);\n\nexport interface ThemeModule {\n render: (resume: Record<string, unknown>, options?: Record<string, unknown>) => string | Promise<string>;\n}\n\n/**\n * Install a theme package using npm\n * @param packageName The npm package name to install\n */\nfunction installTheme(packageName: string): void {\n try {\n execFileSync('npm', ['install', packageName], {\n stdio: ['inherit', 'pipe', 'pipe'],\n encoding: 'utf8',\n });\n } catch (error) {\n throw new Error(`Failed to install ${packageName}: ${(error as Error).message}`);\n }\n}\n\n/**\n * Load a theme module by name\n * @param themeName The name of the theme to load\n * @param options Optional settings (autoInstall: boolean)\n * @returns The loaded theme module\n */\nexport function loadTheme(themeName: string, options?: { autoInstall?: boolean }): ThemeModule {\n let jsonResumeThemeName: string;\n let nativeThemeName: string;\n const autoInstall = options?.autoInstall !== false;\n\n try {\n // Try loading as a JSON Resume theme\n jsonResumeThemeName = themeName.startsWith('jsonresume-theme-')\n ? themeName\n : `jsonresume-theme-${themeName}`;\n\n try {\n // Use require for CommonJS modules\n return require(jsonResumeThemeName) as ThemeModule;\n } catch (_jsonResumeError) {\n // If not found as JSON Resume theme, try as native theme\n nativeThemeName = `@resuml/theme-${themeName}`;\n try {\n return require(nativeThemeName) as ThemeModule;\n } catch (_nativeError) {\n if (!autoInstall) {\n throw new Error(\n `Theme package ${jsonResumeThemeName} or ${nativeThemeName} not found in node_modules.\\n` +\n `Please install the theme package manually.`\n );\n }\n // Both attempts failed - auto-install the theme\n console.log(`📦 Theme ${jsonResumeThemeName} not found. Installing...`);\n try {\n installTheme(jsonResumeThemeName);\n console.log(`✅ Successfully installed ${jsonResumeThemeName}`);\n // Try requiring again after installation\n return require(jsonResumeThemeName) as ThemeModule;\n } catch (installError) {\n throw new Error(\n `Failed to auto-install theme ${jsonResumeThemeName}: ${\n (installError as Error).message\n }`\n );\n }\n }\n }\n } catch (error) {\n // Re-throw if it's already our custom error\n if (error instanceof Error && error.message.includes('Failed to auto-install')) {\n throw error;\n }\n throw new Error(`Theme package ${themeName} not found`);\n }\n}\n","export function generateResumeYaml(name: string, email: string, label: string): string {\n return `# =============================================================================\n# Resume - Generated by resuml\n# Documentation: https://github.com/phoinixi/resuml\n# Schema: https://jsonresume.org/schema/\n# =============================================================================\n\n# --- Basic Information ---\nbasics:\n name: '${name}'\n label: '${label}'\n # image: 'https://example.com/photo.jpg'\n email: '${email}'\n # phone: '+1-555-123-4567'\n # url: 'https://yourwebsite.com'\n summary: >-\n Write a short professional summary here.\n This supports multi-line strings in YAML.\n location:\n # address: '123 Main Street'\n # postalCode: '12345'\n city: 'Your City'\n countryCode: 'US'\n # region: 'Your State'\n profiles:\n - network: 'LinkedIn'\n username: 'your-username'\n url: 'https://linkedin.com/in/your-username'\n - network: 'GitHub'\n username: 'your-username'\n url: 'https://github.com/your-username'\n\n# --- Work Experience ---\nwork:\n - name: 'Company Name'\n position: 'Job Title'\n url: 'https://company.com'\n startDate: '2020-01-01'\n # endDate: '2023-12-31' # Omit for current position\n summary: 'Brief description of your role and responsibilities.'\n highlights:\n - 'Key achievement or responsibility'\n - 'Another notable accomplishment'\n\n# --- Education ---\neducation:\n - institution: 'University Name'\n url: 'https://university.edu'\n area: 'Field of Study'\n studyType: 'Bachelor of Science'\n startDate: '2014-09-01'\n endDate: '2018-06-01'\n # score: '3.8'\n courses:\n - 'Relevant Course 1'\n - 'Relevant Course 2'\n\n# --- Skills ---\nskills:\n - name: 'Programming Languages'\n level: 'Expert'\n keywords:\n - 'JavaScript'\n - 'TypeScript'\n - 'Python'\n - name: 'Frameworks'\n level: 'Advanced'\n keywords:\n - 'React'\n - 'Node.js'\n\n# --- Projects ---\n# projects:\n# - name: 'Project Name'\n# description: 'Brief project description'\n# highlights:\n# - 'Key feature or result'\n# keywords:\n# - 'Technology Used'\n# startDate: '2023-01-01'\n# endDate: '2023-06-30'\n# url: 'https://github.com/you/project'\n# roles:\n# - 'Developer'\n# type: 'application'\n\n# --- Languages ---\n# languages:\n# - language: 'English'\n# fluency: 'Native speaker'\n# - language: 'Spanish'\n# fluency: 'Professional working proficiency'\n\n# --- Interests ---\n# interests:\n# - name: 'Open Source'\n# keywords:\n# - 'Contributing'\n# - 'Community'\n\n# --- References ---\n# references:\n# - name: 'Jane Smith'\n# reference: 'It was a pleasure working with...'\n\n# --- Awards ---\n# awards:\n# - title: 'Award Name'\n# date: '2023-01-01'\n# awarder: 'Organization'\n# summary: 'Description of the award'\n\n# --- Certificates ---\n# certificates:\n# - name: 'Certificate Name'\n# date: '2023-01-01'\n# issuer: 'Issuing Organization'\n# url: 'https://example.com/cert'\n\n# --- Publications ---\n# publications:\n# - name: 'Publication Title'\n# publisher: 'Publisher'\n# releaseDate: '2023-01-01'\n# url: 'https://example.com/publication'\n# summary: 'Brief description'\n\n# --- Volunteer ---\n# volunteers:\n# - organization: 'Organization Name'\n# position: 'Volunteer Role'\n# url: 'https://organization.com'\n# startDate: '2022-01-01'\n# summary: 'Description of volunteer work'\n# highlights:\n# - 'Notable contribution'\n`;\n}\n","import { createRequire } from 'module';\n\nexport interface ThemeInfo {\n name: string;\n pkg: string;\n description: string;\n}\n\nexport const KNOWN_THEMES: ThemeInfo[] = [\n { name: 'stackoverflow', pkg: 'jsonresume-theme-stackoverflow', description: 'Stack Overflow inspired theme' },\n { name: 'elegant', pkg: 'jsonresume-theme-elegant', description: 'Elegant and professional' },\n { name: 'react', pkg: 'jsonresume-theme-react', description: 'Built with React components' },\n { name: 'even', pkg: 'jsonresume-theme-even', description: 'Clean and minimal' },\n { name: 'kendall', pkg: 'jsonresume-theme-kendall', description: 'Simple and clean layout' },\n { name: 'macchiato', pkg: 'jsonresume-theme-macchiato', description: 'Beautiful and modern' },\n { name: 'flat', pkg: 'jsonresume-theme-flat', description: 'Flat design theme' },\n { name: 'class', pkg: 'jsonresume-theme-class', description: 'Classic professional look' },\n { name: 'short', pkg: 'jsonresume-theme-short', description: 'Compact single-page resume' },\n { name: 'spartan', pkg: 'jsonresume-theme-spartan', description: 'Minimalist Spartan design' },\n { name: 'paper', pkg: 'jsonresume-theme-paper', description: 'Paper-like clean design' },\n { name: 'onepage', pkg: 'jsonresume-theme-onepage', description: 'One page resume layout' },\n];\n\nexport function isThemeInstalled(pkg: string): boolean {\n try {\n const req = createRequire(process.cwd() + '/');\n req.resolve(pkg);\n return true;\n } catch {\n return false;\n }\n}\n\nexport function getInstalledVersion(pkg: string): string | null {\n try {\n const req = createRequire(process.cwd() + '/');\n const pkgJson = req(`${pkg}/package.json`) as { version?: string };\n return pkgJson.version ?? null;\n } catch {\n return null;\n }\n}\n"],"mappings":"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","names":["require","createRequire"]}