-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
393 lines (385 loc) · 14.5 KB
/
blog.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Thanks for checking my source out. Have a great day! -->
<meta charset="utf-8" />
<title>Kelly Lin: Blog</title>
<meta name="description" content="From pharma to programming." />
<meta name="author" content="Kelly Lin" />
<meta
name="keywords"
content="Kelly, Kelly Lin, R&D, Programming, Software Development, Software Engineering"
/>
<meta property="og:title" content="Kelly Lin" />
<meta property="og:description" content="From pharma to programming." />
<meta property="og:image" content="http://kellylin.me/images/logo.jpg" />
<meta property="og:url" content="http://kellylin.me" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/index.css" />
<link rel="icon" type="image/png" href="images/logo.png" />
<link
href="//fonts.googleapis.com/css?family=Raleway:400,300,600"
rel="stylesheet"
type="text/css"
/>
</head>
<body>
<div class="container">
<header>
<div class="logo">
<a href="./index.html"><img src="images/logo.png" /></a>
</div>
<nav class="link-brackets">
<a href="">Blog</a>
<a href="./talks.html">Talks</a>
<!--<a href="">Writing</a>-->
<!--<a href="http://kellylin.me/portfolio">Portfolio</a>-->
</nav>
</header>
<div class="blog-body">
<div class="blog-post">
<div class="tiny">Dec 16, 2023</div>
<a href="./blog/the_pleasure_of_peripherals.html"
><h3>The Pleasure of Peripherals: Mice</h3></a
>
<p>
The amount of enjoyment I get from using my new mouse is unreal. Had
been using my Logitech G502 ever since it came out in 2014. Last
month I decided it was time for an upgrade.
<br />
<a href="./blog/the_pleasure_of_peripherals.html" class="read-more"
>Read More</a
>
</p>
</div>
<div class="blog-post">
<div class="tiny">Nov 27, 2022</div>
<a href="./blog/nov-2022-beat-saber-custom-songs.html"
><h3>
How to Play Custom Songs on Beat Saber on the Meta Quest 2
</h3></a
>
<p>
I recently bought the Quest 2 on sale and wanted to play Beat Saber
with custom songs. The Quest 2 is a standalone VR headset, so there
are a few extra steps to take. Here's what I did to mod the game.
<br />
<a
href="./blog/nov-2022-beat-saber-custom-songs.html"
class="read-more"
>Read More</a
>
</p>
</div>
<div class="blog-post">
<div class="tiny">Nov 5, 2022</div>
<a href="./blog/vscode_api_webview_context.html"
><h3>VS Code Extension Development: Webview Context Menu API</h3></a
>
<p>
Wanted to replace the default right-click context menu options in a
VS Code Webview with custom ones. Also wanted to hide a command from
being shown in the command palette. Used a freshly-finalized VS Code
API to solve my problem.
<br />
<a href="./blog/vscode_api_webview_context.html" class="read-more"
>Read More</a
>
</p>
</div>
<div class="blog-post">
<div class="tiny">Jan 8, 2022</div>
<a href="./blog/postgresql_jsonb_operators_jpql_jpa_query_syntax.html"
><h3>PostgreSQL Jsonb Operators and JPQL/JPA Query Syntax</h3></a
>
<p>
Trying to write a simple query for a data access layer in Java
Spring involving PostgreSQL's jsonb data format. Finding out that
Java Persistence Query Language doesn't support the jsonb arrow
operator (and other database-specific operators). What I had to do
instead.
<br />
<a
href="./blog/postgresql_jsonb_operators_jpql_jpa_query_syntax.html"
class="read-more"
>Read More</a
>
</p>
</div>
<div class="blog-post">
<div class="tiny">Dec 31, 2021</div>
<a href="./blog/win10-start-menu-disappears-live-tile-fix.html"
><h3>Windows 10 Start Menu Won't Stay Open</h3></a
>
<p>
My Windows 10 Start Menu wouldn't stay open after I clicked on it.
It'd open briefly and immediately disappear. I was still able to
search for applications if I typed quickly, but couldn't use the UI
to shut down my PC. In my case, it turned out to be because of Live
Tiles! Here's how I fixed it.
<br />
<a
href="./blog/win10-start-menu-disappears-live-tile-fix.html"
class="read-more"
>Read More</a
>
</p>
</div>
<div class="blog-post">
<div class="tiny">March 7, 2021</div>
<a href="./blog/SQL-Server-GUID-Sort-Order.html"
><h3>SQL Server GUID Sort Order</h3></a
>
<p>
Did you know that uniqueidentifiers in MSSQL have their own special
sort order? An old coworker reminded me of the time we found this
out.
<br />
<a href="./blog/SQL-Server-GUID-Sort-Order.html" class="read-more"
>Read More</a
>
</p>
</div>
<div class="blog-post">
<div class="tiny">June 28, 2020</div>
<a href="./blog/using_cypress_for_the_first_time.html"
><h3>Using Cypress For the First Time</h3></a
>
<p>
Cypress seems pretty useful for e2e and integration testing. I also
found that cy.server() didn't work quite the way I expected.
<br />
<a
href="./blog/using_cypress_for_the_first_time.html"
class="read-more"
>Read More</a
>
</p>
</div>
<div class="blog-post">
<div class="tiny">May 11, 2020</div>
<a href="./blog/invalid_react_hook_enzyme.html"
><h3>Invalid React Hook Call With Enzyme Tests</h3></a
>
<p>
Added some React Hooks to a component and caused some unit test
failures.
<br />
<a href="./blog/invalid_react_hook_enzyme.html" class="read-more"
>Read More</a
>
</p>
</div>
<div class="blog-post">
<div class="tiny">October 31, 2019</div>
<a href="./blog/simple_asynchronous_mistake_integration_test.html"
><h3>Simple Asynchronous Mistake In An Integration Test</h3></a
>
<p>
Writing up some quick integration tests for a queue consumer service
and was briefly baffled when the test was failing. A simple and
obvious error.
<br />
<a
href="./blog/simple_asynchronous_mistake_integration_test.html"
class="read-more"
>Read More</a
>
</p>
</div>
<div class="blog-post">
<div class="tiny">October 30, 2019</div>
<a href="./blog/database_permissions_scripting_var_mistake.html"
><h3>Database Permissions: A Scripting Variable Mistake</h3></a
>
<p>
Setting up a new user role for a brand new .NET Core service to
grant it database permissions to execute some stored procedures.
When I deployed, I saw an error in the logs. I had forgotten
something.
<br />
<a
href="./blog/database_permissions_scripting_var_mistake.html"
class="read-more"
>Read More</a
>
</p>
</div>
<div class="blog-post">
<div class="tiny">October 20, 2019</div>
<a href="./blog/execution_timeout.html"
><h3>Execution Timeout Error from the Database</h3></a
>
<p>
A search request on the frontend was failing due to an execution
timeout error from the database. A stored procedure had to be
rewritten to address this.
<br />
<a href="./blog/execution_timeout.html" class="read-more"
>Read More</a
>
</p>
</div>
<div class="blog-post">
<div class="tiny">August 28, 2019</div>
<a href="./blog/weighing_options_for_fixing_angular_menu_css_bug.html"
><h3>Weighing Options for Fixing an Angular Menu CSS Bug</h3></a
>
<p>
I had a simple visual bug. But due to the changing expectations
surrounding what interacted with it, I had to evaluate several
options for fixing it.
<br />
<a
href="./blog/weighing_options_for_fixing_angular_menu_css_bug.html"
class="read-more"
>Read More</a
>
</p>
</div>
<div class="blog-post">
<div class="tiny">July 15, 2019</div>
<a href="./blog/SQL_Query_using_aggregation_and_count.html"
><h3>
How many SQL records are associated with more than one of another
record type?
</h3></a
>
<p>
I want to know how many records are associated with more than one of
another record type across four 3NF normalized tables?
<br />
<a
href="./blog/SQL_Query_using_aggregation_and_count.html"
class="read-more"
>Read More</a
>
</p>
</div>
<div class="blog-post">
<div class="tiny">July 8, 2019</div>
<a href="./blog/npm_err_notarget_nexus_repo.html"
><h3>npm ERR! notarget When Using a Nexus Repository</h3></a
>
<p>
Had a fun error when I tried to build a project after changing a
tiny line that should not have caused any issues. npm ERR! code
ETARGET.
<br />
<a href="./blog/npm_err_notarget_nexus_repo.html" class="read-more"
>Read More</a
>
</p>
</div>
<div class="blog-post">
<div class="tiny">July 1, 2019</div>
<a href="./blog/checkboxes-and-angular-forms-browser-discrepancy.html"
><h3>
Checkboxes and Angular Reactive Forms Browser Discrepancy
</h3></a
>
<p>
Noticed when using Angular's reactive forms with my checkboxes that
had labels and icons that were dependent on the form value that
there was a discrepancy between how IE/Edge treated them versus
Chrome/Firefox.
<br />
<a
href="./blog/checkboxes-and-angular-forms-browser-discrepancy.html"
class="read-more"
>Read More</a
>
</p>
</div>
<div class="blog-post">
<div class="tiny">Jun 17, 2019</div>
<a
href="./blog/conditionally_styling_Angular_components_and_host_elements.html"
><h3>
Conditionally Styling Angular Components and Host Elements
</h3></a
>
<p>
Here's how you can conditionally set a style value depending on a
property, and how to conditionally set a style on a host element.
<br />
<a
href="./blog/conditionally_styling_Angular_components_and_host_elements.html"
class="read-more"
>Read More</a
>
</p>
</div>
<div class="blog-post">
<div class="tiny">May 6, 2019</div>
<a href="./blog/group_by_in_LINQ.html"
><h3>Group By in LINQ to Turn Flat Rows Into Nested Rows</h3></a
>
<p>
Needed to transform some flat rows from a database into nested
objects in a C# backend, so I made use of LINQ. LINQ is short for
Language-Integrated Query, a neat C# tech.
<br />
<a href="./blog/group_by_in_LINQ.html" class="read-more"
>Read More</a
>
</p>
</div>
<div class="blog-post">
<div class="tiny">April 29, 2019</div>
<a href="./blog/method_in_the_madness_behind_css.html"
><h3>There Is Method To The Madness Behind CSS</h3></a
>
<p>
A lesson in having patience to understand what is going on during
CSS troubleshooting. It's not you, CSS, it's me.
<br />
<a
href="./blog/method_in_the_madness_behind_css.html"
class="read-more"
>Read More</a
>
</p>
</div>
<div class="blog-post">
<div class="tiny">April 22, 2019</div>
<a
href="./blog/daylight_savings_bug_and_check_your_network_requests.html"
><h3>Daylight Savings Bug, and Check Your Network Requests</h3></a
>
<p>
Troubleshooting a bug on a datepicker component that had to do with
daylight savings. Another reminder to check network requests.
<br />
<a
href="./blog/daylight_savings_bug_and_check_your_network_requests.html"
class="read-more"
>Read More</a
>
</p>
</div>
<div class="blog-post">
<div class="tiny">April 15, 2019</div>
<a href="./blog/check_your_helper_fns.html"
><h3>Remember To Check Your Helper Functions</h3></a
>
<p>
Forgetting to check my helper functions left me debugging a problem
longer than it should have taken. Here, I show an example of an
incident in the form of a hypothetical application.
<br />
<a href="./blog/check_your_helper_fns.html" class="read-more"
>Read More</a
>
</p>
</div>
</div>
</div>
</body>
</html>