forked from SPC/spc-site
Update mentors and emails
This commit is contained in:
parent
62380ddc65
commit
060583a418
42
.gitignore
vendored
42
.gitignore
vendored
@ -1,39 +1,7 @@
|
||||
.gradle
|
||||
.gradle/
|
||||
build/
|
||||
.idea/
|
||||
/logs/
|
||||
/data/deployDate
|
||||
|
||||
!gradle/wrapper/gradle-wrapper.jar
|
||||
!**/src/main/**/build/
|
||||
!**/src/test/**/build/
|
||||
|
||||
### STS ###
|
||||
.apt_generated
|
||||
.classpath
|
||||
.factorypath
|
||||
.project
|
||||
.settings
|
||||
.springBeans
|
||||
.sts4-cache
|
||||
bin/
|
||||
!**/src/main/**/bin/
|
||||
!**/src/test/**/bin/
|
||||
|
||||
### IntelliJ IDEA ###
|
||||
.idea
|
||||
*.iws
|
||||
*.iml
|
||||
*.ipr
|
||||
out/
|
||||
!**/src/main/**/out/
|
||||
!**/src/test/**/out/
|
||||
|
||||
### NetBeans ###
|
||||
/nbproject/private/
|
||||
/nbbuild/
|
||||
/dist/
|
||||
/nbdist/
|
||||
/.nb-gradle/
|
||||
|
||||
### VS Code ###
|
||||
.vscode/
|
||||
|
||||
|
||||
/logs/
|
@ -12,9 +12,8 @@ job("Deploy") {
|
||||
shellScript {
|
||||
interpreter = "/bin/bash"
|
||||
content = """
|
||||
echo Hello
|
||||
echo World!
|
||||
"""
|
||||
ls -la
|
||||
""".trimIndent()
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -10,4 +10,6 @@ The centre provides a number of commercial services:
|
||||
* Architecture for scientific applications.
|
||||
* Scientific open source project development and support.
|
||||
|
||||
**This page is work in progress.**
|
||||
**This page is work in progress.**
|
||||
|
||||
email: <a href="mailto:research@sciprog.center">research@sciprog.center</a>
|
@ -15,6 +15,8 @@ image: images/people/nozik_2.png
|
||||
* (ex) Team lead at [JetBrains Research](https://research.jetbrains.org/groups/npm/).
|
||||
* Google developer expert in Kotlin.
|
||||
|
||||
email: <a href="mailto:director@sciprog.center">director@sciprog.center</a>
|
||||
|
||||
<blockquote>
|
||||
<ul>
|
||||
<li> I am against the war in Ukraine. It must be stopped. </li>
|
||||
|
@ -4,4 +4,6 @@
|
||||
* Director of [Scientific Programming Centre](/).
|
||||
* Senior researcher at https://npm.mipt.ru.
|
||||
* (ex) Team lead at [JetBrains Research](https://research.jetbrains.org/groups/npm/).
|
||||
* Google developer expert in Kotlin.
|
||||
* Google developer expert in Kotlin.
|
||||
|
||||
email: <a href="mailto:director@sciprog.center">director@sciprog.center</a>
|
@ -3,3 +3,5 @@ type: page
|
||||
title: Research
|
||||
language: en
|
||||
---
|
||||
|
||||
email: <a href="mailto:research@sciprog.center">research@sciprog.center</a>
|
Binary file not shown.
Before Width: | Height: | Size: 2.1 MiB |
@ -5,6 +5,6 @@ section_title: Контакты
|
||||
language: ru
|
||||
---
|
||||
|
||||
Все вопросы можно задать в телеграм-канале лаборатории: [https://t.me/mipt_npm](https://t.me/mipt_npm).
|
||||
Все вопросы можно задать в телеграм-канале лаборатории MIPT-NPM: [https://t.me/mipt_npm](https://t.me/mipt_npm).
|
||||
|
||||
Также можно писать на электронную почту: <a href='mailto:npm@m%69%70t.ru'>npm@mipt.ru</a>.
|
||||
Также можно писать на электронную почту: <a href='mailto:edu@sciprog.center'>edu@sciprog.center</a>.
|
||||
|
@ -2,7 +2,7 @@
|
||||
content_type: magprog_mentor
|
||||
name: Иван Харук
|
||||
id: Kharuk
|
||||
photo: images/mentors/Kharuk.JPG
|
||||
photo: images/mentors/Kharuk.jpg
|
||||
language: ru
|
||||
---
|
||||
|
||||
|
BIN
data/magprog/images/mentors/Kharuk.jpg
Normal file
BIN
data/magprog/images/mentors/Kharuk.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 66 KiB |
@ -41,7 +41,7 @@ private fun Application.resolveData(uri: URI, targetPath: Path): Path {
|
||||
}
|
||||
|
||||
const val DEPLOY_DATE_FILE = "deployDate"
|
||||
const val BUILD_DATE_FILE = "buildDate"
|
||||
const val BUILD_DATE_FILE = "/buildDate"
|
||||
|
||||
@Suppress("unused")
|
||||
fun Application.spcModule() {
|
||||
@ -64,7 +64,9 @@ fun Application.spcModule() {
|
||||
dataPath.createDirectories()
|
||||
dataPath.resolve(DEPLOY_DATE_FILE).writeText(LocalDateTime.now().toString())
|
||||
} else if (deployDate == null && buildDate != null) {
|
||||
//Writing deploy date in production mode
|
||||
|
||||
//Writing deploy date in production mode if it does not exist
|
||||
dataPath.createDirectories()
|
||||
dataPath.resolve(DEPLOY_DATE_FILE).writeText(LocalDateTime.now().toString())
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user