- Create a folder at the root of your user home folder
(Example:
C:/Users/uname/
) called.ssh
. - Create the following files if they do not already exist (paths begin from the root of your user home folder):
.ssh/config
Empire | Start Date | End Date | Duration (years) | |
---|---|---|---|---|
Assyria | 859 B.C. | 612 B.C. | 247 | |
Persia (Cyrus) | 538 B.C. | 330 B.C. | 208 | |
Greece (Alexander) | 331 B.C. | 100 B.C. | 231 | |
Roman Republic | 260 B.C. | 27 B.C. | 233 | |
Roman Empire | 27 B.C. | 180 A.D. | 207 | |
Arab Empire | 634 A.D. | 880 A.D. | 246 | |
Mameluke Empire | 1250 A.D. | 1517 A.D. | 267 | |
Ottoman Empire | 1320 A.D. | 1570 A.D. | 250 | |
Spain | 1500 A.D. | 1750 A.D. | 250 |
Empire | Start Date | End Date | Duration | Books of the Bible | |
---|---|---|---|---|---|
Sumerian Empire | 2334 BC - 2154 BC | 2154 BC | 180 years | ||
Akkadian Empire | 2334 BC - 2154 BC | 224 BC | 438 years | Isaiah, Jonah | |
Minoan Empire | 2000 BC - 1450 BC | 1450 BC | 550 years | ||
Indus Valley Civilization | 3300 BC - 1700 BC | 1700 BC | 1600 years | ||
Egyptian Empire | 3100 BC - 30 BC | 30 BC | 3,130 years | Exodus, Isaiah, Jeremiah, Ezekiel | |
Assyrian Empire | 1365 BC - 609 BC | 609 BC | 776 years | 2 Kings, Isaiah, Jonah, Nahum | |
Babylonian Empire | 1894 BC - 539 BC | 539 BC | 1355 years | Genesis, Isaiah, Jeremiah, Ezekiel, Daniel | |
Persian Empire | 550 BC - 330 BC | 330 BC | 220 years | Ezra, Isaiah, Jeremiah, Ezekiel, Daniel | |
Greek Empire | 323 BC - 30 BC | 30 BC | 293 years | All the New Testament books |
My current projects were using GitLab but you can easily translate equivalent steps for GitHub. Here are the steps I took and the mistakes along the way:
(in Ubuntu WSL Terminal)
Angular CLI version | Angular version | Node.js version | TypeScript version | RxJS version | |
---|---|---|---|---|---|
1.0.0-beta.17 (package name: angular-cli) | 2.0.x | 6.9.x or later minor version | 2.0.x | 5.0.x or later minor version | |
1.0.0-beta.20-1 (package name: angular-cli) | 2.1.x | 6.9.x or later minor version | 2.0.x | 5.0.x or later minor version | |
1.0.0-beta.22-1 (package name: angular-cli) | 2.2.x | 6.9.x or later minor version | 2.0.x | 5.0.x or later minor version | |
1.0.0-beta.30 | 2.3.x | 6.9.x or later minor version | 2.0.x | 5.0.x or later minor version | |
1.0.0-rc.4 | 2.4.x | 6.9.x or later minor version | 2.0.x | 5.0.x or later minor version | |
1.0.6 | 4.0.x/4.1.x | 6.9.x or later minor version | 2.2.x | 5.0.x or later minor version | |
1.1.3 | 4.0.x/4.1.x | 6.9.x or later minor version | 2.3.x | 5.0.x or later minor version | |
1.2.7 | 4.0.x/4.1.x | 6.9.x or later minor version | 2.3.x | 5.0.x or later minor version | |
1.3.2 | 4.2.x/4.3.x/4.4.x | 6.9.x or later minor version | 2.4.x | 5.0.x or later minor version |
var data: { [k: string]: unknown } = { | |
"count": 82, | |
"next": "https://swapi.dev/api/people/?page=2", | |
"previous": null, | |
"results": [ | |
{ | |
"name": "Luke Skywalker", | |
"height": "172", | |
"mass": "77", | |
"hair_color": "blond", |
The following is my personal interview questionaire I used on medium-to-fast-paced-interviews which usually happens on job fairs or speed hiring (at least from where I am). I believe I had 15-20 mins
interviews using this, iirc (Or maybe +10 mins if your introductions take time 🤔).
Note This is mostly (if not "only") for experienced developers who wish to apply as Jr/Mid/Senior C# dev.
export default function debounce(func) { | |
var wait = | |
arguments.length <= 1 || arguments[1] === undefined ? 100 : arguments[1] | |
var timeout = void 0 | |
return function () { | |
var _this = this | |
for ( | |
var _len = arguments.length, args = Array(_len), _key = 0; |