Details
-
SkillsCFML(open bd), JavaScript, Python3
-
Locationcumbria uk
-
Github
Joined devRant on 8/21/2016
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
Unicorn Themed day at code club ^_^
``` """ unicorn finder """
from random import randint
class UnicornFinder:
""" UnicornFinder class finds uncorns """
def __init__(self):
pass
def find_unicorn(self):
""" find a unicorn """
unicorn = True
for i in range(0, 31):
if randint(0, 7) != 7:
unicorn = False
break
if unicorn:
print("u200 unicorn found")
else:
print("u404:: unicorn not found")
if __name__ == '__main__':
UnicornFinder().find_unicorn()
```1 -
I work very hard to the point I have no medical leave in all the time I have been working, I take do I get any respect nope at every opportunity I get shat on, blamed for everything today I was told off for thinking.5
-
I have recently come across jupyter notebooks it's pretty cool I'm wondering if it is something that I should be using a long-term? Or is there another tool I should look at but I am quite interested halving interactive notebooks?
-
If I come across one more inconstant data modal that is undocumented in this project am I going to get significantly annoyed!!!!!!!!!!3
-
"Service is Service" don't take crap personally when there is a deadline looming people will react in different ways, people will blame you for things that are not your fault, people will swear at you, they will try to devalue you to make you feel bad about yourself and then regret it later if you take it personally it will play on your mind and make you ill don't make yourself ill if you mess up fix it messing up is what staging is for.