This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title></title> | |
</head> | |
<body> | |
<div id="Graph1_id"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title></title> | |
</head> | |
<body> | |
<div id="Graph1_id"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title></title> | |
</head> | |
<style> | |
.underline { | |
text-decoration: underline; |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title></title> | |
</head> | |
<style> | |
.underline { | |
text-decoration: underline; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title>Testing area chart series toggling</title> | |
</head> | |
<link href="../../apexcharts/samples/assets/styles.css" rel="stylesheet" /> | |
<body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Transparent editing of gpg encrypted files. | |
" By Wouter Hanegraaff <[email protected]> | |
augroup encrypted | |
au! | |
" First make sure nothing is written to ~/.viminfo while editing | |
" an encrypted file. | |
autocmd BufReadPre,FileReadPre *.gpg set viminfo= | |
" We don't want a swap file, as it writes unencrypted data to disk | |
autocmd BufReadPre,FileReadPre *.gpg set noswapfile | |
" Switch to binary mode to read the encrypted file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am mrash on github. | |
* I am mrash (https://keybase.io/mrash) on keybase. | |
* I have a public key whose fingerprint is 53EA 13EA 472E 3771 894F AC69 95D8 5D6B A742 839F | |
To claim this, I am signing this object: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Basic script to compile OpenSSL with code coverage support via gcc | |
# gcov and build HTML reports with lcov. | |
# | |
LCOV_DIR=lcov-results | |
LCOV_FILE=coverage.info | |
LCOV_FILTERED=coverage_final.info | |
PREFIX=~/install/openssl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
LCOV_DIR=lcov-results | |
LCOV_FILE=coverage.info | |
LCOV_FILTERED=coverage_final.info | |
PREFIX=~/install/openssh ### tmp path | |
mkdir $LCOV_DIR | |
make clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -x | |
# | |
# Goal: Emulate encrypted Time Machine backups from a Mac to a Linux system | |
# with rsync 'snapshotting' + encfs. This provides an additional backup | |
# to a Linux based filesystem like ext4 just in case of HFS+ issues as | |
# described here: http://blog.barthe.ph/2014/06/10/hfs-plus-bit-rot/ | |
# This is not expected to solve all potential bitrot scenarios - rather | |
# to provide some redundancy and make detection easier (with additional | |
# scripting effort). | |
# |