abc123
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
| { | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "title": "AECI Lead Schema", | |
| "type": "object", | |
| "properties": { | |
| "fullName": { | |
| "type": "object", | |
| "title": "Full Name", | |
| "properties": { | |
| "firstName": { |
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
| alert('yomama'); |
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
| .newLead { | |
| background-color: pink; | |
| } |
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
| //document.getElementById("newLead").parentNode.parentNode.style.filter = "brightness(0.8)"; | |
| console.log("It Works"); |
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
| # Create the necessary appId || clientId and tenantId to use the Microsoft Graph | |
| $appId = '<APP_ID>' | |
| $clientId = '<CLIENT_ID>' | |
| $tenantId = '<TENANT_ID>' | |
| # Store the necessary authorization info, such as the secret and the redirect URI | |
| $secret = '<SECRET>' | |
| $redirectUri= 'https://<RESOLVED_URI>' | |
| # Initialize a new Graph application |
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
| $startDate = Get-Date -Year 2023 -Month 2 -Day 25 | |
| $firstEventName = 'Calendar Event 1' | |
| $secondEventName = 'Calendar Event 2' | |
| $thirdEventName = 'Calendar Event 3' | |
| New-OutlookCalendarItem -Subject $firstEventName -Start $startDate -Duration (60) | |
| $secondEvent = $startDate.AddMonths(2) | |
| New-OutlookCalendarItem -Subject $secondEventName -Start $secondEvent -Duration (60) |
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
| #Prompt user for the new version number | |
| $newVersion = Read-Host 'Please enter the new version number'; | |
| #Read the nuspec file to get the current version number | |
| $nuspecFilePath = "$pwd/MyNuspecFile.nuspec" | |
| $nuspecContent = Get-Content -Path $nuspecFile | |
| $versionNumber = ($nuspecContent | Select-String -Pattern "<version>.*</version>" -AllMatches | ForEach-Object { $_.Matches } | Select-Object Value).Value | |
| #Create a copy of the current folder with the new version number | |
| $currentDirectory = Get-Location |
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
| <html> | |
| <body> | |
| //form to store contact information | |
| <form action="store.php" method="post"> | |
| //prompts for entering contact information | |
| Name: <input type="text" name="Name" /> | |
| Email: <input type="text" name="Email" /> | |
| Message: <input type="textarea" name="Message" /> | |
| <input type="submit" value="Submit" /> | |
| </form> |
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
| ([Environment]::GetFolderPath("Desktop")) |
NewerOlder