Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.
Avoid being a link dump. Try to provide only valuable well tuned information.
Neural network links before starting with transformers.
| /* | |
| * Copyright 2023 The Android Open Source Project | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * https://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
| import org.jetbrains.exposed.sql.Column | |
| import org.jetbrains.exposed.sql.ColumnType | |
| import org.jetbrains.exposed.sql.CustomStringFunction | |
| import org.jetbrains.exposed.sql.EqOp | |
| import org.jetbrains.exposed.sql.Expression | |
| import org.jetbrains.exposed.sql.ExpressionWithColumnType | |
| import org.jetbrains.exposed.sql.Table | |
| import org.jetbrains.exposed.sql.statements.api.PreparedStatementApi | |
| import org.jetbrains.exposed.sql.statements.jdbc.JdbcPreparedStatementImpl | |
| import org.jetbrains.exposed.sql.stringLiteral |
| name: Update file on PR merge | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| - develop | |
| types: closed | |
| jobs: | |
| update_date: |
| import android.graphics.Typeface | |
| import androidx.compose.foundation.Canvas | |
| import androidx.compose.foundation.background | |
| import androidx.compose.foundation.layout.BoxWithConstraints | |
| import androidx.compose.foundation.layout.Column | |
| import androidx.compose.foundation.layout.Row | |
| import androidx.compose.foundation.layout.RowScope | |
| import androidx.compose.foundation.layout.fillMaxHeight | |
| import androidx.compose.foundation.layout.fillMaxWidth | |
| import androidx.compose.runtime.Composable |
| // Requires Compose 1.1.0-alpha02+ | |
| // Best used with navigation animation transitions in Accompanist 0.17.0+ | |
| import androidx.compose.animation.* | |
| import androidx.compose.animation.core.FastOutLinearInEasing | |
| import androidx.compose.animation.core.LinearEasing | |
| import androidx.compose.animation.core.LinearOutSlowInEasing | |
| import androidx.compose.animation.core.tween | |
| import androidx.compose.ui.unit.Density | |
| import androidx.compose.ui.unit.dp |
| struct ExampleView: View { | |
| let viewModel: AuthViewModel = AuthViewModel() | |
| var body: some View { | |
| ObservingView(statePublisher: asPublisher(viewModel.viewStates()), | |
| actionPublisher: asPublisher(viewModel.viewActions()), | |
| content: { state, action in | |
| // your view here | |
| }) |
sandbox:111111111111 and prod:222222222222dev
and sandbox clusters in sandbox:111111111111 and beta and prod
clusters in prod:222222222222| /* | |
| * Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved. | |
| * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | |
| * | |
| * This code is free software; you can redistribute it and/or modify it | |
| * under the terms of the GNU General Public License version 2 only, as | |
| * published by the Free Software Foundation. Oracle designates this | |
| * particular file as subject to the "Classpath" exception as provided | |
| * by Oracle in the LICENSE file that accompanied this code. | |
| * |