Skip to content

Instantly share code, notes, and snippets.

@nogood3
nogood3 / ben.py
Created January 23, 2012 17:33
PYthon CPU Benchmark (console)
# coding: utf-8
import time
lan=input("LANG ru(type 0) or en(type 1)=")
if lan==0 :
import ru
lang=ru
else :
import en
lang=en
a=0
@nogood3
nogood3 / CPU_Bench.py
Created January 23, 2012 17:27
PYthon CPU Benchmark (GTK)
#!/usr/bin/python
# coding: utf-8
import pygtk
pygtk.require('2.0')
import gtk
import time
import os
import ru