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
| for(int i = 126; i < 130; i++) { | |
| Integer n1 = i; | |
| Integer n2 = i; | |
| System.out.println(String.format("%d => %b", i, n1 == n2)); | |
| } | |
| /* Out : | |
| 126 => true | |
| 127 => true |
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: '2' | |
| services: | |
| db: | |
| image: mariadb:latest | |
| restart: unless-stopped | |
| container_name: ttrss_db | |
| mem_limit: 512m | |
| volumes: | |
| - ./database:/var/lib/mysql |
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
| public class DateTimeConverter implements AttributeConverter<DateTime, Date> { | |
| @Override | |
| public Date convertToDatabaseColumn(DateTime attribute) { | |
| return attribute == null ? null: new Date(attribute | |
| .withZone(DateTimeZone.UTC) | |
| .withZoneRetainFields(DateTimeZone.getDefault()) | |
| .getMillis()); | |
| } | |
| @Override |
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
| wget https://dl.pstmn.io/download/latest/linux64 -O /tmp/postman.tar.gz | |
| rm -rf /usr/bin/postman/* | |
| tar --wildcards -C /usr/bin/postman -xf /tmp/postman.tar.gz Postman/* --strip 1 | |
| mv /usr/bin/postman/Postman /usr/bin/postman/postman |
OlderNewer