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
| services: | |
| nifi: | |
| ports: | |
| - "8443:8443" | |
| volumes: | |
| - ./mysql-connector-j-8.0.31.jar:/opt/mysql-connector-j-8.0.31.jar | |
| image: apache/nifi:latest | |
| environment: | |
| SINGLE_USER_CREDENTIALS_USERNAME: nifi | |
| SINGLE_USER_CREDENTIALS_PASSWORD: nifinifinifi |
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 promise = new Promise(function(resolve, reject) { | |
| setTimeout(resolve, 100, 'remote api queried'); | |
| }); | |
| for (var i=0; i<10; i++) { | |
| console.log(i); | |
| (function(index) { |
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 "sprite/*.png"; | |
| span{ | |
| @include sprite-sprite(some_file_name); | |
| } | |
| @media (min-width: 992px){ | |
| @include get-sprite($sprite-sprites, some_file_name); | |
| } |
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
| #.htaccess to be saved on the root of wordpress upload directory | |
| <FilesMatch "\.(php|php3)$"> | |
| Order Deny,Allow | |
| Deny from all | |
| </FilesMatch> |