I hereby claim:
- I am jens-ox on github.
- I am jens_ox (https://keybase.io/jens_ox) on keybase.
- I have a public key ASBG5Xn4A3o5CDWjwie8PRsxxVR4b0dF5D1EIhnc6N6LVQo
To claim this, I am signing this object:
| import React from 'react'; | |
| import { Group } from '@vx/group'; | |
| import { genBins } from '@vx/mock-data'; | |
| import { scaleBand, scaleLinear } from '@vx/scale'; | |
| import { HeatmapCircle, HeatmapRect } from '@vx/heatmap'; | |
| import { extent, min, max } from 'd3-array'; | |
| let data = genBins(16, 16); | |
| // reproduce data structure |
I hereby claim:
To claim this, I am signing this object:
| \ProvidesClass{summary}[summary class (Jens Ochsenmeier)] | |
| \NeedsTeXFormat{LaTeX2e}[1996/06/01] | |
| % load base class | |
| \LoadClass[aip,jmp,amsmath,amssymb,reprint,nobalancelastpage]{revtex4-1} | |
| % Packages --- General | |
| \RequirePackage[T1]{fontenc} |
| % Copyright (c) 2010 Michael Ummels <michael@ummels.de> | |
| % | |
| % Permission to use, copy, modify, and/or distribute this software for any | |
| % purpose with or without fee is hereby granted, provided that the above | |
| % copyright notice and this permission notice appear in all copies. | |
| % | |
| % THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | |
| % WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | |
| % MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | |
| % ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| #!/bin/bash | |
| # temporary path for screenshot | |
| TMPBG=/tmp/screen.png | |
| # replace this with your own "lock" icon | |
| LOCK=$HOME/Dropbox/Bilder/Wallpaper/lock.png | |
| # get resolution | |
| RES=$(xrandr | grep 'current' | sed -E 's/.*current\s([0-9]+)\sx\s([0-9]+).*/\1x\2/') |
| #!/bin/bash | |
| XRANDR=$(which xrandr) | |
| MONITORS=( $( ${XRANDR} | awk '( $2 == "connected" ){ print $1 }' ) ) | |
| NUM_MONITORS=${#MONITORS[@]} | |
| TITLES=() |