View Swexti's real colorscheme.yml
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
# Real colorscheme for https://www.reddit.com/r/unixporn/comments/vkcasz/i3gaps_i_prefer_light_mode/ | |
# Purportedly, the dotfile is from here: https://github.com/Swexti/dots | |
# But these are not the same as the screenshot in the post. | |
# The following colorscheme is colorpicked from the screenshot | |
colors: | |
# Default colors | |
primary: | |
background: '#F4F5F8' | |
foreground: '#464658' |
View serve
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 | |
HOST_NAME=`hostname` | |
HOST_IP=`nslookup $HOST_NAME | awk /Address:\ [-.0-9]/ | awk -F\ '{print $NF}'` | |
if [ $# -eq 0 ] | |
then | |
PORT=54321 | |
else | |
PORT=$1 | |
fi |
View tmux-powerline.conf
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
set-option -g visual-activity off | |
set-option -g visual-bell off | |
set-option -g visual-silence off | |
set-window-option -g monitor-activity off | |
set-option -g bell-action none | |
# The window modes { | |
setw -g mode-style bg="black",fg="red",bold | |
# } |
View cumulative_return.py
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
from collections import deque | |
import numpy as np | |
def cumulative_return(x: np.ndarray) -> np.ndarray: | |
"""Calculate the cumulative annual return from monthly fluctuations | |
Args: | |
x: an 1D array, each item is a float showing proportion of change of investment in that month | |
Returns: | |
an 1D array, each item is the annual rate of change (return) for the 12 previous months | |
""" |
View common_pca.py
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
import numpy as np | |
from scipy.linalg import eigh | |
def cpca(cov: np.ndarray, sample_n: np.ndarray, comp_n: int = 0, tol: float = 1E-6, | |
max_iter: int = 1000) -> np.ndarray: | |
""" | |
Args: | |
cov: 3D array where the last 2 axes are covariance matrices. | |
sample_n: for each covariance, how many samples were in there. | |
""" |
View compares-two-features.py
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
from typing import Optional, List | |
import numpy as np | |
from scipy.stats import gaussian_kde | |
from matplotlib.axes import Axes | |
from matplotlib.transforms import Affine2D | |
import matplotlib.pyplot as plt | |
from mpl_toolkits.axisartist.floating_axes import GridHelperCurveLinear, FloatingSubplot | |
HISTOGRAM_RATIO = 0.2 # length vs. height ratio of the histogram |
View gist:2ab6add658b5dc5014fd8bff7762e8e0
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
let hintcharacters = "asdfghjkl;" | |
map d closeTab | |
map u lastClosedTab | |
map <C-o> goBack | |
map <C-i> goForward | |
let searchalias w = "wikipedia" | |
let searchalias s = "scholar" |