This file contains hidden or 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
$ password=$(pwgen 25 1) | |
$ echo $password | |
$ hashPassword $password | |
2. Store the password in your password manager. |
This file contains hidden or 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
python -m venv imageclassification | |
-- activate | |
.\imageclassification\Scripts\activate | |
pip install ipykernel | |
python -m ipykernel install --name=imageclassification | |
jupyter kernelspec list |
This file contains hidden or 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
https://confluence.cc.lehigh.edu/display/LKB/macOS%3A++Create+a+Desktop+Alias+to+a+Network+Storage+Space | |
https://confluence.cc.lehigh.edu/display/LKB/macOS%3A++Automatically+Connect+to+Network+Storage |
This file contains hidden or 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
https://aws.amazon.com/blogs/compute/saml-for-your-serverless-javascript-application-part-i/ |
This file contains hidden or 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
https://www.veritas.com/support/en_US/article.100000770 | |
https://www.veritas.com/support/en_US/doc/23557409-136252181-0/v18378260-136252181 | |
email -= headers | |
X-Ms-Exchange-Calendar-Series-Instance-Id: |
This file contains hidden or 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
https://harishgarg.com/writing/install-and-use-stable-diffusion-locally-on-windows/ |
This file contains hidden or 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
https://towardsdatascience.com/store-unlimited-data-for-free-on-ipfs-and-retrieve-it-with-python-8db7297b493d |
This file contains hidden or 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
https://slproweb.com/download/Win64OpenSSL_Light-3_0_7.msi | |
open Win64 OpenSSL Command Prompt | |
keys: | |
openssl ecparam -name secp384r1 -genkey -out private_key.pem | |
openssl ec -in private_key.pem -pubout -out public_key.pem |
This file contains hidden or 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
8. ROT13 Encryption | |
Rot13 is a cipher which is based on rotation of alphabetic characters by 13. The numeric and none alphabetic characters remain unchanged. Because there is 26 letters in English alphabet rotating characters by 13 encodes and decodes the string. So in our test email first letter of our email is “n” which would become “a” since we would count 13 letters from “n” in the alphabet in circle. |
This file contains hidden or 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 ONA | |
GO | |
IF OBJECT_ID('LLC_SQL','u') IS NOT NULL | |
DROP TABLE LLC_SQL; | |
CREATE TABLE LLC_SQL ( | |
Sender nvarchar(MAX) NULL, |