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
| /home/kevchentw/repo/openapi-generator/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/ApiClient.java:1018: ControlStatementBraces: This statement should have braces | |
| /home/kevchentw/repo/openapi-generator/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/ApiClient.java:1036: ControlStatementBraces: This statement should have braces | |
| /home/kevchentw/repo/openapi-generator/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/ApiClient.java:1040: ControlStatementBraces: This statement should have braces | |
| /home/kevchentw/repo/openapi-generator/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/ApiClient.java:1042: ControlStatementBraces: This statement should have braces | |
| /home/kevchentw/repo/openapi-generator/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/ApiClient.java:1187: EmptyCatchBlock: Avoid empty catch blocks | |
| /home/kevchentw/repo/openapi-generator/sample |
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
| openapi: 3.0.1 | |
| servers: | |
| - url: 'https://example.com' | |
| info: | |
| description: Test API. | |
| version: 1.0.0 | |
| title: example.com API | |
| contact: | |
| url: 'https://example.com' | |
| email: '[email protected]' |
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
| { | |
| "type": "Posting", | |
| "added_institution_label_ids": [ | |
| 257967, | |
| 653621, | |
| 473762, | |
| 662989, | |
| 590413, | |
| 19434, | |
| 493906, |
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
| { | |
| "type": "flex", | |
| "altText": "This is a Flex Message", | |
| "contents": { | |
| "type": "bubble", | |
| "body": { | |
| "type": "box", | |
| "layout": "horizontal", | |
| "contents": [ | |
| { |
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
| class Solution: | |
| def maxArea(self, h: int, w: int, horizontalCuts: List[int], verticalCuts: List[int]) -> int: | |
| horizontalCuts.append(0) | |
| horizontalCuts.append(h) | |
| horizontalCuts.sort() | |
| verticalCuts.append(0) | |
| verticalCuts.append(w) | |
| verticalCuts.sort() | |
| max_h_gap = 0 | |
| max_w_gap = 0 |
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
| {% extends 'base/base.html' %} | |
| {% load static %} | |
| {% block title %}收據製作{% endblock %} | |
| {% block head_after %} | |
| <script src="//cdnjs.cloudflare.com/ajax/libs/PapaParse/4.1.2/papaparse.min.js"></script> | |
| <script src="//cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.0.5/handlebars.min.js"></script> | |
| {% endblock %} | |
| {% block content %} |
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
| { | |
| "input_url": "https://bit.ly/gggggg", | |
| "result": [ | |
| { | |
| "url": "https://bit.ly/gggggg", | |
| "ssl": { | |
| "title": "網站安全憑證", | |
| "data": { | |
| "common_name": "github.com" | |
| }, |
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 sqlalchemy | |
| from sqlalchemy import create_engine | |
| from sqlalchemy.orm import sessionmaker | |
| from sqlalchemy.ext.declarative import declarative_base | |
| from sqlalchemy import Column, Integer, String, Text, DateTime | |
| from sqlalchemy import ForeignKey | |
| from sqlalchemy.orm import relationship | |
| from sqlalchemy import exists | |
| import logging |
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 sqlite3 | |
| from model import * | |
| from datetime import datetime | |
| from sqlalchemy.exc import IntegrityError | |
| from sqlalchemy.orm.exc import NoResultFound | |
| import re | |
| lion_sqlite = sqlite3.connect('lion_internal.db') | |
| trip_splite = sqlite3.connect('trip_new.db') |
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
| { | |
| "name": "kevin", | |
| "version":1, | |
| "archive": { | |
| "@schedule": {"interval": 30} | |
| }, | |
| "upload": { | |
| "url": "https://who.nctu.me/upload/", | |
| "@schedule": {"interval": 30} | |
| }, |