Skip to content

Instantly share code, notes, and snippets.

View dkatz23238's full-sized avatar
🏠
Working from home

David Emmanuel Katz dkatz23238

🏠
Working from home
View GitHub Profile
@jaimeide
jaimeide / tutorial_dpcca_computation.ipynb
Last active December 28, 2023 12:22
Python implementation of the Detrended Partial Cross-Correlation Analysis (DPCCA) coefficient
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mozillazg
mozillazg / app.py
Created December 5, 2017 00:06
A simple demo for how to use flask-paginate.
from flask import Flask, render_template
from flask_paginate import Pagination, get_page_args
app = Flask(__name__)
app.template_folder = ''
users = list(range(100))
def get_users(offset=0, per_page=10):