config: Add 34 files

This commit is contained in:
2025-10-13 08:21:26 +13:00
parent ee7f11fce6
commit 9cc06ca37b
17 changed files with 1179 additions and 0 deletions

21
test-14400f.js Normal file
View File

@@ -0,0 +1,21 @@
const { fetchBenchmarkData } = require('./scrapers/cpubenchmark');
async function test() {
const benchmarkData = await fetchBenchmarkData(console.log);
console.log('\n=== Searching for 14400F ===');
Object.keys(benchmarkData)
.filter(name => name.includes('14400'))
.forEach(name => {
console.log(`${name}: ${benchmarkData[name]}`);
});
console.log('\n=== Searching for 14700F ===');
Object.keys(benchmarkData)
.filter(name => name.includes('14700'))
.forEach(name => {
console.log(`${name}: ${benchmarkData[name]}`);
});
}
test().catch(console.error);