Skip to content

Instantly share code, notes, and snippets.

View skv-headless's full-sized avatar
😜
working

Eugene Sokovikov skv-headless

😜
working
  • HeroCoders
  • Remote
View GitHub Profile
@skv-headless
skv-headless / gist:9228160
Created February 26, 2014 11:49
Boostrap tooltip with hovering on it.
$('#projects').find('.project-row').each(() ->
$this = $(this)
$this.tooltip(
container: $this
trigger: "hover"
)
)
#! /bin/sh
import sys, os, time
from subprocess import Popen, list2cmdline
def cpu_count():
''' Returns the number of CPUs in the system
'''
num = 1
if sys.platform == 'win32':
try: