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
| <div class="container"> | |
| <div class="row no-gutters"> | |
| <div class="col-md-4 border-right"> | |
| <div class="settings-tray"> | |
| <img class="profile-image" src="https://randomuser.me/api/portraits/men/39.jpg" alt=""> | |
| <span class="settings-tray--right"> | |
| <i class="material-icons">cached</i> | |
| <i class="material-icons">message</i> | |
| <i class="material-icons">menu</i> | |
| </span> |
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/bash | |
| for img in $(find $1 -iname "*.jpg" -type f) | |
| do | |
| if [ $(du -sk $img | cut -f1) -ge 300 ] | |
| then | |
| convert $img -resize 50% $img | |
| echo $img | |
| fi | |
| done |
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
| # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to | |
| # newer versions of the distribution. | |
| deb http://us.archive.ubuntu.com/ubuntu/ bionic main restricted | |
| # deb-src http://us.archive.ubuntu.com/ubuntu/ bionic main restricted | |
| ## Major bug fix updates produced after the final release of the | |
| ## distribution. | |
| deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted | |
| # deb-src http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted |