This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('#projects').find('.project-row').each(() -> | |
$this = $(this) | |
$this.tooltip( | |
container: $this | |
trigger: "hover" | |
) | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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: |
NewerOlder