Tanner

Results 35 comments of Tanner

I think I fixed this by adding `?` to the XML tags like so: ``` ... etc ``` But now I get an `output/AndroidManifest.xml:8: error: attribute android:localeConfig not found` error.

Also the GPU-Util field fluctuates between 0% and ~40%.

@78Alpha are you using the Mega model?

I'm surprised there's only two seconds difference. Note that mega [defaults as off](https://github.com/kuprel/min-dalle/blob/1ab70c790bf9e3d162e02047e49fa3116270f546/image_from_text.py#L10), so you have to pass `--mega` into the command line. I was also getting around 10 seconds...

I'm having the same issue except it's returning Tuesday of the previous week: ``` >>> parse('now').strftime('%a %Y-%m-%d') 'Mon 2019-10-21' >>> parse('tuesday').strftime('%a %Y-%m-%d') 'Tue 2019-10-15' >>> parse('next tuesday').strftime('%a %Y-%m-%d') Traceback (most...

This is my work around: ``` days_long = ['monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday', 'sunday'] for day in days_long: print('trying to find:', day) if day in time: print('found', day) delta...

Any idea how to monkey-patch get_packets nowadays? I'm trying: ``` def get_packets(old_get_packets): def wrapper(func, context): packets = func(context) packets.add(AcknowledgePlayerDiggingPacket) packets.add(BlockBreakAnimationPacket) return packets return staticmethod(lambda x: wrapper(old_get_packets, x)) minecraft.networking.packets.clientbound.play.get_packets = get_packets(minecraft.networking.packets.clientbound.play.get_packets)...

This is a good idea! Unfortunately, I don't know anything about windows and don't have easy access to a system I can test on. I'll definitely need help on this...

@Cobertos did you get a chance to test removing `self.uid` and `self.gid`?