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
[HKEY_CURRENT_USER\Control Panel\Accessibility\Keyboard Response] | |
"Last BounceKey Setting"=dword:00000000 | |
"Last Valid Delay"=dword:00000000 | |
"Last Valid Repeat"=dword:00000000 | |
"Last Valid Wait"=dword:000003e8 | |
"AutoRepeatDelay"="120" | |
"AutoRepeatRate"="2" | |
"BounceTime"="5" | |
"DelayBeforeAcceptance"="2" | |
"Flags"="27" |
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 react from '@vitejs/plugin-react-swc'; | |
import path from 'path'; | |
import { defineConfig } from 'vite'; | |
import dts from 'vite-plugin-dts'; | |
import { libInjectCss } from 'vite-plugin-lib-inject-css'; | |
//import reactJsx from 'vite-react-jsx'; | |
// https://vitejs.dev/config/ | |
export default defineConfig({ | |
plugins: [ |
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
server { | |
listen 80; | |
listen [::]:80; | |
server_name tier33.ryanweiss.net; | |
root /web/tier33/build; | |
index index.html; | |
location / { | |
try_files $uri $uri/ /index.html?&args; |
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
PROMPT='%{$fg_bold[green]%}%{$fg[cyan]%}%d %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}' | |
ZSH_THEME_GIT_PROMPT_PREFIX="(" | |
ZSH_THEME_GIT_PROMPT_SUFFIX=")" | |
ZSH_THEME_GIT_PROMPT_DIRTY="" | |
ZSH_THEME_GIT_PROMPT_CLEAN="" | |
RPROMPT='$(git_prompt_status)%{$reset_color%}' | |
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[cyan]%} ✈" |
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
on run {input, parameters} | |
-- # Screen Shot to Clipboard and File | |
-- # Clear the clipboard so the 'repeat until isReady ...' loop works properly. | |
set the clipboard to "" | |
-- # Copy picture of selected area to the clipboard, press: ⌃⇧⌘4 | |
-- # Note that on my system I need to keystroke '$' instead of '4'. |
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
source ~/.profile/.bash_aliases |
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
{ | |
"folders": [ | |
{ | |
"name": "docs", | |
"path": "_docs" | |
}, | |
{ | |
"name": "api", | |
"path": "api" | |
}, |
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
{ | |
"name": "ryanweiss.net", | |
"host": "144.202.51.193", | |
"protocol": "sftp", | |
"port": 22, | |
"username": "rw3iss", | |
"password": "", | |
"remotePath": "/home/rw3iss/_sync/Notes", | |
"uploadOnSave": true, | |
"useTempFile": false, |
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
#alias reload="source ~/.bashrc"; | |
alias reload="exec zsh -l" | |
alias aliases="cd ~/.profile && code . && cd -" | |
#alias alias=aliases | |
# Path shortcuts: | |
alias .='cd ~' | |
alias h='cd ~' | |
alias ~='cd ~' | |
alias ..='cd ..' |
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
// Place your key bindings in this file to override the defaults | |
[ | |
{ | |
"key": "cmd+ctrl+t", | |
"command": "editor.action.insertSnippet", | |
"when": "editorHasSelection", | |
"args": { | |
"langId": "javascript", | |
"name": "Wrap in try/catch" | |
} |
NewerOlder