##Description Simple Dashing widget (and associated job) to display RSS feeds. Based on Iaian Mitchell's News widget.
##Dependencies nokogiri
Simple Dashing widget to countdown until a certain moment. Flashes the widget when finished.
##Usage
To use this widget, copy countdown.html
, countdown.coffee
, and countdown.scss
into the /widgets/countdown
directory.
To include the widget in a dashboard, add the following snippet to the dashboard layout file:
/* jQuery plugin textselect | |
* version: 1.0 | |
* tested on jQuery 1.3.2, 1.5 | |
* author: [email protected], [email protected] | |
* | |
* usage: | |
* $(function() { | |
* $(document).bind('textselect', function(e) { | |
* Do stuff with e.text | |
* }); |
The MIT License (MIT)
Copyright (c) 2014 David Underwood
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
Predictive Modeling: Drug Response in Cancer Cell Lines | |
======================================================= | |
This is a demo of **Knitr**, an R package for authoring executable documents, documents that mix formatted text, source code and graphical output. I've used In Sock's demos of drug response in [CCLE][1] data, but I've probably gotten most of the analysis mixed up. Apologies to In Sock. | |
Analysis of cancer cell lines for drug sensitity using: | |
* [Cancer Cell Line Encyclopedia][1] | |
* [Gene Set Enrichment Analysis][2] | |
Workflow |
# Get a next task from some tasks queue, create and start a crawler | |
def start_crawler(): | |
settings = CrawlerSettings() | |
settings.overrides['TELNETCONSOLE_ENABLED'] = 0 | |
settings.overrides['WEBSERVICE_ENABLED'] = False | |
crawler = Crawler(settings) | |
crawler.configure() | |
url = get_url_from_some_queue() |
# pdfx usage: http://pdfx.cs.man.ac.uk/usage | |
# requests docs: http://docs.python-requests.org/en/latest/user/quickstart/#post-a-multipart-encoded-file | |
import requests # get it from http://python-requests.org or do 'pip install requests' | |
url = "http://pdfx.cs.man.ac.uk" | |
def pypdfx(filename): | |
''' | |
Filename is a name of a pdf file WITHOUT the extension | |
The function will print messages, including the status code, |