Skip to content

Instantly share code, notes, and snippets.

View alicezuberg930's full-sized avatar
🎯
Focusing

Nguyen Vinh Tien alicezuberg930

🎯
Focusing
View GitHub Profile
@kathrindc
kathrindc / README.md
Created June 1, 2024 08:31
Patch for shadcn/ui NavigationMenu

You should be able to apply the changes by either grabbing the navigation-menu.tsx I uploaded below or trying to apply the patch file using the git apply command. Though you might need to adjust the paths if you try using the patch file.

@husa
husa / inverse.js
Created May 26, 2013 10:58
finding the inverse matrix in JavaScript (port from C++)
function inverse(_A) {
var temp,
N = _A.length,
E = [];
for (var i = 0; i < N; i++)
E[i] = [];
for (i = 0; i < N; i++)
for (var j = 0; j < N; j++) {