-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.html
158 lines (148 loc) · 4.68 KB
/
tools.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>bevstratov | tools</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<p>
these are the tools i use while crafting
</p>
<ul>
<li>
<strike>
<a href="https://code.visualstudio.com/" target="_blank" rel="noopener noreferrer">VSCode</a>
for text editing
</strike>
</li>
<li>
<a href="https://www.cursor.com/" target="_blank" rel="noopener noreferrer">Cursor</a>
for prompt engineering
</li>
<li>
<a href="https://orbstack.dev/download">OrbStack</a>
for running docker on mac
</li>
<li>
<strike>
<a href="https://app.warp.dev/get_warp">Warp</a>
terminal app
</strike>
</li>
<li>
<a href="https://sw.kovidgoyal.net/kitty/">Kitty</a>
now using kitty
</li>
<li>
<a href="https://www.beekeeperstudio.io/get-community" target="_blank" rel="noopener noreferrer">
Beekeeper Studio
</a>
for accessing db instances
</li>
<li>
<a href="https://redis.io/insight/" target="_blank" rel="noopener noreferrer">Redis Insight</a>
for accessing redis instances
</li>
<li>
<strike>
<a href="https://www.postman.com/downloads/" target="_blank" rel="noopener noreferrer">Postman</a>
for rest apis, this thing is super sluggish... too lazy to look for an alternative
</strike>
</li>
<li>
<a href="https://yaak.app/" target="_blank" rel="noopener noreferrer">Yaak</a>
this one looks legit
</li>
<li>
<a href="https://postgresapp.com" target="_blank" rel="noopener noreferrer">Postgres.app</a>
why waste time failing to set up postgres on a mac? just install this
</li>
<li>
<a href="https://k9scli.io/" target="_blank" rel="noopener noreferrer">k9s</a>
you wanna look cool while deploying your kubernetes microservices
</li>
</ul>
<br />
<p>also check out these programs</p>
<ul>
<li>
<a href="https://www.mowglii.com/itsycal" target="_blank" rel="noopener noreferrer">Itsycal</a>
calendar app for the menu bar
</li>
<li>
<a href="https://keepingyouawake.app/" target="_blank" rel="noopener noreferrer">KeepingYouAwake</a>
your mac should always be on, right?!
</li>
<li>
<a href="https://rectangleapp.com/" target="_blank" rel="noopener noreferrer">Rectangle</a>
macos native window manager sucks, this is a solid drop-in enhancement
</li>
<li>
<a href="https://apps.apple.com/us/app/copyclip-clipboard-history/id595191960" target="_blank"
rel="noopener noreferrer">CopyClip</a>
clipboard history, you won't be able to live without it
</li>
<li>
<a href="https://github.com/dwarvesf/hidden" target="_blank" rel="noopener noreferrer">Hidden Bar</a>
now that you've installed your favorite apps, you need to collapse mac's menu bar somehow
</li>
<li>
<a href="https://github.com/sindresorhus/System-Color-Picker" target="_blank"
rel="noopener noreferrer">SystemColor Picker</a>
the one and only
</li>
<li>
<a href="https://freemacsoft.net/appcleaner" target="_blank" rel="noopener noreferrer">AppCleaner</a>
fuck cleanmymac and other scammers
</li>
<li>
<a href="https://github.com/exelban/stats" target="_blank" rel="noopener noreferrer">Stats</a>
track your cpu usage like a real sysadmin
</li>
<li>
<a href="https://github.com/TechUnRestricted/WinDiskWriter" target="_blank"
rel="noopener noreferrer">WinDiskWriter</a>
i hope you'll never need this one
</li>
<li>
<a href="https://dev.yorhel.nl/ncdu" target="_blank" rel="noopener noreferrer">ncdu</a>
free your machine's space
</li>
</ul>
<br />
<p>personal / productivity / creativity</p>
<ul>
<li>
<a href="https://tweek.so/" target="_blank" rel="noopener noreferrer">Tweek</a>
best weekly planner
</li>
<li>
<a href="https://airtable.com" target="_blank" rel="noopener noreferrer">Airtable</a>
needs no introduction
</li>
<li>
<a href="http://notion.so" target="_blank" rel="noopener noreferrer">Notion</a>
been using since 2018
</li>
<li>
<a href="https://figma.com/" target="_blank" rel="noopener noreferrer">Figma</a>
these guys are cool
</li>
</ul>
<br />
<p>dev stuff</p>
<ul>
<li>
coming later...
</li>
</ul>
<a class="spaced-before" href="/">← back to `index.html`</a>
<div id="time">
<span id="time"></span>
</div>
</div>
</body>
<script src="script.js"></script>
</html>