Skip to content

Instantly share code, notes, and snippets.

View SlyCodePanda's full-sized avatar
🤖
Working

Renee Marsland SlyCodePanda

🤖
Working
View GitHub Profile
@SlyCodePanda
SlyCodePanda / countLettersAndDigits.py
Last active February 18, 2020 00:52
A bunch of Code Wars challenges I have done. Frist function is mine, second is best voted answer.
'''
create a method that can determine how many letters and digits are in a given string.
Example:
"hel2!lo" --> 6
"wicked .. !" --> 6
"!?..A" --> 1
'''
@SlyCodePanda
SlyCodePanda / digitalClock.py
Last active February 17, 2020 05:20
Code for creating a digital clock
import sys
from PyQt4 import QtGui, QtCore
from time import strftime
'''
http://thecodeinn.blogspot.com/2013/07/tutorial-pyqt-digital-clock.html
'''
class Main(QtGui.QMainWindow):
'''
Code that lets you create a countdown to a certian date and time.
'''
#!/usr/bin/python
from datetime import datetime, time
class bcolors:
# Get location of interpreter
which bash
@SlyCodePanda
SlyCodePanda / profileUpdate.txt
Last active October 14, 2022 04:51
Profile Update
I have been unable to upload any code stuff here for a while due to all the code I write these days being at work.
And I am unable to release said code publicly.
Maybe I'll get around to some personal projects one day again soon.