MinekPo1

joined 2 years ago
[–] [email protected] 4 points 3 weeks ago

sillylooks at IP address you code in python right ?

[–] [email protected] 2 points 2 months ago* (last edited 2 months ago)

especially if some of the children have a background in cyber crime . this is somehow not a joke , see this video (youtube.com)

[–] [email protected] 1 points 2 months ago (1 children)

YES . its so unhinged . they have an entire page discussing if Obama is actually a Muslim

[–] [email protected] 2 points 3 months ago

one small gripe i have is that the repr¹ doesn't handle aliases (ie items with more than one bit set) that well , but tbh its not an easy problem

example to illustrate the problem :

class Foo(enum.Flag):
    A = auto()
    B = auto()
    C = auto()
    # no D
    AB = 0b0011
    CD = 0b1100

print(Foo.AB | Foo.C)  # <Foo.A|B|C: 7> NOT <Foo.AB|C: 7>
print(Foo.CD | Foo.A)  # <Foo.A|C|CD: 13> NOT <Foo.A|CD: 7>

its a minor thing but it annoys me a bit

[1]: the _name_ member , which is used by __repr__ , of an enum member is actually generated either when the individual enum class is created or when the value is first needed by _missing_ . also the docs call these names surrounded by single underscores "sunder" names

[–] [email protected] 2 points 3 months ago (2 children)

while many great things have been said in this thread i'll also link to the docs for enum.Flag (docs.python.org) which wraps bitmap integer enums

[–] [email protected] 1 points 5 months ago

my first D&D character was a murder hobo cannibal paladin . I will not elaborate

[–] [email protected] 25 points 5 months ago

note that the -- -> operator is different than --->

[–] [email protected] 2 points 5 months ago* (last edited 5 months ago)

depends on your format ? if the format is binary anyway or has binary blobs (ie it needs a program that is able to handle octets outside the printable range) and using those characters does not introduce any ambiguities with the format then go for it . ANSI and related control codes all start with 0x1B

[–] [email protected] 1 points 5 months ago

doubt it , since they shorten their username to CY78 , for example on their youtube channel profile or in the vaguely lewd unicode art

[–] [email protected] 2 points 5 months ago (3 children)

the other mentioned repo has the same payload soooo

 

What is Acid Communism? In this video, we discuss the relationship between the 1960's Counterculture, hippies, psychedelia, and past & present socialist movements. We will analyze the problems and lost potentials of these movements through the lens of the late Mark Fisher's concepts of "Acid Communism" , Capitalist Realism, Lost Futures, Hauntology, and Post-Work. We will interpret the potential uses of psychedelic culture and its implications on consciousness.  We also critique problems with rational and strictly material appeals in the contemporary left and discuss how the left should regard spirituality and higher desires for things like meaning, freedom, and free time.

 

You can find the whole wiki page here, there is plenty of other good stuff on there.

view more: next ›