start new:
tmux
start new with session name:
tmux new -s myname
| <?xml version="1.0" encoding="UTF-8"?> | |
| <style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" xml:lang="en"> | |
| <info> | |
| <title>American Medical Association (Alphabetical Bibliography</title> | |
| <id>http://www.zotero.org/styles/ama-alphabetical</id> | |
| <link href="http://www.zotero.org/styles/ama-alphabetical"/> | |
| <author> | |
| <name>Julian Onions</name> | |
| <email>[email protected]</email> | |
| </author> |
| #!/usr/bin/env python | |
| # vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4 textwidth=79 autoindent | |
| """ | |
| Python source code | |
| Last modified: 15 Feb 2014 - 13:38 | |
| Last author: lmwangi at gmail com | |
| Displays the available memory fragments | |
| by querying /proc/buddyinfo |
| ZFS on Linux | |
| FAQ | |
| http://zfsonlinux.org/faq.html | |
| A not so short guide to ZFS on Linux | |
| http://unicolet.blogspot.com/2013/03/a-not-so-short-guide-to-zfs-on-linux.html | |
| ZFS Cheatsheet | |
| http://www.datadisk.co.uk/html_docs/sun/sun_zfs_cs.htm |
| #!/bin/bash | |
| # source: https://groups.google.com/a/zfsonlinux.org/d/msg/zfs-discuss/i09_VBXAyig/UWjPa23cQ0YJ | |
| pids="" | |
| tdir=/tmp/memtest.$$ | |
| function cleanup() | |
| { | |
| [[ -n "${pids}" ]] && kill -9 ${pids} &> /dev/null || true |
| From 56919e922baa154ac6e498bcc1520dc965065265 Mon Sep 17 00:00:00 2001 | |
| From: Colin Cross <[email protected]> | |
| Date: Fri, 22 Jul 2011 14:57:09 -0700 | |
| Subject: [PATCH 1/5] cpu_pm: call notifiers during suspend | |
| Implements syscore_ops in cpu_pm to call the cpu and | |
| cpu cluster notifiers during suspend and resume, | |
| allowing drivers receiving the notifications to | |
| avoid implementing syscore_ops. |
| From fb62238974be027f3619881fc336ae41c01cfe76 Mon Sep 17 00:00:00 2001 | |
| From: Russell King <[email protected]> | |
| Date: Sat, 9 Jul 2011 16:09:43 +0100 | |
| Subject: [PATCH 01/13] ARM: vfp: fix a hole in VFP thread migration | |
| Fix a hole in the VFP thread migration. Lets define two threads. | |
| Thread 1, we'll call 'interesting_thread' which is a thread which is | |
| running on CPU0, using VFP (so vfp_current_hw_state[0] = | |
| &interesting_thread->vfpstate) and gets migrated off to CPU1, where |
| # Usage: mpv --vf=vapoursynth=60fps.py --hwdec=no <file> | |
| import vapoursynth as vs | |
| core = vs.get_core() | |
| src_fps = 24 | |
| dst_fps = 60 | |
| clip = core.std.AssumeFPS(video_in, fpsnum=src_fps) | |
| super = core.mv.Super(clip, pel=2) |
Date Completed: Not done yet ~~ April 23rd 2015
| # vim: set ft=python: | |
| # see the README at https://gist.github.com/phiresky/4bfcfbbd05b3c2ed8645 | |
| # source: https://github.com/mpv-player/mpv/issues/2149 | |
| # source: https://github.com/mpv-player/mpv/issues/566 | |
| # source: https://github.com/haasn/gentoo-conf/blob/nanodesu/home/nand/.mpv/filters/mvtools.vpy | |
| import vapoursynth | |
| core = vapoursynth.get_core() |