$ uname -r
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
| # -- coding: utf-8 -- | |
| from win32api import * | |
| from win32gui import * | |
| import win32con | |
| import sys, os | |
| import struct | |
| import time | |
| class WindowsBalloonTip: |
- Wget ftp://ftp.gnu.org/pub/gnu/gettext/gettext...t-0.12.1.tar.gz
- Untar file as tar -zxvf gettext-0.12.1.tar.gz
cdto the directory containing the package's source code and type./configureto configure the package for your system. If you're usingcshon an old version of System V, you might need to typesh ./configureinstead to preventcshfrom trying to executeconfigureitself.
Running
configuretakes awhile. While running, it prints some messages telling which features it is checking for.
- Type
maketo compile the package.- Optionally, type
make checkto run any self-tests that come with the package.- Type
make installto install the programs and any data files and documentation.
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
| # Script below is based on following post: | |
| # IronPython: EXE compiled using pyc.py cannot import module "os" - Stack Overflow | |
| # http://stackoverflow.com/questions/6195781/ironpython-exe-compiled-using-pyc-py-cannot-import-module-os | |
| import sys | |
| sys.path.append('d:/projects/SomeProject/Libs/IronPython') | |
| sys.path.append('d:/projects/SomeProject/Libs/IronPython/Lib') | |
| sys.path.append('d:/projects/SomeProject/Libs/IronPython/Tools/Scripts') | |
| import clr |
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
| import os | |
| import re | |
| from htmlentitydefs import name2codepoint | |
| # Must install the `hyphenator` library from PyPi! | |
| from hyphenator import Hyphenator | |
| # Firefox comes with an English hyphenation dictionary | |
| path = os.popen('locate hyph_en_US.dic').readlines()[0].strip() |
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
| (function($) { | |
| $.fn.clippy = function(text, bgcolor) { | |
| if (!bgcolor) { | |
| var node = $(this); | |
| while (node.css('background-color') == 'transparent' && node.length) { | |
| node = node.parent(); | |
| } | |
| if (!node.length) { | |
| bgcolor = '#ffffff'; | |
| } else { |
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
| Choose a ticket class: <select id="tickets"></select> | |
| <p id="ticketOutput"></p> | |
| <script id="ticketTemplate" type="text/x-jquery-tmpl"> | |
| {{if chosenTicket}} | |
| You have chosen <b>${ chosenTicket().name }</b> | |
| ($${ chosenTicket().price }) | |
| <button data-bind="click: resetTicket">Clear</button> | |
| {{/if}} |
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
| from scrapy import log | |
| from scrapy.item import Item | |
| from scrapy.http import Request | |
| from scrapy.contrib.spiders import XMLFeedSpider | |
| def NextURL(): | |
| """ | |
| Generate a list of URLs to crawl. You can query a database or come up with some other means | |
| Note that if you generate URLs to crawl from a scraped URL then you're better of using a |
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/bash | |
| # | |
| # Build a virtual environment suitable for running appengine. | |
| # This uses virtualenvwrapper to make the virtual environment | |
| # and modifies the postactivate/postdeactivate scripts to make | |
| # the appengine code happy. | |
| # | |
| # Usage: | |
| # $ curl -s https://raw.github.com/gist/1012769 | bash | |
| # |
NewerOlder