An open API service indexing awesome lists of open source software.

https://github.com/benmukebo/ben-portfolior

Welcome to my portfolio 🚀 I'm excited to showcase my skills, projects, and experiences in the world of web development. This portfolio app, built entirely with Next.js, serves as a platform to highlight my journey, share my projects, and connect with fellow developers and potential collaborators.
https://github.com/benmukebo/ben-portfolior

nextjs react-hook-forms shadcn-ui tailwindcss typescript zod

Last synced: 25 days ago
JSON representation

Welcome to my portfolio 🚀 I'm excited to showcase my skills, projects, and experiences in the world of web development. This portfolio app, built entirely with Next.js, serves as a platform to highlight my journey, share my projects, and connect with fellow developers and potential collaborators.

Awesome Lists containing this project

README

        

This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

## Getting Started

First, run the development server:

```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.

This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.

## Learn More

To learn more about Next.js, take a look at the following resources:

- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
- [Devicon](https://devicon.dev/)
- [Radix Icons](https://www.radix-ui.com/icons)
- [Embla Carousel](https://www.embla-carousel.com/plugins/wheel-gestures/)
- [Shadcn](https://ui.shadcn.com/docs/dark-mode/next)
- [Favicon Generator](https://realfavicongenerator.net/)

- [How to use Facebook Pixel with Next.js](https://medium.com/@bvodola/how-to-use-facebook-pixel-with-next-js-bff1d2ad7e97)

You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!

## Deploy on Vercel

The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.

Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.

### Zod

Zod is a TypeScript-first schema declaration and validation library. The goal is to eliminate duplicative type declarations.

### REST API Documentation Tool | Swagger UI

Swagger
[REST API Documentation Tool | Swagger UI](https://swagger.io)
Write and visualize new API definitions or import your existing OAS definitions into SwaggerHub to generate an interactive **UI**, fully-hosted in the cloud.

- To Past the Catch and reoad the page

```
$ cntrl + F5
```

- Kill the server

```
$ kill -9 PID
$ pkill -f "ruby"
$ rm tmp/pids/server.pid
```

This **`fuser 8080/tcp`** will print you PID of process bound on that port.

And this **`fuser -k 8080/tcp`** will kill that process.

Works on Linux only. More universal is use of `lsof -i4` (or 6 for IPv6).

General form:

- list the TCP process bound to port PORT
`fuser PORT/`tcp`
- Example: list the TCP process bound to port 8080
`fuser 8080/tcp`
- list the UDP process bound to port PORT
`fuser PORT/udp`
- Example: list the UDP process bound to port 8080
`fuser 8080/udp`

To stop all running Rails servers type the following is the terminal

- kill -9 $(lsof -i tcp:3000 -t)