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
package mobi.sevenwinds.gamification.utils | |
import io.ktor.server.config.ApplicationConfig | |
import io.ktor.server.config.ApplicationConfigValue | |
import io.ktor.server.config.ApplicationConfigurationException | |
import kotlinx.serialization.json.JsonArray | |
import kotlinx.serialization.json.JsonElement | |
import kotlinx.serialization.json.JsonNull | |
import kotlinx.serialization.json.JsonObject | |
import kotlinx.serialization.json.JsonPrimitive |
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
function createUnityInstance(canvas, config, onProgress) { | |
onProgress = onProgress || function () {}; | |
#if USE_THREADS | |
// Polyfill Atomics.wake for old Emscripten fastcomp compiler. | |
// TODO: When we update to new Emscripten, this can be removed. | |
if (typeof Atomics !== 'undefined' && Atomics.notify && !Atomics.wake) { | |
Atomics.wake = Atomics.notify; | |
} | |
#endif |
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
-- https://docs.google.com/spreadsheets/d/1BFdaeOUeQ2hbAWazSYXBjEsSVJVpaFI_FaQXkr00KD8/edit#gid=131411458 | |
-- Таблица пользователей для песочницы | |
create table garage_users | |
( | |
id serial primary key, | |
nickname text | |
); | |
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
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using UnityEditor; | |
using UnityEditor.Build; | |
using UnityEditor.Build.Reporting; | |
[InitializeOnLoad] | |
public class PreloadSigningAlias : IPostprocessBuildWithReport | |
{ |
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
version: '2' | |
services: | |
java-server: | |
image: java:8-jre-alpine | |
restart: always | |
environment: | |
spring.profiles.active: docker | |
jargs: -Djava.security.egd=file:/dev/./urandom | |
volumes: | |
- ./:/app |
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
package sevenwinds.fool; | |
import lombok.Builder; | |
import lombok.Data; | |
import lombok.Singular; | |
import lombok.Value; | |
import org.springframework.http.*; | |
import org.springframework.web.client.RestTemplate; |