1
0
forked from SPC/spc-site

Update mentors and emails

This commit is contained in:
Alexander Nozik 2022-05-25 18:28:30 +03:00
parent 62380ddc65
commit 060583a418
No known key found for this signature in database
GPG Key ID: F7FCF2DD25C71357
12 changed files with 24 additions and 47 deletions

42
.gitignore vendored
View File

@ -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/

View File

@ -12,9 +12,8 @@ job("Deploy") {
shellScript {
interpreter = "/bin/bash"
content = """
echo Hello
echo World!
"""
ls -la
""".trimIndent()
}
}

View File

@ -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:&#114;&#101;&#115;&#101;&#097;&#114;&#099;&#104;&#064;&#115;&#099;&#105;&#112;&#114;&#111;&#103;&#046;&#099;&#101;&#110;&#116;&#101;&#114;">&#114;&#101;&#115;&#101;&#097;&#114;&#099;&#104;&#064;&#115;&#099;&#105;&#112;&#114;&#111;&#103;&#046;&#099;&#101;&#110;&#116;&#101;&#114;</a>

View File

@ -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:&#100;&#105;&#114;&#101;&#099;&#116;&#111;&#114;&#064;&#115;&#099;&#105;&#112;&#114;&#111;&#103;&#046;&#099;&#101;&#110;&#116;&#101;&#114;">&#100;&#105;&#114;&#101;&#099;&#116;&#111;&#114;&#064;&#115;&#099;&#105;&#112;&#114;&#111;&#103;&#046;&#099;&#101;&#110;&#116;&#101;&#114;</a>
<blockquote>
<ul>
<li> I am against the war in Ukraine. It must be stopped. </li>

View File

@ -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:&#100;&#105;&#114;&#101;&#099;&#116;&#111;&#114;&#064;&#115;&#099;&#105;&#112;&#114;&#111;&#103;&#046;&#099;&#101;&#110;&#116;&#101;&#114;">&#100;&#105;&#114;&#101;&#099;&#116;&#111;&#114;&#064;&#115;&#099;&#105;&#112;&#114;&#111;&#103;&#046;&#099;&#101;&#110;&#116;&#101;&#114;</a>

View File

@ -3,3 +3,5 @@ type: page
title: Research
language: en
---
email: <a href="mailto:&#114;&#101;&#115;&#101;&#097;&#114;&#099;&#104;&#064;&#115;&#099;&#105;&#112;&#114;&#111;&#103;&#046;&#099;&#101;&#110;&#116;&#101;&#114;">&#114;&#101;&#115;&#101;&#097;&#114;&#099;&#104;&#064;&#115;&#099;&#105;&#112;&#114;&#111;&#103;&#046;&#099;&#101;&#110;&#116;&#101;&#114;</a>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 MiB

View File

@ -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&#58;&#110;p&#109;&#64;m%&#54;&#57;%70&#116;&#46;ru'>npm&#64;mip&#116;&#46;ru</a>.
Также можно писать на электронную почту: <a href='mailto:&#101;&#100;&#117;&#064;&#115;&#099;&#105;&#112;&#114;&#111;&#103;&#046;&#099;&#101;&#110;&#116;&#101;&#114;'>&#101;&#100;&#117;&#064;&#115;&#099;&#105;&#112;&#114;&#111;&#103;&#046;&#099;&#101;&#110;&#116;&#101;&#114;</a>.

View File

@ -2,7 +2,7 @@
content_type: magprog_mentor
name: Иван Харук
id: Kharuk
photo: images/mentors/Kharuk.JPG
photo: images/mentors/Kharuk.jpg
language: ru
---

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

View File

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 66 KiB

View File

@ -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())
}