I hereby claim:
- I am armujahid on github.
- I am armujahid (https://keybase.io/armujahid) on keybase.
- I have a public key ASA6lFDFH6iUQjdiljzwiRAkAisrB7bNde7qjt9UgUXJXAo
To claim this, I am signing this object:
class Node<T> { | |
value: T; | |
next: Node<T> | null; | |
constructor(value: T) { | |
this.value = value; | |
this.next = null; | |
} | |
} |
{ | |
"basics": { | |
"name": "Abdul Rauf", | |
"label": "", | |
"image": "https://avatars.githubusercontent.com/u/3725386?v=4", | |
"email": "mail@armujahid.me", | |
"phone": "+923214100317", | |
"url": "https://armujahid.me", | |
"summary": "As an accomplished engineer with 10+ years of experience in full-stack enterprise software development using bleeding-edge technologies, I am passionate about driving business value through innovative solutions. With a proven track record of working with various international clients, I am seeking new opportunities to take on a leadership role in a challenging and dynamic environment. My objective is to leverage my expertise to drive strategic business growth, lead cross-functional teams, and develop innovative solutions that deliver exceptional customer value. I am committed to staying at the forefront of emerging technologies and trends, and to continuously improving my skills and knowledge to stay ahead of the curve.", | |
"profiles": |
#!/bin/bash | |
# Sum the memory usages of all the processes of a program | |
# | |
# forked from https://unix.stackexchange.com/a/537658/102240 | |
ps -eo size,command --sort -size | grep $1 | awk '{ hr=$1/1024 ; sum +=hr; echo $1} END {print sum "MiB"}' |
/* flatpickr v4.6.2, @license MIT */ | |
(function (global, factory) { | |
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : | |
typeof define === 'function' && define.amd ? define(factory) : | |
(global = global || self, global.flatpickr = factory()); | |
}(this, function () { 'use strict'; | |
/*! ***************************************************************************** | |
Copyright (c) Microsoft Corporation. All rights reserved. | |
Licensed under the Apache License, Version 2.0 (the "License"); you may not use |
I hereby claim:
To claim this, I am signing this object:
'use strict'; | |
describe('mocha before hooks', function () { | |
before(() => console.log('*** top-level before()')); | |
beforeEach(() => console.log('*** top-level beforeEach()')); | |
describe('nesting', function () { | |
before(() => console.log('*** nested before()')); | |
beforeEach(() => console.log('*** nested beforeEach()')); | |
it('is a nested spec', () => true); | |
it('is a 2nd nested spec', () => true); |
@echo off | |
cls | |
echo. | |
ECHO =============================================================================== | |
echo Paste or write the complete path to install.esd or install.wim file | |
echo ^(without quotes marks "" even if the path contains spaces^) | |
ECHO =============================================================================== | |
echo. | |
set /p WIMFILE= | |
if "%WIMFILE%"=="" echo Incorrect file name or path&echo.&PAUSE&GOTO :QUIT |
root = true | |
[*] | |
end_of_line = lf | |
insert_final_newline = true | |
indent_style = space | |
indent_size = 2 | |
trim_trailing_whitespace = true | |
charset = utf-8 |
{ | |
"extends": ["eslint:recommended", "plugin:react/recommended"], | |
"parser": "babel-eslint", | |
"env": { | |
"browser": true, | |
"es6": true | |
} | |
} |