gaboesquivel 3.9.2 → 3.9.4
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 +216 -150
- package/dist/index.mjs +215 -150
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -30,7 +30,7 @@ interface TechStackItem {
|
|
|
30
30
|
interface TechStackItemWithProjects extends TechStackItem {
|
|
31
31
|
projects: Project[];
|
|
32
32
|
}
|
|
33
|
-
type Tag = 'TypeScript' | 'Solidity' | 'Foundry' | 'NextJS' | 'Ponder' | 'Postgres' | 'Viem' | 'Wagmi' | 'EVM' | 'ThirdWeb' | 'Alchemy' | 'Hardhat' | 'NodeJS' | 'PostgreSQL' | 'GraphQL' | 'AI SDK' | 'LLMs' | 'WebGL' | 'Ethereum' | 'Ethers' | 'NFT' | 'AWS' | 'ReactJS' | 'React Native' | 'EOS' | 'Antelope' | 'C++' | 'GCP' | 'Serverless' | 'Docker' | 'RXJS' | 'Niftory' | 'Dalle' | 'Tailwind' | 'Ruby on Rails' | 'Spree' | 'Heroku' | 'MongoDB' | 'AngularJS' | 'Stripe' | 'Twilio' | 'SASS' | 'jQuery' | 'Lodash' | 'Grapnel.js' | 'Grunt' | 'Divshot' | 'PHP' | 'HTML5' | 'AJAX' | 'Handlebars' | 'Brightcove API' | 'require.js' | 'JSP (Struts)' | 'Omniture' | 'Adobe mBox' | 'Facebook API' | 'Dojo' | 'CSS' | 'Mootools' | 'Wordpress' | 'CMS' | 'Data Charts' | 'Bootstrap' | 'Faye' | 'LESS' | 'Azure' | 'Polkadot' | 'Substrate' | 'Flow' | 'OpenAI' | 'Biometrics' | 'JavaScript' | 'Expo' | 'DatoCMS' | 'ShadcnUI' | 'Trigger' | 'Supabase' | 'Stitches' | 'Zustand' | 'Zod' | '
|
|
33
|
+
type Tag = 'TypeScript' | 'Solidity' | 'Foundry' | 'NextJS' | 'Ponder' | 'Postgres' | 'Viem' | 'Wagmi' | 'EVM' | 'ThirdWeb' | 'Alchemy' | 'Hardhat' | 'NodeJS' | 'PostgreSQL' | 'GraphQL' | 'AI SDK' | 'LLMs' | 'WebGL' | 'Ethereum' | 'Ethers' | 'NFT' | 'AWS' | 'ReactJS' | 'React Native' | 'EOS' | 'Antelope' | 'C++' | 'GCP' | 'Serverless' | 'Docker' | 'RXJS' | 'Niftory' | 'Dalle' | 'Tailwind' | 'Ruby on Rails' | 'Spree' | 'Heroku' | 'MongoDB' | 'AngularJS' | 'Stripe' | 'Twilio' | 'SASS' | 'jQuery' | 'Lodash' | 'Grapnel.js' | 'Grunt' | 'Divshot' | 'PHP' | 'HTML5' | 'AJAX' | 'Handlebars' | 'Brightcove API' | 'require.js' | 'JSP (Struts)' | 'Omniture' | 'Adobe mBox' | 'Facebook API' | 'Dojo' | 'CSS' | 'Mootools' | 'Wordpress' | 'CMS' | 'Data Charts' | 'Bootstrap' | 'Faye' | 'LESS' | 'Azure' | 'Polkadot' | 'Substrate' | 'Flow' | 'OpenAI' | 'Biometrics' | 'JavaScript' | 'Expo' | 'DatoCMS' | 'ShadcnUI' | 'Trigger' | 'Supabase' | 'Stitches' | 'Zustand' | 'Zod' | 'TanStack Query' | 'TanStack Form' | 'TanStack Start' | 'nuqs' | 'WebAuthN' | 'Terraform' | 'Twitter API' | 'eBay API' | 'ViroAR' | 'Redux';
|
|
34
34
|
|
|
35
35
|
declare const projects: Project[];
|
|
36
36
|
|
|
@@ -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
|
@@ -30,7 +30,7 @@ interface TechStackItem {
|
|
|
30
30
|
interface TechStackItemWithProjects extends TechStackItem {
|
|
31
31
|
projects: Project[];
|
|
32
32
|
}
|
|
33
|
-
type Tag = 'TypeScript' | 'Solidity' | 'Foundry' | 'NextJS' | 'Ponder' | 'Postgres' | 'Viem' | 'Wagmi' | 'EVM' | 'ThirdWeb' | 'Alchemy' | 'Hardhat' | 'NodeJS' | 'PostgreSQL' | 'GraphQL' | 'AI SDK' | 'LLMs' | 'WebGL' | 'Ethereum' | 'Ethers' | 'NFT' | 'AWS' | 'ReactJS' | 'React Native' | 'EOS' | 'Antelope' | 'C++' | 'GCP' | 'Serverless' | 'Docker' | 'RXJS' | 'Niftory' | 'Dalle' | 'Tailwind' | 'Ruby on Rails' | 'Spree' | 'Heroku' | 'MongoDB' | 'AngularJS' | 'Stripe' | 'Twilio' | 'SASS' | 'jQuery' | 'Lodash' | 'Grapnel.js' | 'Grunt' | 'Divshot' | 'PHP' | 'HTML5' | 'AJAX' | 'Handlebars' | 'Brightcove API' | 'require.js' | 'JSP (Struts)' | 'Omniture' | 'Adobe mBox' | 'Facebook API' | 'Dojo' | 'CSS' | 'Mootools' | 'Wordpress' | 'CMS' | 'Data Charts' | 'Bootstrap' | 'Faye' | 'LESS' | 'Azure' | 'Polkadot' | 'Substrate' | 'Flow' | 'OpenAI' | 'Biometrics' | 'JavaScript' | 'Expo' | 'DatoCMS' | 'ShadcnUI' | 'Trigger' | 'Supabase' | 'Stitches' | 'Zustand' | 'Zod' | '
|
|
33
|
+
type Tag = 'TypeScript' | 'Solidity' | 'Foundry' | 'NextJS' | 'Ponder' | 'Postgres' | 'Viem' | 'Wagmi' | 'EVM' | 'ThirdWeb' | 'Alchemy' | 'Hardhat' | 'NodeJS' | 'PostgreSQL' | 'GraphQL' | 'AI SDK' | 'LLMs' | 'WebGL' | 'Ethereum' | 'Ethers' | 'NFT' | 'AWS' | 'ReactJS' | 'React Native' | 'EOS' | 'Antelope' | 'C++' | 'GCP' | 'Serverless' | 'Docker' | 'RXJS' | 'Niftory' | 'Dalle' | 'Tailwind' | 'Ruby on Rails' | 'Spree' | 'Heroku' | 'MongoDB' | 'AngularJS' | 'Stripe' | 'Twilio' | 'SASS' | 'jQuery' | 'Lodash' | 'Grapnel.js' | 'Grunt' | 'Divshot' | 'PHP' | 'HTML5' | 'AJAX' | 'Handlebars' | 'Brightcove API' | 'require.js' | 'JSP (Struts)' | 'Omniture' | 'Adobe mBox' | 'Facebook API' | 'Dojo' | 'CSS' | 'Mootools' | 'Wordpress' | 'CMS' | 'Data Charts' | 'Bootstrap' | 'Faye' | 'LESS' | 'Azure' | 'Polkadot' | 'Substrate' | 'Flow' | 'OpenAI' | 'Biometrics' | 'JavaScript' | 'Expo' | 'DatoCMS' | 'ShadcnUI' | 'Trigger' | 'Supabase' | 'Stitches' | 'Zustand' | 'Zod' | 'TanStack Query' | 'TanStack Form' | 'TanStack Start' | 'nuqs' | 'WebAuthN' | 'Terraform' | 'Twitter API' | 'eBay API' | 'ViroAR' | 'Redux';
|
|
34
34
|
|
|
35
35
|
declare const projects: Project[];
|
|
36
36
|
|
|
@@ -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
|
|
@@ -41,7 +42,9 @@ var projects = [
|
|
|
41
42
|
"Expo",
|
|
42
43
|
"OpenAI",
|
|
43
44
|
"AI SDK",
|
|
44
|
-
"
|
|
45
|
+
"TanStack Query",
|
|
46
|
+
"TanStack Form",
|
|
47
|
+
"TanStack Start",
|
|
45
48
|
"Tailwind",
|
|
46
49
|
"LLMs"
|
|
47
50
|
],
|
|
@@ -77,7 +80,7 @@ var projects = [
|
|
|
77
80
|
"Supabase",
|
|
78
81
|
"ShadcnUI",
|
|
79
82
|
"Tailwind",
|
|
80
|
-
"
|
|
83
|
+
"TanStack Query",
|
|
81
84
|
"Zod",
|
|
82
85
|
"nuqs",
|
|
83
86
|
"EVM",
|
|
@@ -117,7 +120,7 @@ var projects = [
|
|
|
117
120
|
"Ethereum",
|
|
118
121
|
"ShadcnUI",
|
|
119
122
|
"Tailwind",
|
|
120
|
-
"
|
|
123
|
+
"TanStack Query",
|
|
121
124
|
"Zod",
|
|
122
125
|
"nuqs",
|
|
123
126
|
"Supabase"
|
|
@@ -158,7 +161,7 @@ var projects = [
|
|
|
158
161
|
"Supabase",
|
|
159
162
|
"ShadcnUI",
|
|
160
163
|
"Tailwind",
|
|
161
|
-
"
|
|
164
|
+
"TanStack Query",
|
|
162
165
|
"Zod",
|
|
163
166
|
"nuqs",
|
|
164
167
|
"OpenAI",
|
|
@@ -202,7 +205,7 @@ var projects = [
|
|
|
202
205
|
"GCP",
|
|
203
206
|
"ShadcnUI",
|
|
204
207
|
"Tailwind",
|
|
205
|
-
"
|
|
208
|
+
"TanStack Query",
|
|
206
209
|
"Zod",
|
|
207
210
|
"nuqs"
|
|
208
211
|
],
|
|
@@ -295,6 +298,8 @@ var projects = [
|
|
|
295
298
|
"Antelope",
|
|
296
299
|
"C++",
|
|
297
300
|
"ReactJS",
|
|
301
|
+
"WebAuthN",
|
|
302
|
+
"Biometrics",
|
|
298
303
|
"GCP",
|
|
299
304
|
"NodeJS",
|
|
300
305
|
"GraphQL",
|
|
@@ -1285,37 +1290,58 @@ var techStack = [
|
|
|
1285
1290
|
]
|
|
1286
1291
|
},
|
|
1287
1292
|
{
|
|
1288
|
-
name: "
|
|
1289
|
-
slug: "
|
|
1290
|
-
tag: "
|
|
1291
|
-
image: "/images/tech/
|
|
1292
|
-
description: "A
|
|
1293
|
-
link: "https://
|
|
1294
|
-
since: "
|
|
1293
|
+
name: "Node.js",
|
|
1294
|
+
slug: "nodejs",
|
|
1295
|
+
tag: "NodeJS",
|
|
1296
|
+
image: "/images/tech/nodejs.png",
|
|
1297
|
+
description: "A JavaScript runtime built on Chrome's V8 JavaScript engine, designed to build scalable network applications.",
|
|
1298
|
+
link: "https://nodejs.org/",
|
|
1299
|
+
since: "2009",
|
|
1295
1300
|
intro: [
|
|
1296
|
-
"
|
|
1297
|
-
"It is
|
|
1301
|
+
"Node.js is known for its event-driven, non-blocking I/O model, which makes it lightweight and efficient for building web servers and applications.",
|
|
1302
|
+
"It is widely used for developing server-side and networking applications."
|
|
1298
1303
|
],
|
|
1299
1304
|
experience: [
|
|
1300
|
-
"
|
|
1301
|
-
"
|
|
1302
|
-
"
|
|
1305
|
+
"Founded Costa Rica JS, a meetup group that became Central America's largest JavaScript community, promoting open-source and collaborative development.",
|
|
1306
|
+
"Utilized Node.js in projects like Eat Arcade and 4Tius Fitness Data Tracker for building scalable backend services, adhering to the principle of keeping it simple.",
|
|
1307
|
+
"Contributed to the development of decentralized applications like Emanate and Sense Chat, leveraging Node.js for efficient and secure communication.",
|
|
1308
|
+
"Implemented Node.js in projects like Wink for server-side development and real-time data processing."
|
|
1303
1309
|
]
|
|
1304
1310
|
},
|
|
1305
1311
|
{
|
|
1306
|
-
name: "
|
|
1307
|
-
slug: "
|
|
1308
|
-
tag: "
|
|
1309
|
-
image: "/images/tech/
|
|
1310
|
-
description: "A
|
|
1311
|
-
link: "https://
|
|
1312
|
-
since: "
|
|
1312
|
+
name: "ReactJS",
|
|
1313
|
+
slug: "reactjs",
|
|
1314
|
+
tag: "ReactJS",
|
|
1315
|
+
image: "/images/tech/reactjs.png",
|
|
1316
|
+
description: "A JavaScript library for building user interfaces, maintained by Facebook and a community of individual developers and companies.",
|
|
1317
|
+
link: "https://reactjs.org/",
|
|
1318
|
+
since: "2013",
|
|
1313
1319
|
intro: [
|
|
1314
|
-
"
|
|
1315
|
-
"It
|
|
1320
|
+
"ReactJS is a popular JavaScript library for building user interfaces, particularly for single-page applications.",
|
|
1321
|
+
"It allows developers to create large web applications that can update and render efficiently in response to data changes."
|
|
1316
1322
|
],
|
|
1317
1323
|
experience: [
|
|
1318
|
-
"Utilized
|
|
1324
|
+
"Utilized ReactJS in various projects to build dynamic and responsive user interfaces.",
|
|
1325
|
+
"Implemented ReactJS in the development of web applications like Eat Arcade and 4Tius Fitness Data Tracker, focusing on performance and maintainability.",
|
|
1326
|
+
"Leveraged ReactJS's component-based architecture to enhance code reusability and scalability in projects like Wink and Sense Chat."
|
|
1327
|
+
]
|
|
1328
|
+
},
|
|
1329
|
+
{
|
|
1330
|
+
name: "React Native",
|
|
1331
|
+
slug: "react-native",
|
|
1332
|
+
tag: "React Native",
|
|
1333
|
+
image: "/images/tech/react-native.png",
|
|
1334
|
+
description: "A framework for building native apps using React.",
|
|
1335
|
+
link: "https://reactnative.dev/",
|
|
1336
|
+
since: "2015",
|
|
1337
|
+
intro: [
|
|
1338
|
+
"React Native allows developers to build mobile applications using React, enabling a single codebase for both iOS and Android.",
|
|
1339
|
+
"It is known for its ability to create truly native apps with a consistent developer experience."
|
|
1340
|
+
],
|
|
1341
|
+
experience: [
|
|
1342
|
+
"Developed the first version of Wink's mobile app, focusing on seamless user experience and integration with AWS services.",
|
|
1343
|
+
"Enhanced the Sense.chat app's performance and integrated it with the EOS mainnet for secure transactions.",
|
|
1344
|
+
"Improved Tractor Supply's mobile app by developing an augmented reality feature and optimizing code quality."
|
|
1319
1345
|
]
|
|
1320
1346
|
},
|
|
1321
1347
|
{
|
|
@@ -1336,40 +1362,6 @@ var techStack = [
|
|
|
1336
1362
|
"Enhanced user experience in Masterbots and ZTX by leveraging Next.js features for seamless integration with blockchain technologies."
|
|
1337
1363
|
]
|
|
1338
1364
|
},
|
|
1339
|
-
{
|
|
1340
|
-
name: "Ponder",
|
|
1341
|
-
slug: "ponder",
|
|
1342
|
-
tag: "Ponder",
|
|
1343
|
-
image: "/images/tech/ponder.png",
|
|
1344
|
-
description: "A tool for indexing and querying blockchain data.",
|
|
1345
|
-
link: "https://ponder.io/",
|
|
1346
|
-
since: "2024",
|
|
1347
|
-
intro: [
|
|
1348
|
-
"Ponder is a powerful tool for indexing and querying blockchain data, making it easier to build responsive dApps.",
|
|
1349
|
-
"It provides real-time data processing capabilities, enhancing the performance of decentralized applications."
|
|
1350
|
-
],
|
|
1351
|
-
experience: [
|
|
1352
|
-
"Utilized Ponder in projects like BasilicEVM for efficient data indexing and real-time updates.",
|
|
1353
|
-
"Implemented Ponder to improve data retrieval and processing in blockchain applications."
|
|
1354
|
-
]
|
|
1355
|
-
},
|
|
1356
|
-
{
|
|
1357
|
-
name: "PostgreSQL",
|
|
1358
|
-
slug: "postgresql",
|
|
1359
|
-
tag: "Postgres",
|
|
1360
|
-
image: "/images/tech/postgresql.png",
|
|
1361
|
-
description: "A powerful, open-source object-relational database system with a strong reputation for reliability, feature robustness, and performance.",
|
|
1362
|
-
link: "https://www.postgresql.org/",
|
|
1363
|
-
since: "2012",
|
|
1364
|
-
intro: [
|
|
1365
|
-
"PostgreSQL is a highly stable database management system, used by many companies and organizations to store and manage their data.",
|
|
1366
|
-
"It supports advanced data types and performance optimization features, making it a popular choice for complex applications."
|
|
1367
|
-
],
|
|
1368
|
-
experience: [
|
|
1369
|
-
"Implemented PostgreSQL in projects like BitLauncher and RareMint for efficient data management and querying.",
|
|
1370
|
-
"Utilized PostgreSQL in projects like EOS Costa Rica and bitcashBank for robust database solutions."
|
|
1371
|
-
]
|
|
1372
|
-
},
|
|
1373
1365
|
{
|
|
1374
1366
|
name: "Viem",
|
|
1375
1367
|
slug: "viem",
|
|
@@ -1406,6 +1398,59 @@ var techStack = [
|
|
|
1406
1398
|
"Utilized Wagmi in projects like bitlauncher for efficient Ethereum interactions."
|
|
1407
1399
|
]
|
|
1408
1400
|
},
|
|
1401
|
+
{
|
|
1402
|
+
name: "EthersJS",
|
|
1403
|
+
slug: "ethersjs",
|
|
1404
|
+
tag: "Ethers",
|
|
1405
|
+
image: "/images/tech/ethersjs.png",
|
|
1406
|
+
description: "A library for interacting with the Ethereum blockchain and its ecosystem.",
|
|
1407
|
+
link: "https://docs.ethers.io/v5/",
|
|
1408
|
+
since: "2017",
|
|
1409
|
+
intro: [
|
|
1410
|
+
"EthersJS is a library designed to interact with the Ethereum blockchain, providing a simple and consistent interface for developers.",
|
|
1411
|
+
"It is widely used for its ease of use and comprehensive documentation, making it a popular choice for Ethereum development."
|
|
1412
|
+
],
|
|
1413
|
+
experience: [
|
|
1414
|
+
"Utilized EthersJS in projects like BasilicEVM for seamless interaction with the Ethereum blockchain.",
|
|
1415
|
+
"Implemented EthersJS in RareMint for efficient smart contract interactions and NFT data indexing.",
|
|
1416
|
+
"Developed a WebGL EVM wallet connector using EthersJS at ZTX, enabling secure blockchain transactions within the metaverse platform.",
|
|
1417
|
+
"Led the architecture of Knowledge.io's token system using EthersJS for secure and efficient blockchain interactions."
|
|
1418
|
+
]
|
|
1419
|
+
},
|
|
1420
|
+
{
|
|
1421
|
+
name: "Ponder",
|
|
1422
|
+
slug: "ponder",
|
|
1423
|
+
tag: "Ponder",
|
|
1424
|
+
image: "/images/tech/ponder.png",
|
|
1425
|
+
description: "A tool for indexing and querying blockchain data.",
|
|
1426
|
+
link: "https://ponder.io/",
|
|
1427
|
+
since: "2024",
|
|
1428
|
+
intro: [
|
|
1429
|
+
"Ponder is a powerful tool for indexing and querying blockchain data, making it easier to build responsive dApps.",
|
|
1430
|
+
"It provides real-time data processing capabilities, enhancing the performance of decentralized applications."
|
|
1431
|
+
],
|
|
1432
|
+
experience: [
|
|
1433
|
+
"Utilized Ponder in projects like BasilicEVM for efficient data indexing and real-time updates.",
|
|
1434
|
+
"Implemented Ponder to improve data retrieval and processing in blockchain applications."
|
|
1435
|
+
]
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
name: "PostgreSQL",
|
|
1439
|
+
slug: "postgresql",
|
|
1440
|
+
tag: "Postgres",
|
|
1441
|
+
image: "/images/tech/postgresql.png",
|
|
1442
|
+
description: "A powerful, open-source object-relational database system with a strong reputation for reliability, feature robustness, and performance.",
|
|
1443
|
+
link: "https://www.postgresql.org/",
|
|
1444
|
+
since: "2012",
|
|
1445
|
+
intro: [
|
|
1446
|
+
"PostgreSQL is a highly stable database management system, used by many companies and organizations to store and manage their data.",
|
|
1447
|
+
"It supports advanced data types and performance optimization features, making it a popular choice for complex applications."
|
|
1448
|
+
],
|
|
1449
|
+
experience: [
|
|
1450
|
+
"Implemented PostgreSQL in projects like BitLauncher and RareMint for efficient data management and querying.",
|
|
1451
|
+
"Utilized PostgreSQL in projects like EOS Costa Rica and bitcashBank for robust database solutions."
|
|
1452
|
+
]
|
|
1453
|
+
},
|
|
1409
1454
|
{
|
|
1410
1455
|
name: "EVM",
|
|
1411
1456
|
slug: "evm",
|
|
@@ -1423,6 +1468,72 @@ var techStack = [
|
|
|
1423
1468
|
"Utilized EVM in projects like bitcashBank for decentralized application development."
|
|
1424
1469
|
]
|
|
1425
1470
|
},
|
|
1471
|
+
{
|
|
1472
|
+
name: "Solidity",
|
|
1473
|
+
slug: "solidity",
|
|
1474
|
+
tag: "Solidity",
|
|
1475
|
+
image: "/images/tech/solidity.png",
|
|
1476
|
+
description: "A contract-oriented programming language for writing smart contracts on Ethereum.",
|
|
1477
|
+
link: "https://soliditylang.org/",
|
|
1478
|
+
since: "2017",
|
|
1479
|
+
intro: [
|
|
1480
|
+
"Solidity is the primary language for writing smart contracts on Ethereum and other EVM-compatible blockchains.",
|
|
1481
|
+
"It is designed to target the Ethereum Virtual Machine (EVM) and is influenced by C++, Python, and JavaScript."
|
|
1482
|
+
],
|
|
1483
|
+
experience: [
|
|
1484
|
+
"Developed smart contracts for the Knowledge ICO, focusing on security and efficiency, embodying the principle of keeping it simple.",
|
|
1485
|
+
"Contributed to the development of asset-backed NFTs on Ethereum for RareMint, demonstrating the transformative power of blockchain technology.",
|
|
1486
|
+
"Utilized Solidity in projects like BasilicEVM and bitlauncher for smart contract development and blockchain interactions."
|
|
1487
|
+
]
|
|
1488
|
+
},
|
|
1489
|
+
{
|
|
1490
|
+
name: "Foundry",
|
|
1491
|
+
slug: "foundry",
|
|
1492
|
+
tag: "Foundry",
|
|
1493
|
+
image: "/images/tech/foundry.png",
|
|
1494
|
+
description: "A blazing fast, portable, and modular toolkit for Ethereum application development.",
|
|
1495
|
+
link: "https://getfoundry.sh/",
|
|
1496
|
+
since: "2024",
|
|
1497
|
+
intro: [
|
|
1498
|
+
"Foundry is a toolkit for Ethereum application development, known for its speed and modularity.",
|
|
1499
|
+
"It provides a suite of tools for building, testing, and deploying smart contracts."
|
|
1500
|
+
],
|
|
1501
|
+
experience: [
|
|
1502
|
+
"Utilized Foundry in projects like BasilicEVM for efficient smart contract development and testing."
|
|
1503
|
+
]
|
|
1504
|
+
},
|
|
1505
|
+
{
|
|
1506
|
+
name: "AI SDK",
|
|
1507
|
+
slug: "ai-sdk",
|
|
1508
|
+
tag: "AI SDK",
|
|
1509
|
+
image: "/images/tech/ai-sdk.png",
|
|
1510
|
+
description: "Software Development Kits for integrating AI capabilities into applications.",
|
|
1511
|
+
link: "https://en.wikipedia.org/wiki/Software_development_kit",
|
|
1512
|
+
since: "2023",
|
|
1513
|
+
intro: [
|
|
1514
|
+
"AI SDKs provide tools and libraries for integrating AI capabilities into applications, enhancing functionality and user experience.",
|
|
1515
|
+
"They are used in various applications, from chatbots to data analysis and automation."
|
|
1516
|
+
],
|
|
1517
|
+
experience: [
|
|
1518
|
+
"Implemented AI SDKs in projects like Masterbots for advanced AI-driven features and automation."
|
|
1519
|
+
]
|
|
1520
|
+
},
|
|
1521
|
+
{
|
|
1522
|
+
name: "LLMs",
|
|
1523
|
+
slug: "llms",
|
|
1524
|
+
tag: "LLMs",
|
|
1525
|
+
image: "/images/tech/llms.png",
|
|
1526
|
+
description: "Large Language Models used for natural language processing and understanding.",
|
|
1527
|
+
link: "https://en.wikipedia.org/wiki/Language_model",
|
|
1528
|
+
since: "2023",
|
|
1529
|
+
intro: [
|
|
1530
|
+
"LLMs are advanced models used for natural language processing, enabling applications to understand and generate human-like text.",
|
|
1531
|
+
"They are widely used in chatbots, translation services, and content generation."
|
|
1532
|
+
],
|
|
1533
|
+
experience: [
|
|
1534
|
+
"Utilized LLMs in projects like Masterbots for enhanced natural language processing and user interaction."
|
|
1535
|
+
]
|
|
1536
|
+
},
|
|
1426
1537
|
{
|
|
1427
1538
|
name: "ThirdWeb",
|
|
1428
1539
|
slug: "thirdweb",
|
|
@@ -1439,25 +1550,6 @@ var techStack = [
|
|
|
1439
1550
|
"Utilized ThirdWeb in projects like BasilicEVM for streamlined Web3 application development."
|
|
1440
1551
|
]
|
|
1441
1552
|
},
|
|
1442
|
-
{
|
|
1443
|
-
name: "EthersJS",
|
|
1444
|
-
slug: "ethersjs",
|
|
1445
|
-
tag: "Ethers",
|
|
1446
|
-
image: "/images/tech/ethersjs.png",
|
|
1447
|
-
description: "A library for interacting with the Ethereum blockchain and its ecosystem.",
|
|
1448
|
-
link: "https://docs.ethers.io/v5/",
|
|
1449
|
-
since: "2017",
|
|
1450
|
-
intro: [
|
|
1451
|
-
"EthersJS is a library designed to interact with the Ethereum blockchain, providing a simple and consistent interface for developers.",
|
|
1452
|
-
"It is widely used for its ease of use and comprehensive documentation, making it a popular choice for Ethereum development."
|
|
1453
|
-
],
|
|
1454
|
-
experience: [
|
|
1455
|
-
"Utilized EthersJS in projects like BasilicEVM for seamless interaction with the Ethereum blockchain.",
|
|
1456
|
-
"Implemented EthersJS in RareMint for efficient smart contract interactions and NFT data indexing.",
|
|
1457
|
-
"Developed a WebGL EVM wallet connector using EthersJS at ZTX, enabling secure blockchain transactions within the metaverse platform.",
|
|
1458
|
-
"Led the architecture of Knowledge.io's token system using EthersJS for secure and efficient blockchain interactions."
|
|
1459
|
-
]
|
|
1460
|
-
},
|
|
1461
1553
|
{
|
|
1462
1554
|
name: "Alchemy",
|
|
1463
1555
|
slug: "alchemy",
|
|
@@ -1490,25 +1582,6 @@ var techStack = [
|
|
|
1490
1582
|
"Utilized Hardhat in projects like BitLauncher for smart contract development and testing."
|
|
1491
1583
|
]
|
|
1492
1584
|
},
|
|
1493
|
-
{
|
|
1494
|
-
name: "Node.js",
|
|
1495
|
-
slug: "nodejs",
|
|
1496
|
-
tag: "NodeJS",
|
|
1497
|
-
image: "/images/tech/nodejs.png",
|
|
1498
|
-
description: "A JavaScript runtime built on Chrome's V8 JavaScript engine, designed to build scalable network applications.",
|
|
1499
|
-
link: "https://nodejs.org/",
|
|
1500
|
-
since: "2009",
|
|
1501
|
-
intro: [
|
|
1502
|
-
"Node.js is known for its event-driven, non-blocking I/O model, which makes it lightweight and efficient for building web servers and applications.",
|
|
1503
|
-
"It is widely used for developing server-side and networking applications."
|
|
1504
|
-
],
|
|
1505
|
-
experience: [
|
|
1506
|
-
"Founded Costa Rica JS, a meetup group that became Central America's largest JavaScript community, promoting open-source and collaborative development.",
|
|
1507
|
-
"Utilized Node.js in projects like Eat Arcade and 4Tius Fitness Data Tracker for building scalable backend services, adhering to the principle of keeping it simple.",
|
|
1508
|
-
"Contributed to the development of decentralized applications like Emanate and Sense Chat, leveraging Node.js for efficient and secure communication.",
|
|
1509
|
-
"Implemented Node.js in projects like Wink for server-side development and real-time data processing."
|
|
1510
|
-
]
|
|
1511
|
-
},
|
|
1512
1585
|
{
|
|
1513
1586
|
name: "GraphQL",
|
|
1514
1587
|
slug: "graphql",
|
|
@@ -1526,24 +1599,6 @@ var techStack = [
|
|
|
1526
1599
|
"Utilized GraphQL in projects like EOS Costa Rica for flexible and efficient API development."
|
|
1527
1600
|
]
|
|
1528
1601
|
},
|
|
1529
|
-
{
|
|
1530
|
-
name: "React Native",
|
|
1531
|
-
slug: "react-native",
|
|
1532
|
-
tag: "React Native",
|
|
1533
|
-
image: "/images/tech/react-native.png",
|
|
1534
|
-
description: "A framework for building native apps using React.",
|
|
1535
|
-
link: "https://reactnative.dev/",
|
|
1536
|
-
since: "2015",
|
|
1537
|
-
intro: [
|
|
1538
|
-
"React Native allows developers to build mobile applications using React, enabling a single codebase for both iOS and Android.",
|
|
1539
|
-
"It is known for its ability to create truly native apps with a consistent developer experience."
|
|
1540
|
-
],
|
|
1541
|
-
experience: [
|
|
1542
|
-
"Developed the first version of Wink's mobile app, focusing on seamless user experience and integration with AWS services.",
|
|
1543
|
-
"Enhanced the Sense.chat app's performance and integrated it with the EOS mainnet for secure transactions.",
|
|
1544
|
-
"Improved Tractor Supply's mobile app by developing an augmented reality feature and optimizing code quality."
|
|
1545
|
-
]
|
|
1546
|
-
},
|
|
1547
1602
|
{
|
|
1548
1603
|
name: "WebGL",
|
|
1549
1604
|
slug: "webgl",
|
|
@@ -1613,7 +1668,7 @@ var techStack = [
|
|
|
1613
1668
|
{
|
|
1614
1669
|
name: "TanStack Query",
|
|
1615
1670
|
slug: "tanstack",
|
|
1616
|
-
tag: "
|
|
1671
|
+
tag: "TanStack Query",
|
|
1617
1672
|
image: "/images/tech/tanstack.png",
|
|
1618
1673
|
description: "Powerful asynchronous state management for fetching, caching, and updating data in React applications.",
|
|
1619
1674
|
link: "https://tanstack.com/query/latest",
|
|
@@ -1627,6 +1682,40 @@ var techStack = [
|
|
|
1627
1682
|
"Utilized query invalidation and refetching strategies to keep UI data fresh and responsive."
|
|
1628
1683
|
]
|
|
1629
1684
|
},
|
|
1685
|
+
{
|
|
1686
|
+
name: "TanStack Form",
|
|
1687
|
+
slug: "tanstack-form",
|
|
1688
|
+
tag: "TanStack Form",
|
|
1689
|
+
image: "/images/tech/tanstack-form.png",
|
|
1690
|
+
description: "A powerful form library for React applications, providing easy-to-use hooks for managing form state and validation.",
|
|
1691
|
+
link: "https://tanstack.com/form/latest",
|
|
1692
|
+
since: "2022",
|
|
1693
|
+
intro: [
|
|
1694
|
+
"TanStack Form simplifies form management in React applications, offering hooks for state management and validation.",
|
|
1695
|
+
"It provides a flexible and extensible API for building complex forms with ease."
|
|
1696
|
+
],
|
|
1697
|
+
experience: [
|
|
1698
|
+
"Implemented TanStack Form in projects like BasilicEVM and bitlauncher for efficient form state management and validation.",
|
|
1699
|
+
"Utilized TanStack Form to create dynamic and responsive forms, enhancing user experience."
|
|
1700
|
+
]
|
|
1701
|
+
},
|
|
1702
|
+
{
|
|
1703
|
+
name: "TanStack Start",
|
|
1704
|
+
slug: "tanstack-start",
|
|
1705
|
+
tag: "TanStack Start",
|
|
1706
|
+
image: "/images/tech/tanstack-start.png",
|
|
1707
|
+
description: "A starter kit for building modern web applications with TanStack libraries.",
|
|
1708
|
+
link: "https://tanstack.com/start/latest",
|
|
1709
|
+
since: "2023",
|
|
1710
|
+
intro: [
|
|
1711
|
+
"TanStack Start provides a starter kit for building modern web applications using TanStack libraries.",
|
|
1712
|
+
"It includes pre-configured setups for popular tools and libraries, streamlining the development process."
|
|
1713
|
+
],
|
|
1714
|
+
experience: [
|
|
1715
|
+
"Utilized TanStack Start in projects like BasilicEVM and bitlauncher for quick and efficient project setup.",
|
|
1716
|
+
"Leveraged TanStack Start to integrate TanStack libraries seamlessly, accelerating development workflows."
|
|
1717
|
+
]
|
|
1718
|
+
},
|
|
1630
1719
|
{
|
|
1631
1720
|
name: "WebAuthn",
|
|
1632
1721
|
slug: "webauthn",
|
|
@@ -1676,38 +1765,6 @@ var techStack = [
|
|
|
1676
1765
|
"Implemented NFT solutions in projects like RareMint and ZTX for digital asset creation and trading."
|
|
1677
1766
|
]
|
|
1678
1767
|
},
|
|
1679
|
-
{
|
|
1680
|
-
name: "AI SDK",
|
|
1681
|
-
slug: "ai-sdk",
|
|
1682
|
-
tag: "AI SDK",
|
|
1683
|
-
image: "/images/tech/ai-sdk.png",
|
|
1684
|
-
description: "Software Development Kits for integrating AI capabilities into applications.",
|
|
1685
|
-
link: "https://en.wikipedia.org/wiki/Software_development_kit",
|
|
1686
|
-
since: "2023",
|
|
1687
|
-
intro: [
|
|
1688
|
-
"AI SDKs provide tools and libraries for integrating AI capabilities into applications, enhancing functionality and user experience.",
|
|
1689
|
-
"They are used in various applications, from chatbots to data analysis and automation."
|
|
1690
|
-
],
|
|
1691
|
-
experience: [
|
|
1692
|
-
"Implemented AI SDKs in projects like Masterbots for advanced AI-driven features and automation."
|
|
1693
|
-
]
|
|
1694
|
-
},
|
|
1695
|
-
{
|
|
1696
|
-
name: "LLMs",
|
|
1697
|
-
slug: "llms",
|
|
1698
|
-
tag: "LLMs",
|
|
1699
|
-
image: "/images/tech/llms.png",
|
|
1700
|
-
description: "Large Language Models used for natural language processing and understanding.",
|
|
1701
|
-
link: "https://en.wikipedia.org/wiki/Language_model",
|
|
1702
|
-
since: "2023",
|
|
1703
|
-
intro: [
|
|
1704
|
-
"LLMs are advanced models used for natural language processing, enabling applications to understand and generate human-like text.",
|
|
1705
|
-
"They are widely used in chatbots, translation services, and content generation."
|
|
1706
|
-
],
|
|
1707
|
-
experience: [
|
|
1708
|
-
"Utilized LLMs in projects like Masterbots for enhanced natural language processing and user interaction."
|
|
1709
|
-
]
|
|
1710
|
-
},
|
|
1711
1768
|
{
|
|
1712
1769
|
name: "Supabase",
|
|
1713
1770
|
slug: "supabase",
|
|
@@ -2401,6 +2458,14 @@ function getTechStackByTag(tag) {
|
|
|
2401
2458
|
projects: getProjectsByTechnology(tag)
|
|
2402
2459
|
};
|
|
2403
2460
|
}
|
|
2461
|
+
function getTechStackBySlug(slug) {
|
|
2462
|
+
const tech = techStack.find((tech2) => tech2.slug === slug);
|
|
2463
|
+
if (!tech) return null;
|
|
2464
|
+
return {
|
|
2465
|
+
...tech,
|
|
2466
|
+
projects: getProjectsByTechnology(tech.tag)
|
|
2467
|
+
};
|
|
2468
|
+
}
|
|
2404
2469
|
function getProjectsByTechnology(tag) {
|
|
2405
2470
|
return projects.filter((project) => project.tech.includes(tag));
|
|
2406
2471
|
}
|
|
@@ -2412,6 +2477,7 @@ function gaboLog() {
|
|
|
2412
2477
|
gaboLog,
|
|
2413
2478
|
getProjectBySlug,
|
|
2414
2479
|
getProjectsByTechnology,
|
|
2480
|
+
getTechStackBySlug,
|
|
2415
2481
|
getTechStackByTag,
|
|
2416
2482
|
projects,
|
|
2417
2483
|
techStack
|
package/dist/index.mjs
CHANGED
|
@@ -10,7 +10,9 @@ var projects = [
|
|
|
10
10
|
"Expo",
|
|
11
11
|
"OpenAI",
|
|
12
12
|
"AI SDK",
|
|
13
|
-
"
|
|
13
|
+
"TanStack Query",
|
|
14
|
+
"TanStack Form",
|
|
15
|
+
"TanStack Start",
|
|
14
16
|
"Tailwind",
|
|
15
17
|
"LLMs"
|
|
16
18
|
],
|
|
@@ -46,7 +48,7 @@ var projects = [
|
|
|
46
48
|
"Supabase",
|
|
47
49
|
"ShadcnUI",
|
|
48
50
|
"Tailwind",
|
|
49
|
-
"
|
|
51
|
+
"TanStack Query",
|
|
50
52
|
"Zod",
|
|
51
53
|
"nuqs",
|
|
52
54
|
"EVM",
|
|
@@ -86,7 +88,7 @@ var projects = [
|
|
|
86
88
|
"Ethereum",
|
|
87
89
|
"ShadcnUI",
|
|
88
90
|
"Tailwind",
|
|
89
|
-
"
|
|
91
|
+
"TanStack Query",
|
|
90
92
|
"Zod",
|
|
91
93
|
"nuqs",
|
|
92
94
|
"Supabase"
|
|
@@ -127,7 +129,7 @@ var projects = [
|
|
|
127
129
|
"Supabase",
|
|
128
130
|
"ShadcnUI",
|
|
129
131
|
"Tailwind",
|
|
130
|
-
"
|
|
132
|
+
"TanStack Query",
|
|
131
133
|
"Zod",
|
|
132
134
|
"nuqs",
|
|
133
135
|
"OpenAI",
|
|
@@ -171,7 +173,7 @@ var projects = [
|
|
|
171
173
|
"GCP",
|
|
172
174
|
"ShadcnUI",
|
|
173
175
|
"Tailwind",
|
|
174
|
-
"
|
|
176
|
+
"TanStack Query",
|
|
175
177
|
"Zod",
|
|
176
178
|
"nuqs"
|
|
177
179
|
],
|
|
@@ -264,6 +266,8 @@ var projects = [
|
|
|
264
266
|
"Antelope",
|
|
265
267
|
"C++",
|
|
266
268
|
"ReactJS",
|
|
269
|
+
"WebAuthN",
|
|
270
|
+
"Biometrics",
|
|
267
271
|
"GCP",
|
|
268
272
|
"NodeJS",
|
|
269
273
|
"GraphQL",
|
|
@@ -1254,37 +1258,58 @@ var techStack = [
|
|
|
1254
1258
|
]
|
|
1255
1259
|
},
|
|
1256
1260
|
{
|
|
1257
|
-
name: "
|
|
1258
|
-
slug: "
|
|
1259
|
-
tag: "
|
|
1260
|
-
image: "/images/tech/
|
|
1261
|
-
description: "A
|
|
1262
|
-
link: "https://
|
|
1263
|
-
since: "
|
|
1261
|
+
name: "Node.js",
|
|
1262
|
+
slug: "nodejs",
|
|
1263
|
+
tag: "NodeJS",
|
|
1264
|
+
image: "/images/tech/nodejs.png",
|
|
1265
|
+
description: "A JavaScript runtime built on Chrome's V8 JavaScript engine, designed to build scalable network applications.",
|
|
1266
|
+
link: "https://nodejs.org/",
|
|
1267
|
+
since: "2009",
|
|
1264
1268
|
intro: [
|
|
1265
|
-
"
|
|
1266
|
-
"It is
|
|
1269
|
+
"Node.js is known for its event-driven, non-blocking I/O model, which makes it lightweight and efficient for building web servers and applications.",
|
|
1270
|
+
"It is widely used for developing server-side and networking applications."
|
|
1267
1271
|
],
|
|
1268
1272
|
experience: [
|
|
1269
|
-
"
|
|
1270
|
-
"
|
|
1271
|
-
"
|
|
1273
|
+
"Founded Costa Rica JS, a meetup group that became Central America's largest JavaScript community, promoting open-source and collaborative development.",
|
|
1274
|
+
"Utilized Node.js in projects like Eat Arcade and 4Tius Fitness Data Tracker for building scalable backend services, adhering to the principle of keeping it simple.",
|
|
1275
|
+
"Contributed to the development of decentralized applications like Emanate and Sense Chat, leveraging Node.js for efficient and secure communication.",
|
|
1276
|
+
"Implemented Node.js in projects like Wink for server-side development and real-time data processing."
|
|
1272
1277
|
]
|
|
1273
1278
|
},
|
|
1274
1279
|
{
|
|
1275
|
-
name: "
|
|
1276
|
-
slug: "
|
|
1277
|
-
tag: "
|
|
1278
|
-
image: "/images/tech/
|
|
1279
|
-
description: "A
|
|
1280
|
-
link: "https://
|
|
1281
|
-
since: "
|
|
1280
|
+
name: "ReactJS",
|
|
1281
|
+
slug: "reactjs",
|
|
1282
|
+
tag: "ReactJS",
|
|
1283
|
+
image: "/images/tech/reactjs.png",
|
|
1284
|
+
description: "A JavaScript library for building user interfaces, maintained by Facebook and a community of individual developers and companies.",
|
|
1285
|
+
link: "https://reactjs.org/",
|
|
1286
|
+
since: "2013",
|
|
1282
1287
|
intro: [
|
|
1283
|
-
"
|
|
1284
|
-
"It
|
|
1288
|
+
"ReactJS is a popular JavaScript library for building user interfaces, particularly for single-page applications.",
|
|
1289
|
+
"It allows developers to create large web applications that can update and render efficiently in response to data changes."
|
|
1285
1290
|
],
|
|
1286
1291
|
experience: [
|
|
1287
|
-
"Utilized
|
|
1292
|
+
"Utilized ReactJS in various projects to build dynamic and responsive user interfaces.",
|
|
1293
|
+
"Implemented ReactJS in the development of web applications like Eat Arcade and 4Tius Fitness Data Tracker, focusing on performance and maintainability.",
|
|
1294
|
+
"Leveraged ReactJS's component-based architecture to enhance code reusability and scalability in projects like Wink and Sense Chat."
|
|
1295
|
+
]
|
|
1296
|
+
},
|
|
1297
|
+
{
|
|
1298
|
+
name: "React Native",
|
|
1299
|
+
slug: "react-native",
|
|
1300
|
+
tag: "React Native",
|
|
1301
|
+
image: "/images/tech/react-native.png",
|
|
1302
|
+
description: "A framework for building native apps using React.",
|
|
1303
|
+
link: "https://reactnative.dev/",
|
|
1304
|
+
since: "2015",
|
|
1305
|
+
intro: [
|
|
1306
|
+
"React Native allows developers to build mobile applications using React, enabling a single codebase for both iOS and Android.",
|
|
1307
|
+
"It is known for its ability to create truly native apps with a consistent developer experience."
|
|
1308
|
+
],
|
|
1309
|
+
experience: [
|
|
1310
|
+
"Developed the first version of Wink's mobile app, focusing on seamless user experience and integration with AWS services.",
|
|
1311
|
+
"Enhanced the Sense.chat app's performance and integrated it with the EOS mainnet for secure transactions.",
|
|
1312
|
+
"Improved Tractor Supply's mobile app by developing an augmented reality feature and optimizing code quality."
|
|
1288
1313
|
]
|
|
1289
1314
|
},
|
|
1290
1315
|
{
|
|
@@ -1305,40 +1330,6 @@ var techStack = [
|
|
|
1305
1330
|
"Enhanced user experience in Masterbots and ZTX by leveraging Next.js features for seamless integration with blockchain technologies."
|
|
1306
1331
|
]
|
|
1307
1332
|
},
|
|
1308
|
-
{
|
|
1309
|
-
name: "Ponder",
|
|
1310
|
-
slug: "ponder",
|
|
1311
|
-
tag: "Ponder",
|
|
1312
|
-
image: "/images/tech/ponder.png",
|
|
1313
|
-
description: "A tool for indexing and querying blockchain data.",
|
|
1314
|
-
link: "https://ponder.io/",
|
|
1315
|
-
since: "2024",
|
|
1316
|
-
intro: [
|
|
1317
|
-
"Ponder is a powerful tool for indexing and querying blockchain data, making it easier to build responsive dApps.",
|
|
1318
|
-
"It provides real-time data processing capabilities, enhancing the performance of decentralized applications."
|
|
1319
|
-
],
|
|
1320
|
-
experience: [
|
|
1321
|
-
"Utilized Ponder in projects like BasilicEVM for efficient data indexing and real-time updates.",
|
|
1322
|
-
"Implemented Ponder to improve data retrieval and processing in blockchain applications."
|
|
1323
|
-
]
|
|
1324
|
-
},
|
|
1325
|
-
{
|
|
1326
|
-
name: "PostgreSQL",
|
|
1327
|
-
slug: "postgresql",
|
|
1328
|
-
tag: "Postgres",
|
|
1329
|
-
image: "/images/tech/postgresql.png",
|
|
1330
|
-
description: "A powerful, open-source object-relational database system with a strong reputation for reliability, feature robustness, and performance.",
|
|
1331
|
-
link: "https://www.postgresql.org/",
|
|
1332
|
-
since: "2012",
|
|
1333
|
-
intro: [
|
|
1334
|
-
"PostgreSQL is a highly stable database management system, used by many companies and organizations to store and manage their data.",
|
|
1335
|
-
"It supports advanced data types and performance optimization features, making it a popular choice for complex applications."
|
|
1336
|
-
],
|
|
1337
|
-
experience: [
|
|
1338
|
-
"Implemented PostgreSQL in projects like BitLauncher and RareMint for efficient data management and querying.",
|
|
1339
|
-
"Utilized PostgreSQL in projects like EOS Costa Rica and bitcashBank for robust database solutions."
|
|
1340
|
-
]
|
|
1341
|
-
},
|
|
1342
1333
|
{
|
|
1343
1334
|
name: "Viem",
|
|
1344
1335
|
slug: "viem",
|
|
@@ -1375,6 +1366,59 @@ var techStack = [
|
|
|
1375
1366
|
"Utilized Wagmi in projects like bitlauncher for efficient Ethereum interactions."
|
|
1376
1367
|
]
|
|
1377
1368
|
},
|
|
1369
|
+
{
|
|
1370
|
+
name: "EthersJS",
|
|
1371
|
+
slug: "ethersjs",
|
|
1372
|
+
tag: "Ethers",
|
|
1373
|
+
image: "/images/tech/ethersjs.png",
|
|
1374
|
+
description: "A library for interacting with the Ethereum blockchain and its ecosystem.",
|
|
1375
|
+
link: "https://docs.ethers.io/v5/",
|
|
1376
|
+
since: "2017",
|
|
1377
|
+
intro: [
|
|
1378
|
+
"EthersJS is a library designed to interact with the Ethereum blockchain, providing a simple and consistent interface for developers.",
|
|
1379
|
+
"It is widely used for its ease of use and comprehensive documentation, making it a popular choice for Ethereum development."
|
|
1380
|
+
],
|
|
1381
|
+
experience: [
|
|
1382
|
+
"Utilized EthersJS in projects like BasilicEVM for seamless interaction with the Ethereum blockchain.",
|
|
1383
|
+
"Implemented EthersJS in RareMint for efficient smart contract interactions and NFT data indexing.",
|
|
1384
|
+
"Developed a WebGL EVM wallet connector using EthersJS at ZTX, enabling secure blockchain transactions within the metaverse platform.",
|
|
1385
|
+
"Led the architecture of Knowledge.io's token system using EthersJS for secure and efficient blockchain interactions."
|
|
1386
|
+
]
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
name: "Ponder",
|
|
1390
|
+
slug: "ponder",
|
|
1391
|
+
tag: "Ponder",
|
|
1392
|
+
image: "/images/tech/ponder.png",
|
|
1393
|
+
description: "A tool for indexing and querying blockchain data.",
|
|
1394
|
+
link: "https://ponder.io/",
|
|
1395
|
+
since: "2024",
|
|
1396
|
+
intro: [
|
|
1397
|
+
"Ponder is a powerful tool for indexing and querying blockchain data, making it easier to build responsive dApps.",
|
|
1398
|
+
"It provides real-time data processing capabilities, enhancing the performance of decentralized applications."
|
|
1399
|
+
],
|
|
1400
|
+
experience: [
|
|
1401
|
+
"Utilized Ponder in projects like BasilicEVM for efficient data indexing and real-time updates.",
|
|
1402
|
+
"Implemented Ponder to improve data retrieval and processing in blockchain applications."
|
|
1403
|
+
]
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
name: "PostgreSQL",
|
|
1407
|
+
slug: "postgresql",
|
|
1408
|
+
tag: "Postgres",
|
|
1409
|
+
image: "/images/tech/postgresql.png",
|
|
1410
|
+
description: "A powerful, open-source object-relational database system with a strong reputation for reliability, feature robustness, and performance.",
|
|
1411
|
+
link: "https://www.postgresql.org/",
|
|
1412
|
+
since: "2012",
|
|
1413
|
+
intro: [
|
|
1414
|
+
"PostgreSQL is a highly stable database management system, used by many companies and organizations to store and manage their data.",
|
|
1415
|
+
"It supports advanced data types and performance optimization features, making it a popular choice for complex applications."
|
|
1416
|
+
],
|
|
1417
|
+
experience: [
|
|
1418
|
+
"Implemented PostgreSQL in projects like BitLauncher and RareMint for efficient data management and querying.",
|
|
1419
|
+
"Utilized PostgreSQL in projects like EOS Costa Rica and bitcashBank for robust database solutions."
|
|
1420
|
+
]
|
|
1421
|
+
},
|
|
1378
1422
|
{
|
|
1379
1423
|
name: "EVM",
|
|
1380
1424
|
slug: "evm",
|
|
@@ -1392,6 +1436,72 @@ var techStack = [
|
|
|
1392
1436
|
"Utilized EVM in projects like bitcashBank for decentralized application development."
|
|
1393
1437
|
]
|
|
1394
1438
|
},
|
|
1439
|
+
{
|
|
1440
|
+
name: "Solidity",
|
|
1441
|
+
slug: "solidity",
|
|
1442
|
+
tag: "Solidity",
|
|
1443
|
+
image: "/images/tech/solidity.png",
|
|
1444
|
+
description: "A contract-oriented programming language for writing smart contracts on Ethereum.",
|
|
1445
|
+
link: "https://soliditylang.org/",
|
|
1446
|
+
since: "2017",
|
|
1447
|
+
intro: [
|
|
1448
|
+
"Solidity is the primary language for writing smart contracts on Ethereum and other EVM-compatible blockchains.",
|
|
1449
|
+
"It is designed to target the Ethereum Virtual Machine (EVM) and is influenced by C++, Python, and JavaScript."
|
|
1450
|
+
],
|
|
1451
|
+
experience: [
|
|
1452
|
+
"Developed smart contracts for the Knowledge ICO, focusing on security and efficiency, embodying the principle of keeping it simple.",
|
|
1453
|
+
"Contributed to the development of asset-backed NFTs on Ethereum for RareMint, demonstrating the transformative power of blockchain technology.",
|
|
1454
|
+
"Utilized Solidity in projects like BasilicEVM and bitlauncher for smart contract development and blockchain interactions."
|
|
1455
|
+
]
|
|
1456
|
+
},
|
|
1457
|
+
{
|
|
1458
|
+
name: "Foundry",
|
|
1459
|
+
slug: "foundry",
|
|
1460
|
+
tag: "Foundry",
|
|
1461
|
+
image: "/images/tech/foundry.png",
|
|
1462
|
+
description: "A blazing fast, portable, and modular toolkit for Ethereum application development.",
|
|
1463
|
+
link: "https://getfoundry.sh/",
|
|
1464
|
+
since: "2024",
|
|
1465
|
+
intro: [
|
|
1466
|
+
"Foundry is a toolkit for Ethereum application development, known for its speed and modularity.",
|
|
1467
|
+
"It provides a suite of tools for building, testing, and deploying smart contracts."
|
|
1468
|
+
],
|
|
1469
|
+
experience: [
|
|
1470
|
+
"Utilized Foundry in projects like BasilicEVM for efficient smart contract development and testing."
|
|
1471
|
+
]
|
|
1472
|
+
},
|
|
1473
|
+
{
|
|
1474
|
+
name: "AI SDK",
|
|
1475
|
+
slug: "ai-sdk",
|
|
1476
|
+
tag: "AI SDK",
|
|
1477
|
+
image: "/images/tech/ai-sdk.png",
|
|
1478
|
+
description: "Software Development Kits for integrating AI capabilities into applications.",
|
|
1479
|
+
link: "https://en.wikipedia.org/wiki/Software_development_kit",
|
|
1480
|
+
since: "2023",
|
|
1481
|
+
intro: [
|
|
1482
|
+
"AI SDKs provide tools and libraries for integrating AI capabilities into applications, enhancing functionality and user experience.",
|
|
1483
|
+
"They are used in various applications, from chatbots to data analysis and automation."
|
|
1484
|
+
],
|
|
1485
|
+
experience: [
|
|
1486
|
+
"Implemented AI SDKs in projects like Masterbots for advanced AI-driven features and automation."
|
|
1487
|
+
]
|
|
1488
|
+
},
|
|
1489
|
+
{
|
|
1490
|
+
name: "LLMs",
|
|
1491
|
+
slug: "llms",
|
|
1492
|
+
tag: "LLMs",
|
|
1493
|
+
image: "/images/tech/llms.png",
|
|
1494
|
+
description: "Large Language Models used for natural language processing and understanding.",
|
|
1495
|
+
link: "https://en.wikipedia.org/wiki/Language_model",
|
|
1496
|
+
since: "2023",
|
|
1497
|
+
intro: [
|
|
1498
|
+
"LLMs are advanced models used for natural language processing, enabling applications to understand and generate human-like text.",
|
|
1499
|
+
"They are widely used in chatbots, translation services, and content generation."
|
|
1500
|
+
],
|
|
1501
|
+
experience: [
|
|
1502
|
+
"Utilized LLMs in projects like Masterbots for enhanced natural language processing and user interaction."
|
|
1503
|
+
]
|
|
1504
|
+
},
|
|
1395
1505
|
{
|
|
1396
1506
|
name: "ThirdWeb",
|
|
1397
1507
|
slug: "thirdweb",
|
|
@@ -1408,25 +1518,6 @@ var techStack = [
|
|
|
1408
1518
|
"Utilized ThirdWeb in projects like BasilicEVM for streamlined Web3 application development."
|
|
1409
1519
|
]
|
|
1410
1520
|
},
|
|
1411
|
-
{
|
|
1412
|
-
name: "EthersJS",
|
|
1413
|
-
slug: "ethersjs",
|
|
1414
|
-
tag: "Ethers",
|
|
1415
|
-
image: "/images/tech/ethersjs.png",
|
|
1416
|
-
description: "A library for interacting with the Ethereum blockchain and its ecosystem.",
|
|
1417
|
-
link: "https://docs.ethers.io/v5/",
|
|
1418
|
-
since: "2017",
|
|
1419
|
-
intro: [
|
|
1420
|
-
"EthersJS is a library designed to interact with the Ethereum blockchain, providing a simple and consistent interface for developers.",
|
|
1421
|
-
"It is widely used for its ease of use and comprehensive documentation, making it a popular choice for Ethereum development."
|
|
1422
|
-
],
|
|
1423
|
-
experience: [
|
|
1424
|
-
"Utilized EthersJS in projects like BasilicEVM for seamless interaction with the Ethereum blockchain.",
|
|
1425
|
-
"Implemented EthersJS in RareMint for efficient smart contract interactions and NFT data indexing.",
|
|
1426
|
-
"Developed a WebGL EVM wallet connector using EthersJS at ZTX, enabling secure blockchain transactions within the metaverse platform.",
|
|
1427
|
-
"Led the architecture of Knowledge.io's token system using EthersJS for secure and efficient blockchain interactions."
|
|
1428
|
-
]
|
|
1429
|
-
},
|
|
1430
1521
|
{
|
|
1431
1522
|
name: "Alchemy",
|
|
1432
1523
|
slug: "alchemy",
|
|
@@ -1459,25 +1550,6 @@ var techStack = [
|
|
|
1459
1550
|
"Utilized Hardhat in projects like BitLauncher for smart contract development and testing."
|
|
1460
1551
|
]
|
|
1461
1552
|
},
|
|
1462
|
-
{
|
|
1463
|
-
name: "Node.js",
|
|
1464
|
-
slug: "nodejs",
|
|
1465
|
-
tag: "NodeJS",
|
|
1466
|
-
image: "/images/tech/nodejs.png",
|
|
1467
|
-
description: "A JavaScript runtime built on Chrome's V8 JavaScript engine, designed to build scalable network applications.",
|
|
1468
|
-
link: "https://nodejs.org/",
|
|
1469
|
-
since: "2009",
|
|
1470
|
-
intro: [
|
|
1471
|
-
"Node.js is known for its event-driven, non-blocking I/O model, which makes it lightweight and efficient for building web servers and applications.",
|
|
1472
|
-
"It is widely used for developing server-side and networking applications."
|
|
1473
|
-
],
|
|
1474
|
-
experience: [
|
|
1475
|
-
"Founded Costa Rica JS, a meetup group that became Central America's largest JavaScript community, promoting open-source and collaborative development.",
|
|
1476
|
-
"Utilized Node.js in projects like Eat Arcade and 4Tius Fitness Data Tracker for building scalable backend services, adhering to the principle of keeping it simple.",
|
|
1477
|
-
"Contributed to the development of decentralized applications like Emanate and Sense Chat, leveraging Node.js for efficient and secure communication.",
|
|
1478
|
-
"Implemented Node.js in projects like Wink for server-side development and real-time data processing."
|
|
1479
|
-
]
|
|
1480
|
-
},
|
|
1481
1553
|
{
|
|
1482
1554
|
name: "GraphQL",
|
|
1483
1555
|
slug: "graphql",
|
|
@@ -1495,24 +1567,6 @@ var techStack = [
|
|
|
1495
1567
|
"Utilized GraphQL in projects like EOS Costa Rica for flexible and efficient API development."
|
|
1496
1568
|
]
|
|
1497
1569
|
},
|
|
1498
|
-
{
|
|
1499
|
-
name: "React Native",
|
|
1500
|
-
slug: "react-native",
|
|
1501
|
-
tag: "React Native",
|
|
1502
|
-
image: "/images/tech/react-native.png",
|
|
1503
|
-
description: "A framework for building native apps using React.",
|
|
1504
|
-
link: "https://reactnative.dev/",
|
|
1505
|
-
since: "2015",
|
|
1506
|
-
intro: [
|
|
1507
|
-
"React Native allows developers to build mobile applications using React, enabling a single codebase for both iOS and Android.",
|
|
1508
|
-
"It is known for its ability to create truly native apps with a consistent developer experience."
|
|
1509
|
-
],
|
|
1510
|
-
experience: [
|
|
1511
|
-
"Developed the first version of Wink's mobile app, focusing on seamless user experience and integration with AWS services.",
|
|
1512
|
-
"Enhanced the Sense.chat app's performance and integrated it with the EOS mainnet for secure transactions.",
|
|
1513
|
-
"Improved Tractor Supply's mobile app by developing an augmented reality feature and optimizing code quality."
|
|
1514
|
-
]
|
|
1515
|
-
},
|
|
1516
1570
|
{
|
|
1517
1571
|
name: "WebGL",
|
|
1518
1572
|
slug: "webgl",
|
|
@@ -1582,7 +1636,7 @@ var techStack = [
|
|
|
1582
1636
|
{
|
|
1583
1637
|
name: "TanStack Query",
|
|
1584
1638
|
slug: "tanstack",
|
|
1585
|
-
tag: "
|
|
1639
|
+
tag: "TanStack Query",
|
|
1586
1640
|
image: "/images/tech/tanstack.png",
|
|
1587
1641
|
description: "Powerful asynchronous state management for fetching, caching, and updating data in React applications.",
|
|
1588
1642
|
link: "https://tanstack.com/query/latest",
|
|
@@ -1596,6 +1650,40 @@ var techStack = [
|
|
|
1596
1650
|
"Utilized query invalidation and refetching strategies to keep UI data fresh and responsive."
|
|
1597
1651
|
]
|
|
1598
1652
|
},
|
|
1653
|
+
{
|
|
1654
|
+
name: "TanStack Form",
|
|
1655
|
+
slug: "tanstack-form",
|
|
1656
|
+
tag: "TanStack Form",
|
|
1657
|
+
image: "/images/tech/tanstack-form.png",
|
|
1658
|
+
description: "A powerful form library for React applications, providing easy-to-use hooks for managing form state and validation.",
|
|
1659
|
+
link: "https://tanstack.com/form/latest",
|
|
1660
|
+
since: "2022",
|
|
1661
|
+
intro: [
|
|
1662
|
+
"TanStack Form simplifies form management in React applications, offering hooks for state management and validation.",
|
|
1663
|
+
"It provides a flexible and extensible API for building complex forms with ease."
|
|
1664
|
+
],
|
|
1665
|
+
experience: [
|
|
1666
|
+
"Implemented TanStack Form in projects like BasilicEVM and bitlauncher for efficient form state management and validation.",
|
|
1667
|
+
"Utilized TanStack Form to create dynamic and responsive forms, enhancing user experience."
|
|
1668
|
+
]
|
|
1669
|
+
},
|
|
1670
|
+
{
|
|
1671
|
+
name: "TanStack Start",
|
|
1672
|
+
slug: "tanstack-start",
|
|
1673
|
+
tag: "TanStack Start",
|
|
1674
|
+
image: "/images/tech/tanstack-start.png",
|
|
1675
|
+
description: "A starter kit for building modern web applications with TanStack libraries.",
|
|
1676
|
+
link: "https://tanstack.com/start/latest",
|
|
1677
|
+
since: "2023",
|
|
1678
|
+
intro: [
|
|
1679
|
+
"TanStack Start provides a starter kit for building modern web applications using TanStack libraries.",
|
|
1680
|
+
"It includes pre-configured setups for popular tools and libraries, streamlining the development process."
|
|
1681
|
+
],
|
|
1682
|
+
experience: [
|
|
1683
|
+
"Utilized TanStack Start in projects like BasilicEVM and bitlauncher for quick and efficient project setup.",
|
|
1684
|
+
"Leveraged TanStack Start to integrate TanStack libraries seamlessly, accelerating development workflows."
|
|
1685
|
+
]
|
|
1686
|
+
},
|
|
1599
1687
|
{
|
|
1600
1688
|
name: "WebAuthn",
|
|
1601
1689
|
slug: "webauthn",
|
|
@@ -1645,38 +1733,6 @@ var techStack = [
|
|
|
1645
1733
|
"Implemented NFT solutions in projects like RareMint and ZTX for digital asset creation and trading."
|
|
1646
1734
|
]
|
|
1647
1735
|
},
|
|
1648
|
-
{
|
|
1649
|
-
name: "AI SDK",
|
|
1650
|
-
slug: "ai-sdk",
|
|
1651
|
-
tag: "AI SDK",
|
|
1652
|
-
image: "/images/tech/ai-sdk.png",
|
|
1653
|
-
description: "Software Development Kits for integrating AI capabilities into applications.",
|
|
1654
|
-
link: "https://en.wikipedia.org/wiki/Software_development_kit",
|
|
1655
|
-
since: "2023",
|
|
1656
|
-
intro: [
|
|
1657
|
-
"AI SDKs provide tools and libraries for integrating AI capabilities into applications, enhancing functionality and user experience.",
|
|
1658
|
-
"They are used in various applications, from chatbots to data analysis and automation."
|
|
1659
|
-
],
|
|
1660
|
-
experience: [
|
|
1661
|
-
"Implemented AI SDKs in projects like Masterbots for advanced AI-driven features and automation."
|
|
1662
|
-
]
|
|
1663
|
-
},
|
|
1664
|
-
{
|
|
1665
|
-
name: "LLMs",
|
|
1666
|
-
slug: "llms",
|
|
1667
|
-
tag: "LLMs",
|
|
1668
|
-
image: "/images/tech/llms.png",
|
|
1669
|
-
description: "Large Language Models used for natural language processing and understanding.",
|
|
1670
|
-
link: "https://en.wikipedia.org/wiki/Language_model",
|
|
1671
|
-
since: "2023",
|
|
1672
|
-
intro: [
|
|
1673
|
-
"LLMs are advanced models used for natural language processing, enabling applications to understand and generate human-like text.",
|
|
1674
|
-
"They are widely used in chatbots, translation services, and content generation."
|
|
1675
|
-
],
|
|
1676
|
-
experience: [
|
|
1677
|
-
"Utilized LLMs in projects like Masterbots for enhanced natural language processing and user interaction."
|
|
1678
|
-
]
|
|
1679
|
-
},
|
|
1680
1736
|
{
|
|
1681
1737
|
name: "Supabase",
|
|
1682
1738
|
slug: "supabase",
|
|
@@ -2370,6 +2426,14 @@ function getTechStackByTag(tag) {
|
|
|
2370
2426
|
projects: getProjectsByTechnology(tag)
|
|
2371
2427
|
};
|
|
2372
2428
|
}
|
|
2429
|
+
function getTechStackBySlug(slug) {
|
|
2430
|
+
const tech = techStack.find((tech2) => tech2.slug === slug);
|
|
2431
|
+
if (!tech) return null;
|
|
2432
|
+
return {
|
|
2433
|
+
...tech,
|
|
2434
|
+
projects: getProjectsByTechnology(tech.tag)
|
|
2435
|
+
};
|
|
2436
|
+
}
|
|
2373
2437
|
function getProjectsByTechnology(tag) {
|
|
2374
2438
|
return projects.filter((project) => project.tech.includes(tag));
|
|
2375
2439
|
}
|
|
@@ -2380,6 +2444,7 @@ export {
|
|
|
2380
2444
|
gaboLog,
|
|
2381
2445
|
getProjectBySlug,
|
|
2382
2446
|
getProjectsByTechnology,
|
|
2447
|
+
getTechStackBySlug,
|
|
2383
2448
|
getTechStackByTag,
|
|
2384
2449
|
projects,
|
|
2385
2450
|
techStack
|