Skip to content

Instantly share code, notes, and snippets.

View jitcoder's full-sized avatar
💭
DEPLOY DEPLOY DEPLOY!

Jitcoder jitcoder

💭
DEPLOY DEPLOY DEPLOY!
View GitHub Profile
{
"meta": { "theme": "caffeine" },
"basics": {
"name": "Sameer Mirza",
"label": "VP of Engineering",
"email": "sameerbilal2012@gmail.com",
"phone": "(805) 617-0769",
"picture": "https://media-exp1.licdn.com/dms/image/C4D03AQGMdxJeGeScoQ/profile-displayphoto-shrink_400_400/0/1648111641229?e=2147483647&v=beta&t=FF6KH-Y4EZ9Ie4Q_Q5kKcybEziWfSy2_kUdxchcqjXc",
"location": {
"address": "34875 Pourroy Rd",
@jitcoder
jitcoder / performance.js
Created October 23, 2019 22:53
module that returns system health info
// const startUsage = process.cpuUsage();
// // { user: 38579, system: 6986 }
// // spin the CPU for 500 milliseconds
// const now = Date.now();
// while (Date.now() - now < 500);
// console.log(process.cpuUsage(startUsage));
// // { user: 514883, system: 11226 }