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
| # Redis Cheatsheet | |
| # All the commands you need to know | |
| redis-server /path/redis.conf # start redis with the related configuration file | |
| redis-cli # opens a redis prompt | |
| # Strings. |
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
| ////////////////// MSlib dependencies trace: Starts here ////////////////////////////// | |
| // This Script shows timer in any webpage. all you need do is execute this this script in Console. | |
| var floor = Math.floor; | |
| var int = parseInt; | |
| function time() { | |
| return floor(new Date().getTime()/1000); | |
| } |
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
| #!/usr/bin/env python | |
| # Unity indicator for evolution-less clock and date display | |
| # author: phil ayres | |
| # 24 Oct 2011 | |
| import gobject | |
| import gtk | |
| import appindicator | |
| import os, sys | |
| import time |