Cooking up some slack!

This is some information that i found to be useful!. What is CUSS? Cooking Up Some Slack (or CUSS) is a website that explains how to make your own Slackware-based distribution. Have you ever wanted to make your own custom Slackware distro? Want to add specific programs to Slackware? Remove …

Instant series from Packt Pub

I really enjoyed reading through some of the instant series of books from Packt Pub!. I wanted to learn a bit more about markdown and instant markdown by packt pub was very useful! Simple and to the point. I am no way related to the publisher but I am sharing …

Silly Little Pomodoro Timer using Tkinter

https://en.wikipedia.org/wiki/Pomodoro_Technique Seems to work 🙂 [sourcecode language=”Text”] import Tkinter from Tkinter import * import time import math import tkMessageBox tickCount = 0 divisions = 25 def drawClock( clockArea ): global tickCount global divisions tetha = ( 2 * math.pi ) / divisions tickCount = tickCount + 1 clockArea.create_oval(10,10,190,190,width=10,fill="blue") clockArea.create_line( 100, …