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
| function checkmd5 { | |
| local string="${1?No string provided to test}" | |
| local checksum=$(printf "${string}" | md5sum | awk '{print $1}') | |
| printf "%10s: %s\n" "string" "${string}" | |
| printf "%10s: %s\n" "checksum" "${checksum}" | |
| printf "%10s: %s\n" "type" "MD5" | |
| printf "%10s: %s" "result" "Checking..." |
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
| /** | |
| * Wait For Element - Creates a MutationObserver to watch for an element to be created. | |
| * | |
| * @param {object|string} selectorObj - The object with the selector and other params; Can also be a string | |
| * value of the selector. | |
| * @property {string} [selectorObj.selector] - The string to use as the querySelector value. | |
| * @property {boolean} [selectorObj.multiple] - Determines if the mutation observer should be removed after | |
| * the first match or not. | |
| * @property {boolean} [selectorObj.verbose] - If true, some debug logs will be output to console. | |
| * @see https://stackoverflow.com/a/61511955/1596569 |
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
| /* | |
| rgb(from var(--v-card-background-color) calc(r - 75) g b / 50%) | |
| rgb(from var(--v-card-heading-base) calc(r + 40) calc(g + 40) b / 50%) | |
| --v-card-background-color | |
| */ | |
| /* BG Animation */ | |
| :root { |
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
| All files were found via Googling: | |
| site:oregontechsfcdn.azureedge.net filetype:pdf inurl:library-documents | |
| or for specific chapters: | |
| site:oregontechsfcdn.azureedge.net filetype:pdf inurl:library-documents inurl:chapter-1 | |
| #https://www.google.com/search?q=site%3Aoregontechsfcdn.azureedge.net+inurl%3Alibrary-documents+filetype%3Apdf | |
| Successful Searching in Oregon Tech Library’s Electronic Resources | |
| https://oregontechsfcdn.azureedge.net/oregontech/library-documents/successful-searching-in-oregon-tech-library-electronic-resources2012.pdf |
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
| General | |
| id (string) Video identifier | |
| title (string) Video title | |
| url (string) Video URL | |
| ext (string) Video filename extension | |
| alt_title (string) A secondary title of the video | |
| display_id (string) An alternative identifier for the video | |
| uploader (string) Full name of the video uploader | |
| license (string) License name the video is licensed under | |
| creator (string) The creator of the video |
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
| Question: | |
| Tell me about a time that you strongly disagreed with your | |
| manager on something you deemed to be very important to the | |
| business. What was it about and how did you handle it? | |
| Answer: | |
| I think the most prevalent example would be the mentality in which my | |
| previous manager and I had towards potential problems related to | |
| monitoring, logging and security weaknesses. It seemed to me that he | |
| had more of a reactive oriented mentality, where as I thought it was |
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
| AUIBuild | |
| ActionPanelAssets | |
| AmazonCertifiedDetailPageAssets | |
| AmazonCustomBuyBoxAssets | |
| AmazonCustomCommonAssets | |
| AmazonCustomPreviewerAssets | |
| AmazonPopoversAUIShim | |
| AmazonsChoiceAssets | |
| Assets | |
| BabyRegistryDPAssets |
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
| 3p-fabricjs | |
| 3p-promise | |
| A | |
| Airy | |
| AmazonCustom:BrowserSpecific:DisableBFCache | |
| CountryNames | |
| DigitalDashAddListeners | |
| DigitalDashCreateForm | |
| DigitalDashUtils | |
| EDPUtils |
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
| DigitalDashAutoAction | |
| DigitalDashPopoverManager | |
| ac-popover-metrics | |
| ac:olp:init | |
| add-to-cart-refresh | |
| addSuppliersButton | |
| aloha.carrierCompatibility.onStart | |
| attach-dss-js | |
| atwl-dropdown | |
| atwl-huc |
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
| var PrefixedLog = function( prefix, style ) { | |
| if ( ! prefix || typeof prefix !== 'string' ) return; | |
| this.prefix = prefix; | |
| this.prefixFormat = '[%c%s%c]'; | |
| this.style = (typeof style === 'string' ? style : 'color: grey; font-weight: bold'); | |
| this.unstyle = 'color: none; font-weight: none'; | |
| }; | |
| PrefixedLog.prototype.initArgs = function(){ |