nicollis
nicollis
Alt Blog
4 posts
Main blog at blog.oll.is
Don't wanna be here? Send us removal request.
nicollis · 2 years ago
Text
Tumblr media
So twitter doesn't let you even look at their site now if you don't have an account? Seems like a great way to continue lowering your usage numbers.
1 note · View note
nicollis · 2 years ago
Text
iOS only ≠ Usable
The fact instagram has never gotten an iPad app, and now Threads doesn't even have a web app is just sad. No I don't want your time killer on the device that is always on me. Stop being lazy and release an iPad and Web version of your stuff. Also why is the app a quarter gig? how much tracking software are you cramming into that thing?
0 notes
nicollis · 2 years ago
Text
Tumblr media
I have been waiting for SO LONG for the Nesting Box and it finally arrived 🎉
0 notes
nicollis · 2 years ago
Text
Python 3.10 Bug
Just discovered a strange bug in Python. When you set a class initialization default parameter to an array, the array is in shared memory space. If initializing two objects one after another in code it is possible that their array will remain in shared memory space linking the two objects. python class Car(part_ids=[]) to fix don't do a default parameter instead detect if none and then create. python class Car(part_ids): self.part_ids = part_ids if part_ids is not None else [] Longer blog post on this coming soon.
1 note · View note