General:
Tools | Description |
---|---|
flank | Create new intervals from the flanks of existing intervals. |
slop | Adjust the size of intervals. |
shift | Adjust the position of intervals. |
subtract | Remove intervals based on overlaps b/w two files. |
// ==UserScript== | |
// @name Points for Jira | |
// @author mariotatis | |
// @namespace https://openuserjs.org/users/mariotatis/scripts | |
// @description Points for Jira cumulated story points and shows total points in each column | |
// @icon https://www.mariotatis.com/wp-content/uploads/2020/05/favicon-32x32-1.png | |
// @copyright 2020+, mariotatis.com | |
// @version 2.0.4 | |
// @license MIT | |
// @grant none |
#!/usr/bin/env python3 | |
import re | |
from ast import literal_eval | |
import numpy as np | |
def parse_val(s): | |
try: | |
return literal_eval(s) | |
except: |
<?php | |
header('Content-Type: application/rss+xml; charset=UTF-8'); | |
$list_name = htmlspecialchars($_GET['lname']); | |
$list_url = 'http://life.mcmaster.ca/cgi-bin/my_wrap/brian/evoldir/'.$list_name.'/'; | |
$month_num = array ( | |
"Jan" => 1, | |
"Feb" => 2, |
## Delete files not matching "*.tex" : | |
```fish | |
find . -maxdepth 1 -type f ! -iname "*.tex" -delete | |
``` | |
awk 'BEGIN{ FS = "|"}/>/{FS = "|"; filename = substr($3,1,12) }{print $0 > "<output-dir-path>" filename ".fa"}' <multi-fasta-2bsplit> |
<?php | |
header('Content-Type: application/rss+xml; charset=UTF-8'); | |
// suck in the query string variables | |
$feed_name = htmlspecialchars($_GET['fname']); | |
$list_name = htmlspecialchars($_GET['lname']); | |
// compose the api urls + other stuff depending on presence of playlist | |
if(isset($_GET['lname'])) { | |
$json_url = 'http://api.mixcloud.com/'.$feed_name.'/playlists/'.$list_name.'/cloudcasts/'; |