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
Microsoft (R) Windows Debugger Version 10.0.17674.1000 AMD64 | |
Copyright (c) Microsoft Corporation. All rights reserved. | |
Loading Dump File [C:\Windows\MEMORY.DMP] | |
Kernel Bitmap Dump File: Kernel address space is available, User address space may not be available. | |
Symbol search path is: srv* | |
Executable search path is: |
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
Biosphere - [Spacemind - Alien Earth #01] Poa Alpina | |
Asura - [Spacemind - Alien Earth #02] Like a Summer Day | |
Carbon Based Lifeforms - [Spacemind - Alien Earth #03] Central Plains | |
Hallucinogen - [Spacemind - Alien Earth #04] LSD | |
H.U.V.A. Network - [Spacemind - Alien Earth #05] Indigo Room | |
Aes Dana - [Spacemind - Alien Earth #06] Season 5 | |
Nuclear Ramjet - [Spacemind - Alien Earth #07] Folding Time | |
Sync24 - [Spacemind - Alien Earth #08] Biota | |
Khetzal - [Spacemind - Alien Earth #09] Glasiales Lacrimae | |
Solar Fields - [Spacemind - Alien Earth #10] Discovering |
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
from pprint import pprint | |
import requests | |
class RiverHistory(object): | |
def __init__(self, league, data, league_info: dict = None) -> None: | |
super().__init__() | |
self.league = league | |
self.mean = data['mean'] |
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 time | |
import winsound | |
import re | |
from datetime import datetime | |
class ChatLine: | |
def __init__(self, date, chat_type, clan, name, content) -> None: | |
self.date_str = date | |
self.chat_type = self._determine_type(chat_type) |
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 de.fwidm.streams; | |
import java.time.LocalDateTime; | |
import java.time.format.DateTimeFormatter; | |
import java.util.Arrays; | |
import java.util.Comparator; | |
import java.util.List; | |
import java.util.Map; | |
import java.util.function.Function; | |
import java.util.stream.Collectors; |
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
from random import randint | |
import discord | |
client = discord.Client() | |
@client.event | |
async def on_ready(): | |
print('We have logged in as {0.user}'.format(client)) |
OlderNewer