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, |
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://community-old.sisense.com/hc/en-us/community/posts/115008207827-D3-Force-Directed-Network-Diagram | |
| https://blog.pragmaticworks.com/power-bi-custom-visuals-force-directed-graph | |
| https://marketplace.looker.com/marketplace/detail/viz-forcedirected |
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
| import requests | |
| from OpenSSL import crypto | |
| # Set base URL for Microsoft Graph API | |
| BASE_URL = "https://login.microsoftonline.com" | |
| # Set API endpoint for token | |
| ENDPOINT = "/{tenant_id}/oauth2/v2.0/token" | |
| # Set tenant 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://stackoverflow.com/questions/64548096/how-to-read-teams-channel-messages-using-msal-in-python | |
| API/Permissions name: Team.ReadBasic.All, type: Application, Status: granted for admin | |
| API/Permissions name: TeamsActivity.Read.All, type: Application, Status: granted for admin | |
| API/Permissions name: Channel.ReadBasic.All, type: Application, Status: granted for admin | |
| API/Permissions name: ChannelMessage.Read.All, type: Application, Status: granted for admin |
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
| network diagrams | |
| viz-force_directed_graph-marketplace | |
| https://github.com/looker-open-source/viz-force_directed_graph-marketplace |
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://learn.microsoft.com/en-us/graph/findmeetingtimes-example | |
| POST https://graph.microsoft.com/v1.0/me/findMeetingTimes | |
| Prefer: outlook.timezone="Pacific Standard Time" | |
| Content-type: application/json | |
| -------- | |
| https://pietrowicz-eric.medium.com/how-to-read-microsoft-outlook-calendars-with-python-bdf257132318\ | |
| https://github.com/O365/python-o365 | |
| ---------------------------------------------- | |
| .net version |
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.youtube.com/watch?v=VLGptwMRIVQ |
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
| http://thinktostart.com/download-your-linkedin-contacts-with-python/ |
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://github.com/chawla201/LinkedIn-Connections-Analyzer/blob/master/Profile%20Scraper.ipynb |