Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 startCounting() { | |
// create 5min Trigger | |
ScriptApp.newTrigger("countEvents").timeBased().everyMinutes(5).create(); | |
// create end Trigger | |
//var end_date_trigger = new Date(end_date_array[2], end_date_array[1] - 1, end_date_array[0], 10); | |
//ScriptApp.newTrigger("stopCounting").timeBased().at(end_date_trigger).create(); | |
} | |
/* remove all triggers when it comes to the end of a Sprint */ |
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
{ | |
"metadata": { | |
"name": "Getting started with Python - RDF - NeuroLex" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ | |
{ |
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 trelloFetch(url) { | |
var key = "your_trello_API_key", | |
api_endpoint = "https://api.trello.com/1", | |
member_token = "your_member_TOKEN"; | |
var completeUrl = api_endpoint + url + "?key=" + key + "&token=" + member_token; | |
var jsonData = UrlFetchApp.fetch(completeUrl); | |
var object = Utilities.jsonParse(jsonData.getContentText()); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
{ | |
"metadata": { | |
"name": "Synapse Position Algorithm" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ | |
{ |
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
{ | |
"metadata": { | |
"name": "Playing with WormBehavior Database" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ | |
{ |
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
""" | |
worm2nx.py | |
Simple script for turning connectome tables into NetworkX graphs. | |
Note that the tables were extracted manually from the connectivity spreadsheet | |
of the c. elegans and should accompany this script. | |
Author: Pedro Tabacof (tabacof at gmail dot com) | |
Stephen Larson ([email protected]) | |
License: Public Domain |
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
{ | |
"metadata": { | |
"name": "NetworkX C. Elegans Connectome" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ | |
{ |