Resources for maxdevjs/dotfiles-tmux-config
This file contains hidden or 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
//reference code for solution of perfect Spiral: | |
//https://gist.github.com/chandeeland/b69156115e2b5842d83ca9eb3b2bbf2e | |
//failed trial:: https://gist.github.com/volfegan/e55decad6814e63fb450379c9bf13a61 | |
//attempt to recreate: https://twitter.com/Borrachas/status/1204855395006763009 | |
float a, b, x, y, d, h=600/2, r, s, shrink=0.94; | |
void setup() { | |
size(600, 600); | |
} | |
void draw() { | |
background(#EFF2D0); |
This file contains hidden or 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
{ config, pkgs, ... }: | |
{ | |
environment.systemPackages = with pkgs; | |
[ | |
kdeApplications.kdenetwork-filesharing | |
]; | |
services.samba = { |
This file contains hidden or 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
#!/usr/bin/env bash | |
# awmtt: awesomewm testing tool | |
#{{{ Usage | |
usage() { | |
cat <<EOF | |
awmtt [ start | stop | restart | -h | -e | -t [ get | change | list | random ] ] [ -C /path/to/rc.lua ] [ -D display ] [ -S windowsize ] | |
start Spawn nested Awesome via Xephyr | |
stop Stops Xephyr |
This file contains hidden or 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
# RVM settings | |
# if [[ -s ~/.rvm/scripts/rvm ]] ; then | |
# RPS1="%{$fg[yellow]%}rvm:%{$reset_color%}%{$fg[red]%}\$(~/.rvm/bin/rvm-prompt)%{$reset_color%} $EPS1" | |
# else | |
# if which rbenv &> /dev/null; then | |
# RPS1="%{$fg[yellow]%}rbenv:%{$reset_color%}%{$fg[red]%}\$(rbenv version | sed -e 's/ (set.*$//')%{$reset_color%} $EPS1" | |
# fi | |
# fi | |
ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}[" |
This file contains hidden or 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
# vim:fileencoding=utf-8:ft=conf:foldmethod=marker | |
#: Fonts {{{ | |
#: kitty has very powerful font management. You can configure | |
#: individual font faces and even specify special fonts for particular | |
#: characters. | |
font_family Fira Code | |
# bold_font auto |
This file contains hidden or 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
alias gh="open \`git remote -v | grep [email protected] | grep fetch | head -1 | cut -f2 | cut -d' ' -f1 | sed -e's/:/\//' -e 's/git@/http:\/\//'\`" |
make bootstrap
- Yarn consistently fails
- at different points with different errors depending on which Yarn version I am using (as per x.txt files)
- indipendently of how I install it
- this happens with Babel on SSD (where OS is installed) and internal HD
Temporary workaround for babel --watch failing after first change.
I did find the issue when starting The Complete React Web Developer Course course.
[suggestion] babel --watch consistently fails (happening only on Linux?)
Install node-watch
This file contains hidden or 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
<link href='//fonts.googleapis.com/css?family=Raleway:100' rel='stylesheet' type='text/css'> | |
<link href='//fonts.googleapis.com/css?family=Berkshire+Swash' rel='stylesheet' type='text/css'> | |
<div class="intro"> | |
<h1>Let there be light</h1> | |
<p>Paint with your cursor to create a galaxy</p> | |
</div> |