- 1
- 2
- 3
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
| WebController.java: | |
| package site.sunmeat.hibernate; | |
| import com.google.api.core.ApiFuture; | |
| import com.google.cloud.firestore.*; | |
| import com.google.firebase.cloud.FirestoreClient; | |
| import jakarta.annotation.PostConstruct; | |
| import org.springframework.context.annotation.DependsOn; | |
| import org.springframework.stereotype.Controller; |
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
| build.gradle: | |
| plugins { | |
| id 'java' | |
| id 'org.springframework.boot' version '4.0.0-SNAPSHOT' | |
| id 'io.spring.dependency-management' version '1.1.7' | |
| } | |
| group = 'site.sunmeat' | |
| version = '0.0.1-SNAPSHOT' |
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
| build.gradle: | |
| plugins { | |
| id 'java' | |
| id 'org.springframework.boot' version '4.0.0-SNAPSHOT' | |
| id 'io.spring.dependency-management' version '1.1.7' | |
| } | |
| group = 'site.sunmeat' | |
| version = '0.0.1-SNAPSHOT' |
This file has been truncated, but you can view the full file.
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
| Кобзар | |
| Шевченко Тарас | |
| Тарас ШЕВЧЕНКО / “КОБЗАР” | |
| Шевченко народився у селi Моринцi Київської губ., в родинi селянина-крiпака. Рано втративши матiр, а потiм i батька, вiн з дитинства зазнав багато горя i знущань. Працюючи i навчаючись у дякiв, Шевченко ознайомився з деякими творами української лiтератури, а вiдчуваючи великий потяг до малювання, уже тодi робив першi спроби розпочати навчання у маляра. Коли Шевченковi минуло 14 рокiв, його зробили дворовим слугою помiщика П. Енгельгардта в маєтку Вiльшанi. З осенi 1828 року до початку 1831 року Шевченко побував зi своїм паном у Вiльнi, де, можливо, вiдвiдував лекцiї малювання у професора Вiленського Унiверситету Й. Рустемаса. У Вiльнi Шевченко був очевидцем революцiйних подiй i мiг читати патрiотичнi прокламацiї повстанцiв. З цього перiоду зберiгся малюнок Шевченка «Погруддя жiнки», що свiдчить про майже професiйне володiння олiвцем. | |
| Переїхавши до Петербурга в 1831 р., Енгельгардт взяв iз собою Шевченка, а щоб мати дворового маляра, вiддав його в науку на 4 р |
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
| build.gradle: | |
| plugins { | |
| id 'java' | |
| id 'org.springframework.boot' version '4.0.0-SNAPSHOT' | |
| id 'io.spring.dependency-management' version '1.1.7' | |
| } | |
| group = 'site.sunmeat' | |
| version = '0.0.1-SNAPSHOT' |
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
| build.gradle: | |
| dependencies { | |
| implementation 'org.springframework.boot:spring-boot-starter-web' | |
| implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' | |
| implementation 'com.fasterxml.jackson.core:jackson-databind' | |
| developmentOnly 'org.springframework.boot:spring-boot-devtools' | |
| } | |
| ================================================================================================= |
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
| build.gradle: | |
| dependencies { | |
| implementation 'org.springframework.boot:spring-boot-starter-web' | |
| implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' | |
| implementation("org.springframework.boot:spring-boot-starter-webflux") | |
| implementation("com.fasterxml.jackson.core:jackson-databind") | |
| developmentOnly("org.springframework.boot:spring-boot-devtools") | |
| } |
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
| build.gradle: | |
| plugins { | |
| id 'java' | |
| id 'org.springframework.boot' version '4.0.0-SNAPSHOT' | |
| id 'io.spring.dependency-management' version '1.1.7' | |
| } | |
| group = 'site.sunmeat' | |
| version = '0.0.1-SNAPSHOT' |
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
| MainActivity.java: | |
| package site.sunmeat.helloworld; | |
| import android.app.Activity; | |
| import android.content.Intent; | |
| import android.os.Bundle; | |
| import android.util.Log; | |
| import android.widget.*; | |
| import androidx.activity.result.ActivityResultLauncher; |
NewerOlder