Skip to content

Instantly share code, notes, and snippets.

@pkerpedjiev
pkerpedjiev / streaming_loader.ipynb
Last active April 23, 2018 18:08
streaming_loader
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@pkerpedjiev
pkerpedjiev / list.md
Last active May 25, 2018 15:30 — forked from notwaldorf/list.md
Meownica's packing list

Pete's packing list

Forked from: Meownica's packing list

I travel a lot so I'm down to like 30 minutes of packing per any kind of trip. I always bring one carry-on suitcase for any trips up to 2 weeks (that I never check in unless forced) -- I have an Away suitcase because it's got a built-in (removable) battery, and amazing wheels.

🚨

  • 🆔Wallet & Passport
  • 💧Travel water bottle
  • 💳Travel credit cards (don't pay foreign currency fees!)
[
{
"url": "http://higlass.io/app/?config=L4nKi6eGSzWOpi-rU2DAMA",
"title": "Epilogos",
"description": "The epilogos track type (https://epilogos.altiusinstitute.org/) shows an overview of the epigenetic states found along the genome.",
"category": "Useful view configurations",
"image": "https://user-images.githubusercontent.com/2143629/42416058-b698b002-8232-11e8-9952-b43108cfdbd2.png",
"columns": 2,
"locations": ["chr3:180,376,342-180,443,561 & chr3:180,405,434-180,415,676 [offset 0,0:0,0]"]
},
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>HiGlass</title>
<style type="text/css">
.canvasjs-chart-credit {
display:none;
@pkerpedjiev
pkerpedjiev / index.js
Created November 5, 2018 16:26
AWS Lambda Mandelbrot Tiles Code
function tileset_info() {
return {
'min_pos': [-2.5, -2.5],
'max_pos': [2.5, 2.5],
'bins_per_dimension': 256,
'max_width': 5,
'max_zoom': 50,
'mirror_tiles': 'false',
};
}
@pkerpedjiev
pkerpedjiev / .PixiJsGeometricZooming
Last active August 7, 2019 06:29
Pixi.js Geometric Zooming
license: gpl-3.0
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#!/usr/bin/env python3
import argparse
import logging
import os
import os.path as op
import resgen as rg
import sys
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.