Menge | Typ | erhalten | Halter |
---|---|---|---|
3200¢ | Credsticks | N/A | verteilt |
5 | Azimut Laser Pistolen | 2019-04-17 | |
1 | Azimut Artillerielaser | 2019-04-17 | |
1 | Mehrzweckschrotflinte | 2019-04-17 | |
1 | Sturmhammer | 2019-04-17 |
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
import asyncio | |
import threading | |
import queue | |
import itertools | |
import time | |
class Bus(threading.Thread): | |
def __init__(self, eq, bq): | |
super().__init__(daemon=True) |
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
import math | |
import itertools | |
from collections import namedtuple | |
point = namedtuple("point", "x y z") | |
a,b,c = 10,10,5 | |
dx,dy,dz = 10,10,5 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
- [bspwm] Terminal "tabs" in polybar, dark and dull exam studying edition : unixporn
- [i3-gaps] An actual dark theme appeared (lots of dots) : unixporn
- [i3-gaps] Two days into ricing. Am pretty satisfied for now, but want to learn even more! : unixporn
- [i3-gaps] Rofi x Surf : unixporn
- https://www.vi-improved.org/recommendations/
- Take the owner’s tour
- [tmux] Orange Is the New Black : unixporn
- [https://gist.github.com/fuzzy-focus/8b596ba890
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 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
import itertools | |
def is_unique(seq, symbols): | |
r = [el for el in seq if el in symbols] | |
return len(r) == len(set(r)) | |
def rule_row_unique(board, symbols): | |
return all(is_unique(row, symbols) for row in board) |
NewerOlder