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
| [Background] | |
| Bold=false | |
| Color=18,18,18 | |
| [BackgroundIntense] | |
| Bold=false | |
| Color=34,34,34 | |
| [Color0] | |
| Bold=false |
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
| #Prompt | |
| setopt prompt_subst | |
| autoload -Uz colors && colors | |
| fg_alert=%{$'\e[38;5;161m'%} | |
| at_normal=%{$'\e[0m'%} | |
| export VIRTUAL_ENV_DISABLE_PROMPT=1 | |
| function virtualenv_info { |
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 lua | |
| conky_color = "${color1}%2d${color}" | |
| t = os.date('*t', os.time()) | |
| year, month, currentday = t.year, t.month, t.day | |
| daystart = os.date("*t",os.time{year=year,month=month,day=01}).wday | |
| month_name = os.date("%B") |
- Tidy all at once. Don't do a little at a time as you can't stay on top of the mess.
- Visualize how you want your space to be and how you want to feel being in it.
- Ask yourself why you want your space to be that way and why you want to feel that way. If you want to feel energized to work by not having a mess, why do you want to feel that way? If you want to feel more relaxed to sleep better, why do you want this?
- Categorize objects and organize in this order: Clothes, Books, Papers, and then miscellaneous.
- Tidy by category, not location. If you are going to organize papers, pull out all the papers from all rooms, desks, etc all together. Same for clothes, take out all the clothes in the closets and drawers.
Average Uber pricing by service.
| Service | Initial Fee | Price Per Mile | Price Per Minute | Service Cost |
|---|---|---|---|---|
| uberX | $0.40 | $0.97 | $0.14 | $1.58 |
| uberXL | $2.15 | $1.68 | $0.26 | $1.70 |
uberXL | $2.15 | $1.68 | $0.26 | $1.70 |
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
| local function cal(starts_on, days_in_month) | |
| local n = starts_on - 1 -- column number | |
| local s = { string.rep(" ",n) } | |
| for day = 1,days_in_month do | |
| s[#s+1] = string.format(" %2d", day) | |
| n = n + 1 | |
| if n >= 7 then | |
| s[#s+1] = "\n" | |
| n = 0 | |
| end |
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
| ╔══════════╦════════════════════════════════╦═════════════════════════════════════════════════════════════════════════╗ | |
| ║ Code ║ Effect ║ Note ║ | |
| ╠══════════╬════════════════════════════════╬═════════════════════════════════════════════════════════════════════════╣ | |
| ║ 0 ║ Reset / Normal ║ all attributes off ║ | |
| ║ 1 ║ Bold or increased intensity ║ ║ | |
| ║ 2 ║ Faint (decreased intensity) ║ Not widely supported. ║ | |
| ║ 3 ║ Italic ║ Not widely supported. Sometimes treated as inverse. ║ | |
| ║ 4 ║ Underline ║ ║ | |
| ║ 5 ║ Slow Blink ║ less than 150 per |

