http://scikit-learn.org/stable/related_projects.html
- Delimiting contiguous regions with values above a certain threshold in Pandas DataFrame
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 http://stackoverflow.com/a/29304414 | |
| var download = function(content, fileName, mimeType) { | |
| var a = document.createElement('a'); | |
| if (navigator.msSaveBlob) { // IE10 | |
| return navigator.msSaveBlob(new Blob([content], { type: mimeType }), fileName); | |
| } else if ('download' in a) { //html5 A[download] | |
| a.href = 'data:' + mimeType + ',' + encodeURIComponent(content); | |
| a.setAttribute('download', fileName); | |
| document.body.appendChild(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
| ##Vargantfile | |
| ```Ruby | |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| |
Using django ORM without a settings file. Here's how:
In the stand-alone app launcher file:
from django.conf import settings
from django.core.management import execute_from_command_line
#Django settings
settings.configure(DEBUG=False,
DATABASES = {
-
Open Automator and choose the service template.
-
Change the input type from selected text to no input.
-
Add a Launch Application action and drop Finder on the pop-up button from /System/Library/CoreServices/.
-
Save the service and give it a shortcut in System Preferences > Keyboard > Shortcuts > Services.
NewerOlder