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
| 1,2018,Kumara Parvatha,1712,Awesome Experience | |
| 2,2018,Kudremukh,1894,Awesome Experience | |
| 3,2018,Tiruvannamalai,814,Awesome Experience | |
| 4,2018,Kodachadri,1343,Awesome Experience | |
| 5,2018,Mullayanagiri,1930,Awesome Experience | |
| 6,2018,Narashima Parvatha,1150,Awesome Experience | |
| 7,2018,Parvathamalai,1219,Awesome Experience | |
| 8,2019,Velliangiri,1778,Awesome Experience | |
| 9,2019,Sathuragiri,1402,Awesome Experience | |
| 10,2019,Kolli Hills,1400,Awesome Experience |
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 net.schmizz.keepalive.KeepAliveProvider; | |
| import net.schmizz.sshj.DefaultConfig; | |
| import net.schmizz.sshj.SSHClient; | |
| import net.schmizz.sshj.connection.channel.direct.Session; | |
| import net.schmizz.sshj.sftp.SFTPClient; | |
| import net.schmizz.sshj.transport.verification.PromiscuousVerifier; | |
| import org.springframework.beans.factory.annotation.Value; | |
| import org.springframework.context.annotation.Bean; | |
| import org.springframework.context.annotation.Configuration; | |
| import org.springframework.oxm.jaxb.Jaxb2Marshaller; |
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
| version: '3' | |
| networks: | |
| proxy: | |
| external: true | |
| internal: | |
| external: false | |
| services: | |
| www: |
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
| USA TOP 100 CHARTS : 18 Jan 2014 | |
| Pree download: http://bit.ly/1iMSy3y | |
| 01 Timber (feat. Ke$ha).m4a - 6.95 Mb | |
| 02 Counting Stars.m4a - 8.61 Mb | |
| 03 The Monster (feat. Rihanna).m4a - 8.1 Mb | |
| 04 Royals.m4a - 6.59 Mb | |
| 05 Say Something (feat. Christina Aguilera).m4a - 7.71 Mb | |
| 06 Dark Horse (feat. Juicy J).m4a - 7.24 Mb |
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
| version: '3' | |
| services: | |
| inventory-service: | |
| build: | |
| context: . | |
| dockerfile: Dockerfile | |
| deploy: | |
| replicas: 4 | |
| update_config: | |
| parallelism: 2 |
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
| docker run ` | |
| --label "traefik.backend=site1"` | |
| --label "traefik.frontend.rule=Host:site1.echorand.me" ` | |
| --label "traefik.port=80"` | |
| --label "traefik.backend.healthcheck.path=/" ` | |
| --label "traefik.backend.healthcheck.interval=5s"` | |
| --label "app=${Image1}" ` | |
| --label "version=$GitHash" -d "$($Image1):$($GitHash)" |
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
| calc(100% - 50px) | |
| 1. position:static | |
| #div-1 { | |
| position:static; | |
| } | |
| 2. position:relative | |
| #div-1 { | |
| position:relative; | |
| top:20px; | |
| left:-40px; |
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://cssreset.com/flexbox-css-frameworks/ | |
| https://css-tricks.com/snippets/css/ | |
| 1. Bulma | |
| 2. Wire | |
| 3. Juiced | |
| 4. Spectre CSS | |
| 5. Reflex | |
| 6. Miligram | |
| 7. Basis | |
| 8. Kube |
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
| .flex-container { | |
| padding: 0; | |
| margin: 0; | |
| list-style: none; | |
| display: -webkit-box; | |
| display: -moz-box; | |
| display: -ms-flexbox; | |
| display: -webkit-flex; | |
| display: flex; |
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://codepen.io/anon/pen/PLdGGN | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| div.contents { | |
| display: flex; | |
| flex-direction: row; | |
| flex-wrap: wrap; | |
| flex-flow: row; |