gaboesquivel 3.9.1 → 3.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +77 -67
- package/dist/index.mjs +76 -67
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -18,7 +18,7 @@ interface Project {
|
|
|
18
18
|
}
|
|
19
19
|
interface TechStackItem {
|
|
20
20
|
name: string;
|
|
21
|
-
|
|
21
|
+
slug: string;
|
|
22
22
|
tag: Tag;
|
|
23
23
|
image: string;
|
|
24
24
|
description: string;
|
|
@@ -38,7 +38,8 @@ declare const techStack: TechStackItem[];
|
|
|
38
38
|
|
|
39
39
|
declare function getProjectBySlug(slug: string): Project | undefined;
|
|
40
40
|
declare function getTechStackByTag(tag: Tag): TechStackItemWithProjects | null;
|
|
41
|
+
declare function getTechStackBySlug(slug: string): TechStackItemWithProjects | null;
|
|
41
42
|
declare function getProjectsByTechnology(tag: Tag): Project[];
|
|
42
43
|
declare function gaboLog(): void;
|
|
43
44
|
|
|
44
|
-
export { type Project, type Tag, type TechStackItem, type TechStackItemWithProjects, gaboLog, getProjectBySlug, getProjectsByTechnology, getTechStackByTag, projects, techStack };
|
|
45
|
+
export { type Project, type Tag, type TechStackItem, type TechStackItemWithProjects, gaboLog, getProjectBySlug, getProjectsByTechnology, getTechStackBySlug, getTechStackByTag, projects, techStack };
|
package/dist/index.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ interface Project {
|
|
|
18
18
|
}
|
|
19
19
|
interface TechStackItem {
|
|
20
20
|
name: string;
|
|
21
|
-
|
|
21
|
+
slug: string;
|
|
22
22
|
tag: Tag;
|
|
23
23
|
image: string;
|
|
24
24
|
description: string;
|
|
@@ -38,7 +38,8 @@ declare const techStack: TechStackItem[];
|
|
|
38
38
|
|
|
39
39
|
declare function getProjectBySlug(slug: string): Project | undefined;
|
|
40
40
|
declare function getTechStackByTag(tag: Tag): TechStackItemWithProjects | null;
|
|
41
|
+
declare function getTechStackBySlug(slug: string): TechStackItemWithProjects | null;
|
|
41
42
|
declare function getProjectsByTechnology(tag: Tag): Project[];
|
|
42
43
|
declare function gaboLog(): void;
|
|
43
44
|
|
|
44
|
-
export { type Project, type Tag, type TechStackItem, type TechStackItemWithProjects, gaboLog, getProjectBySlug, getProjectsByTechnology, getTechStackByTag, projects, techStack };
|
|
45
|
+
export { type Project, type Tag, type TechStackItem, type TechStackItemWithProjects, gaboLog, getProjectBySlug, getProjectsByTechnology, getTechStackBySlug, getTechStackByTag, projects, techStack };
|
package/dist/index.js
CHANGED
|
@@ -23,6 +23,7 @@ __export(index_exports, {
|
|
|
23
23
|
gaboLog: () => gaboLog,
|
|
24
24
|
getProjectBySlug: () => getProjectBySlug,
|
|
25
25
|
getProjectsByTechnology: () => getProjectsByTechnology,
|
|
26
|
+
getTechStackBySlug: () => getTechStackBySlug,
|
|
26
27
|
getTechStackByTag: () => getTechStackByTag,
|
|
27
28
|
projects: () => projects,
|
|
28
29
|
techStack: () => techStack
|
|
@@ -1269,7 +1270,7 @@ var projects = [
|
|
|
1269
1270
|
var techStack = [
|
|
1270
1271
|
{
|
|
1271
1272
|
name: "TypeScript",
|
|
1272
|
-
|
|
1273
|
+
slug: "typescript",
|
|
1273
1274
|
tag: "TypeScript",
|
|
1274
1275
|
image: "/images/tech/typescript.png",
|
|
1275
1276
|
description: "A strongly typed programming language that builds on JavaScript, giving you better tooling at any scale.",
|
|
@@ -1286,7 +1287,7 @@ var techStack = [
|
|
|
1286
1287
|
},
|
|
1287
1288
|
{
|
|
1288
1289
|
name: "Solidity",
|
|
1289
|
-
|
|
1290
|
+
slug: "solidity",
|
|
1290
1291
|
tag: "Solidity",
|
|
1291
1292
|
image: "/images/tech/solidity.png",
|
|
1292
1293
|
description: "A contract-oriented programming language for writing smart contracts on Ethereum.",
|
|
@@ -1304,7 +1305,7 @@ var techStack = [
|
|
|
1304
1305
|
},
|
|
1305
1306
|
{
|
|
1306
1307
|
name: "Foundry",
|
|
1307
|
-
|
|
1308
|
+
slug: "foundry",
|
|
1308
1309
|
tag: "Foundry",
|
|
1309
1310
|
image: "/images/tech/foundry.png",
|
|
1310
1311
|
description: "A blazing fast, portable, and modular toolkit for Ethereum application development.",
|
|
@@ -1320,7 +1321,7 @@ var techStack = [
|
|
|
1320
1321
|
},
|
|
1321
1322
|
{
|
|
1322
1323
|
name: "Next.js",
|
|
1323
|
-
|
|
1324
|
+
slug: "nextjs",
|
|
1324
1325
|
tag: "NextJS",
|
|
1325
1326
|
image: "/images/tech/nextjs.png",
|
|
1326
1327
|
description: "A React framework for production, providing hybrid static & server rendering, TypeScript support, smart bundling, route pre-fetching, and more.",
|
|
@@ -1338,7 +1339,7 @@ var techStack = [
|
|
|
1338
1339
|
},
|
|
1339
1340
|
{
|
|
1340
1341
|
name: "Ponder",
|
|
1341
|
-
|
|
1342
|
+
slug: "ponder",
|
|
1342
1343
|
tag: "Ponder",
|
|
1343
1344
|
image: "/images/tech/ponder.png",
|
|
1344
1345
|
description: "A tool for indexing and querying blockchain data.",
|
|
@@ -1355,7 +1356,7 @@ var techStack = [
|
|
|
1355
1356
|
},
|
|
1356
1357
|
{
|
|
1357
1358
|
name: "PostgreSQL",
|
|
1358
|
-
|
|
1359
|
+
slug: "postgresql",
|
|
1359
1360
|
tag: "Postgres",
|
|
1360
1361
|
image: "/images/tech/postgresql.png",
|
|
1361
1362
|
description: "A powerful, open-source object-relational database system with a strong reputation for reliability, feature robustness, and performance.",
|
|
@@ -1372,7 +1373,7 @@ var techStack = [
|
|
|
1372
1373
|
},
|
|
1373
1374
|
{
|
|
1374
1375
|
name: "Viem",
|
|
1375
|
-
|
|
1376
|
+
slug: "viem",
|
|
1376
1377
|
tag: "Viem",
|
|
1377
1378
|
image: "/images/tech/viem.png",
|
|
1378
1379
|
description: "A library for interacting with Ethereum and other EVM-compatible blockchains.",
|
|
@@ -1390,7 +1391,7 @@ var techStack = [
|
|
|
1390
1391
|
},
|
|
1391
1392
|
{
|
|
1392
1393
|
name: "Wagmi",
|
|
1393
|
-
|
|
1394
|
+
slug: "wagmi",
|
|
1394
1395
|
tag: "Wagmi",
|
|
1395
1396
|
image: "/images/tech/wagmi.png",
|
|
1396
1397
|
description: "A collection of React hooks for Ethereum.",
|
|
@@ -1408,7 +1409,7 @@ var techStack = [
|
|
|
1408
1409
|
},
|
|
1409
1410
|
{
|
|
1410
1411
|
name: "EVM",
|
|
1411
|
-
|
|
1412
|
+
slug: "evm",
|
|
1412
1413
|
tag: "EVM",
|
|
1413
1414
|
image: "/images/tech/evm.png",
|
|
1414
1415
|
description: "The Ethereum Virtual Machine, a runtime environment for smart contracts in Ethereum.",
|
|
@@ -1425,7 +1426,7 @@ var techStack = [
|
|
|
1425
1426
|
},
|
|
1426
1427
|
{
|
|
1427
1428
|
name: "ThirdWeb",
|
|
1428
|
-
|
|
1429
|
+
slug: "thirdweb",
|
|
1429
1430
|
tag: "ThirdWeb",
|
|
1430
1431
|
image: "/images/tech/thirdweb.png",
|
|
1431
1432
|
description: "A platform for building and deploying Web3 applications with ease.",
|
|
@@ -1441,7 +1442,7 @@ var techStack = [
|
|
|
1441
1442
|
},
|
|
1442
1443
|
{
|
|
1443
1444
|
name: "EthersJS",
|
|
1444
|
-
|
|
1445
|
+
slug: "ethersjs",
|
|
1445
1446
|
tag: "Ethers",
|
|
1446
1447
|
image: "/images/tech/ethersjs.png",
|
|
1447
1448
|
description: "A library for interacting with the Ethereum blockchain and its ecosystem.",
|
|
@@ -1460,7 +1461,7 @@ var techStack = [
|
|
|
1460
1461
|
},
|
|
1461
1462
|
{
|
|
1462
1463
|
name: "Alchemy",
|
|
1463
|
-
|
|
1464
|
+
slug: "alchemy",
|
|
1464
1465
|
tag: "Alchemy",
|
|
1465
1466
|
image: "/images/tech/alchemy.png",
|
|
1466
1467
|
description: "A blockchain development platform that provides infrastructure and tools for building decentralized applications.",
|
|
@@ -1476,7 +1477,7 @@ var techStack = [
|
|
|
1476
1477
|
},
|
|
1477
1478
|
{
|
|
1478
1479
|
name: "Hardhat",
|
|
1479
|
-
|
|
1480
|
+
slug: "hardhat",
|
|
1480
1481
|
tag: "Hardhat",
|
|
1481
1482
|
image: "/images/tech/hardhat.png",
|
|
1482
1483
|
description: "A development environment for Ethereum software, providing tools for building and testing smart contracts.",
|
|
@@ -1492,7 +1493,7 @@ var techStack = [
|
|
|
1492
1493
|
},
|
|
1493
1494
|
{
|
|
1494
1495
|
name: "Node.js",
|
|
1495
|
-
|
|
1496
|
+
slug: "nodejs",
|
|
1496
1497
|
tag: "NodeJS",
|
|
1497
1498
|
image: "/images/tech/nodejs.png",
|
|
1498
1499
|
description: "A JavaScript runtime built on Chrome's V8 JavaScript engine, designed to build scalable network applications.",
|
|
@@ -1511,7 +1512,7 @@ var techStack = [
|
|
|
1511
1512
|
},
|
|
1512
1513
|
{
|
|
1513
1514
|
name: "GraphQL",
|
|
1514
|
-
|
|
1515
|
+
slug: "graphql",
|
|
1515
1516
|
tag: "GraphQL",
|
|
1516
1517
|
image: "/images/tech/graphql.png",
|
|
1517
1518
|
description: "A query language for your API, and a server-side runtime for executing queries by using a type system you define for your data.",
|
|
@@ -1528,7 +1529,7 @@ var techStack = [
|
|
|
1528
1529
|
},
|
|
1529
1530
|
{
|
|
1530
1531
|
name: "React Native",
|
|
1531
|
-
|
|
1532
|
+
slug: "react-native",
|
|
1532
1533
|
tag: "React Native",
|
|
1533
1534
|
image: "/images/tech/react-native.png",
|
|
1534
1535
|
description: "A framework for building native apps using React.",
|
|
@@ -1546,7 +1547,7 @@ var techStack = [
|
|
|
1546
1547
|
},
|
|
1547
1548
|
{
|
|
1548
1549
|
name: "WebGL",
|
|
1549
|
-
|
|
1550
|
+
slug: "webgl",
|
|
1550
1551
|
tag: "WebGL",
|
|
1551
1552
|
image: "/images/tech/webgl.png",
|
|
1552
1553
|
description: "A JavaScript API for rendering interactive 3D and 2D graphics within any compatible web browser.",
|
|
@@ -1562,7 +1563,7 @@ var techStack = [
|
|
|
1562
1563
|
},
|
|
1563
1564
|
{
|
|
1564
1565
|
name: "AWS",
|
|
1565
|
-
|
|
1566
|
+
slug: "aws",
|
|
1566
1567
|
tag: "AWS",
|
|
1567
1568
|
image: "/images/tech/aws.png",
|
|
1568
1569
|
description: "Amazon Web Services offers reliable, scalable, and inexpensive cloud computing services.",
|
|
@@ -1579,7 +1580,7 @@ var techStack = [
|
|
|
1579
1580
|
},
|
|
1580
1581
|
{
|
|
1581
1582
|
name: "GCP",
|
|
1582
|
-
|
|
1583
|
+
slug: "gcloud",
|
|
1583
1584
|
tag: "GCP",
|
|
1584
1585
|
image: "/images/tech/gcloud.png",
|
|
1585
1586
|
description: "Google Cloud Platform, a suite of cloud computing services that runs on the same infrastructure that Google uses internally.",
|
|
@@ -1595,7 +1596,7 @@ var techStack = [
|
|
|
1595
1596
|
},
|
|
1596
1597
|
{
|
|
1597
1598
|
name: "ShadcnUI",
|
|
1598
|
-
|
|
1599
|
+
slug: "shadcn",
|
|
1599
1600
|
tag: "ShadcnUI",
|
|
1600
1601
|
image: "/images/tech/shadcn.png",
|
|
1601
1602
|
description: "A collection of beautifully designed components built with Radix UI and Tailwind CSS.",
|
|
@@ -1612,7 +1613,7 @@ var techStack = [
|
|
|
1612
1613
|
},
|
|
1613
1614
|
{
|
|
1614
1615
|
name: "TanStack Query",
|
|
1615
|
-
|
|
1616
|
+
slug: "tanstack",
|
|
1616
1617
|
tag: "Tanstack",
|
|
1617
1618
|
image: "/images/tech/tanstack.png",
|
|
1618
1619
|
description: "Powerful asynchronous state management for fetching, caching, and updating data in React applications.",
|
|
@@ -1629,7 +1630,7 @@ var techStack = [
|
|
|
1629
1630
|
},
|
|
1630
1631
|
{
|
|
1631
1632
|
name: "WebAuthn",
|
|
1632
|
-
|
|
1633
|
+
slug: "webauthn",
|
|
1633
1634
|
tag: "WebAuthN",
|
|
1634
1635
|
image: "/images/tech/webauthn.png",
|
|
1635
1636
|
description: "A web standard for passwordless authentication using public key cryptography.",
|
|
@@ -1646,7 +1647,7 @@ var techStack = [
|
|
|
1646
1647
|
},
|
|
1647
1648
|
{
|
|
1648
1649
|
name: "Ethereum",
|
|
1649
|
-
|
|
1650
|
+
slug: "ethereum",
|
|
1650
1651
|
tag: "Ethereum",
|
|
1651
1652
|
image: "/images/tech/ethereum.png",
|
|
1652
1653
|
description: "A decentralized platform that enables developers to build and deploy smart contracts and decentralized applications.",
|
|
@@ -1662,7 +1663,7 @@ var techStack = [
|
|
|
1662
1663
|
},
|
|
1663
1664
|
{
|
|
1664
1665
|
name: "NFT",
|
|
1665
|
-
|
|
1666
|
+
slug: "nft",
|
|
1666
1667
|
tag: "NFT",
|
|
1667
1668
|
image: "/images/tech/nft.png",
|
|
1668
1669
|
description: "Non-Fungible Tokens, unique digital assets that represent ownership of a specific item or piece of content.",
|
|
@@ -1678,7 +1679,7 @@ var techStack = [
|
|
|
1678
1679
|
},
|
|
1679
1680
|
{
|
|
1680
1681
|
name: "AI SDK",
|
|
1681
|
-
|
|
1682
|
+
slug: "ai-sdk",
|
|
1682
1683
|
tag: "AI SDK",
|
|
1683
1684
|
image: "/images/tech/ai-sdk.png",
|
|
1684
1685
|
description: "Software Development Kits for integrating AI capabilities into applications.",
|
|
@@ -1694,7 +1695,7 @@ var techStack = [
|
|
|
1694
1695
|
},
|
|
1695
1696
|
{
|
|
1696
1697
|
name: "LLMs",
|
|
1697
|
-
|
|
1698
|
+
slug: "llms",
|
|
1698
1699
|
tag: "LLMs",
|
|
1699
1700
|
image: "/images/tech/llms.png",
|
|
1700
1701
|
description: "Large Language Models used for natural language processing and understanding.",
|
|
@@ -1710,7 +1711,7 @@ var techStack = [
|
|
|
1710
1711
|
},
|
|
1711
1712
|
{
|
|
1712
1713
|
name: "Supabase",
|
|
1713
|
-
|
|
1714
|
+
slug: "supabase",
|
|
1714
1715
|
tag: "Supabase",
|
|
1715
1716
|
image: "/images/tech/supabase.png",
|
|
1716
1717
|
description: "An open source Firebase alternative providing all the backend features you need to build a product.",
|
|
@@ -1728,7 +1729,7 @@ var techStack = [
|
|
|
1728
1729
|
},
|
|
1729
1730
|
{
|
|
1730
1731
|
name: "Stitches",
|
|
1731
|
-
|
|
1732
|
+
slug: "stitches",
|
|
1732
1733
|
tag: "Stitches",
|
|
1733
1734
|
image: "/images/tech/stitches.png",
|
|
1734
1735
|
description: "A CSS-in-JS library with near-zero runtime, SSR support, and a great developer experience.",
|
|
@@ -1745,7 +1746,7 @@ var techStack = [
|
|
|
1745
1746
|
},
|
|
1746
1747
|
{
|
|
1747
1748
|
name: "Zustand",
|
|
1748
|
-
|
|
1749
|
+
slug: "zustand",
|
|
1749
1750
|
tag: "Zustand",
|
|
1750
1751
|
image: "/images/tech/zustand.png",
|
|
1751
1752
|
description: "A small, fast, and scalable state management solution for React applications.",
|
|
@@ -1762,7 +1763,7 @@ var techStack = [
|
|
|
1762
1763
|
},
|
|
1763
1764
|
{
|
|
1764
1765
|
name: "Zod",
|
|
1765
|
-
|
|
1766
|
+
slug: "zod",
|
|
1766
1767
|
tag: "Zod",
|
|
1767
1768
|
image: "/images/tech/zod.png",
|
|
1768
1769
|
description: "TypeScript-first schema validation with static type inference.",
|
|
@@ -1779,7 +1780,7 @@ var techStack = [
|
|
|
1779
1780
|
},
|
|
1780
1781
|
{
|
|
1781
1782
|
name: "nuqs",
|
|
1782
|
-
|
|
1783
|
+
slug: "nuqs",
|
|
1783
1784
|
tag: "nuqs",
|
|
1784
1785
|
image: "/images/tech/nuqs.png",
|
|
1785
1786
|
description: "A type-safe URL query state management library for Next.js applications.",
|
|
@@ -1796,7 +1797,7 @@ var techStack = [
|
|
|
1796
1797
|
},
|
|
1797
1798
|
{
|
|
1798
1799
|
name: "Trigger.dev",
|
|
1799
|
-
|
|
1800
|
+
slug: "trigger",
|
|
1800
1801
|
tag: "Trigger",
|
|
1801
1802
|
image: "/images/tech/trigger.png",
|
|
1802
1803
|
description: "A developer-first open source background jobs framework for TypeScript.",
|
|
@@ -1813,7 +1814,7 @@ var techStack = [
|
|
|
1813
1814
|
},
|
|
1814
1815
|
{
|
|
1815
1816
|
name: "Terraform",
|
|
1816
|
-
|
|
1817
|
+
slug: "terraform",
|
|
1817
1818
|
tag: "Terraform",
|
|
1818
1819
|
image: "/images/tech/terraform.png",
|
|
1819
1820
|
description: "An open-source infrastructure as code software tool for building, changing, and versioning infrastructure safely and efficiently.",
|
|
@@ -1830,7 +1831,7 @@ var techStack = [
|
|
|
1830
1831
|
},
|
|
1831
1832
|
{
|
|
1832
1833
|
name: "Redux",
|
|
1833
|
-
|
|
1834
|
+
slug: "redux",
|
|
1834
1835
|
tag: "Redux",
|
|
1835
1836
|
image: "/images/tech/redux.png",
|
|
1836
1837
|
description: "A predictable state container for JavaScript apps, helping you write applications that behave consistently.",
|
|
@@ -1847,7 +1848,7 @@ var techStack = [
|
|
|
1847
1848
|
},
|
|
1848
1849
|
{
|
|
1849
1850
|
name: "Serverless",
|
|
1850
|
-
|
|
1851
|
+
slug: "serverless",
|
|
1851
1852
|
tag: "Serverless",
|
|
1852
1853
|
image: "/images/tech/serverless.png",
|
|
1853
1854
|
description: "A cloud computing execution model where the cloud provider dynamically manages the allocation of machine resources.",
|
|
@@ -1863,7 +1864,7 @@ var techStack = [
|
|
|
1863
1864
|
},
|
|
1864
1865
|
{
|
|
1865
1866
|
name: "Docker",
|
|
1866
|
-
|
|
1867
|
+
slug: "docker",
|
|
1867
1868
|
tag: "Docker",
|
|
1868
1869
|
image: "/images/tech/docker.png",
|
|
1869
1870
|
description: "A platform for developing, shipping, and running applications in containers.",
|
|
@@ -1879,7 +1880,7 @@ var techStack = [
|
|
|
1879
1880
|
},
|
|
1880
1881
|
{
|
|
1881
1882
|
name: "RXJS",
|
|
1882
|
-
|
|
1883
|
+
slug: "rxjs",
|
|
1883
1884
|
tag: "RXJS",
|
|
1884
1885
|
image: "/images/tech/rxjs.png",
|
|
1885
1886
|
description: "A library for reactive programming using Observables, to make it easier to compose asynchronous or callback-based code.",
|
|
@@ -1895,7 +1896,7 @@ var techStack = [
|
|
|
1895
1896
|
},
|
|
1896
1897
|
{
|
|
1897
1898
|
name: "Expo",
|
|
1898
|
-
|
|
1899
|
+
slug: "expo",
|
|
1899
1900
|
tag: "Expo",
|
|
1900
1901
|
image: "/images/tech/expo.png",
|
|
1901
1902
|
description: "A set of tools and services for React Native development.",
|
|
@@ -1912,7 +1913,7 @@ var techStack = [
|
|
|
1912
1913
|
},
|
|
1913
1914
|
{
|
|
1914
1915
|
name: "Tailwind CSS",
|
|
1915
|
-
|
|
1916
|
+
slug: "tailwind",
|
|
1916
1917
|
tag: "Tailwind",
|
|
1917
1918
|
image: "/images/tech/tailwind.png",
|
|
1918
1919
|
description: "A utility-first CSS framework for rapid UI development.",
|
|
@@ -1929,7 +1930,7 @@ var techStack = [
|
|
|
1929
1930
|
},
|
|
1930
1931
|
{
|
|
1931
1932
|
name: "Antelope",
|
|
1932
|
-
|
|
1933
|
+
slug: "antelope",
|
|
1933
1934
|
tag: "Antelope",
|
|
1934
1935
|
image: "/images/tech/antelope.png",
|
|
1935
1936
|
description: "A blockchain protocol designed for high performance and scalability, supporting decentralized applications.",
|
|
@@ -1945,7 +1946,7 @@ var techStack = [
|
|
|
1945
1946
|
},
|
|
1946
1947
|
{
|
|
1947
1948
|
name: "C++",
|
|
1948
|
-
|
|
1949
|
+
slug: "cpp",
|
|
1949
1950
|
tag: "C++",
|
|
1950
1951
|
image: "/images/tech/cpp.png",
|
|
1951
1952
|
description: "A general-purpose programming language created as an extension of the C programming language.",
|
|
@@ -1961,7 +1962,7 @@ var techStack = [
|
|
|
1961
1962
|
},
|
|
1962
1963
|
{
|
|
1963
1964
|
name: "EOS",
|
|
1964
|
-
|
|
1965
|
+
slug: "eos",
|
|
1965
1966
|
tag: "EOS",
|
|
1966
1967
|
image: "/images/tech/eos.png",
|
|
1967
1968
|
description: "A blockchain platform designed for the development of decentralized applications (dApps).",
|
|
@@ -1977,7 +1978,7 @@ var techStack = [
|
|
|
1977
1978
|
},
|
|
1978
1979
|
{
|
|
1979
1980
|
name: "Flow Blockchain",
|
|
1980
|
-
|
|
1981
|
+
slug: "flow",
|
|
1981
1982
|
tag: "Flow",
|
|
1982
1983
|
image: "/images/tech/flow.png",
|
|
1983
1984
|
description: "A fast, decentralized, and developer-friendly blockchain, designed as the foundation for a new generation of games, apps, and digital assets.",
|
|
@@ -1993,7 +1994,7 @@ var techStack = [
|
|
|
1993
1994
|
},
|
|
1994
1995
|
{
|
|
1995
1996
|
name: "Polkadot",
|
|
1996
|
-
|
|
1997
|
+
slug: "polkadot",
|
|
1997
1998
|
tag: "Polkadot",
|
|
1998
1999
|
image: "/images/tech/polkadot.png",
|
|
1999
2000
|
description: "A network protocol that allows arbitrary data\u2014not just tokens\u2014to be transferred across blockchains.",
|
|
@@ -2009,7 +2010,7 @@ var techStack = [
|
|
|
2009
2010
|
},
|
|
2010
2011
|
{
|
|
2011
2012
|
name: "Substrate",
|
|
2012
|
-
|
|
2013
|
+
slug: "substrate",
|
|
2013
2014
|
tag: "Substrate",
|
|
2014
2015
|
image: "/images/tech/substrate.png",
|
|
2015
2016
|
description: "A framework for building blockchains, providing a set of tools and libraries for blockchain development.",
|
|
@@ -2025,7 +2026,7 @@ var techStack = [
|
|
|
2025
2026
|
},
|
|
2026
2027
|
{
|
|
2027
2028
|
name: "Flow",
|
|
2028
|
-
|
|
2029
|
+
slug: "flow",
|
|
2029
2030
|
tag: "Flow",
|
|
2030
2031
|
image: "/images/tech/flow.png",
|
|
2031
2032
|
description: "A fast, decentralized, and developer-friendly blockchain, designed as the foundation for a new generation of games, apps, and digital assets.",
|
|
@@ -2041,7 +2042,7 @@ var techStack = [
|
|
|
2041
2042
|
},
|
|
2042
2043
|
{
|
|
2043
2044
|
name: "Niftory",
|
|
2044
|
-
|
|
2045
|
+
slug: "niftory",
|
|
2045
2046
|
tag: "Niftory",
|
|
2046
2047
|
image: "/images/tech/niftory.png",
|
|
2047
2048
|
description: "A platform for creating, managing, and distributing NFTs, providing tools and infrastructure for NFT development.",
|
|
@@ -2057,7 +2058,7 @@ var techStack = [
|
|
|
2057
2058
|
},
|
|
2058
2059
|
{
|
|
2059
2060
|
name: "Dalle",
|
|
2060
|
-
|
|
2061
|
+
slug: "dalle",
|
|
2061
2062
|
tag: "Dalle",
|
|
2062
2063
|
image: "/images/tech/dalle.png",
|
|
2063
2064
|
description: "An AI model developed by OpenAI for generating images from textual descriptions.",
|
|
@@ -2073,7 +2074,7 @@ var techStack = [
|
|
|
2073
2074
|
},
|
|
2074
2075
|
{
|
|
2075
2076
|
name: "OpenAI",
|
|
2076
|
-
|
|
2077
|
+
slug: "openai",
|
|
2077
2078
|
tag: "OpenAI",
|
|
2078
2079
|
image: "/images/tech/openai.png",
|
|
2079
2080
|
description: "An AI research and deployment company, known for developing advanced AI models and technologies.",
|
|
@@ -2089,7 +2090,7 @@ var techStack = [
|
|
|
2089
2090
|
},
|
|
2090
2091
|
{
|
|
2091
2092
|
name: "Biometrics",
|
|
2092
|
-
|
|
2093
|
+
slug: "biometrics",
|
|
2093
2094
|
tag: "Biometrics",
|
|
2094
2095
|
image: "/images/tech/biometrics.png",
|
|
2095
2096
|
description: "Technologies and methods for recognizing individuals based on physical or behavioral characteristics.",
|
|
@@ -2105,7 +2106,7 @@ var techStack = [
|
|
|
2105
2106
|
},
|
|
2106
2107
|
{
|
|
2107
2108
|
name: "AngularJS",
|
|
2108
|
-
|
|
2109
|
+
slug: "angularjs",
|
|
2109
2110
|
tag: "AngularJS",
|
|
2110
2111
|
image: "/images/tech/angularjs.png",
|
|
2111
2112
|
description: "A structural framework for dynamic web apps.",
|
|
@@ -2122,7 +2123,7 @@ var techStack = [
|
|
|
2122
2123
|
},
|
|
2123
2124
|
{
|
|
2124
2125
|
name: "MongoDB",
|
|
2125
|
-
|
|
2126
|
+
slug: "mongodb",
|
|
2126
2127
|
tag: "MongoDB",
|
|
2127
2128
|
image: "/images/tech/mongodb.png",
|
|
2128
2129
|
description: "A document database with the scalability and flexibility that you want with the querying and indexing that you need.",
|
|
@@ -2139,7 +2140,7 @@ var techStack = [
|
|
|
2139
2140
|
},
|
|
2140
2141
|
{
|
|
2141
2142
|
name: "Heroku",
|
|
2142
|
-
|
|
2143
|
+
slug: "heroku",
|
|
2143
2144
|
tag: "Heroku",
|
|
2144
2145
|
image: "/images/tech/heroku.png",
|
|
2145
2146
|
description: "A platform as a service (PaaS) that enables developers to build, run, and operate applications entirely in the cloud.",
|
|
@@ -2155,7 +2156,7 @@ var techStack = [
|
|
|
2155
2156
|
},
|
|
2156
2157
|
{
|
|
2157
2158
|
name: "Bootstrap",
|
|
2158
|
-
|
|
2159
|
+
slug: "bootstrap",
|
|
2159
2160
|
tag: "Bootstrap",
|
|
2160
2161
|
image: "/images/tech/bootstrap.png",
|
|
2161
2162
|
description: "A free and open-source CSS framework directed at responsive, mobile-first front-end web development.",
|
|
@@ -2172,7 +2173,7 @@ var techStack = [
|
|
|
2172
2173
|
},
|
|
2173
2174
|
{
|
|
2174
2175
|
name: "Stripe",
|
|
2175
|
-
|
|
2176
|
+
slug: "stripe",
|
|
2176
2177
|
tag: "Stripe",
|
|
2177
2178
|
image: "/images/tech/stripe.png",
|
|
2178
2179
|
description: "A technology company that builds economic infrastructure for the internet.",
|
|
@@ -2188,7 +2189,7 @@ var techStack = [
|
|
|
2188
2189
|
},
|
|
2189
2190
|
{
|
|
2190
2191
|
name: "Twilio",
|
|
2191
|
-
|
|
2192
|
+
slug: "twilio",
|
|
2192
2193
|
tag: "Twilio",
|
|
2193
2194
|
image: "/images/tech/twilio.png",
|
|
2194
2195
|
description: "A cloud communications platform for building SMS, Voice & Messaging applications on an API.",
|
|
@@ -2204,7 +2205,7 @@ var techStack = [
|
|
|
2204
2205
|
},
|
|
2205
2206
|
{
|
|
2206
2207
|
name: "JavaScript",
|
|
2207
|
-
|
|
2208
|
+
slug: "javascript",
|
|
2208
2209
|
tag: "JavaScript",
|
|
2209
2210
|
image: "/images/tech/javascript.png",
|
|
2210
2211
|
description: "A high-level, just-in-time compiled, object-oriented programming language.",
|
|
@@ -2221,7 +2222,7 @@ var techStack = [
|
|
|
2221
2222
|
},
|
|
2222
2223
|
{
|
|
2223
2224
|
name: "CSS",
|
|
2224
|
-
|
|
2225
|
+
slug: "css",
|
|
2225
2226
|
tag: "CSS",
|
|
2226
2227
|
image: "/images/tech/css.png",
|
|
2227
2228
|
description: "A style sheet language used for describing the presentation of a document written in a markup language like HTML.",
|
|
@@ -2238,7 +2239,7 @@ var techStack = [
|
|
|
2238
2239
|
},
|
|
2239
2240
|
{
|
|
2240
2241
|
name: "Mootools",
|
|
2241
|
-
|
|
2242
|
+
slug: "mootools",
|
|
2242
2243
|
tag: "Mootools",
|
|
2243
2244
|
image: "/images/tech/mootools.png",
|
|
2244
2245
|
description: "A compact, modular, Object-Oriented JavaScript framework designed for the intermediate to advanced JavaScript developer.",
|
|
@@ -2254,7 +2255,7 @@ var techStack = [
|
|
|
2254
2255
|
},
|
|
2255
2256
|
{
|
|
2256
2257
|
name: "Data Charts",
|
|
2257
|
-
|
|
2258
|
+
slug: "data-charts",
|
|
2258
2259
|
tag: "Data Charts",
|
|
2259
2260
|
image: "/images/tech/data-charts.png",
|
|
2260
2261
|
description: "Tools and libraries for creating interactive and dynamic data visualizations.",
|
|
@@ -2270,7 +2271,7 @@ var techStack = [
|
|
|
2270
2271
|
},
|
|
2271
2272
|
{
|
|
2272
2273
|
name: "Ruby on Rails",
|
|
2273
|
-
|
|
2274
|
+
slug: "rails",
|
|
2274
2275
|
tag: "Ruby on Rails",
|
|
2275
2276
|
image: "/images/tech/rails.png",
|
|
2276
2277
|
description: "A web application framework written in Ruby, designed to make programming web applications easier.",
|
|
@@ -2287,7 +2288,7 @@ var techStack = [
|
|
|
2287
2288
|
},
|
|
2288
2289
|
{
|
|
2289
2290
|
name: "Faye",
|
|
2290
|
-
|
|
2291
|
+
slug: "faye",
|
|
2291
2292
|
tag: "Faye",
|
|
2292
2293
|
image: "/images/tech/faye.png",
|
|
2293
2294
|
description: "A publish-subscribe messaging system based on the Bayeux protocol.",
|
|
@@ -2304,7 +2305,7 @@ var techStack = [
|
|
|
2304
2305
|
},
|
|
2305
2306
|
{
|
|
2306
2307
|
name: "LESS",
|
|
2307
|
-
|
|
2308
|
+
slug: "less",
|
|
2308
2309
|
tag: "LESS",
|
|
2309
2310
|
image: "/images/tech/less.png",
|
|
2310
2311
|
description: "A backward-compatible language extension for CSS.",
|
|
@@ -2320,7 +2321,7 @@ var techStack = [
|
|
|
2320
2321
|
},
|
|
2321
2322
|
{
|
|
2322
2323
|
name: "Wordpress",
|
|
2323
|
-
|
|
2324
|
+
slug: "wordpress",
|
|
2324
2325
|
tag: "Wordpress",
|
|
2325
2326
|
image: "/images/tech/wordpress.png",
|
|
2326
2327
|
description: "A free and open-source content management system (CMS) based on PHP and MySQL.",
|
|
@@ -2337,7 +2338,7 @@ var techStack = [
|
|
|
2337
2338
|
},
|
|
2338
2339
|
{
|
|
2339
2340
|
name: "Content Management Systems",
|
|
2340
|
-
|
|
2341
|
+
slug: "cms",
|
|
2341
2342
|
tag: "CMS",
|
|
2342
2343
|
image: "/images/tech/cms.png",
|
|
2343
2344
|
description: "Software applications that enable users to create, manage, and modify content on websites without specialized technical knowledge.",
|
|
@@ -2355,7 +2356,7 @@ var techStack = [
|
|
|
2355
2356
|
},
|
|
2356
2357
|
{
|
|
2357
2358
|
name: "DatoCMS",
|
|
2358
|
-
|
|
2359
|
+
slug: "datocms",
|
|
2359
2360
|
tag: "DatoCMS",
|
|
2360
2361
|
image: "/images/tech/datocms.png",
|
|
2361
2362
|
description: "A headless CMS that offers a flexible content management solution for modern websites and applications.",
|
|
@@ -2372,7 +2373,7 @@ var techStack = [
|
|
|
2372
2373
|
},
|
|
2373
2374
|
{
|
|
2374
2375
|
name: "ViroAR",
|
|
2375
|
-
|
|
2376
|
+
slug: "viroar",
|
|
2376
2377
|
tag: "ViroAR",
|
|
2377
2378
|
image: "/images/tech/viroar.png",
|
|
2378
2379
|
description: "A platform for building AR applications with React Native.",
|
|
@@ -2401,6 +2402,14 @@ function getTechStackByTag(tag) {
|
|
|
2401
2402
|
projects: getProjectsByTechnology(tag)
|
|
2402
2403
|
};
|
|
2403
2404
|
}
|
|
2405
|
+
function getTechStackBySlug(slug) {
|
|
2406
|
+
const tech = techStack.find((tech2) => tech2.slug === slug);
|
|
2407
|
+
if (!tech) return null;
|
|
2408
|
+
return {
|
|
2409
|
+
...tech,
|
|
2410
|
+
projects: getProjectsByTechnology(tech.tag)
|
|
2411
|
+
};
|
|
2412
|
+
}
|
|
2404
2413
|
function getProjectsByTechnology(tag) {
|
|
2405
2414
|
return projects.filter((project) => project.tech.includes(tag));
|
|
2406
2415
|
}
|
|
@@ -2412,6 +2421,7 @@ function gaboLog() {
|
|
|
2412
2421
|
gaboLog,
|
|
2413
2422
|
getProjectBySlug,
|
|
2414
2423
|
getProjectsByTechnology,
|
|
2424
|
+
getTechStackBySlug,
|
|
2415
2425
|
getTechStackByTag,
|
|
2416
2426
|
projects,
|
|
2417
2427
|
techStack
|
package/dist/index.mjs
CHANGED
|
@@ -1238,7 +1238,7 @@ var projects = [
|
|
|
1238
1238
|
var techStack = [
|
|
1239
1239
|
{
|
|
1240
1240
|
name: "TypeScript",
|
|
1241
|
-
|
|
1241
|
+
slug: "typescript",
|
|
1242
1242
|
tag: "TypeScript",
|
|
1243
1243
|
image: "/images/tech/typescript.png",
|
|
1244
1244
|
description: "A strongly typed programming language that builds on JavaScript, giving you better tooling at any scale.",
|
|
@@ -1255,7 +1255,7 @@ var techStack = [
|
|
|
1255
1255
|
},
|
|
1256
1256
|
{
|
|
1257
1257
|
name: "Solidity",
|
|
1258
|
-
|
|
1258
|
+
slug: "solidity",
|
|
1259
1259
|
tag: "Solidity",
|
|
1260
1260
|
image: "/images/tech/solidity.png",
|
|
1261
1261
|
description: "A contract-oriented programming language for writing smart contracts on Ethereum.",
|
|
@@ -1273,7 +1273,7 @@ var techStack = [
|
|
|
1273
1273
|
},
|
|
1274
1274
|
{
|
|
1275
1275
|
name: "Foundry",
|
|
1276
|
-
|
|
1276
|
+
slug: "foundry",
|
|
1277
1277
|
tag: "Foundry",
|
|
1278
1278
|
image: "/images/tech/foundry.png",
|
|
1279
1279
|
description: "A blazing fast, portable, and modular toolkit for Ethereum application development.",
|
|
@@ -1289,7 +1289,7 @@ var techStack = [
|
|
|
1289
1289
|
},
|
|
1290
1290
|
{
|
|
1291
1291
|
name: "Next.js",
|
|
1292
|
-
|
|
1292
|
+
slug: "nextjs",
|
|
1293
1293
|
tag: "NextJS",
|
|
1294
1294
|
image: "/images/tech/nextjs.png",
|
|
1295
1295
|
description: "A React framework for production, providing hybrid static & server rendering, TypeScript support, smart bundling, route pre-fetching, and more.",
|
|
@@ -1307,7 +1307,7 @@ var techStack = [
|
|
|
1307
1307
|
},
|
|
1308
1308
|
{
|
|
1309
1309
|
name: "Ponder",
|
|
1310
|
-
|
|
1310
|
+
slug: "ponder",
|
|
1311
1311
|
tag: "Ponder",
|
|
1312
1312
|
image: "/images/tech/ponder.png",
|
|
1313
1313
|
description: "A tool for indexing and querying blockchain data.",
|
|
@@ -1324,7 +1324,7 @@ var techStack = [
|
|
|
1324
1324
|
},
|
|
1325
1325
|
{
|
|
1326
1326
|
name: "PostgreSQL",
|
|
1327
|
-
|
|
1327
|
+
slug: "postgresql",
|
|
1328
1328
|
tag: "Postgres",
|
|
1329
1329
|
image: "/images/tech/postgresql.png",
|
|
1330
1330
|
description: "A powerful, open-source object-relational database system with a strong reputation for reliability, feature robustness, and performance.",
|
|
@@ -1341,7 +1341,7 @@ var techStack = [
|
|
|
1341
1341
|
},
|
|
1342
1342
|
{
|
|
1343
1343
|
name: "Viem",
|
|
1344
|
-
|
|
1344
|
+
slug: "viem",
|
|
1345
1345
|
tag: "Viem",
|
|
1346
1346
|
image: "/images/tech/viem.png",
|
|
1347
1347
|
description: "A library for interacting with Ethereum and other EVM-compatible blockchains.",
|
|
@@ -1359,7 +1359,7 @@ var techStack = [
|
|
|
1359
1359
|
},
|
|
1360
1360
|
{
|
|
1361
1361
|
name: "Wagmi",
|
|
1362
|
-
|
|
1362
|
+
slug: "wagmi",
|
|
1363
1363
|
tag: "Wagmi",
|
|
1364
1364
|
image: "/images/tech/wagmi.png",
|
|
1365
1365
|
description: "A collection of React hooks for Ethereum.",
|
|
@@ -1377,7 +1377,7 @@ var techStack = [
|
|
|
1377
1377
|
},
|
|
1378
1378
|
{
|
|
1379
1379
|
name: "EVM",
|
|
1380
|
-
|
|
1380
|
+
slug: "evm",
|
|
1381
1381
|
tag: "EVM",
|
|
1382
1382
|
image: "/images/tech/evm.png",
|
|
1383
1383
|
description: "The Ethereum Virtual Machine, a runtime environment for smart contracts in Ethereum.",
|
|
@@ -1394,7 +1394,7 @@ var techStack = [
|
|
|
1394
1394
|
},
|
|
1395
1395
|
{
|
|
1396
1396
|
name: "ThirdWeb",
|
|
1397
|
-
|
|
1397
|
+
slug: "thirdweb",
|
|
1398
1398
|
tag: "ThirdWeb",
|
|
1399
1399
|
image: "/images/tech/thirdweb.png",
|
|
1400
1400
|
description: "A platform for building and deploying Web3 applications with ease.",
|
|
@@ -1410,7 +1410,7 @@ var techStack = [
|
|
|
1410
1410
|
},
|
|
1411
1411
|
{
|
|
1412
1412
|
name: "EthersJS",
|
|
1413
|
-
|
|
1413
|
+
slug: "ethersjs",
|
|
1414
1414
|
tag: "Ethers",
|
|
1415
1415
|
image: "/images/tech/ethersjs.png",
|
|
1416
1416
|
description: "A library for interacting with the Ethereum blockchain and its ecosystem.",
|
|
@@ -1429,7 +1429,7 @@ var techStack = [
|
|
|
1429
1429
|
},
|
|
1430
1430
|
{
|
|
1431
1431
|
name: "Alchemy",
|
|
1432
|
-
|
|
1432
|
+
slug: "alchemy",
|
|
1433
1433
|
tag: "Alchemy",
|
|
1434
1434
|
image: "/images/tech/alchemy.png",
|
|
1435
1435
|
description: "A blockchain development platform that provides infrastructure and tools for building decentralized applications.",
|
|
@@ -1445,7 +1445,7 @@ var techStack = [
|
|
|
1445
1445
|
},
|
|
1446
1446
|
{
|
|
1447
1447
|
name: "Hardhat",
|
|
1448
|
-
|
|
1448
|
+
slug: "hardhat",
|
|
1449
1449
|
tag: "Hardhat",
|
|
1450
1450
|
image: "/images/tech/hardhat.png",
|
|
1451
1451
|
description: "A development environment for Ethereum software, providing tools for building and testing smart contracts.",
|
|
@@ -1461,7 +1461,7 @@ var techStack = [
|
|
|
1461
1461
|
},
|
|
1462
1462
|
{
|
|
1463
1463
|
name: "Node.js",
|
|
1464
|
-
|
|
1464
|
+
slug: "nodejs",
|
|
1465
1465
|
tag: "NodeJS",
|
|
1466
1466
|
image: "/images/tech/nodejs.png",
|
|
1467
1467
|
description: "A JavaScript runtime built on Chrome's V8 JavaScript engine, designed to build scalable network applications.",
|
|
@@ -1480,7 +1480,7 @@ var techStack = [
|
|
|
1480
1480
|
},
|
|
1481
1481
|
{
|
|
1482
1482
|
name: "GraphQL",
|
|
1483
|
-
|
|
1483
|
+
slug: "graphql",
|
|
1484
1484
|
tag: "GraphQL",
|
|
1485
1485
|
image: "/images/tech/graphql.png",
|
|
1486
1486
|
description: "A query language for your API, and a server-side runtime for executing queries by using a type system you define for your data.",
|
|
@@ -1497,7 +1497,7 @@ var techStack = [
|
|
|
1497
1497
|
},
|
|
1498
1498
|
{
|
|
1499
1499
|
name: "React Native",
|
|
1500
|
-
|
|
1500
|
+
slug: "react-native",
|
|
1501
1501
|
tag: "React Native",
|
|
1502
1502
|
image: "/images/tech/react-native.png",
|
|
1503
1503
|
description: "A framework for building native apps using React.",
|
|
@@ -1515,7 +1515,7 @@ var techStack = [
|
|
|
1515
1515
|
},
|
|
1516
1516
|
{
|
|
1517
1517
|
name: "WebGL",
|
|
1518
|
-
|
|
1518
|
+
slug: "webgl",
|
|
1519
1519
|
tag: "WebGL",
|
|
1520
1520
|
image: "/images/tech/webgl.png",
|
|
1521
1521
|
description: "A JavaScript API for rendering interactive 3D and 2D graphics within any compatible web browser.",
|
|
@@ -1531,7 +1531,7 @@ var techStack = [
|
|
|
1531
1531
|
},
|
|
1532
1532
|
{
|
|
1533
1533
|
name: "AWS",
|
|
1534
|
-
|
|
1534
|
+
slug: "aws",
|
|
1535
1535
|
tag: "AWS",
|
|
1536
1536
|
image: "/images/tech/aws.png",
|
|
1537
1537
|
description: "Amazon Web Services offers reliable, scalable, and inexpensive cloud computing services.",
|
|
@@ -1548,7 +1548,7 @@ var techStack = [
|
|
|
1548
1548
|
},
|
|
1549
1549
|
{
|
|
1550
1550
|
name: "GCP",
|
|
1551
|
-
|
|
1551
|
+
slug: "gcloud",
|
|
1552
1552
|
tag: "GCP",
|
|
1553
1553
|
image: "/images/tech/gcloud.png",
|
|
1554
1554
|
description: "Google Cloud Platform, a suite of cloud computing services that runs on the same infrastructure that Google uses internally.",
|
|
@@ -1564,7 +1564,7 @@ var techStack = [
|
|
|
1564
1564
|
},
|
|
1565
1565
|
{
|
|
1566
1566
|
name: "ShadcnUI",
|
|
1567
|
-
|
|
1567
|
+
slug: "shadcn",
|
|
1568
1568
|
tag: "ShadcnUI",
|
|
1569
1569
|
image: "/images/tech/shadcn.png",
|
|
1570
1570
|
description: "A collection of beautifully designed components built with Radix UI and Tailwind CSS.",
|
|
@@ -1581,7 +1581,7 @@ var techStack = [
|
|
|
1581
1581
|
},
|
|
1582
1582
|
{
|
|
1583
1583
|
name: "TanStack Query",
|
|
1584
|
-
|
|
1584
|
+
slug: "tanstack",
|
|
1585
1585
|
tag: "Tanstack",
|
|
1586
1586
|
image: "/images/tech/tanstack.png",
|
|
1587
1587
|
description: "Powerful asynchronous state management for fetching, caching, and updating data in React applications.",
|
|
@@ -1598,7 +1598,7 @@ var techStack = [
|
|
|
1598
1598
|
},
|
|
1599
1599
|
{
|
|
1600
1600
|
name: "WebAuthn",
|
|
1601
|
-
|
|
1601
|
+
slug: "webauthn",
|
|
1602
1602
|
tag: "WebAuthN",
|
|
1603
1603
|
image: "/images/tech/webauthn.png",
|
|
1604
1604
|
description: "A web standard for passwordless authentication using public key cryptography.",
|
|
@@ -1615,7 +1615,7 @@ var techStack = [
|
|
|
1615
1615
|
},
|
|
1616
1616
|
{
|
|
1617
1617
|
name: "Ethereum",
|
|
1618
|
-
|
|
1618
|
+
slug: "ethereum",
|
|
1619
1619
|
tag: "Ethereum",
|
|
1620
1620
|
image: "/images/tech/ethereum.png",
|
|
1621
1621
|
description: "A decentralized platform that enables developers to build and deploy smart contracts and decentralized applications.",
|
|
@@ -1631,7 +1631,7 @@ var techStack = [
|
|
|
1631
1631
|
},
|
|
1632
1632
|
{
|
|
1633
1633
|
name: "NFT",
|
|
1634
|
-
|
|
1634
|
+
slug: "nft",
|
|
1635
1635
|
tag: "NFT",
|
|
1636
1636
|
image: "/images/tech/nft.png",
|
|
1637
1637
|
description: "Non-Fungible Tokens, unique digital assets that represent ownership of a specific item or piece of content.",
|
|
@@ -1647,7 +1647,7 @@ var techStack = [
|
|
|
1647
1647
|
},
|
|
1648
1648
|
{
|
|
1649
1649
|
name: "AI SDK",
|
|
1650
|
-
|
|
1650
|
+
slug: "ai-sdk",
|
|
1651
1651
|
tag: "AI SDK",
|
|
1652
1652
|
image: "/images/tech/ai-sdk.png",
|
|
1653
1653
|
description: "Software Development Kits for integrating AI capabilities into applications.",
|
|
@@ -1663,7 +1663,7 @@ var techStack = [
|
|
|
1663
1663
|
},
|
|
1664
1664
|
{
|
|
1665
1665
|
name: "LLMs",
|
|
1666
|
-
|
|
1666
|
+
slug: "llms",
|
|
1667
1667
|
tag: "LLMs",
|
|
1668
1668
|
image: "/images/tech/llms.png",
|
|
1669
1669
|
description: "Large Language Models used for natural language processing and understanding.",
|
|
@@ -1679,7 +1679,7 @@ var techStack = [
|
|
|
1679
1679
|
},
|
|
1680
1680
|
{
|
|
1681
1681
|
name: "Supabase",
|
|
1682
|
-
|
|
1682
|
+
slug: "supabase",
|
|
1683
1683
|
tag: "Supabase",
|
|
1684
1684
|
image: "/images/tech/supabase.png",
|
|
1685
1685
|
description: "An open source Firebase alternative providing all the backend features you need to build a product.",
|
|
@@ -1697,7 +1697,7 @@ var techStack = [
|
|
|
1697
1697
|
},
|
|
1698
1698
|
{
|
|
1699
1699
|
name: "Stitches",
|
|
1700
|
-
|
|
1700
|
+
slug: "stitches",
|
|
1701
1701
|
tag: "Stitches",
|
|
1702
1702
|
image: "/images/tech/stitches.png",
|
|
1703
1703
|
description: "A CSS-in-JS library with near-zero runtime, SSR support, and a great developer experience.",
|
|
@@ -1714,7 +1714,7 @@ var techStack = [
|
|
|
1714
1714
|
},
|
|
1715
1715
|
{
|
|
1716
1716
|
name: "Zustand",
|
|
1717
|
-
|
|
1717
|
+
slug: "zustand",
|
|
1718
1718
|
tag: "Zustand",
|
|
1719
1719
|
image: "/images/tech/zustand.png",
|
|
1720
1720
|
description: "A small, fast, and scalable state management solution for React applications.",
|
|
@@ -1731,7 +1731,7 @@ var techStack = [
|
|
|
1731
1731
|
},
|
|
1732
1732
|
{
|
|
1733
1733
|
name: "Zod",
|
|
1734
|
-
|
|
1734
|
+
slug: "zod",
|
|
1735
1735
|
tag: "Zod",
|
|
1736
1736
|
image: "/images/tech/zod.png",
|
|
1737
1737
|
description: "TypeScript-first schema validation with static type inference.",
|
|
@@ -1748,7 +1748,7 @@ var techStack = [
|
|
|
1748
1748
|
},
|
|
1749
1749
|
{
|
|
1750
1750
|
name: "nuqs",
|
|
1751
|
-
|
|
1751
|
+
slug: "nuqs",
|
|
1752
1752
|
tag: "nuqs",
|
|
1753
1753
|
image: "/images/tech/nuqs.png",
|
|
1754
1754
|
description: "A type-safe URL query state management library for Next.js applications.",
|
|
@@ -1765,7 +1765,7 @@ var techStack = [
|
|
|
1765
1765
|
},
|
|
1766
1766
|
{
|
|
1767
1767
|
name: "Trigger.dev",
|
|
1768
|
-
|
|
1768
|
+
slug: "trigger",
|
|
1769
1769
|
tag: "Trigger",
|
|
1770
1770
|
image: "/images/tech/trigger.png",
|
|
1771
1771
|
description: "A developer-first open source background jobs framework for TypeScript.",
|
|
@@ -1782,7 +1782,7 @@ var techStack = [
|
|
|
1782
1782
|
},
|
|
1783
1783
|
{
|
|
1784
1784
|
name: "Terraform",
|
|
1785
|
-
|
|
1785
|
+
slug: "terraform",
|
|
1786
1786
|
tag: "Terraform",
|
|
1787
1787
|
image: "/images/tech/terraform.png",
|
|
1788
1788
|
description: "An open-source infrastructure as code software tool for building, changing, and versioning infrastructure safely and efficiently.",
|
|
@@ -1799,7 +1799,7 @@ var techStack = [
|
|
|
1799
1799
|
},
|
|
1800
1800
|
{
|
|
1801
1801
|
name: "Redux",
|
|
1802
|
-
|
|
1802
|
+
slug: "redux",
|
|
1803
1803
|
tag: "Redux",
|
|
1804
1804
|
image: "/images/tech/redux.png",
|
|
1805
1805
|
description: "A predictable state container for JavaScript apps, helping you write applications that behave consistently.",
|
|
@@ -1816,7 +1816,7 @@ var techStack = [
|
|
|
1816
1816
|
},
|
|
1817
1817
|
{
|
|
1818
1818
|
name: "Serverless",
|
|
1819
|
-
|
|
1819
|
+
slug: "serverless",
|
|
1820
1820
|
tag: "Serverless",
|
|
1821
1821
|
image: "/images/tech/serverless.png",
|
|
1822
1822
|
description: "A cloud computing execution model where the cloud provider dynamically manages the allocation of machine resources.",
|
|
@@ -1832,7 +1832,7 @@ var techStack = [
|
|
|
1832
1832
|
},
|
|
1833
1833
|
{
|
|
1834
1834
|
name: "Docker",
|
|
1835
|
-
|
|
1835
|
+
slug: "docker",
|
|
1836
1836
|
tag: "Docker",
|
|
1837
1837
|
image: "/images/tech/docker.png",
|
|
1838
1838
|
description: "A platform for developing, shipping, and running applications in containers.",
|
|
@@ -1848,7 +1848,7 @@ var techStack = [
|
|
|
1848
1848
|
},
|
|
1849
1849
|
{
|
|
1850
1850
|
name: "RXJS",
|
|
1851
|
-
|
|
1851
|
+
slug: "rxjs",
|
|
1852
1852
|
tag: "RXJS",
|
|
1853
1853
|
image: "/images/tech/rxjs.png",
|
|
1854
1854
|
description: "A library for reactive programming using Observables, to make it easier to compose asynchronous or callback-based code.",
|
|
@@ -1864,7 +1864,7 @@ var techStack = [
|
|
|
1864
1864
|
},
|
|
1865
1865
|
{
|
|
1866
1866
|
name: "Expo",
|
|
1867
|
-
|
|
1867
|
+
slug: "expo",
|
|
1868
1868
|
tag: "Expo",
|
|
1869
1869
|
image: "/images/tech/expo.png",
|
|
1870
1870
|
description: "A set of tools and services for React Native development.",
|
|
@@ -1881,7 +1881,7 @@ var techStack = [
|
|
|
1881
1881
|
},
|
|
1882
1882
|
{
|
|
1883
1883
|
name: "Tailwind CSS",
|
|
1884
|
-
|
|
1884
|
+
slug: "tailwind",
|
|
1885
1885
|
tag: "Tailwind",
|
|
1886
1886
|
image: "/images/tech/tailwind.png",
|
|
1887
1887
|
description: "A utility-first CSS framework for rapid UI development.",
|
|
@@ -1898,7 +1898,7 @@ var techStack = [
|
|
|
1898
1898
|
},
|
|
1899
1899
|
{
|
|
1900
1900
|
name: "Antelope",
|
|
1901
|
-
|
|
1901
|
+
slug: "antelope",
|
|
1902
1902
|
tag: "Antelope",
|
|
1903
1903
|
image: "/images/tech/antelope.png",
|
|
1904
1904
|
description: "A blockchain protocol designed for high performance and scalability, supporting decentralized applications.",
|
|
@@ -1914,7 +1914,7 @@ var techStack = [
|
|
|
1914
1914
|
},
|
|
1915
1915
|
{
|
|
1916
1916
|
name: "C++",
|
|
1917
|
-
|
|
1917
|
+
slug: "cpp",
|
|
1918
1918
|
tag: "C++",
|
|
1919
1919
|
image: "/images/tech/cpp.png",
|
|
1920
1920
|
description: "A general-purpose programming language created as an extension of the C programming language.",
|
|
@@ -1930,7 +1930,7 @@ var techStack = [
|
|
|
1930
1930
|
},
|
|
1931
1931
|
{
|
|
1932
1932
|
name: "EOS",
|
|
1933
|
-
|
|
1933
|
+
slug: "eos",
|
|
1934
1934
|
tag: "EOS",
|
|
1935
1935
|
image: "/images/tech/eos.png",
|
|
1936
1936
|
description: "A blockchain platform designed for the development of decentralized applications (dApps).",
|
|
@@ -1946,7 +1946,7 @@ var techStack = [
|
|
|
1946
1946
|
},
|
|
1947
1947
|
{
|
|
1948
1948
|
name: "Flow Blockchain",
|
|
1949
|
-
|
|
1949
|
+
slug: "flow",
|
|
1950
1950
|
tag: "Flow",
|
|
1951
1951
|
image: "/images/tech/flow.png",
|
|
1952
1952
|
description: "A fast, decentralized, and developer-friendly blockchain, designed as the foundation for a new generation of games, apps, and digital assets.",
|
|
@@ -1962,7 +1962,7 @@ var techStack = [
|
|
|
1962
1962
|
},
|
|
1963
1963
|
{
|
|
1964
1964
|
name: "Polkadot",
|
|
1965
|
-
|
|
1965
|
+
slug: "polkadot",
|
|
1966
1966
|
tag: "Polkadot",
|
|
1967
1967
|
image: "/images/tech/polkadot.png",
|
|
1968
1968
|
description: "A network protocol that allows arbitrary data\u2014not just tokens\u2014to be transferred across blockchains.",
|
|
@@ -1978,7 +1978,7 @@ var techStack = [
|
|
|
1978
1978
|
},
|
|
1979
1979
|
{
|
|
1980
1980
|
name: "Substrate",
|
|
1981
|
-
|
|
1981
|
+
slug: "substrate",
|
|
1982
1982
|
tag: "Substrate",
|
|
1983
1983
|
image: "/images/tech/substrate.png",
|
|
1984
1984
|
description: "A framework for building blockchains, providing a set of tools and libraries for blockchain development.",
|
|
@@ -1994,7 +1994,7 @@ var techStack = [
|
|
|
1994
1994
|
},
|
|
1995
1995
|
{
|
|
1996
1996
|
name: "Flow",
|
|
1997
|
-
|
|
1997
|
+
slug: "flow",
|
|
1998
1998
|
tag: "Flow",
|
|
1999
1999
|
image: "/images/tech/flow.png",
|
|
2000
2000
|
description: "A fast, decentralized, and developer-friendly blockchain, designed as the foundation for a new generation of games, apps, and digital assets.",
|
|
@@ -2010,7 +2010,7 @@ var techStack = [
|
|
|
2010
2010
|
},
|
|
2011
2011
|
{
|
|
2012
2012
|
name: "Niftory",
|
|
2013
|
-
|
|
2013
|
+
slug: "niftory",
|
|
2014
2014
|
tag: "Niftory",
|
|
2015
2015
|
image: "/images/tech/niftory.png",
|
|
2016
2016
|
description: "A platform for creating, managing, and distributing NFTs, providing tools and infrastructure for NFT development.",
|
|
@@ -2026,7 +2026,7 @@ var techStack = [
|
|
|
2026
2026
|
},
|
|
2027
2027
|
{
|
|
2028
2028
|
name: "Dalle",
|
|
2029
|
-
|
|
2029
|
+
slug: "dalle",
|
|
2030
2030
|
tag: "Dalle",
|
|
2031
2031
|
image: "/images/tech/dalle.png",
|
|
2032
2032
|
description: "An AI model developed by OpenAI for generating images from textual descriptions.",
|
|
@@ -2042,7 +2042,7 @@ var techStack = [
|
|
|
2042
2042
|
},
|
|
2043
2043
|
{
|
|
2044
2044
|
name: "OpenAI",
|
|
2045
|
-
|
|
2045
|
+
slug: "openai",
|
|
2046
2046
|
tag: "OpenAI",
|
|
2047
2047
|
image: "/images/tech/openai.png",
|
|
2048
2048
|
description: "An AI research and deployment company, known for developing advanced AI models and technologies.",
|
|
@@ -2058,7 +2058,7 @@ var techStack = [
|
|
|
2058
2058
|
},
|
|
2059
2059
|
{
|
|
2060
2060
|
name: "Biometrics",
|
|
2061
|
-
|
|
2061
|
+
slug: "biometrics",
|
|
2062
2062
|
tag: "Biometrics",
|
|
2063
2063
|
image: "/images/tech/biometrics.png",
|
|
2064
2064
|
description: "Technologies and methods for recognizing individuals based on physical or behavioral characteristics.",
|
|
@@ -2074,7 +2074,7 @@ var techStack = [
|
|
|
2074
2074
|
},
|
|
2075
2075
|
{
|
|
2076
2076
|
name: "AngularJS",
|
|
2077
|
-
|
|
2077
|
+
slug: "angularjs",
|
|
2078
2078
|
tag: "AngularJS",
|
|
2079
2079
|
image: "/images/tech/angularjs.png",
|
|
2080
2080
|
description: "A structural framework for dynamic web apps.",
|
|
@@ -2091,7 +2091,7 @@ var techStack = [
|
|
|
2091
2091
|
},
|
|
2092
2092
|
{
|
|
2093
2093
|
name: "MongoDB",
|
|
2094
|
-
|
|
2094
|
+
slug: "mongodb",
|
|
2095
2095
|
tag: "MongoDB",
|
|
2096
2096
|
image: "/images/tech/mongodb.png",
|
|
2097
2097
|
description: "A document database with the scalability and flexibility that you want with the querying and indexing that you need.",
|
|
@@ -2108,7 +2108,7 @@ var techStack = [
|
|
|
2108
2108
|
},
|
|
2109
2109
|
{
|
|
2110
2110
|
name: "Heroku",
|
|
2111
|
-
|
|
2111
|
+
slug: "heroku",
|
|
2112
2112
|
tag: "Heroku",
|
|
2113
2113
|
image: "/images/tech/heroku.png",
|
|
2114
2114
|
description: "A platform as a service (PaaS) that enables developers to build, run, and operate applications entirely in the cloud.",
|
|
@@ -2124,7 +2124,7 @@ var techStack = [
|
|
|
2124
2124
|
},
|
|
2125
2125
|
{
|
|
2126
2126
|
name: "Bootstrap",
|
|
2127
|
-
|
|
2127
|
+
slug: "bootstrap",
|
|
2128
2128
|
tag: "Bootstrap",
|
|
2129
2129
|
image: "/images/tech/bootstrap.png",
|
|
2130
2130
|
description: "A free and open-source CSS framework directed at responsive, mobile-first front-end web development.",
|
|
@@ -2141,7 +2141,7 @@ var techStack = [
|
|
|
2141
2141
|
},
|
|
2142
2142
|
{
|
|
2143
2143
|
name: "Stripe",
|
|
2144
|
-
|
|
2144
|
+
slug: "stripe",
|
|
2145
2145
|
tag: "Stripe",
|
|
2146
2146
|
image: "/images/tech/stripe.png",
|
|
2147
2147
|
description: "A technology company that builds economic infrastructure for the internet.",
|
|
@@ -2157,7 +2157,7 @@ var techStack = [
|
|
|
2157
2157
|
},
|
|
2158
2158
|
{
|
|
2159
2159
|
name: "Twilio",
|
|
2160
|
-
|
|
2160
|
+
slug: "twilio",
|
|
2161
2161
|
tag: "Twilio",
|
|
2162
2162
|
image: "/images/tech/twilio.png",
|
|
2163
2163
|
description: "A cloud communications platform for building SMS, Voice & Messaging applications on an API.",
|
|
@@ -2173,7 +2173,7 @@ var techStack = [
|
|
|
2173
2173
|
},
|
|
2174
2174
|
{
|
|
2175
2175
|
name: "JavaScript",
|
|
2176
|
-
|
|
2176
|
+
slug: "javascript",
|
|
2177
2177
|
tag: "JavaScript",
|
|
2178
2178
|
image: "/images/tech/javascript.png",
|
|
2179
2179
|
description: "A high-level, just-in-time compiled, object-oriented programming language.",
|
|
@@ -2190,7 +2190,7 @@ var techStack = [
|
|
|
2190
2190
|
},
|
|
2191
2191
|
{
|
|
2192
2192
|
name: "CSS",
|
|
2193
|
-
|
|
2193
|
+
slug: "css",
|
|
2194
2194
|
tag: "CSS",
|
|
2195
2195
|
image: "/images/tech/css.png",
|
|
2196
2196
|
description: "A style sheet language used for describing the presentation of a document written in a markup language like HTML.",
|
|
@@ -2207,7 +2207,7 @@ var techStack = [
|
|
|
2207
2207
|
},
|
|
2208
2208
|
{
|
|
2209
2209
|
name: "Mootools",
|
|
2210
|
-
|
|
2210
|
+
slug: "mootools",
|
|
2211
2211
|
tag: "Mootools",
|
|
2212
2212
|
image: "/images/tech/mootools.png",
|
|
2213
2213
|
description: "A compact, modular, Object-Oriented JavaScript framework designed for the intermediate to advanced JavaScript developer.",
|
|
@@ -2223,7 +2223,7 @@ var techStack = [
|
|
|
2223
2223
|
},
|
|
2224
2224
|
{
|
|
2225
2225
|
name: "Data Charts",
|
|
2226
|
-
|
|
2226
|
+
slug: "data-charts",
|
|
2227
2227
|
tag: "Data Charts",
|
|
2228
2228
|
image: "/images/tech/data-charts.png",
|
|
2229
2229
|
description: "Tools and libraries for creating interactive and dynamic data visualizations.",
|
|
@@ -2239,7 +2239,7 @@ var techStack = [
|
|
|
2239
2239
|
},
|
|
2240
2240
|
{
|
|
2241
2241
|
name: "Ruby on Rails",
|
|
2242
|
-
|
|
2242
|
+
slug: "rails",
|
|
2243
2243
|
tag: "Ruby on Rails",
|
|
2244
2244
|
image: "/images/tech/rails.png",
|
|
2245
2245
|
description: "A web application framework written in Ruby, designed to make programming web applications easier.",
|
|
@@ -2256,7 +2256,7 @@ var techStack = [
|
|
|
2256
2256
|
},
|
|
2257
2257
|
{
|
|
2258
2258
|
name: "Faye",
|
|
2259
|
-
|
|
2259
|
+
slug: "faye",
|
|
2260
2260
|
tag: "Faye",
|
|
2261
2261
|
image: "/images/tech/faye.png",
|
|
2262
2262
|
description: "A publish-subscribe messaging system based on the Bayeux protocol.",
|
|
@@ -2273,7 +2273,7 @@ var techStack = [
|
|
|
2273
2273
|
},
|
|
2274
2274
|
{
|
|
2275
2275
|
name: "LESS",
|
|
2276
|
-
|
|
2276
|
+
slug: "less",
|
|
2277
2277
|
tag: "LESS",
|
|
2278
2278
|
image: "/images/tech/less.png",
|
|
2279
2279
|
description: "A backward-compatible language extension for CSS.",
|
|
@@ -2289,7 +2289,7 @@ var techStack = [
|
|
|
2289
2289
|
},
|
|
2290
2290
|
{
|
|
2291
2291
|
name: "Wordpress",
|
|
2292
|
-
|
|
2292
|
+
slug: "wordpress",
|
|
2293
2293
|
tag: "Wordpress",
|
|
2294
2294
|
image: "/images/tech/wordpress.png",
|
|
2295
2295
|
description: "A free and open-source content management system (CMS) based on PHP and MySQL.",
|
|
@@ -2306,7 +2306,7 @@ var techStack = [
|
|
|
2306
2306
|
},
|
|
2307
2307
|
{
|
|
2308
2308
|
name: "Content Management Systems",
|
|
2309
|
-
|
|
2309
|
+
slug: "cms",
|
|
2310
2310
|
tag: "CMS",
|
|
2311
2311
|
image: "/images/tech/cms.png",
|
|
2312
2312
|
description: "Software applications that enable users to create, manage, and modify content on websites without specialized technical knowledge.",
|
|
@@ -2324,7 +2324,7 @@ var techStack = [
|
|
|
2324
2324
|
},
|
|
2325
2325
|
{
|
|
2326
2326
|
name: "DatoCMS",
|
|
2327
|
-
|
|
2327
|
+
slug: "datocms",
|
|
2328
2328
|
tag: "DatoCMS",
|
|
2329
2329
|
image: "/images/tech/datocms.png",
|
|
2330
2330
|
description: "A headless CMS that offers a flexible content management solution for modern websites and applications.",
|
|
@@ -2341,7 +2341,7 @@ var techStack = [
|
|
|
2341
2341
|
},
|
|
2342
2342
|
{
|
|
2343
2343
|
name: "ViroAR",
|
|
2344
|
-
|
|
2344
|
+
slug: "viroar",
|
|
2345
2345
|
tag: "ViroAR",
|
|
2346
2346
|
image: "/images/tech/viroar.png",
|
|
2347
2347
|
description: "A platform for building AR applications with React Native.",
|
|
@@ -2370,6 +2370,14 @@ function getTechStackByTag(tag) {
|
|
|
2370
2370
|
projects: getProjectsByTechnology(tag)
|
|
2371
2371
|
};
|
|
2372
2372
|
}
|
|
2373
|
+
function getTechStackBySlug(slug) {
|
|
2374
|
+
const tech = techStack.find((tech2) => tech2.slug === slug);
|
|
2375
|
+
if (!tech) return null;
|
|
2376
|
+
return {
|
|
2377
|
+
...tech,
|
|
2378
|
+
projects: getProjectsByTechnology(tech.tag)
|
|
2379
|
+
};
|
|
2380
|
+
}
|
|
2373
2381
|
function getProjectsByTechnology(tag) {
|
|
2374
2382
|
return projects.filter((project) => project.tech.includes(tag));
|
|
2375
2383
|
}
|
|
@@ -2380,6 +2388,7 @@ export {
|
|
|
2380
2388
|
gaboLog,
|
|
2381
2389
|
getProjectBySlug,
|
|
2382
2390
|
getProjectsByTechnology,
|
|
2391
|
+
getTechStackBySlug,
|
|
2383
2392
|
getTechStackByTag,
|
|
2384
2393
|
projects,
|
|
2385
2394
|
techStack
|