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
| <script> | |
| //prehiding snippet for Adobe Target with asynchronous Launch deployment | |
| (function(g,b,d,f){(function(a,c,d){if(a){var e=b.createElement("style");e.id=c;e.innerHTML=d;a.appendChild(e)}})(b.getElementsByTagName("head")[0],"at-body-style",d);setTimeout(function(){var a=b.getElementsByTagName("head")[0];if(a){var c=b.getElementById("at-body-style");c&&a.removeChild(c)}},f)})(window,document,"body {opacity: 0 !important}",3E3); | |
| </script> |
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() { | |
| var rejectType = 2; // 1 for reject and retain changes, 2 for reject and restore approved version | |
| var rejectReason = "Update not needed; preparing for Launch migration"; | |
| /* Don't edit below this line */ | |
| $("#toolbar > a.button.destruct.modal_trigger").trigger("click"); | |
| setTimeout(function() { | |
| $("#modal_target_reject > form > fieldset:nth-child(3) > ul > li:nth-child(rejectType) > label").trigger("click"); | |
| setTimeout(function() { | |
| $("#rejection_reason")[0].innerText = rejectReason; |
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
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
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
| #!/bin/sh | |
| pattern="._*" | |
| if [ -z "$1" ] | |
| then | |
| echo "\n Usage: byedots <start directory>\n Example: byedots . (for current directory)"; | |
| exit 0; | |
| fi |