This file contains 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
import network | |
import time | |
from scrolling_text import ScrollingText | |
from picographics import PicoGraphics, DISPLAY_STELLAR_UNICORN | |
from stellar import StellarUnicorn | |
import urequests | |
import gc | |
su = StellarUnicorn() | |
graphics = PicoGraphics(DISPLAY_STELLAR_UNICORN) |
This file contains 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
private fun collectSupertypesFromPsiClass( | |
driWithPsiClass: Pair<DRI, PsiClass>, | |
supersMap: MutableMap<DRI, Supertypes> | |
) { | |
val (dri, psiClass) = driWithPsiClass | |
val supertypes = psiClass.superTypes.mapNotNull { it.resolve() } | |
.filterNot { it.qualifiedName == "java.lang.Object" } | |
val supertypesDriWithPsiClass = supertypes.map { DRI.from(it) to it } | |
if (supersMap[dri] == null) { |
This file contains 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
@file:OptIn(InternalDokkaApi::class) | |
package template | |
import org.jetbrains.dokka.CoreExtensions | |
import org.jetbrains.dokka.DokkaException | |
import org.jetbrains.dokka.InternalDokkaApi | |
import org.jetbrains.dokka.model.DModule | |
import org.jetbrains.dokka.model.WithSources | |
import org.jetbrains.dokka.model.dfs |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Украл ли Брагилевский твит?</title> | |
<style> | |
body { | |
margin: 0; | |
} |
This file contains 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
Categories by year | |
--- Year 2012 (56 streams) | |
World of Warcraft: 32 | |
No category: 24 | |
--- Year 2013 (77 streams) | |
World of Warcraft: 65 | |
Hearthstone: 10 |
This file contains 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 me.beresnev.bot.combat; | |
import me.beresnev.botapi.WowInstance; | |
import me.beresnev.botapi.navigation.Navigation; | |
import me.beresnev.botapi.spells.Spell; | |
import me.beresnev.botapi.units.ICharacter; | |
import me.beresnev.botapi.units.ICreature; | |
import me.beresnev.memoryapi.winapi.components.WinKey; | |
import static java.lang.System.currentTimeMillis; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
@Slf4j | |
@Component | |
public class GroupMessageHandler implements Handler { | |
private final Bot bot; | |
private final MessageService messageService; | |
@Autowired | |
public GroupMessageHandler(@Qualifier("bot") Bot bot, MessageService messageService) { | |
this.bot = bot; | |
this.messageService = messageService; |