This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
λ ssh-keygen -t rsa -C "yusuf.badurohman@gmail.com" | |
Generating public/private rsa key pair. | |
Enter file in which to save the key (C:\Users\EXPLOIT/.ssh/id_rsa): | |
Enter passphrase (empty for no passphrase): | |
Enter same passphrase again: | |
Your identification has been saved in C:\Users\EXPLOIT/.ssh/id_rsa. | |
Your public key has been saved in C:\Users\EXPLOIT/.ssh/id_rsa.pub. | |
The key fingerprint is: | |
SHA256:Zwa5JUfYGq9puyw9/X2THYRsgCJR4dGkaXa8GkgVi80 yusuf.badurohman@gmail.com | |
The key's randomart image is: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ng build --prod --base-href "http://localhost/folder/" -d "/folder" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Get maximum value from array | |
function findMax(array) { | |
var max = 0; | |
var a = array.length; | |
for (counter=0; counter<a; counter++) { | |
if (array[counter] > max) { | |
max = array[counter]; | |
} | |
} | |
return max; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |