├── .gitignore ├── CODE_OF_CONDUCT.md ├── HUMAN.md ├── LICENSE ├── README.md ├── cpuid_dump.linq ├── screenshot.gif ├── screenshot.png └── src ├── cpuid.css ├── cpuid.html ├── cpuid.js ├── cpuid_amd.js ├── cpuid_intel.js ├── cpuid_interact.js ├── cpuid_startup.js ├── favicon.ico ├── favicon.png └── fontfix.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsuberland/web-cpuid/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsuberland/web-cpuid/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /HUMAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsuberland/web-cpuid/HEAD/HUMAN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsuberland/web-cpuid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsuberland/web-cpuid/HEAD/README.md -------------------------------------------------------------------------------- /cpuid_dump.linq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsuberland/web-cpuid/HEAD/cpuid_dump.linq -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsuberland/web-cpuid/HEAD/screenshot.gif -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsuberland/web-cpuid/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/cpuid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsuberland/web-cpuid/HEAD/src/cpuid.css -------------------------------------------------------------------------------- /src/cpuid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsuberland/web-cpuid/HEAD/src/cpuid.html -------------------------------------------------------------------------------- /src/cpuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsuberland/web-cpuid/HEAD/src/cpuid.js -------------------------------------------------------------------------------- /src/cpuid_amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsuberland/web-cpuid/HEAD/src/cpuid_amd.js -------------------------------------------------------------------------------- /src/cpuid_intel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsuberland/web-cpuid/HEAD/src/cpuid_intel.js -------------------------------------------------------------------------------- /src/cpuid_interact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsuberland/web-cpuid/HEAD/src/cpuid_interact.js -------------------------------------------------------------------------------- /src/cpuid_startup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsuberland/web-cpuid/HEAD/src/cpuid_startup.js -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsuberland/web-cpuid/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsuberland/web-cpuid/HEAD/src/favicon.png -------------------------------------------------------------------------------- /src/fontfix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsuberland/web-cpuid/HEAD/src/fontfix.js --------------------------------------------------------------------------------