When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:
main {
max-width: 38rem;
padding: 2rem;
margin: auto;
}mercari.go #4 https://mercari.connpass.com/event/105640/
| import fs = require('fs'); | |
| import sql = require('sql.js'); | |
| export class Security { | |
| private db; | |
| private history: dayRecord[]; | |
| constructor( | |
| private symbol: string, |
| @Aspect | |
| public final class MethodCounter { | |
| private static final InternalLogger LOG = InternalLoggerFactory.getInstance(MethodCounter.class); | |
| public MethodCounter() { | |
| } | |
| @Around( | |
| // @checkstyle StringLiteralsConcatenation (2 lines) | |
| "(execution(* *(..)) || initialization(*.new(..)))" |
| #How to load the model | |
| def build_model(img_width=224, img_height=224): | |
| from keras.models import Sequential | |
| from keras.layers import Convolution2D, ZeroPadding2D, MaxPooling2D, Activation | |
| model = Sequential() | |
| model = Sequential() | |
| model.add(ZeroPadding2D((1,1),input_shape=(3,img_width,img_height))) | |
| model.add(Convolution2D(64, 3, 3, activation='relu', name='conv1_1')) | |
| model.add(Activation('relu')) |
| package com.Instax.sdk; | |
| import java.io.*; | |
| import java.util.*; | |
| import android.graphics.Bitmap; | |
| import android.graphics.Bitmap.CompressFormat; | |
| import android.graphics.Color; | |
| import android.util.Log; | |
| import com.Instax.sdk.InstaxStatus.ErrCode; |