repo stringlengths 8 123 | branch stringclasses 178 values | readme stringlengths 1 441k ⌀ | description stringlengths 1 350 ⌀ | topics stringlengths 10 237 | createdAt stringlengths 20 20 | lastCommitDate stringlengths 20 20 | lastReleaseDate stringlengths 20 20 ⌀ | contributors int64 0 10k | pulls int64 0 3.84k | commits int64 1 58.7k | issues int64 0 826 | forks int64 0 13.1k | stars int64 2 49.2k | diskUsage float64 | license stringclasses 24 values | language stringclasses 80 values |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Its-Shojib/React-App | main | # React + Vite
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
| null | css,html5,javascript,reactjs | 2023-09-08T08:53:30Z | 2023-09-08T08:55:42Z | null | 1 | 0 | 1 | 0 | 0 | 3 | null | null | JavaScript |
Its-Shojib/Visit-Country-by-React | main | # React + Vite
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
| County list that you Visited | html,javascript,reactjs,vanila-css | 2023-09-09T17:54:59Z | 2023-09-09T17:55:35Z | null | 1 | 0 | 1 | 0 | 0 | 3 | null | null | JavaScript |
Its-Shojib/Phone-Hunter-Using-API | main | null | Phone Hunter | api,html5,javascript,tailwindcss | 2023-08-27T14:19:23Z | 2023-08-27T21:51:19Z | null | 1 | 0 | 11 | 0 | 0 | 3 | null | null | HTML |
MvFranca/simplifica-desenvolvimento | master | # Simplifica
Trata-se de um projeto voltado para os alunos do 1º ano do curso Integrado em Informática, no IFAL - Campus Arapiraca, onde buscaremos junto ao nosso orientador, desenvolver um Website a partir de uma análise detalhada (conteúdos abordados na disciplina) da grade curricular dos estudantes e das dificuldades vivenciadas por estes durante os seus primeiros contatos com a área (notas baixas, questionário/entrevista com alunos vigentes do 1º ano do curso integrado etc).
No website, disponibilizaremos exercícios, explicações e exemplos de forma interativa, semelhante a forma como o aplicativo Duolingo realiza suas abordagens, para que o público possa revisar os conteúdos tratados em sala a qualquer momento, criando cada vez mais familiaridade com os temas e, consequemente, tendo melhores resultados acadêmicos. O aluno poderá escolher entre a opção denominada “trilha de aprendizagem”, onde diariamente o próprio site indicará de forma automática os conteúdos que ele deve estudar e/ou realizar exercícios, ou escolher a opção “estudo manual”, revisando conteúdos e atividades no seu próprio ritmo. Os materiais presentes na plataforma serão desenvolvidos por nós, juntamente com o orientador. O site também buscará automatizar os processos de monitoria, para que os alunos não precisem se deslocar sempre ao contraturno, sobre isso, a plataforma terá uma aba denominada “comunidade”, que será um chat geral onde alunos colocarão suas dúvidas e estas poderão ser respondidas por monitores ou professores da Instituição.
A cada estudo diário realizado, uma pontuação será atribuída, através de um sistema de metas que variará de acordo com o aproveitamento de cada estudante. Futuramente, planejamos desenvolver um ranking com a colocação de cada aluno, visando estimular cada vez mais a aprendizagem.
## Configuração de ambiente do projeto
- Clonar e configuração do repositório localmente
```
git init
```
```
git clone https://github.com/MvFranca/simplifica-desenvolvimento.git
```
```
git remote add origin "https://github.com/MvFranca/simplifica-desenvolvimento.git"
```
```
cd simplifica-desenvolvimento
```
- Instalar dependências
```
cd api
```
```
npm i
```
- Configurar variáveis de ambiente
- Criar o arquivo `.env` com as credenciais do banco Postgres, baseado no `/api/.env.example`
- Rodar banco PostgreSQL no Docker
```
docker-compose down
```
```
docker-compose up -d
```
- Rodar versão de desenvolvimento com `nodemon` (na pasta client)
```
npm run dev
```
- gerar build (pasta `dist/`) do projeto (na pasta client)
```
npm run build
```
- rodar build (pasta `dist/`) do projeto (na pasta api)
```
npm run start
```
| Site gamificado que busca facilitar o ensino de Lógica de Programação(Front-End e Back-End) | expressjs,javascript,nodejs,reactjs,typescript,css,html,postgresql | 2023-09-05T18:19:20Z | 2024-04-01T23:24:37Z | null | 3 | 17 | 121 | 2 | 0 | 3 | null | null | TypeScript |
gcixdev/gcix | main | # gcix - Write your GitLab CI pipelines in X languages
[](https://gitlab.com/gcix/gcix/-/blob/main/LICENSE)
[
](https://gitlab.com/gcix/gcix/-/tags)
[
](https://gitlab.com/gcix/gcix/-/pipelines)
[](https://gitlab.com/gcix/gcix/-/commits/main/)
[](https://gitlab.com/gcix/gcix)
[](https://pypi.org/project/gcix/)
[](https://www.npmjs.com/package/@gcix/gcix)
[](https://hub.docker.com/r/gcix/gcix)

The complete documentation is found at <https://docs.gcix.dev>
The GitLab CI X Library (*gcix*) is a library to create dynamic pipelines for GitLab CI.
With the *gcix* you can write your GitLab CI pipelines in multiple languages.
## Supported languages
* Typescript/JavaScript (**native**)
* Python
**A simple pipeline could look like...**
...this in **Typescript**
``` typescript
import { Pipeline, Job } from "gcix"
const pipeline = new Pipeline()
const job = new Job({stage: "build", scripts: ["docker build ."]})
pipeline.addChildren({jobsOrJobCollections: [job]})
pipeline.writeYaml()
```
...this in **Python**
``` python
from gcip import Pipeline, Job
pipeline = Pipeline()
job = Job(stage="build", scripts=["docker build ."])
pipeline.add_children(jobs_or_job_collections=[job])
pipeline.write_yaml()
```
## Intro
The *gcix* is a rewrite of the *gcip*, the reason behind the rewrite is, that I wanted to learn Typescript, and give
developers the choice to use the language they are familiar with. This is because I chose Typescript and a tool called [jsii][10] made by [AWS][11].
*jsii* translates the different language API's to typescript. The user which uses Python is using Pythons syntax, behind the scenes they are getting
translated to Typescript.
### Examples
For a more complex and real world example, just check out our projects [.gitlab-ci.ts][1]. The [.gitlab-ci.ts][1] is the written example of a working *gcix* in Typescript. The Typescript code is getting rendered and stored as an artifact in the pipeline see [generated yaml file][2].
The *gcix* is using the GitLab feature of [dynamic child pipelines][3]. First the `.gitlab-ci.ts` generates the common GitLab CI yaml file which is then started as child pipeline. To get the generated pipeline it is necessary to invoke the `.gitlab-ci.ts` with `ts-node`. To get an idea of a [dynamic child pipelines][3] setup, you can have a look into [.gitlab-ci.yml][4].
Creating your pipelines in [any supported programming language](#supported-languages) code allows you all the features of that language, like:
* re-use code (DRY - Don't repeat yourself)
* use variables, control flow (if-then-else, loops, ...), complex data structures, input/output, error handling, ...
* programming paradigms like object-oriented or functional programming
* use 3rd party libraries in your pipelines
* test driven development of pipelines with Jest(Typescript), pytest(Python)...
* package management and distribution of your pipeline code
* ... anything you can imagine to do with Python code
## Documentation
Please read the [User Documentation][12] to get a quick introduction into most
features of the *gcix*.
You can consult the [API Reference][13] to get an overview of all classes and methods
and a deeper view into their parameters.
For more information on how to create your own library based on *gcix*, please read the [Developer Documentation][14]
to learn about good practices and conventions.
## Why pipelines as code?
There has been a really good discussion on [Hacker News][5] about *configuration vs code*.
Comments stating that when struggling around with the limitations of static configuration we start writing pipelines as code, until we hassle
around with complex code and start re-writing complex pipelines in static configuration and so forth.
It is absolutely right that pipelines as code are not new and have lots of drawbacks. Chances are good that you have the one guru in you company
loving this project and is writing weird pipelines that nobody else understands. Also comments state that pipelines are those basic things that
build and test your code and shouldn't be in code too, because then you might have a pipeline that build and test your pipeline code.
All those statements are quite true. However all those statements could be applied to static configuration. We started this project because of
GitLab CI yaml files growing over thousands of lines. We tried to implement some logic with clunky rule sets. We tried to re-use code with yaml templates.
We tried to write predefined pipelines by using includes. We started to write bash scripts that do bulk loads of work within a job. All in all
those felt like a bad workaround, while having in mind how much cleaner this might be, writing our pipelines in code. That is why we started
this project and since using it with great success.
However it is absolutely important to understand the *gcix* as a supplement and not as a substitution to GitLab CI yaml files. As long you are fine
with having a couple of jobs you could easily describe in static configuration, just do it. If you feel that you can't manage the complexity of
you static yaml configuration and started to build lots of helper scripts, you could consider writing your pipelines in code. This considerations
should include, if the pipeline code you write is definitely an advantage over the static scripts you had before - and not just for you but also
for your colleagues and the company you are writing the code for.
The *gcix* should be a choice - not a standard.
## Thanks
First of all, I have to thank [**Thomas Steinbach**][7] he created the [GitLab CI Python Library (gcip)][6] and started a great journey with GitLab CI pipelines as code.
Another thank you goes to the [DB Systel GmbH][8].
## Author
*gcix* was created by [Daniel von Eßen][9] in 2023.
## License
The content of this repository is licensed under the [Apache 2.0 license][15].
Copyright [Daniel von Eßen][9]
[1]: https://gitlab.com/gcix/gcix/-/blob/main/.gitlab-ci.ts
[2]: https://gitlab.com/gcix/gcix/-/jobs/artifacts/main/browse?job=generate-pipeline
[3]: https://docs.gitlab.com/ee/ci/parent_child_pipelines.html#dynamic-child-pipelines
[4]: https://gitlab.com/gcix/gcix/-/blob/main/.gitlab-ci.yml
[5]: https://news.ycombinator.com/item?id=26986493#26988105
[6]: https://gitlab.com/dbsystel/gitlab-ci-python-library
[7]: https://gitlab.com/thomassteinbach
[8]: https://www.dbsystel.de/
[9]: https://gitlab.com/dvonessen
[10]: https://aws.github.io/jsii/
[11]: https://aws.amazon.com/de/
[12]: https://docs.gcix.dev
[13]: https://docs.gcix.dev/api/
[14]: https://docs.gcix.dev/developer/
[15]: http://www.apache.org/licenses/LICENSE-2.0
| gcix - Write your GitLab CI pipelines in X languages. This is a mirror from GitLab, development wil take palce at https://gitlab.com/gcix/gcix | ci,gcip,gitlab,gitlab-ci,javascript,js,py,python,ts,typescript | 2023-09-06T18:33:05Z | 2024-05-13T11:49:31Z | null | 2 | 0 | 415 | 0 | 0 | 3 | null | Apache-2.0 | TypeScript |
learningboiz/GrowthDiary | main | [](https://opensource.org/licenses/MIT)
[](https://github.com/ElijahQuiazon/GrowthDiary)
[](https://github.com/ElijahQuiazon/GrowthDiary)
[](https://github.com/ElijahQuiazon/GrowthDiary/issues)
# 🌱 Growth Diary App
## Overview
Growth Diary is a simple tool for effective self-paced learning, offering session tracking, filterable views, and productivity analysis for a reflective development journey.
## Problem Statement
Self-taught developers, particularly those without a traditional CS/SWE degree, might often find themselves overthinking, jumping between tutorials, or spending too much time on a single topic. Time is valuable, and it becomes important to maximize learning time.
## The Solution
The Growth Diary App was developed to empower self-taught developers with a reflective tool to keep track and analyze their learning sessions. The tool offers insights that will allow developers to reflect on studying habits — and ultimately learn to study smarter and not just harder.
## Key Features
1. **🚀 Session Tracker**:
- Track learning sessions in real-time or record past ones.
- Capture topic, start time, duration, productivity, and obstacles faced.
2. **📚 Session History**:
- View all learning sessions easily.
- Sort by topic, dates, duration, and productivity.
- Apply filters for focused insights.
- Enjoy hassle-free pagination.
3. **📊 Session Analytics**:
- Get quick insights on top topics, common obstacles, total learning time, and averages.
- Visualize correlations with a simple chart.
## Demo
[Growth Diary Demo](https://github.com/ElijahQuiazon/GrowthDiary/assets/110521896/338c5092-fac8-482a-8a49-e0fd539b3c2c)
## Contributing
Whether you're new to coding or a seasoned developer, GrowthDiary is thrilled to have you considering contributions to its growth. The current aspirations for this project are to flesh out its features, refine the codebase with cleaner coding practices and documentation alongside bug fixes.
This project is a great place for beginners to learn and for experienced devs to make a real impact.
* 💻 **Code Refactoring**: Dive into the codebase, suggest improvements, and enhance readability.
* 🚀 **Feature Enhancement**: Share your ideas or pick an existing feature to improve.
* 🧪 **Testing**: Help us build a robust project by adding tests and ensuring reliability.
* 📚 **Documentation**: Contribute to making our documentation clearer and more helpful.
Feel free to pick an area of interest, create an issue, and start contributing. We value your input and look forward to your contributions! Please check the [CONTRIBUTING.md](CONTRIBUTING.md) for more details.
Remember, every contribution matters. Let's grow and learn together! 🌱
Happy coding!
| null | spring-boot,java,junit5,mockito,mysql,restful-api,spring-jpa,reactjs,vitest,javascript | 2023-08-22T04:24:15Z | 2024-01-08T05:39:54Z | null | 1 | 2 | 377 | 0 | 0 | 3 | null | MIT | Java |
diaoquesang/java-javascript-python-interaction | main | # java-javascript-python-interaction
## Created on 2023/8/25
Collaborators: Yifei Sun, Zhihao Wu, Linfeng Luo, Yuyun Xiang, Ruihan Yang❤️❤️❤️
# 😍任务目标:建设一个网站,用户上传图片,图片经python算法处理后返回新图片,在网站展示新图片
😎1. 具体流程:数据流从前端传到后端,后端以用户名+时间戳等形式命名,将图片存储到original文件夹,将文件名,用户id,时间,是否处理完毕等信息输入到excel(process),并将相关信息通过http请求传给python
😎2. Python通过http请求获取相关信息以读取图片,经模型处理得到新图片,以同名存入processed文件夹,并通过http请求向java返回处理完成的信息
😎3. Java通过http请求获取到python处理完成的信息,来修改excel处理完成度等相关信息
😎4. Js未获取到处理完成的图片则显示加载中,获取到图片则显示图片
# 注意事项
😎1. 用户创建成功后,初始密码为123456
# 更新日志
2023.8.27 罗淋峰代码初始化
2023.8.30 service项目前端初始化完成,由于上传限制,只能上传部分V3代码,今后将会采取直接上传文件方式
2023.8.31 service项目前端重构,删除冗余代码,重新上传src文件夹,其余文件暂不上传,完成axios初步搭建
2023.9.1 后端新增用户登录功能
2023.9.7 后端新增图片处理功能,后端完毕
2023.9.8 前端实现图片点击上传
2023.9.12 前端更新界面
| java-javascript-python-interaction | java,javascript,python | 2023-08-25T08:34:42Z | 2024-05-13T14:13:53Z | null | 4 | 0 | 23 | 0 | 0 | 3 | null | MIT | Java |
rixyo/Real-time-chat-app-Microservices-Graphql | main | # Real-Time Chat App
Welcome to the Real-Time Chat App, a modern chat application built with cutting-edge technologies for real-time communication.
## Features
- **User Authentication**: Secure user authentication and authorization.
- **Create Communities**: Users can create their own communities.
- **Add Users to Communities**: Admins can add users to communities.
- **Community Messaging**: Send and receive messages within communities.
- **Direct Messaging**: Users can send direct messages to each other.
- **Event-Driven Architecture**: Built with a microservices architecture using RabbitMQ for event handling.
- **Database Per Service**: Each microservice manages its own PostgreSQL database.
- **Dockerized**: Application components are containerized using Docker.
- **Kubernetes Deployment**: Deploy the app on Kubernetes for scalability and manageability.
- **Real-Time Communication**: Implemented real-time messaging using Socket.io.
## Technologies Used
- **Nest.js**: A progressive Node.js framework for building efficient and scalable server-side applications.
- **GraphQL**: A query language for APIs, providing a more efficient and powerful alternative to REST.
- **PostgreSQL**: A robust open-source relational database.
- **RabbitMQ**: A message broker for implementing a distributed system with a message-driven architecture.
- **Docker**: Containerization platform for packaging applications and their dependencies.
- **Kubernetes**: Container orchestration platform for automating the deployment, scaling, and management of containerized applications.
- **Socket.io**: Real-time, bidirectional communication between clients and the server.
## Getting Started
### Prerequisites
- Install Node.js: [Node.js Official Website](https://nodejs.org/)
- Install Docker: [Docker Official Website](https://www.docker.com/)
- Install Kubernetes: [Kubernetes Official Website](https://kubernetes.io/)
### Installation
1. Clone the repository:
```bash
git clone https://github.com/rixyo/Real-time-chat-app-Microservices-Graphql
| This repository contains a set of Nest.js microservices organized within a mono repo structure. The microservices utilize various technologies and features, including RabbitMQ, PostgreSQL, authentication guards (AuthGuard), interceptors, decorators, GraphQL, and TypeORM. This README provides an overview of the project's structure and key components | docker,event-driven-architecture,javascript,microservice,nest,nestjs,nodejs,postgresql,rabbitmq,typeorm | 2023-09-10T17:10:45Z | 2023-09-16T09:39:43Z | null | 1 | 0 | 6 | 0 | 0 | 3 | null | null | TypeScript |
Myphz/trips-fe | master | <p align="center">
<h1 align="center">
<img src="https://github.com/Myphz/trips-fe/assets/71951166/30a30490-2183-499d-94ca-65b2c9466572" alt="drawing" width="50" align="top" />
<span>Trips!</span>
</h1>
<h3 align="center">Explore, Share, Connect!</h3>
</p>
<p align="center">
<img src="https://img.shields.io/badge/svelte-%23f1413d.svg?style=for-the-badge&logo=svelte&logoColor=white">
<img src="https://img.shields.io/badge/tailwindcss-%2338B2AC.svg?style=for-the-badge&logo=tailwind-css&logoColor=white">
<img src="https://img.shields.io/badge/typescript-%23007ACC.svg?style=for-the-badge&logo=typescript&logoColor=white">
<img src="https://img.shields.io/badge/Google_Play-414141?style=for-the-badge&logo=google-play&logoColor=white">
<img src="https://img.shields.io/badge/Supabase-3ECF8E?style=for-the-badge&logo=supabase&logoColor=white">
</p>
<p align="center">
<a href="https://github.com/Myphz/trips-be" target="_blank">Backend repository</a>
</p>
## Features 🚀
- Seamless trip planning and organization.
- Unlimited photo storage to capture and share memories.
- Collaboration with friends for shared experiences.
- Effortless budget tracking for cost-effective trips.
- Customizable activities and itineraries.
## Usage 📲
Download the Trips app from the Play Store
<a href='https://play.google.com/store/apps/details?id=com.tripsphoexa.app&pcampaignid=pcampaignidMKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'><img alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png' width="200" align="middle"/></a>
## Run It Locally 💻
To run the Trips app locally, follow these steps:
1. Clone this repository
2. Install the necessary dependencies using `npm install`
3. Clone and start the [backend repository](https://github.com/Myphz/trips-be)
4. Start the live server with `npm run dev`
The Svelte app will be available on `http://localhost:5173`
## Contributions and Feedback 🙌
We welcome contributions and value your feedback. Feel free to submit issues, feature requests, or contribute to the project.
| Front-end for Trips! | capacitor,svelte,sveltekit,javascript,tailwind,tailwindcss,typescript,supabase | 2023-09-11T19:41:54Z | 2024-05-20T21:11:51Z | null | 1 | 0 | 359 | 0 | 0 | 3 | null | null | Svelte |
jain-rithik/Bubble-Game | main | # Bubble Game

This is a simple JavaScript-based bubble popping game with a timer. The goal of the game is to click on bubbles with the correct number to earn points before the timer runs out.
## Table of Contents
- [Demo](#demo)
- [Features](#features)
- [Installation](#installation)
- [Usage](#usage)
- [How to Play](#how-to-play)
- [Contributing](#contributing)
## Demo
You can play the game live at [Game Demo](https://jain-rithik.github.io/Bubble-Game/).
## Features
- Click on bubbles with the correct number to earn points.
- A timer counts down, and the game ends when the timer reaches 0.
- Option to play again after the game over.
## Installation
1. Clone the repository or download the source code.
2. Open the `index.html` file in your web browser.
## Usage
Simply open the `index.html` file in your web browser, and the game will start. Click on the bubbles with the correct number to earn points. The game ends when the timer reaches 0.
## How to Play
- Click on bubbles with the number displayed in the "Hit" box to earn points.
- The timer counts down from the initial value.
- Try to earn as many points as possible before the timer runs out.
- When the game ends, you can click the "Play Again" button to start a new game.
## Contributing
Contributions are welcome! If you have any suggestions, bug reports, or feature requests, please open an issue or create a pull request.
| Bubble Game using html, css and javascript. Used the concept of event bubbling. | bubble-game,css,dom-manipulation,event-bubbling,html,javascript | 2023-09-11T15:08:04Z | 2023-09-11T15:25:03Z | null | 1 | 0 | 4 | 0 | 0 | 3 | null | null | JavaScript |
HarshKumarraghav/balloon.js | main | # Create-balloon CLI
Unleash Your Creative Power with Create-balloon CLI - The Ultimate App Starter Kit Generator.

## Installation
Try it out using this command.
```bash
npx create-balloon@latest
```
## Description
Create-balloon CLI is a versatile and powerful command-line tool that empowers developers to effortlessly generate state-of-the-art application starter kits for a wide range of modern frontend frameworks and UI libraries. Whether you're building applications using Next.js, React, Vue, Preact, Svelte, Solid, Qwik, or other popular frameworks, Create-balloon CLI has got you covered. It offers seamless integration with essential UI libraries like Tailwind, Tailwind + SchadCn UI, ChakraUI, AntDesign, and MaterialUI, allowing you to kickstart your project with stunning visual design and exceptional user experiences.
## Features
- **Framework Diversity:** Create starter kits for various frontend frameworks like Next.js, React, Vue, Preact, and more, supporting the latest features and best practices.
- **UI Library Integration:** Seamlessly integrate popular UI libraries such as Tailwind, Tailwind + SchadCn UI, ChakraUI, AntDesign, and MaterialUI, giving you a head start in designing beautiful and responsive interfaces.
- **Flexible Customization:** Tailor your project's configuration and architecture to suit your specific needs. Modify and extend the generated code effortlessly.
- **TypeScript Ready:** Generate projects with TypeScript support out-of-the-box, enabling type-safe development and enhancing code quality.
- **Optimized Bundling:** Utilize the Rollup bundler to create efficient and performant bundles for your applications, ensuring fast loading times and smooth user experiences.
- **Effortless Setup:** Initiate projects with a single command, eliminating the hassle of configuring multiple tools and dependencies.
- **Node.js Powered:** Leverage the flexibility and speed of Node.js to handle project generation and dependencies efficiently.
- **Constant Updates:** Stay up-to-date with the latest frontend technologies and UI trends through regular CLI updates and additions of new frameworks and libraries.
- **Documentation and Community:** Access comprehensive documentation and join a vibrant community of developers for guidance, support, and inspiration.
## Why Choose Create-balloon CLI?
Create-balloon CLI streamlines the process of creating cutting-edge frontend applications by providing a unified and customizable environment. With support for multiple frameworks and UI libraries, you can focus on what truly matters – crafting exceptional user interfaces and delivering remarkable user experiences. Take the complexity out of project setup and development, and dive straight into building the next generation of web applications.
**Unlock Your Creative Potential with Create-balloon CLI Today!**
## Contributing
Contributions are always welcome!
See `contributing.md` for ways to get started.
Please adhere to this project's `code of conduct`.
### Run Balloon.js Locally
Clone the project
```bash
git clone https://github.com/HarshKumarraghav/balloon.js.git
```
Go to the project directory
```bash
cd balloon.js
```
Install dependencies
```bash
npm install
```
Start the server
```bash
npm run dev
```
For build
```bash
npm run build
```
| Balloon.js: Unleash Your Creative Power with Create-balloon CLI - The Ultimate App Starter Kit Generator. | antdesign,chac,cli,javascript,material-ui,nextjs,nodejs,reactjs,solidjs,svelte | 2023-08-12T02:34:09Z | 2024-02-26T13:00:18Z | null | 1 | 0 | 81 | 1 | 0 | 3 | null | NOASSERTION | CSS |
Its-Shojib/Bottle-Shop-by-React | main | # React + Vite
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
| Creating a bottle shop using react | daisyui,html,javascript,reactjs,tailwindcss | 2023-09-10T19:47:34Z | 2023-09-10T19:48:17Z | null | 1 | 0 | 1 | 0 | 0 | 3 | null | null | JavaScript |
BoddepallyVenkatesh06/Text_To_Handwriting_Copy-Pasta_Master.VenkyKumar0006.github.io | main | null | To convert a digital document to a handwritten scanned page, first print it, write it out by hand, scan it, then save it as a digital file. | css3,html5,javascript,style-fonts,webpage-ui | 2023-09-01T10:47:45Z | 2023-09-23T15:53:19Z | null | 1 | 0 | 20 | 0 | 0 | 3 | null | Apache-2.0 | JavaScript |
AsharibAli/projects_with_chatdev | main | null | Created Customized Software using Natural Language Idea (through Multi-Agent Collaboration) with ChatDev. | javascript,llms,nlp,openai,python,software,chatdev | 2023-09-11T23:41:19Z | 2023-09-11T23:41:22Z | null | 1 | 0 | 1 | 0 | 0 | 3 | null | null | JavaScript |
reprograma/on28-ijs-tdd | main | <h1 align="center">
<img src="assets/reprograma-fundos-claros.png" alt="logo reprograma" width="500">
</h1>
# Tema da Aula
Turma Online 28 - Imersão JavaScript | Semana 1 | 2023 | [Professora Isabelle Galvão](https://www.linkedin.com/in/isabellegalvao)
### Instruções
Antes de começar, vamos organizar nosso setup.
* Fork esse repositório
* Clone o fork na sua máquina (Para isso basta abrir o seu terminal e digitar `git clone url-do-seu-repositorio-forkado`)
* Entre na pasta do seu repositório (Para isso basta abrir o seu terminal e digitar `cd nome-do-seu-repositorio-forkado`)
* [Add outras intrucoes caso necessario]
### Objetivo
Entender a importância dos testes de software e escrever nossos primeiros testes.
### Resumo
O que veremos na aula de hoje?
- [Tema da Aula](#tema-da-aula)
- [Instruções](#instruções)
- [Objetivo](#objetivo)
- [Resumo](#resumo)
- [Conteúdo](#conteúdo)
- [O que é qualidade?](#o-que-é-qualidade)
- [Por que testar? ](#por-que-testar)
- [Pirâmide de testes](#pirâmide-de-testes)
- [Tipos de teste](#tipos-de-teste)
- [Teste Unitário](#teste-unitário)
- [Quando usar](#quando-usar)
- [Implementação](#implementação)
- [Pontos positivos](#pontos-positivos)
- [Contraponto](#contraponto)
- [Ferramentas](#ferramentas)
- [Cobertura](#cobertura)
- [Pensando em como testar](#pensando-em-como-testar)
- [Escrita do código](#escrita-do-código)
- [TDD](#TDD)
- [Exercícios](#exercícios)
- [Material da aula](#material-da-aula)
- [Links Úteis](#links-úteis)
# Conteúdo
https://take.quiz-maker.com/poll4935546x893a4A16-152
## O que é qualidade?
- Pro cliente: bonito, funcional e barato
- Pra empresa: rápido, barato, entrega valor pro cliente
> Faz o que foi pedido? é preciso? Tem boa performance? Oferece segurança? É fácil de usar? Se adapta a necessidade do usuário?
## Por que testar?
- Reduz o tempo gasto em análise e correção de bugs
- Facilita refatoração
- Gera documentação
- Melhora o design do código
## Pirâmide de testes

**Mike Cohn**, que a criou, nos diz em seu livro Succeeding with Agile para agrupar os testes de software em diferentes granularidades.
Ela é um conceito desenvolvido por Mike Cohn que diz que você deve ter muito mais testes de unidade (testes unitários) que testes de GUI (interface gráfica do usuário) que são testes mais a nível de usuário. Como clicar em um link por exemplo.
O Conceito da pirâmide explica o quanto testes de GUI são custosos em relação a testes unitários, pois eles demoram muito mais tempo para serem executados e também são de difícil manutenção, enquanto os testes unitários são muito mais simples, rápidos e baratos.
### Tipos de teste
- Principais:
- Testes Unitários: Valida se cada unidade de software funciona conforme o esperado. Uma unidade é o menor componente testável de um aplicativo;
- Testes de Integração: Valida se as unidades do sistema funcionam juntas, integradas. Pode ocorrer delas apresentarem incompatibilidades ao funcionarem em conjunto, mesmo após terem sido aprovadas no teste de unidade;
- Testes Ponta a Ponta (End-to-End, E2E): Valida o sistema de ponta a ponta, para garantir que o software funcione em todos os sistemas de destino pretendidos;
- Testes de aceitação: Valida a aprovação do clientes. Os tipos de testes de aceitação são testes alfa, beta e gama;
- Outros tipos:
- Teste de Regressão: Verifica se novos recursos quebram funcionalidade existentes;
- Teste de Estresse: Testa quanta tensão o sistema pode suportar antes de falhar.;
- Teste de Performance/Desempenho: Testa o desempenho do software em diferentes cargas de trabalho;
- Teste Funcional: Verifica funções, emulando cenários de negócios, com base em requisitos funcionais;
- Teste de Caos: Testa a integridade, simulando e identificando proativamente falhas antes que elas levem a um tempo de inatividade não planejado ou uma experiência negativa do usuário.
### Sete princípios de teste de software
1. Teste demonstra a presença de defeitos
"O teste fala sobre a presença de defeitos e não fala sobre a ausência de defeitos". O objetivo do teste de software é fazer com que o software falhe. O teste de software reduz a presença de defeitos, mas não pode garantir que o software esteja 100% livre de bugs.
2. Teste exaustivo é impossível
O processo de testar a funcionalidade do software em todas as entradas e pré-condições possíveis - válidas ou inválidas - é conhecido como teste exaustivo. O teste exaustivo é impossível porque o software nunca pode testar em todos os casos de teste, isso demandaria mais custo, tempo, esforço, etc., o que é impraticável. O que fazemos é testar apenas alguns casos de teste e assumir que o software está correto e produzirá a saída correta em todos os casos de teste.
3. Teste antecipado
Incorporar o teste o mais cedo possível no processo de desenvolvimento. Ele desempenha um papel crítico no ciclo de vida de desenvolvimento de software, quanto mais cedo bugs forem identificados mais barato e fácil será a correção.
4. Agrupamento de defeitos
Em um projeto, um pequeno número de módulos pode conter a maioria dos bugs. O Princípio de Pareto (Regra 80-20) para teste de software afirma que 80% do defeito de software vem de 20% dos módulos
5. Paradoxo do Pesticida
Repetir os mesmos casos de teste, repetidamente, não encontrará novos bug. É necessário revisar os casos de teste, e adicionar ou atualizar os casos de teste para encontrar novos bugs.
6. Teste depende do contexto
A abordagem de teste depende do contexto do software desenvolvido. Diferentes tipos de software precisam realizar diferentes tipos de teste.
7. A ilusão da ausência de erros
Se um software construído é 99% livre de bugs, mas não segue o atende às expectativas e necessidades do usuário, então ele é inutilizável.
### Jest
Observação Importante!! Os guias de testes nas aulas utilizam Jest e Cypress, essa escolha foi baseada na performance, funcionalidade e documentação dessas bibliotecas. Como tudo no mundo da programação é extremamente volátil, outras bibliotecas podem se tornar mais adequadas para o ambiente didático, caso isso aconteça sinta-se a vontade para discutir com a Head de Ensino e alterar as orientações dessa ementa.
## Teste Unitário
Um teste unitário basicamente é o teste da menor parte testável de um programa. Se você programa em uma linguagem que suporte paradígma funcional por exemplo, a menor parte testável do seu código deve ser uma função. Então um teste unitário seria o teste de qualquer função. No caso de orientação a objetos seria o teste de um método de seu objeto.
>Testes unitários, assim como qualquer teste automatizados não servem principalmente para verificar se uma função específica está funcionando, mas sim para garantir que sua aplicação continue funcionando após alguma alteração em sua base de código.
### **Quando usar**
- O projeto possui quantidade considerável de lógica
- Existem muitas funções que são reutilizadas em vários lugares
- Possui regra de negócio ou código crucial para o sucesso de fluxos de negócio
- É um produto ou projeto com vida longa
- É um projeto open-source com contribuidores
*Obs: Como saber o que é código de lógica e o que não é? Lógica, na maioria das vezes é puro Javascript, ou seja, se você está acessando o DOM, trocando classes ou animando, isso já é a consequência da lógica, é um efeito colateral de uma decisão. Geralmente funções lógicas são compostas de condicionais (if-else, switch) e loops.*
### Implementação
Um bom teste unitário deve seguir o F.I.R.S.T.:
- Rápido (Fast): Projetos grandes costumam ter muitos testes, tempo é dinheiro.
- Isolado (Isolated): Um teste unitário deve ser executado isoladamente, sem comunicações com sistemas externos ou bancos de dados.
- "Repetível" (Repeatable): Sua execução deve ter resultados consistentes caso não haja nenhuma alteração.
- "Auto-verificável" (Self-validating): O teste deve ser capaz de detectar de maneira automática se passou ou falhou.
- Minucioso (Thorough): Cobrir caminho felizes, infelizes, casos raros (edge cases)
E ainda:
- Simples: Teste devem ser fáceis de implementar e ler, sem repetição do código da função testada.
- Oportuno: A escrita de um teste não deve demorar mais que a escrita do código testado.
### **Pontos positivos**
- *Bugs* são encontrados mais rápido
- Erros são tratados preventivamente
- Mais confiança nos *deploys*
- Facilita o *refatoraçãp* (reescrever funções mantendo os mesmos inputs e outputs)
- Podem ser utilizadas como documentação;
### **Contraponto**
- Mais tempo de desenvolvimento
- Mais tempo de ambientação com o projeto
- Se uma função ou módulo foi mal planejado e precisar ser refeito, o teste precisará ser reescrito também
### **Ferramentas**
- [Tape](https://github.com/substack/tape)
- [Jasmine](https://jasmine.github.io/)
- [Jest](https://facebook.github.io/jest/)
- [Mocha](https://mochajs.org/)
- [Ava](https://github.com/avajs/ava) (*assertion* e *runner*)
- [Karma](https://karma-runner.github.io/1.0/index.html) (*runner*)
- Extras: [Chai](http://chaijs.com/), [Sinon](http://sinonjs.org/)
### **Cobertura**
Ao usar testes unitários como sinônimo de mais estabilidade e segurança, é muito comum o compromisso ou exigência quanto a uma determinada “cobertura”, geralmente medida em percentual. A princípio quanto mais dos seus arquivos Javascript, funções, linhas, condições, enfim, cada operação, é coberta por testes, melhor. Mas existe “**testar demais**”. Um bom meio termo é escolher manualmente arquivos críticos, com regra de negócio ou lógica, e medir a cobertura dos mesmos, ao invés de todos os arquivos em absoluto.
- [Instanbul](https://istanbul.js.org/)
### Pensando em como testar
- O que o código precisa fazer?
- Que dados ele recebe?
- Que dados ele precisa retornar?
- Que ações precisam acontecer para o código rodar?
### Escrita do código
- Nomes de funções e variáveis devem ser semânticos, fáceis de escrever e ler
- Usar verbos para métodos
- Métodos devem ser pequenos, ter uma única responsabilidade, permitir reuso e ser facilmente testável
- Bons códigos não precisam de comentários
- Deixe o lugar (código) melhor do que vc encontrou
- Tenha carinho no início ou conviva com os débitos técnicos
## TDD
[Entendendo Testes de Software - Willian Justen](https://willianjusten.com.br/entendendo-testes-de-software#tdd)
<img src="assets/TDD-diagram.gif" alt="diagrama TDD" width="500">
TDD é o desenvolvimento de software orientado a testes, Test Driven Development em inglês. Porém mais do que simplesmente testar seu código, TDD é uma filosofia, uma cultura. E foi fortemente adotado e influenciado pelo movimento ágil.
Abordagem evolutiva na qual o desenvolvedor **escreve o teste antes de escrever o código funcional** necessário para satisfazer aquele teste.
O TDD é dividido em três fases: Vermelho (Red), Verde (Green) e Refatoração (Refactor). Passo a passo:
1. Escrevemos um teste para a funcionalidade que ainda será implementada. Como ela não existe, caso o teste seja executado ele deve resultar em erro, ou seja, vermelho!
2. Escrevemos a funcionalidade, e executamos o teste, agora ele deve funcionar, isso é o verde.
3. Se a funcionalidade e o teste funcionam, devemos buscar (se possível) melhorar o que foi codificado. As modificações podem fazer com que o teste falhe, a refatoração deve durar até o teste voltar a funcionar. | Turma Online 28 - Imersão JavaScript | Semana 1 | 2023 | Professora Isabelle Galvão | javascript,jest,tdd,testes-unitarios | 2023-09-11T21:48:45Z | 2023-09-20T01:21:23Z | null | 5 | 42 | 12 | 0 | 35 | 3 | null | null | JavaScript |
MeerUzairWasHere/Xenify-Clone | main | # FakeMasterPage
"Xenify Clone: Dynamic & Responsive Website Replication with JSON Data and Innovative Routing Concepts"
Embark on a journey through the realms of modern web design, JSON manipulation, and groundbreaking routing techniques with the Xenify Clone GitHub repository. This project stands as a testament to my proficiency in creating dynamic, data-driven websites while pushing the boundaries of user experience through innovative routing solutions.
🚀 Project Highlights:
🎨 Masterful Design: Immerse yourself in the aesthetic brilliance of Xenify Clone. Witness how I meticulously recreated the original website's design, ensuring that every element, color, and layout not only dazzles the eye but also functions seamlessly.
🔌 JSON-Powered Dynamics: Dive into the heart of this project and discover how I harnessed the power of JSON data to breathe life into the website. Experience the magic of JSON-driven content generation, providing a seamless browsing experience that keeps users engaged.
📱 Responsive Craftsmanship: Explore Xenify Clone across an array of devices and screen sizes, marvelling at its flawless responsiveness. The website's ability to adapt elegantly underscores my commitment to delivering a user-friendly experience regardless of the platform.
🛤️ Innovative Routing: Delve deeper into the innovative routing architecture that defines this project. Drawing inspiration from C# routing concepts, I've reimagined website navigation, offering users an intuitive and structured journey akin to the elegance of master pages. Seamlessly transition between sections while enjoying consistent visuals and seamless interactions.
🌐 Project Goals:
The primary goal of this clone is twofold: to replicate the essence of Xenify and to showcase my adeptness in crafting high-quality designs, working fluently with JSON data, and pioneering new frontiers in routing techniques. By ingeniously integrating these skills, I've crafted a dynamic and responsive website that not only adapts to user interactions and devices but also redefines navigation paradigms.
Explore the Xenify Clone GitHub repository today to embark on an expedition that marries design finesse, JSON mastery, and groundbreaking routing innovations. Uncover the magic of seamless transitions, organized content presentation, and an unparalleled user journey that sets a new standard in web development excellence.
| Xenify Clone: Dynamic & Responsive Website Replication with JSON Data and Innovative Routing Concepts | css,html,javascript,json | 2023-08-28T11:08:33Z | 2023-09-17T08:07:18Z | null | 1 | 0 | 35 | 0 | 0 | 3 | null | null | HTML |
ICEI-PUC-Minas-PMV-ADS/pmv-ads-2023-2-e2-proj-int-t2-match-game | main | # MATCH GAME
`ANÁLISE E DESENVOLVIMENTO DE SISTEMAS`
`Projeto: Desenvolvimento de uma Aplicação Interativa`
`2° SEMESTRE/2023` <br>
<div align="center">

</div>
## Sobre o Match Game
O Projeto Match Game soluciona os problemas dos Gamers em relação a escolha de jogos. A aplicação tem como objetivo ajudar os jogadores a descobrirem novos jogos com base em suas escolhas de interesse pessoal sobre os games, como por exemplo: gênero, estilo dentre outros. Nosso algoritmo analisa a resposta do usuário e recomenda jogos compatíveis com o seu gosto, ampliando a descoberta de novos jogos. Além disso, o usuário poderá criar a sua biblioteca pessoal com seus jogos favoritos para que no futuro encontre-os com facilidade.
## Integrantes
* <html><head></head><body><a href="https://github.com/AndreeGS">André Guilherme Santos de Oliveira</a></body></html>
* <html><head></head><body><a href="https://github.com/brunasantos-dev">Bruna Santos</a></body></html>
* <html><head></head><body><a href="https://github.com/GabrielBruno7">Gabriel Bruno de Oliveira Souza</a></body></html>
* <html><head></head><body><a href="https://github.com/joaoalmei">João Vitor Jorge Almeida</a></body></html>
* <html><head></head><body><a href="https://github.com/luanagpinax">Luana Guimarães Pina</a></body></html>
* <html><head></head><body><a href="https://github.com/taymilagres">Tayane Ferreira Milagres</a></body></html>
## Orientador
* José Wilson da Costa.
## Instruções de utilização
Para utilizar o Match Game basta seguir as instruções abaixo:
1. Acessar o link da aplicação: <a href="https://matchgame.azurewebsites.net/"> Site Match Game</a>;
2. Se cadastrar na plataforma;
3. Fazer o Login com sua conta cadastrada;
4. Responder o questionário de acordo com sua prefêrencia para jogos.
Após completar esses passos, o nosso algoritmo irá te recomendar jogos com base em suas escolhas e você poderá montar a sua biblioteca pessoal favoritando os jogos que preferir.
>Obs: Caso já tenha uma conta cadastrada em nosso site, não é necessário efetuar o cadastro novamente.
# Documentação
<ol>
<li><a href="docs/01-Documentação de Contexto.md"> Documentação de Contexto</a></li>
<li><a href="docs/02-Especificação do Projeto.md"> Especificação do Projeto</a></li>
<li><a href="docs/03-Metodologia.md"> Metodologia</a></li>
<li><a href="docs/04-Projeto de Interface.md"> Projeto de Interface</a></li>
<li><a href="docs/05-Arquitetura da Solução.md"> Arquitetura da Solução</a></li>
<li><a href="docs/06-Template Padrão da Aplicação.md"> Template Padrão da Aplicação</a></li>
<li><a href="docs/07-Programação de Funcionalidades.md"> Programação de Funcionalidades</a></li>
<li><a href="docs/08-Plano de Testes de Software.md"> Plano de Testes de Software</a></li>
<li><a href="docs/09-Registro de Testes de Software.md"> Registro de Testes de Software</a></li>
<li><a href="docs/10-Plano de Testes de Usabilidade.md"> Plano de Testes de Usabilidade</a></li>
<li><a href="docs/11-Registro de Testes de Usabilidade.md"> Registro de Testes de Usabilidade</a></li>
<li><a href="docs/12-Apresentação do Projeto.md"> Apresentação do Projeto</a></li>
<li><a href="docs/13-Referências.md"> Referências</a></li>
</ol>
# Código
<li><a href="src/README.md"> Código Fonte</a></li>
# Apresentação
<li><a href="presentation/README.md"> Apresentação da solução</a></li>
| Match Game é o projeto de desenvolvimento de uma aplicação interativa do 2° semestre de 2023 do curso de Análise e Desenvolvimento de Sistemas (ADS) da PUC Minas. | ads,c-sharp,css,games,html,javascript,puc-minas,projeto-match-game | 2023-08-22T23:55:28Z | 2023-12-15T20:19:22Z | null | 41 | 2 | 298 | 13 | 5 | 3 | null | null | HTML |
itzzjb/basic-portfolio | main | # Portfolio-2023
This is my current portfolio created with minimum details just for fun. Only created using basic html, css and javascript.
| This is a portfolio website created with minimum details. Only developed using basic HTML, CSS and JavaScript without using any frameworks or libraries. | css,html,javascript | 2023-09-05T07:44:18Z | 2023-09-05T07:46:08Z | null | 1 | 0 | 2 | 0 | 0 | 3 | null | null | HTML |
KolibriKing/DeepOS | main | # DeepOS


A simple javascript OS
## Download and run
### Using installer
```bash
curl -s https://raw.githubusercontent.com/KolibriKing/DeepOS/main/install.sh | bash
```
### Using Github CLI
Clone the repository
```bash
gh repo clone KolibriKing/DeepOS
cd /path/to/os
```
**Start DeepOS**
```bash
npm start
```
Then navigate to [http://0.0.0.0:3000](http://0.0.0.0:3000) in a web browser
Make sure your server root is where `index.html` located and your browser supports EcmaScript 6, because from version 0.05.2 Alpha `import` statements are being used instead of `importScript` function declared in `/sys/init.js`
| A simple JavaScript OS | css,html,html-css,html-css-javascript,javascript,open-source,webapp | 2023-08-16T18:03:15Z | 2024-05-06T12:03:10Z | 2024-04-15T15:41:32Z | 2 | 9 | 287 | 0 | 1 | 3 | null | Apache-2.0 | JavaScript |
arnab-4/Arnab-portfolio | main | <p align="center">
<img src="portfolio.png" alt="Portfolio Screenshot">
</p>
<h1 align="center">My Portfolio</h1>
<p align="center">Welcome to my portfolio website, showcasing my work and skills as a web developer. This portfolio is built using Next.js, TypeScript, JavaScript, React, and Framer Motion.</p>
<p align="center">
<a href="https://arnab-portfolio-swart.vercel.app/">Visit the live site</a>
</p>
## Table of Contents
- [About](#about)
- [Technologies Used](#technologies-used)
- [Getting Started](#getting-started)
- [Usage](#usage)
- [License](#license)
- [Contact](#contact)
## About
This portfolio serves as a showcase of my projects, skills, and experience as a web developer. It's designed to provide an overview of my capabilities and to help others learn more about me and my work.
## Technologies Used
- **Next.js**: A React framework for building server-rendered React applications.
- **TypeScript**: A typed superset of JavaScript that enhances code quality and developer productivity.
- **React**: A JavaScript library for building user interfaces.
- **Framer Motion**: A popular animation library for React applications.
## Getting Started
1. **Clone the repository:**
```bash
git clone https://github.com/arnab-4/Arnab-portfolio.git
2. **Navigate to the project directory:**
```bash
cd Arnab-portfolio
3. **Install the project dependencies:**
```bash
npm install
# or
yarn install
4. **Start the development server:**
```bash
npm run dev
# or
yarn dev
5. Open your web browser and visit http://localhost:3000 to view the portfolio.
## Usage
Feel free to use this portfolio as a template for your own portfolio. Replace the content and add your projects, skills, and information as needed. Customize the design and layout to suit your preferences.
## License
This project is licensed under the MIT License - see the LICENSE file for details.
## Contact
If you have any questions or would like to get in touch, you can find me on:
- **GitHub**: [`arnab-4`](https://github.com/arnab-4)
- **LinkedIn**: [`Arnab Manna`](https://www.linkedin.com/in/arnab-manna-442586240/)
- **Email**: `arnabmanna203@gmail.com`
Thank you for visiting my portfolio! 😊
```bash
In this updated version, I've added an introductory image, improved formatting, added a live site link, and provided a "Contact" section for users to reach out to you. Be sure to replace `arnab-4`, `https://arnab-portfolio-swart.vercel.app/`, `arnabmanna203@gmail.com`, and other placeholders with your actual information and links. You can also customize the styling further using HTML and CSS within your README if desired.
| Explore my portfolio website built with Next.js, TypeScript, React, and Framer Motion. This showcase highlights my web development skills and projects, providing insights into my expertise. Discover the power of modern web technologies in action | css,framer-motion,javascript,nextjs,react,tailwindcss,typescript | 2023-09-10T10:44:15Z | 2023-12-14T14:26:55Z | null | 1 | 1 | 10 | 0 | 0 | 3 | null | null | TypeScript |
appjonathan/javascript-exercises | main | null | couple of javascript exercises | css,html,javascript,nextjs,nodejs,npm | 2023-08-25T11:04:13Z | 2023-10-24T07:44:11Z | null | 4 | 4 | 82 | 0 | 0 | 3 | null | null | JavaScript |
xadidja03/my-portfolio-project | master | # my-portfolio-project





**Project Name:** My Portfolio
**Description:**
Welcome to my portfolio repository! This project showcases my skills, experiences, and projects I've worked on. As a passionate java software developer enthusiast, I've created this portfolio to provide an overview of my journey and capabilities.
**Key Features:**
- **About Me:** Learn more about me, my background, and what drives my passion for [your field/industry].
- **Projects:** Explore a collection of projects I've developed, demonstrating my technical skills and problem-solving abilities.
- **Skills:** Discover the technologies and tools I'm proficient in, including [list some key skills/technologies].
- **Experience:** Get insights into my professional journey, including internships, freelance work, and collaborations.
- **Contact:** Reach out to me through my provided contact information or social media profiles.
Feel free to browse through my code and project details. If you're interested in collaboration or have any inquiries, please don't hesitate to get in touch. Thank you for visiting my portfolio repository!
**Technologies Used:**
- HTML
- CSS
- JavaScript
- Bootstrap
| Welcome to my portfolio repository! This project showcases my skills, experiences, and projects I've worked on. | css,html5,javascript | 2023-08-18T10:11:21Z | 2023-08-19T17:54:41Z | null | 1 | 0 | 3 | 0 | 0 | 3 | null | null | HTML |
newcloudtechnologies/squadus-nodejs-botsdk | master | # Squadus bot SDK
Пакет `@squadus/botsdk` содержит HTTP-клиент для осуществления запросов к серверу Squadus. Используется для разработки ботов, работающих с мессенджером Squadus.
# 📚 Документация
* [Требования](#требования)
* [Установка](#установка)
* [Использование](#использование)
* [Обработка ошибок](#обработка-ошибок)
* [API](#api)
* [Примеры](#примеры)
## Требования
### Node.js
Пакет `@squadus/botsdk` поддерживается Node v14 и выше. Рекомендуется использовать [последнюю версию
Node](https://github.com/nodejs/Release#release-schedule).
## Установка
Для установки @squadus/botsdk выполните команду:
```shell
$ npm install @squadus/botsdk
```
## Использование
### Инициализация клиента
Пакет `@squadus/botsdk` экспортирует класс `SquadusClient`. Для использования нужно создать экземпляр класса, передав в конструктор адрес сервера, токен и разрешенный путь до папки с файлами, которые разрешено прикреплять к сообщениям, а затем вызвать `connect`.
```javascript
import { SquadusClient } from '@squadus/botsdk';
// Создание клиента
const squadusClient = new SquadusClient({
token: 'a89cDxjI1l',
server: 'https://im.example.ru/',
allowedAttachmentsPath: './',
});
await squadusClient.connect();
```
Токен для авторизации можно сгенерировать вручную в веб- или настольном клиенте Squadus. Для этого необходимо:
1. Войти в учетную запись бота.
2. Перейти на странице «Настройки» в раздел «Токены личного доступа».
3. На открывшейся странице ввести название токена.
4. Установить флажок «Игнорировать двухфакторную аутентификацию».
5. Нажать «Добавить».
---
### Вызов метода
Каждый из методов `SquadusClient` относится к одной из сущностей:
- `room`;
- `message`;
- `subscription`.
Например, метод `sendMessageByRid` используется для отправки сообщения.
Чтобы его вызвать, необходимо обратиться к нему следующим образом: `squadusClient.message.sendMessageByRid()`, где
- `squadusClient` – инстанс класса `SquadusClient`;
- `message` – сущность, которая содержит в себе методы для совершения операций над комнатами;
- `sendMessageByRid` – метод для отправки сообщений.
```javascript
// При известном ID комнаты (канала, команды или прямого диалога с пользователем)
const roomId = '...';
(async () => {
const result = await squadusClient.message.sendMessageByRid({
msg: 'Hello world!',
rid: roomId,
});
console.log('Message is sent successfully');
})();
```
##### Примечание:
Некоторые методы, такие как `connect`, `getSettings`, не относятся ни к одной из сущностей. Такие методы можно вызвать напрямую из инстанса класса `SquadusClient`.
---
Так же возможно использовать имя метода в виде строки, чтобы:
- динамически определять вызываемый метод,
- вызывать методы, которые недоступны в используемой версии клиента.
Для этого можно воспользоваться конструкцией: `squadusClient.restClient.post(im.create, [options])`.
Приведенный выше метод может быть использован следующим образом:
```javascript
(async () => {
const response = await squadusClient.restClient.post('im.create', {
username: 'new_user',
});
})();
```
---
## Обработка ошибок
Ошибки могут возникать по нескольким причинам: пользователь не имеет прав вызывать метод или передан неверный аргумент. В таких случаях возвращенный промис будет отклонен с ошибкой. Необходимо обработать ошибку и использовать содержащуюся в ней информацию, чтобы решить, как приложение, использующее пакет `@squadus/botsdk`, будет функционировать дальше.
```javascript
// Import ErrorCode from the package
import { SquadusClient, ErrorCode } from 'squadus/botsdk';
const { TOKEN, SERVER } = process.env;
const squadusClient = new SquadusClient({
token: TOKEN || '',
server: SERVER || '',
});
(async () => {
try {
await squadusClient.connect();
} catch (error) {
if (error === ErrorCode.AuthorizationError) {
console.log('Authorization error');
}
}
})();
```
<details>
<summary markdown="span">
<strong><i>Типы ошибок</i></strong>
</summary>
Есть несколько типов ошибок из `ErrorCode`, с которыми можно столкнуться:
- `ErrorCode.AuthorizationError`: запрос не может быть отправлен из-за ошибки в авторизации. Основная причина – непройденная авторизация или истекший токен.
- `ErrorCode.NoSuchFileOrDirectory`: нет такого файла или директории. Ошибка может возникнуть при отправке файлов, если был неверно передан путь к файлу.
- `ErrorCode.EmptyResult`: нет результата отправки. Если сообщение было отправлено с ошибочным id комнаты (`rid`), то в ответе не будет сообщения. Значит сообщение не было доставлено.
- `ErrorCode.InvalidUser`: ошибочный пользователь. Если производилась попытка создать комнату с пользователем, которого нет, комната создана не будет.
- `ErrorCode.RoomNotFound`: комната не найдена. Если при добавлении или удалении пользователя используется неверный `rid`, возникнет такая ошибка.
- `ErrorCode.CommonError`: общая ошибка. Если не было установлено причин ошибки, будет возвращена `CommonError` ошибка.
- `ErrorCode.ChannelNameExists`: канал с указанным названием уже существует.
- `ErrorCode.FileToLarge`: отправляемый файл привышает допустимый размер.
- `ErrorCode.MessageSizeExceeded`: количество символов в отправляемом сообщении привышает установленный на сервере лимит.
- `ErrorCode.MessageSizeExceeded`: количество символов в отправляемом сообщении привышает установленный на сервере лимит.
</details>
---
## Методы API
В таблице представлены описание методов, их аргументов и возвращаемых ими значений.
| Метод | Группа | Аргументы | Ответ | Описание |
|---------------------------------|-----------|-----------------------------------------------------|-----------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `connect()`| - | - | `Promise<void>` | Выполняет авторизацию |
| `getSettings(settings)` | - | `settings?: Array<SettingsName>` | `RestResponse<SettingsResponseData>` | Возвращает значения настроек, имена которых были переданы в метод. Если не передавать имена, будут возвращены все настройки |
| `sendMessageByRid(params)` | `message` | `params: SendMessageByRidParams` | `Promise<MessageResponseData>` | Выполняет отправку сообщения по идентификатору комнаты |
| `sendAttachment(params)` | `message` | `params: SendAttachmentSDKParams` | `Promise<MessageResponseData>` | Выполняет отправку вложения по идентификатору комнаты |
| `createDirectRoom(username)` | `room` | `username: string` | `Promise<DirectRoomResponseData \| undefined>` | Создает личную переписку с пользователем, имя которого было передано в качестве аргумента |
| `addUsersToRoom(params)` | `room` | `params: AddUsersToRoomParams` | `RestResponse<boolean>` | Добавляет пользователя в существующую комнату |
| `removeUserFromChannel(params)` | `room` | `params: RemoveUserFromChannelParams` | `RestResponse<RemoveUserFromChannelResponseData>` | Удаляет пользователя из комнаты, в которой он состоит |
| `createChannel(params)` | `room` | `params: CreateChannelSDKParams` | `RestResponse<ChannelData>` | Создает комнату с переданными параметрами |
| `setUserRole(params)` | `room` | `params: CreatePublicChannelSDKParams \| CreatePrivateChannelSDKParams` | `RestResponse<CreatePublicChannelResponseData \| CreatePrivateChannelResponseData>` | Изменяет роль пользователя в комнате |
| `saveRoomSettings(params)` | `room` | `params: SaveRoomSettingsSDKParams` | `RestResponse<SaveRoomSettingsData>` | Изменяет настройки комнаты по ее идентификатору |
| `onMessage(callback[, rid])` | `subscription` | `callback: (msg: LastMessage) => void, rid?: string` | `Promise<OnMessagesResponse>` | Вызывает переданную функцию с новым полученным сообщением в определенном чате `rid` или во всех |
| `onRoomChange(rid, callback)` | `subscription` | `rid: string, callback: (data: RoomEvent) => void` | `Promise<OnRoomChangeResponse>` | Вызывает переданную функцию с каждым событием в чате |
| `onReaction(rid, msgId, callback)` | `subscription` | `rid: string, msgId: string, callback: (message: Message) => void` | `Promise<onReactionResponse>` | Вызывает переданную функцию с сообщением при изменении его реакций |
| `onEvent(callback)` | `subscription` | `callback: (data: WsData) => void` | `Subscription` | Вызывает переданную функцию со всеми событиями, полученными по протоколу WebSocket |
| `subscribe(collection, event)` | `subscription` | `collection: Collections, event: string` | `Promise<WsSubscription>` | Позволяет произвольно подписаться на события, которые будут получены через `onEvent` |
| `close()` | `subscription` | - | `Promise<void>` | Закрывает соединение |
| `reopen()` | `subscription` | - | `Promise<void>` | Переоткрывает соединение |
| `subscribeNotifyUser()` | `subscription` | - | `Promise<(WsSubscription)[]>` | Осуществляет подписку на WebSocket-события, связанные с текущим пользователем |
| `subscribeLoggedNotify()` | `subscription` | - | `Promise<(WsSubscription)[]>` | Осуществляет подписку на WebSocket-события об изменениях авторизованных пользователей |
| `subscribeNotifyAll()` | `subscription` | - | `Promise<(WsSubscription)[]>` | Осуществляет подписку на общие для всех пользователей WebSocket-события|
| `unsubscribe(id)` | `subscription` | `id: string` | `Promise<UnsubscribeResponseData>` | Позволяет отписываться от WebSocket-событий по id. Эти id молжно получить при подписке |
| `getUserInfoByUsername(username)` | - | `username: string` | `RestResponse<UserResponseData>` | Запрашивает информацию о пользователе по его имени |
| `sendMessageToThread(params)` | `message` | `params: SendMessageToThreadSDKParams` | `Promise<MessageResponseData>` | Отправляет сообщение в цепочку ответов |
| `readThread(parentMessageId)` | `room` | `parentMessageId: string` | `Promise<void>` | Помечает все сообщения внутри цепочки ответов с переданным `parentMessageId` как прочитанные |
## Примеры
В корне пакета `@squadus/botsdk` находится папка `examples` – это проект с несколькими примерами использования методов из **таблицы 1**.
С помощью приведенных примеров можно ознакомиться с использованием данного пакета на практике.
Чтобы выполнить код из папки `examples`, необходимо:
1. Установить зависимости из папки `examples`: `cd examples && yarn`.
2. Внести токен пользователя (бота), от чьего имени будут осуществляться действия, адрес сервера и имя собеседника в файл `./examples/.env`.
```javascript
SERVER="https://******"
TOKEN="******"
PARTNER_NAME="yourPartnerName"
```
3. Запустите пример `yarn create-direct`. Если токен и адрес сервера указаны верно, а также пользователь, с которым создается диалог, существует, в консоль будет выведено сообщение `Direct dialog with ${partner_name} was created successfully`.
Примеры, которые помогут начать пользоваться `@squadus/botsdk`:
### 1. connect.ts: `yarn connect`
Будет произведена авторизация.
### 2. getSettings.ts `yarn get-settings`
Будут получены значения настроек с сервера для `Accounts_AllowRealNameChange` и `Accounts_AddGuestsToChats`.
### 3. createDirectRoom.ts `yarn create-direct`
Будет создан диалог с собеседником, указанным в файле `.env`, если такой пользователь существует.
### 4. sendMessage.ts `yarn send-message`
С собеседником, указанным в файле `.env`, если такой пользователь существует, будет создан диалог. Затем ему будет отправлено сообщение с текстом `Hi`.
### 5. sendAttachment.ts `yarn send-attachment`
С собеседником, указанным в файле `.env`, если такой пользователь существует, будет создан диалог. Затем ему будет отправлено изображение `example.png` из проекта с сообщением `Image with logo`. Если изображение будет заменено на файл с размером, превышающим допустимый, в консоли появится сообщение об ошибке: `File is too large`. Также файл должен находиться по пути, который соответствует параметру `allowedAttachmentsPath`, указанному при создании `squadusClient`.
### 6. addRemoveChannelUser.ts `yarn add-remove-channel-user`
Собеседник, указанный в файле `.env`, если такой пользователь существует, будет добавлен в указанный канал. Затем он будет удален из него.
### 7. createPrivateChannel.ts `yarn create-channel:private`
Будет создан приватный канал с именем, указанным в константе `PRIVATE_CHANNEL_NAME`.
### 8. createPrivateChannel.ts `yarn create-channel:public`
Будет создан открытый канал с именем, указанным в константе `PUBLIC_CHANNEL_NAME`.
### 9. changeUserRole.ts `yarn change-role`
Будет создан открытый канал c пользователем. Затем пользователю будет назначена роль «Модератор».
### 10. editChannel.ts `yarn edit-channel`
Будет создан канал, затем имя канала будет изменено.
### 11. subscribeMessages.ts `yarn subscribe-messages`
Ботом будет выполнена подписка на все новые сообщения, а также отдельная подписка на новые личные сообщения от пользователя, имя которого указано в переменной окружения `PARTNER_NAME`. При получении ботом сообщения _«Hi»_ от пользователя `PARTNER_NAME`, будет отправлен ответ _«Hello»_. При получении ботом сообщения _«Bye»_ из любого чата, будет отправлен ответ _«Bye»_. Через 20 секунд произойдет отписка от сообщений _«Hi»_, через 40 секунд произойдет отписка от сообщений _«Bye»_.
### 12. subscribeReaction.ts `yarn subscribe-reaction`
Ботом будет выполнена подписка на все новые сообщения.
После получения ботом сообщения _«start»_, бот отправит ответное сообщение, на реакции которого произойдет подписка ботом.
Если поставить реакцию с эмоджи :clap: на это сообщение любым пользователем, в тот же чат бот отправит сообщение, содержащее эмоджи :sunrise_over_mountains:, если будет реакция с :grinning:, то сообщение с эмоджи :soccer:.
После отправки ботом сообщения на реакцию, бот отпишется от реакций на это сообщение.
### 13. subscribeRoom.ts `yarn subscribe-room`
Ботом будет выполнена подписка на события в личных сообщениях с пользователем, имя которого указано в переменной окружения `PARTNER_NAME`.
Если пользователь `PARTNER_NAME` или сам бот начал или прекратил печатать сообщение в этом чате, в консоль будет выведено сообщение об этом.
### 14. sendMessageToThread.ts `yarn send-message:thread`
Будет отправлено сообщение, на основании идентификатора которого будет создана цепочка ответов.
### 15. readThread.ts `yarn read-thread`
Будет отправлено сообщение, на основании идентификатора которого будет создана цепочка ответов. Цепочка ответов будет отмечена как прочитанная пользователем, имя и токен которого указаны в переменных окружения `PARTNER_NAME` и `PARTNER_TOKEN` соответственно.
| null | bot,bot-sdk,nodejs,botsdk,squadus,javascript,typescript,squadus-sdk | 2023-09-01T19:07:17Z | 2023-09-01T19:16:53Z | 2023-09-01T19:16:53Z | 1 | 0 | 2 | 2 | 0 | 3 | null | Apache-2.0 | TypeScript |
sreejray/CHESS-JS | master | ### Chess Game (VS Computer)
How to code a chess game with javascript. in this javascript chess game you can play with computer, flip board and set position. Also code from chessboardjs and chess.js library has been used❗️
# FEN Notation
FEN (Forsyth-Edwards Notation) is a standard notation used to represent a particular chessboard position. It provides a concise and human-readable way to describe the placement of chess pieces on the board, as well as other important information about the position. Here's how FEN notation works:
A FEN string consists of six fields separated by spaces:
1. **Piece Placement (8 ranks)**: This field represents the positions of the pieces on the board. Each rank is represented by a series of characters, where:
- `K` represents a white king.
- `Q` represents a white queen.
- `R` represents a white rook.
- `B` represents a white bishop.
- `N` represents a white knight.
- `P` represents a white pawn.
- `k` represents a black king.
- `q` represents a black queen.
- `r` represents a black rook.
- `b` represents a black bishop.
- `n` represents a black knight.
- `p` represents a black pawn.
- Digits (1-8) represent empty squares, with the number indicating the count of consecutive empty squares.
For example, `rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR` represents the starting position of a chess game.
2. **Active Color (1 character)**: This field indicates which player's turn it is to move. `w` represents White's turn, and `b` represents Black's turn.
3. **Castling Availability (1-4 characters)**: This field indicates whether castling is still available for each player. The characters used are:
- `K` for White kingside castling.
- `Q` for White queenside castling.
- `k` for Black kingside castling.
- `q` for Black queenside castling.
- `-` if no castling is possible.
4. **En Passant Target Square (1-2 characters)**: If a pawn has just moved two squares forward from its starting position, this field represents the square where the opposing pawn can capture en passant. Otherwise, it is represented as `-`.
5. **Halfmove Clock (1-2 characters)**: This field represents the number of half-moves (ply) since the last pawn move or capture. It is used for the fifty-move rule.
6. **Fullmove Number (1-2 characters)**: This field represents the number of full moves (complete turns) in the game. It starts at 1 and is incremented after Black's move.
Here's an example FEN string:
```
rnbqkb1r/ppp1pppp/5n2/3p4/3P4/8/PPP2PPP/RNBQKBNR w KQkq - 0 4
```
This FEN represents a specific board position where it's White's turn to move, both sides have the potential to castle kingside and queenside, there's no en passant target square, the halfmove clock is 0, and the fullmove number is 4.
You can use FEN notation to record and share specific chess positions and use them for various purposes, including setting up custom positions for analysis or practice.
| A chess game made using html, css & js. | chess-ai,chess-game,css-animations,css-flexbox,css-grid,html-css-javascript,html5,javascript | 2023-08-31T13:47:35Z | 2023-08-31T15:03:00Z | null | 1 | 0 | 3 | 0 | 0 | 3 | null | null | JavaScript |
LakshayD02/Project-Management-System | main | # Project-Management-System
Designed using Technologies like HTML, CSS, JavaScript, Bootstrap, Jquery, PHP, and MySQL Database. Project Management System is a means of managing a project by planning, organizing, and managing its different required aspects. It is a web-based platform designed to help individuals and teams effectively plan, track, and manage projects of all sizes.
Check the Working of the Project Here : https://bit.ly/44KpAO3
Deployed Link : https://projectmanagement-lakshay.000webhostapp.com/
Username: User
Password: Password
| Designed using Technologies like HTML, CSS, JavaScript, Bootstrap, Jquery, PHP and MySQL Database. It is a means of managing a project by planning, organizing, and managing its different required aspects. It is a web-based platform designed to help individuals and teams effectively plan, track, and manage projects of all sizes. | ajax,bootstrap,bootstrap4,cascading-style-sheets,css,html,html5,javascript,jquery,jquery-plugin | 2023-09-07T18:10:44Z | 2024-04-14T16:25:43Z | null | 1 | 0 | 12 | 0 | 0 | 3 | null | null | PHP |
localhostd3veloper/noobjs | main | # Introduction
- Well, we all start somewhere to start learning `JavaScript`, I wish this kind of beginner's guide would be available for me to get the very basics of JS.
- If you are not new to javascript, this will be a perfect read to brush up your skills or building a stronger foundation.
Enjoy Reading
## What is Javascript
_JS is synchronous single-threaded language_
`Synchronous` - It executes its code line by line.
`Single-Threaded` - Executes one line at a time.
### How does JS Works?
- Javascript works inside an execution context,
they have 2 components namely `Memory` and `Code`
- Memory is also called as `Variable Environment`
- Code is also called `Thread of Execution`
## Hoisting
- JS Code Hoisting is when a javascript code executes then _even before the execution_ of the first line of the code it scans the entire code for declarations of functions & variables
- Allocates memory for it in the `Global Execution Context` as variables/identifiers as `undefined` and creates a reference in case of `functions`.
```javascript
var x = 10; // x will be undefined before execution
function getName() {
console.log('Hello World');
} // gets copied entirely
```
## Undefined vs Not Defined
- Well as javascript creates a global execution context,
- It allocates memory to all the declared variables & functions
- By default, it allocates `undefined` to it. and when the variable assignment line is executed it assigns the respective value to it.
### Eg `undefined`
```javascript
var a;
console.log(a === undefined); //true
```
### Not Defined
When JS tries to find a variable that was not found in the initial scan it gives the. implies that there was not memory allocated to the variable.
#### Eg `Not Defined`
```javascript
var a = 10;
console.log(x); //here x is not defined in the scope
```
`ReferenceError: x is not defined`
## Temporal Dead Zone -
let us look at this example
```js
console.log(a); // Error
console.log(b); // undefined
let a = 10;
var b = 10;
```
`ReferenceError: cannot access 'a' before initialization`
`let` and `const` are **not** on the global object
instead they are stored in a **different memory space than global** called `SCRIPT` and since the `console.log` points to the `global` object, it does not find `let a = 10;` in it.
### Example for Temporal Dead Zone
```js
1. let c;
2. const a = 10;
3. if (a === 10) {
4. c = "Temporal Dead Zone Ended";
5. }
```
Here, the above example shows that until the variable `c` or `a` is assigned any value, it will stay in a special zone called as `Temporal Dead Zone` 💀
### let v/s const v/s var
1. In case of `let` and `const` there are no re declarations allowed.
2. Not even the console will work 😅
```js
console.log('This will not print');
let a = 10;
var a = 10; // Redeclaration of identifier 'a'
```
Resulting in
`SyntaxError: Identifier 'a' has already been declared.`
```js
var a = 10;
var a = 'Please like this article';
```
No Error is there, re declarations are allowed in `var`
### How to avoid temporal dead zone?
_- Always put your declrations on the top of the file so that as soon as it starts executing it will get all the variables declared._
_- By doing this we can shrinking the Dead Zone Window close to zero by moving all the declarations at the top._
## Block in Javascript
Block is a set of lines covered by `{}` to provide it as a single statement.
### Example
```js
if (true) console.log('Single Statement');
```
That's the reason we dont need Curly Braces `{}` in `if condition` because it's a **Single Statement**
We use `{}` to provide a block, to have multiple statements
### Example
```js
if(condition){
line1;
line2;
...
} else {...}
function hello(){
line1;
line2;
...
}
```
## Scopes in Block v/s Global
`let` & `const` are block scoped and `var` is global scoped.
### How?
Example again! Let's say we execute this code
```js
{
var a = 10; //global
let b = 20; //block
const c = 30; //block
}
```
### Proof

## Shadowing
It is a concept of js where a variable declared using `var` hides the global scoped variable
```js
var a = 10;
{
var a = 100; // this 'a' shadows the global scoped 'a'
}
console.log(a); // results 100
```
But `let` and `const` works differently because they do not exist outside the current scope
```js
let b = 10;
{
let b = 100;
}
console.log(b); // results 10
let c = 1;
{
let c = 10;
}
console.log(c); // results 1
```
### Illegal Shadowing 😵💫
It is when we try to scope a `let` declared variable using a `var`.
```js
let a = 100;
{
var a = 10; // Error! Illegal Shadowing
let a = 2; // works just fine!
}
```
`SyntaxError: Identifier 'a' has already been declared`
## Closures 😶🌫️
A function bundling with its lexical scope is closure.
It's easy with an example
```js
function first() {
var a = 10;
function second() {
console.log(a);
}
return second;
}
...
let getFunction = first();
/* after this line, instance of
first() function is popped out of
the call stack */
...
getFunction(); // outputs: 10;
```
Theoretically it should not work as the identifier `a` needs to be outside the scope BUT when the `second()` function is returned it comes with its lexical scope as well. That's what exactly closure is.
## Tricky Interview Question on setTimeout and Closures
> Problem Statement - Print numbers from 1 to 5 with an interval of 1 second each.
You might get the confidence that this is a simple question and will come up with a code looking like this 👇
```js
for (var i = 0; i <= 5; i++) {
setTimeout(() => {
console.log(i);
}, i * 1000);
}
```
Above code would go wrong [(why?)](#identifying-the-problem-and-the-fix) by printing 6 in each line. and can be fixed by just using a `let` instead of a `var`
### What if?
The interviewer asked you to do it with `var` only?
Relax don't sweat out. I'll tell you what to code and explain it how it works.
Here's the code that you're interested in 😆
with the explaination
```javascript
for (var i = 0; i <= 5; i++) {
// used var
function closure(i) {
setTimeout(() => {
console.log(i);
}, i * 1000);
closure(i);
}
}
```
### Identifying the problem
- Well the problem with the previous code using `var` was js maintains an execution context and the way the `setTimeout()` works is it stores the callback function and attaches a timer to it and goes to the next line.
- as the variable `i` does not exists in the callback function it points to the outside reference of `i` from the `for` loop.
- Now it creates 5 copies of functions with the timer and now by the timer expires js does not wait, `for` loop ends. it is just too late. the value of `i` becomes `6` at last.
### Fixing the problem
#### Fix 1: using let declaration
We have discussed above that `let` is block scoped, the answer lies within that line.
> When we use the `let` it creates separate blocks for its memory allocation. whereas in case of `var` all 5 `functions` were pointing to the same memory space available in the global execution context
#### Fix 2: using closures or functions
This will actually provide them a new copy of `i` in it everytime the `setTimeout()` was called
## Types of Writing Functions
### Function Declaration
```js
function hello() {
console.log('Like This Blog and star the repo');
}
```
### Function Expression
```js
const callAPI = async function () {
const data = fetch('https://somesite.io/get/data/1232');
return data;
};
```
### Parameters v/s Arguments
```js
function greet(name) {
// identifier name is a parameter
console.log(`Hello ${name}`);
}
greet('Gautam'); // "Gautam" is an Argument
```
### First Class Functions
- functions having functions in their `arguments`.
- The ability of functions to be used as values and be able to return and pass as `arguments` to another `function`.
```js
function first(doesSomething) {
doesSomething();
}
first(() => {
console.log('hello World');
});
```
### Callback Functions in JS
These functions are sent in the arguments of another functions and are used respectively whenever needed,
```js
setTimeout(function () {
console.log('Timer');
}, 5000);
function x(y) {
console.log('x');
}
x(function y() {
console.log('y');
});
```
### Arrow Functions
- These functions are introduced in ES6 or EcmaScript 6 (2015)
- They just allow us to write shorter syntaxes without using the keyword `function`
#### Before
```js
function incrementCounter() {
count++;
setData('');
}
```
#### After
```js
const incrementCounter = () => {
count++;
setData('');
};
```
Above method allows us to write functions without using the `function` keyword.
---
### Read More
- [Javascript Sorting](./JavascriptSort.md)
- [Map Filter Reduce](./MapFilterReduce.md)
>If you liked reading till here. please like this blog and go to [github](https://www.github.com/localhostd3veloper/noobjs) for the codes and please star the repository.
| The ultimate javascript starter pack | javascript,js | 2023-08-31T09:58:31Z | 2024-02-23T09:26:18Z | null | 1 | 0 | 38 | 0 | 0 | 3 | null | null | JavaScript |
ankit071105/Donation-for-Needy-People | main | # Trust-website
# Donating Poor and needy people
A donation trust web page
| A donation trust web page | css,html,javascript | 2023-08-28T17:57:14Z | 2023-08-29T03:18:14Z | null | 1 | 0 | 4 | 0 | 0 | 3 | null | null | HTML |
HopefulHeart2020/dlop_ai_landing | main | <h1 align="center">Welcome to Dlops 👋</h1>
<p align="center">
<img alt="Version" src="https://img.shields.io/badge/version-1.0.0-blue.svg?cacheSeconds=2592000" />
<img src="https://camo.githubusercontent.com/e13276d25e087473204c677751e4d9b9b6ea5fbd/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f61757468302f6e6f64652d6a736f6e776562746f6b656e2e7376673f6272616e63683d6d6173746572" alt="Build Status" style="max-width:100%;">
</p>
<p align="center">
<a href="https://dlopsai.netlify.app/">Visit Website</a>
</p
> **Description:** dlops AI landing page
<h4 align="center"> #Nextjs </h4>
### All Links Here :link:
| LIVE URL | https://dlopsai.netlify.app/ |
| :------: | :--------------------------: |
| | |
| | |
| | |
> Install:saxophone: root & client folder
```sh
npm install
```
## Usage
```sh
npm run dev
```
## 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.
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!!!
| dlops AI landing page | css,javascript,nodejs,reactjs | 2023-08-25T21:13:01Z | 2023-09-22T14:35:08Z | null | 2 | 0 | 7 | 0 | 0 | 3 | null | null | CSS |
Julellisg/Pomodoro-Timer | main | <a name="readme-top"></a>
# About this Project
A Pomodoro Timer to help you time manage your work and help you reach your goals! Work at your own pace, choose a color theme, and set the mood!
Visit here: https://julellisg.github.io/Pomodoro-Timer/
<div style="display: flex; justify-content: center; align-items: center;">
<img src="src/1.png" alt="First Image" width="600"/>
</div>
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## :hammer: Built With
<div>
<img src="https://img.shields.io/badge/HTML5-E34F26?style=for-the-badge&logo=html5&logoColor=white">
<img src="https://img.shields.io/badge/css3-%231572B6.svg?style=for-the-badge&logo=css3&logoColor=white">
<img src="https://img.shields.io/badge/JavaScript-323330?style=for-the-badge&logo=javascript&logoColor=F7DF1E">
</div>
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## :rocket: Usage
<div style="display: flex; justify-content: center; align-items: center;">
<img src="src/2.png" alt="Second Image" width="450"/>
</div>
1. Progression. Informs you if you are **WORKING** or **RESTING**. The smaller number in square brackets represents what set you are currently on.
2. You have the freedom of **pausing/resuming,** **skipping** to the next work/rest session, and **resetting** the timer completely.
3. These input boxes While the timer is running, the input boxes are temporarily disabled and you cannot edit any values.
4. Button that is currently **unactive**. Pressing it reveals the accordion that reveals more options.
<div style="display: flex; justify-content: center; align-items: center;">
<img src="src/3.png" alt="Third Image" width="450"/>
</div>
5. Button that is currently **active**.
6. Sound effects referring to what is played whenever the timer reaches `00:00`. If more sound effects are added, then they will be placed in this section.
7. A wide variety of different ambient soundtracks to relax and to study to. Mix, match, and adjust the volumes to your desired output.
8. Different color themes to choose from. Raki (left) and Chiaki (right).
(Raki is my favorite :blush:)
<div style="display: flex; justify-content: center; align-items: center;">
<img src="src/4.png" alt="Fourth Image" width="400"/>
<img src="src/5.png" alt="Fifth Image" width="400"/>
</div>
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## :pencil: License
Distributed under the MIT License. See `LICENSE.txt` for more information.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## :phone: Contact
- Julian Ellis Geronimo - julianellisg@gmail.com
- Project Link - https://github.com/Julellisg/Pomodoro-Timer
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## :book: Acknowledgements
This app is motivated by several Pomodoro Timers found on YouTube, as well as [Pomofocus](https://pomofocus.io/), by [Yuya Uzu](https://github.com/uzura89).
All sound effect(s) and ambient noises are taken from [Pixabay](https://pixabay.com/).
- **Interval Switch Sound** - [Correct 2](https://pixabay.com/users/pixabay-1/) - By [Pixabay](https://pixabay.com/users/pixabay-1/)
- **Rain** - [Soft Rain Ambient](https://pixabay.com/sound-effects/soft-rain-ambient-111154/) - By [SoundsForYou (Michael)](https://pixabay.com/users/soundsforyou-4861230/)
- **Campfire** - [Campfire Crackling | Fireplace Sound](https://pixabay.com/sound-effects/campfire-crackling-fireplace-sound-119594/) - By [SoundsForYou (Michael)](https://pixabay.com/users/soundsforyou-4861230/)
- **Forest, Wind, and Birds** - [Forest wind and birds](https://pixabay.com/sound-effects/forest-wind-and-birds-6881/) - By [Pixabay](https://pixabay.com/users/pixabay-1/)
- **River Stream** - [Relaxing, Mountains, Rivers, Streams, Running Water](https://pixabay.com/sound-effects/relaxing-mountains-rivers-streams-running-water-18178/) - By [Pixabay](https://pixabay.com/users/pixabay-1/)
And the color themes are named after some virtual idols of PixelLink.
<p align="right">(<a href="#readme-top">back to top</a>)</p> | A pomodoro timer that you can use to be productive! | css,customizable,html,javascript,pomodoro-timer,project | 2023-08-10T01:17:41Z | 2023-08-13T15:29:36Z | null | 1 | 0 | 19 | 0 | 0 | 3 | null | MIT | JavaScript |
Bjorn86/fm-job-listings | main | # Проект - Job listings
[README in English](./README-en.md)
Проект представляет из себя однострочное приложение, которое позволяет пользователю найти работу в различных компаниях. Выполнен в рамках задания с сайта [Frontend Mentor](https://www.frontendmentor.io).
## Оглавление
- [Обзор проекта](#обзор-проекта)
- [Задачи проекта](#задачи-проекта)
- [Функциональность проекта](#функциональность-проекта)
- [Screenshot](#screenshot)
- [Директории проекта](#директории-проекта)
- [Запуск проекта](#запуск-проекта)
- [Ветки проекта](#ветки-проекта)
- [Ссылки](#ссылки)
- [Ход выполнения проекта](#ход-выполнения-проекта)
- [Используемые технологии](#используемые-технологии)
- [Чему я научился работая над проектом](#чему-я-научился-работая-над-проектом)
- [Автор](#автор)
## Обзор проекта
### Задачи проекта
Предоставлять пользователю информацию о вакансиях в различных компаниях.
### Функциональность проекта
- Вывод вакансий
- Фильтрация вакансий с помощью тегов
### Screenshot

### Директории проекта
- `src/assets` — директория со статичными файлами
- `src/components` — директория с компонентами
- `src/features` — директория с фичами
- `src/styles` — директория с глобальными стилями, переменными и миксинами
- `src/UI` — директория с компонентами UI-kit
### Запуск проекта
- `npm start` - режим разработки с запуском локального сервера
- `npm run build` - режим сборки проекта в продакшн
- `npm run test` - запуск в режиме тестирования
- `npm run eject` - режим извлечения конфигов CRA
- `npm run lint` - запускает линтер
- `npm run lint:fix` - запускает линтер, в режиме устранения мелких замечаний
- `npm run format` - запуск форматера кода
- `npm run prepare` - подготавливает Husky к работе, запускается единожды при старте проекта
- `npm run commit` - запускает commitizen для коммита
- `npm run storybook` - запускает Storybook в режиме разработки
- `npm run build-storybook` - запускает Storybook в режиме продакшн
### Ветки проекта
- `main` - [главная ветка. Версия с использованием Redux Toolkit](https://github.com/Bjorn86/fm-job-listings/tree/main)
- `redux` - [версия с использованием Redux](https://github.com/Bjorn86/fm-job-listings/tree/redux)
### Ссылки
- [Ссылка на репозиторий проекта](https://github.com/Bjorn86/fm-job-listings)
- [Ссылка на демо-страницу проекта](https://bjorn86.github.io/fm-job-listings/)
## Ход выполнения проекта
### Используемые технологии
- HTML
- SCSS
- JS
- [React](https://react.dev/)
- [Redux](https://redux.js.org/)
- [Redux Toolkit](https://redux-toolkit.js.org/)
- [Redux Persist](https://www.npmjs.com/package/redux-persist)
- [Storybook](https://storybook.js.org/)
- [Husky](https://typicode.github.io/husky/)
- [Commitizen](https://commitizen-tools.github.io/commitizen/)
- Адаптивная вёрстка
- Семантическая вёрстка
### Чему я научился работая над проектом
- Работе со state-менеджерами Redux и Redux Toolkit
- Работе с Storybook
- Закрепил знания о технологиях HTML, SCSS, JS, React
## Автор
**Данила Легкобытов**
- e-mail: [legkobytov-danila@yandex.ru](mailto:legkobytov-danila@yandex.ru)
- LinkedIn: [in/danila-legkobytov](https://www.linkedin.com/in/danila-legkobytov/)
- Telegram: [@danila_legkobytov](https://t.me/danila_legkobytov)
- Frontend Mentor: [@danila_legkobytov](https://www.frontendmentor.io/profile/Bjorn86)
| Проект представляет из себя однострочное приложение, которое позволяет пользователю найти работу в различных компаниях. | adaptive,flexbox,frontend-mentor,javascript,react,redux,scss,redux-toolkit | 2023-09-05T04:28:27Z | 2023-10-25T11:15:24Z | null | 1 | 0 | 20 | 0 | 0 | 3 | null | null | JavaScript |
WebMind1s/WMS-Style | main | # A new style to create your website

## Summary
Learn how to create a new style to create your website with a new good style that make your website stand out
📐 In this video, you'll discover how to give your website a fresh new style that makes it stand out from the crowd.
🌟 We'll dive into the practical world of three.js and r3f to bring your web projects to life.
🔍 Get ready to learn:
1. 🌀 What is Spline?
2. 🎨 Crafting a Unique Website Style
3. 🚀 Practical Application of Three.js and r3f
4. 💡 Differentiating Lights in Three.js and r3f
5. 📷 OrthographicCamera vs. PerspectiveCamera in Three.js and r3f
6. 🌐 Handling 3D Spline Projects with Three.js and r3f
## Watch the video on youtube:
| A new style to create your website | 3d,3d-models,css,javascript,r3f,react,spline,threejs,tutorial,video | 2023-09-06T12:22:53Z | 2023-09-10T11:45:27Z | null | 2 | 0 | 3 | 0 | 1 | 3 | null | null | JavaScript |
jliocsar/jstr | main | null | 🃏 Simple JavaScript CLI tool to read and parse JSON files. | cli,javascript,json,manipulation,object,parsing,terminal,typescript,ts-belt | 2023-08-23T00:58:39Z | 2023-09-25T22:02:08Z | null | 1 | 0 | 93 | 0 | 0 | 3 | null | MIT | JavaScript |
oliveiravitor32/angular-portfolio | main | # Portfólio PT-BR
Projeto de um web site portfólio para meu perfil desenvolvido utilizando Angular com navegação de página única, pagina responsiva e componentes para fácil manutenção.
## Características
- Navegação single page
- Página responsiva
- Utilização de componentes
## Demo
https://angular-portfolio-oliveiravitor32.vercel.app/
## Créditos
Inspirado no portfólio de <a href="https://soumyajit.vercel.app/" target="_blank">Soumyajit Behera</a>
Imagens retiradas de: <a href="https://storyset.com/technology" target="_blank">Technology illustrations by Storyset</a>
# Portfolio EN
Project of a portfolio website for my profile developed using Angular with single page navigation, responsive page and components for easy maintenance.
## Features
- Single page application
- Responsive page
- Components
## Demo
https://angular-portfolio-oliveiravitor32.vercel.app/
## Credits
Inspired by the portfolio of <a href="https://soumyajit.vercel.app/" target="_blank">Soumyajit Behera</a>
Images taken from: <a href="https://storyset.com/technology" target="_blank">Technology illustrations by Storyset</a>
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 16.1.1.
## Development server
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.
## Code scaffolding
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
## Build
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
## Running unit tests
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
## Running end-to-end tests
Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
## Further help
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
| Portfólio para meu perfil criado com Angular. | angular,css3,html5,javascript,typescript | 2023-08-29T19:44:34Z | 2023-11-29T17:14:22Z | null | 1 | 0 | 25 | 0 | 0 | 3 | null | null | HTML |
asyncasad/ezicons | main | # Ezicons 👩💻
Simplify icon integration! Ezicons: Your go to place for seamless icon usage anywhere, from GitHub ReadMe to websites. 🎉🖼️ #Ezicons
With over 300+ icons 🤯 to choose from!

### Features
* Set icon size
* Set icons gap
* Set icons per line
### Integrating icons
Copy and paste the code block below into your readme to add the skills icon element!
Change the ?icons=javascript,html,css to a list of your desired icons seprated by ","s! You can find a full list of icons in the table given below.
You can also specify gaps between icons, height and width of icon & icons per line as shown below.
```md

```

You can make use of the optional arguments gap,perLine and dimension each of them is set to a default value of 8px,15 and 48px respectively.
```md

```

You can also integrate icons into your website by using the img tag and setting the source to the desired icons url.
```html
<img src="https://ezicons.cftutorial.workers.dev/icons/?icons=skills-light-js,skills-light-typescript,skills-light-nextjs,skills-light-html5,skills-light-css3,skills-light-nodejs,skills-light-mongodb&perLine=2&gap=20&dimension=60"/>
```
### All Icons
| Icon ID | Icon |
| ------- | ---- |
| `skills-dark-adobe` | <img src="./public/icons/skills/dark/adobe.svg" width="48"> |
| `skills-dark-ae` | <img src="./public/icons/skills/dark/ae.svg" width="48"> |
| `skills-dark-ai` | <img src="./public/icons/skills/dark/ai.svg" width="48"> |
| `skills-dark-airtable` | <img src="./public/icons/skills/dark/airtable.svg" width="48"> |
| `skills-dark-amazonwebservices` | <img src="./public/icons/skills/dark/amazonwebservices.svg" width="48"> |
| `skills-dark-analytics` | <img src="./public/icons/skills/dark/analytics.svg" width="48"> |
| `skills-dark-android` | <img src="./public/icons/skills/dark/android.svg" width="48"> |
| `skills-dark-angular` | <img src="./public/icons/skills/dark/angular.svg" width="48"> |
| `skills-dark-apache` | <img src="./public/icons/skills/dark/apache.svg" width="48"> |
| `skills-dark-astro` | <img src="./public/icons/skills/dark/astro.svg" width="48"> |
| `skills-dark-atlassian` | <img src="./public/icons/skills/dark/atlassian.svg" width="48"> |
| `skills-dark-auth0` | <img src="./public/icons/skills/dark/auth0.svg" width="48"> |
| `skills-dark-aws-ec2` | <img src="./public/icons/skills/dark/aws-ec2.svg" width="48"> |
| `skills-dark-aws` | <img src="./public/icons/skills/dark/aws.svg" width="48"> |
| `skills-dark-axure` | <img src="./public/icons/skills/dark/axure.svg" width="48"> |
| `skills-dark-azure` | <img src="./public/icons/skills/dark/azure.svg" width="48"> |
| `skills-dark-babel` | <img src="./public/icons/skills/dark/babel.svg" width="48"> |
| `skills-dark-backbonejs` | <img src="./public/icons/skills/dark/backbonejs.svg" width="48"> |
| `skills-dark-bitbucker` | <img src="./public/icons/skills/dark/bitbucker.svg" width="48"> |
| `skills-dark-bootstrap` | <img src="./public/icons/skills/dark/bootstrap.svg" width="48"> |
| `skills-dark-bootstrap4` | <img src="./public/icons/skills/dark/bootstrap4.svg" width="48"> |
| `skills-dark-bootstrap5` | <img src="./public/icons/skills/dark/bootstrap5.svg" width="48"> |
| `skills-dark-bulma-ui` | <img src="./public/icons/skills/dark/bulma-ui.svg" width="48"> |
| `skills-dark-c#` | <img src="./public/icons/skills/dark/c#.svg" width="48"> |
| `skills-dark-c++` | <img src="./public/icons/skills/dark/c++.svg" width="48"> |
| `skills-dark-cakephp` | <img src="./public/icons/skills/dark/cakephp.svg" width="48"> |
| `skills-dark-chrome` | <img src="./public/icons/skills/dark/chrome.svg" width="48"> |
| `skills-dark-clojure` | <img src="./public/icons/skills/dark/clojure.svg" width="48"> |
| `skills-dark-cloudinary` | <img src="./public/icons/skills/dark/cloudinary.svg" width="48"> |
| `skills-dark-codeigniter` | <img src="./public/icons/skills/dark/codeigniter.svg" width="48"> |
| `skills-dark-crystal` | <img src="./public/icons/skills/dark/crystal.svg" width="48"> |
| `skills-dark-css` | <img src="./public/icons/skills/dark/css.svg" width="48"> |
| `skills-dark-digitalocean` | <img src="./public/icons/skills/dark/digitalOcean.svg" width="48"> |
| `skills-dark-django` | <img src="./public/icons/skills/dark/django.svg" width="48"> |
| `skills-dark-dlang` | <img src="./public/icons/skills/dark/dlang.svg" width="48"> |
| `skills-dark-docker` | <img src="./public/icons/skills/dark/docker.svg" width="48"> |
| `skills-dark-dovetail-1` | <img src="./public/icons/skills/dark/dovetail-1.svg" width="48"> |
| `skills-dark-dovetail` | <img src="./public/icons/skills/dark/dovetail.svg" width="48"> |
| `skills-dark-edge` | <img src="./public/icons/skills/dark/edge.svg" width="48"> |
| `skills-dark-electron` | <img src="./public/icons/skills/dark/electron.svg" width="48"> |
| `skills-dark-element-ui` | <img src="./public/icons/skills/dark/element-ui.svg" width="48"> |
| `skills-dark-elixir` | <img src="./public/icons/skills/dark/elixir.svg" width="48"> |
| `skills-dark-ember` | <img src="./public/icons/skills/dark/ember.svg" width="48"> |
| `skills-dark-eslint` | <img src="./public/icons/skills/dark/eslint.svg" width="48"> |
| `skills-dark-faunadb` | <img src="./public/icons/skills/dark/faunadb.svg" width="48"> |
| `skills-dark-figma` | <img src="./public/icons/skills/dark/figma.svg" width="48"> |
| `skills-dark-firebase` | <img src="./public/icons/skills/dark/firebase.svg" width="48"> |
| `skills-dark-firefox` | <img src="./public/icons/skills/dark/firefox.svg" width="48"> |
| `skills-dark-flask` | <img src="./public/icons/skills/dark/flask.svg" width="48"> |
| `skills-dark-flutter` | <img src="./public/icons/skills/dark/flutter.svg" width="48"> |
| `skills-dark-framer` | <img src="./public/icons/skills/dark/framer.svg" width="48"> |
| `skills-dark-gatsby` | <img src="./public/icons/skills/dark/gatsby.svg" width="48"> |
| `skills-dark-git` | <img src="./public/icons/skills/dark/git.svg" width="48"> |
| `skills-dark-github` | <img src="./public/icons/skills/dark/github.svg" width="48"> |
| `skills-dark-gitlab` | <img src="./public/icons/skills/dark/gitlab.svg" width="48"> |
| `skills-dark-go` | <img src="./public/icons/skills/dark/go.svg" width="48"> |
| `skills-dark-google-cloud` | <img src="./public/icons/skills/dark/google-cloud.svg" width="48"> |
| `skills-dark-graphql` | <img src="./public/icons/skills/dark/graphql.svg" width="48"> |
| `skills-dark-gridsome` | <img src="./public/icons/skills/dark/gridsome.svg" width="48"> |
| `skills-dark-gulp` | <img src="./public/icons/skills/dark/gulp.svg" width="48"> |
| `skills-dark-haskell` | <img src="./public/icons/skills/dark/haskell.svg" width="48"> |
| `skills-dark-heroku` | <img src="./public/icons/skills/dark/heroku.svg" width="48"> |
| `skills-dark-hexo` | <img src="./public/icons/skills/dark/hexo.svg" width="48"> |
| `skills-dark-hotjar` | <img src="./public/icons/skills/dark/hotjar.svg" width="48"> |
| `skills-dark-html5` | <img src="./public/icons/skills/dark/html5.svg" width="48"> |
| `skills-dark-id` | <img src="./public/icons/skills/dark/id.svg" width="48"> |
| `skills-dark-ie` | <img src="./public/icons/skills/dark/ie.svg" width="48"> |
| `skills-dark-inkspace` | <img src="./public/icons/skills/dark/inkspace.svg" width="48"> |
| `skills-dark-insomnia` | <img src="./public/icons/skills/dark/insomnia.svg" width="48"> |
| `skills-dark-invision` | <img src="./public/icons/skills/dark/invision.svg" width="48"> |
| `skills-dark-ionic` | <img src="./public/icons/skills/dark/ionic.svg" width="48"> |
| `skills-dark-jamstack` | <img src="./public/icons/skills/dark/jamstack.svg" width="48"> |
| `skills-dark-java` | <img src="./public/icons/skills/dark/java.svg" width="48"> |
| `skills-dark-jest` | <img src="./public/icons/skills/dark/jest.svg" width="48"> |
| `skills-dark-jira` | <img src="./public/icons/skills/dark/jira.svg" width="48"> |
| `skills-dark-jquery` | <img src="./public/icons/skills/dark/jquery.svg" width="48"> |
| `skills-dark-js` | <img src="./public/icons/skills/dark/js.svg" width="48"> |
| `skills-dark-json` | <img src="./public/icons/skills/dark/json.svg" width="48"> |
| `skills-dark-kotlin` | <img src="./public/icons/skills/dark/kotlin.svg" width="48"> |
| `skills-dark-kubernetes` | <img src="./public/icons/skills/dark/kubernetes.svg" width="48"> |
| `skills-dark-laravel` | <img src="./public/icons/skills/dark/laravel.svg" width="48"> |
| `skills-dark-less` | <img src="./public/icons/skills/dark/less.svg" width="48"> |
| `skills-dark-linux` | <img src="./public/icons/skills/dark/linux.svg" width="48"> |
| `skills-dark-logrocket` | <img src="./public/icons/skills/dark/logrocket.svg" width="48"> |
| `skills-dark-lua` | <img src="./public/icons/skills/dark/lua.svg" width="48"> |
| `skills-dark-lunacy` | <img src="./public/icons/skills/dark/lunacy.svg" width="48"> |
| `skills-dark-material-ui` | <img src="./public/icons/skills/dark/material-ui.svg" width="48"> |
| `skills-dark-microsoft` | <img src="./public/icons/skills/dark/microsoft.svg" width="48"> |
| `skills-dark-mochajs` | <img src="./public/icons/skills/dark/mochajs.svg" width="48"> |
| `skills-dark-mongodb` | <img src="./public/icons/skills/dark/mongodb.svg" width="48"> |
| `skills-dark-mozilla` | <img src="./public/icons/skills/dark/mozilla.svg" width="48"> |
| `skills-dark-mysql` | <img src="./public/icons/skills/dark/mysql.svg" width="48"> |
| `skills-dark-nestjs` | <img src="./public/icons/skills/dark/nestjs.svg" width="48"> |
| `skills-dark-netlify-new` | <img src="./public/icons/skills/dark/netlify-new.svg" width="48"> |
| `skills-dark-netlify` | <img src="./public/icons/skills/dark/netlify.svg" width="48"> |
| `skills-dark-nextjs` | <img src="./public/icons/skills/dark/nextjs.svg" width="48"> |
| `skills-dark-nextjs2` | <img src="./public/icons/skills/dark/nextjs2.svg" width="48"> |
| `skills-dark-nim` | <img src="./public/icons/skills/dark/nim.svg" width="48"> |
| `skills-dark-nodejs` | <img src="./public/icons/skills/dark/nodejs.svg" width="48"> |
| `skills-dark-npm` | <img src="./public/icons/skills/dark/npm.svg" width="48"> |
| `skills-dark-nuxtjs` | <img src="./public/icons/skills/dark/nuxtjs.svg" width="48"> |
| `skills-dark-ocaml` | <img src="./public/icons/skills/dark/ocaml.svg" width="48"> |
| `skills-dark-onedrive` | <img src="./public/icons/skills/dark/onedrive.svg" width="48"> |
| `skills-dark-openai` | <img src="./public/icons/skills/dark/openai.svg" width="48"> |
| `skills-dark-oracle` | <img src="./public/icons/skills/dark/oracle.svg" width="48"> |
| `skills-dark-php` | <img src="./public/icons/skills/dark/php.svg" width="48"> |
| `skills-dark-postfresql` | <img src="./public/icons/skills/dark/postfresql.svg" width="48"> |
| `skills-dark-postman` | <img src="./public/icons/skills/dark/postman.svg" width="48"> |
| `skills-dark-powershell` | <img src="./public/icons/skills/dark/powershell.svg" width="48"> |
| `skills-dark-prettier` | <img src="./public/icons/skills/dark/prettier.svg" width="48"> |
| `skills-dark-prisma` | <img src="./public/icons/skills/dark/prisma.svg" width="48"> |
| `skills-dark-ps` | <img src="./public/icons/skills/dark/ps.svg" width="48"> |
| `skills-dark-pugjs` | <img src="./public/icons/skills/dark/pugjs.svg" width="48"> |
| `skills-dark-pwa` | <img src="./public/icons/skills/dark/pwa.svg" width="48"> |
| `skills-dark-python` | <img src="./public/icons/skills/dark/python.svg" width="48"> |
| `skills-dark-rails` | <img src="./public/icons/skills/dark/rails.svg" width="48"> |
| `skills-dark-react-query-1` | <img src="./public/icons/skills/dark/react-query-1.svg" width="48"> |
| `skills-dark-react-query` | <img src="./public/icons/skills/dark/react-query.svg" width="48"> |
| `skills-dark-reactjs` | <img src="./public/icons/skills/dark/reactjs.svg" width="48"> |
| `skills-dark-redhat` | <img src="./public/icons/skills/dark/redhat.svg" width="48"> |
| `skills-dark-redis` | <img src="./public/icons/skills/dark/redis.svg" width="48"> |
| `skills-dark-redux` | <img src="./public/icons/skills/dark/redux.svg" width="48"> |
| `skills-dark-ruby` | <img src="./public/icons/skills/dark/ruby.svg" width="48"> |
| `skills-dark-rust` | <img src="./public/icons/skills/dark/rust.svg" width="48"> |
| `skills-dark-sass` | <img src="./public/icons/skills/dark/sass.svg" width="48"> |
| `skills-dark-scala` | <img src="./public/icons/skills/dark/scala.svg" width="48"> |
| `skills-dark-semantic-ui` | <img src="./public/icons/skills/dark/semantic-ui.svg" width="48"> |
| `skills-dark-serverless` | <img src="./public/icons/skills/dark/serverless.svg" width="48"> |
| `skills-dark-sketch-new` | <img src="./public/icons/skills/dark/sketch-new.svg" width="48"> |
| `skills-dark-sketch` | <img src="./public/icons/skills/dark/sketch.svg" width="48"> |
| `skills-dark-solidity` | <img src="./public/icons/skills/dark/solidity.svg" width="48"> |
| `skills-dark-spring` | <img src="./public/icons/skills/dark/spring.svg" width="48"> |
| `skills-dark-storyblok` | <img src="./public/icons/skills/dark/storyblok.svg" width="48"> |
| `skills-dark-storybook` | <img src="./public/icons/skills/dark/storybook.svg" width="48"> |
| `skills-dark-stream` | <img src="./public/icons/skills/dark/stream.svg" width="48"> |
| `skills-dark-sublime` | <img src="./public/icons/skills/dark/sublime.svg" width="48"> |
| `skills-dark-sveltejs` | <img src="./public/icons/skills/dark/sveltejs.svg" width="48"> |
| `skills-dark-swift` | <img src="./public/icons/skills/dark/swift.svg" width="48"> |
| `skills-dark-tailwind` | <img src="./public/icons/skills/dark/tailwind.svg" width="48"> |
| `skills-dark-trpc` | <img src="./public/icons/skills/dark/tRPC.svg" width="48"> |
| `skills-dark-typescript` | <img src="./public/icons/skills/dark/typescript.svg" width="48"> |
| `skills-dark-ubuntu` | <img src="./public/icons/skills/dark/ubuntu.svg" width="48"> |
| `skills-dark-ur` | <img src="./public/icons/skills/dark/ur.svg" width="48"> |
| `skills-dark-vim` | <img src="./public/icons/skills/dark/vim.svg" width="48"> |
| `skills-dark-visualbasic` | <img src="./public/icons/skills/dark/visualBasic.svg" width="48"> |
| `skills-dark-vitejs` | <img src="./public/icons/skills/dark/vitejs.svg" width="48"> |
| `skills-dark-vitest` | <img src="./public/icons/skills/dark/vitest.svg" width="48"> |
| `skills-dark-vs` | <img src="./public/icons/skills/dark/vs.svg" width="48"> |
| `skills-dark-vuejs` | <img src="./public/icons/skills/dark/vuejs.svg" width="48"> |
| `skills-dark-webassembly` | <img src="./public/icons/skills/dark/webassembly.svg" width="48"> |
| `skills-dark-webpack` | <img src="./public/icons/skills/dark/webpack.svg" width="48"> |
| `skills-dark-wordpress` | <img src="./public/icons/skills/dark/wordpress.svg" width="48"> |
| `skills-dark-xamarin` | <img src="./public/icons/skills/dark/xamarin.svg" width="48"> |
| `skills-dark-xd` | <img src="./public/icons/skills/dark/xd.svg" width="48"> |
| `skills-dark-zod` | <img src="./public/icons/skills/dark/zod.svg" width="48"> |
| `skills-light-adobe` | <img src="./public/icons/skills/light/adobe.svg" width="48"> |
| `skills-light-ae` | <img src="./public/icons/skills/light/ae.svg" width="48"> |
| `skills-light-ai` | <img src="./public/icons/skills/light/ai.svg" width="48"> |
| `skills-light-airtable` | <img src="./public/icons/skills/light/airtable.svg" width="48"> |
| `skills-light-alpinejs` | <img src="./public/icons/skills/light/alpinejs.svg" width="48"> |
| `skills-light-amazonwebservices` | <img src="./public/icons/skills/light/amazonwebservices.svg" width="48"> |
| `skills-light-analytics` | <img src="./public/icons/skills/light/analytics.svg" width="48"> |
| `skills-light-android` | <img src="./public/icons/skills/light/android.svg" width="48"> |
| `skills-light-angular` | <img src="./public/icons/skills/light/angular.svg" width="48"> |
| `skills-light-apache` | <img src="./public/icons/skills/light/apache.svg" width="48"> |
| `skills-light-astro` | <img src="./public/icons/skills/light/astro.svg" width="48"> |
| `skills-light-atlassian` | <img src="./public/icons/skills/light/atlassian.svg" width="48"> |
| `skills-light-auth0` | <img src="./public/icons/skills/light/auth0.svg" width="48"> |
| `skills-light-aws-ec2` | <img src="./public/icons/skills/light/aws-ec2.svg" width="48"> |
| `skills-light-aws` | <img src="./public/icons/skills/light/aws.svg" width="48"> |
| `skills-light-axure` | <img src="./public/icons/skills/light/axure.svg" width="48"> |
| `skills-light-azure` | <img src="./public/icons/skills/light/azure.svg" width="48"> |
| `skills-light-babel` | <img src="./public/icons/skills/light/babel.svg" width="48"> |
| `skills-light-backbonejs` | <img src="./public/icons/skills/light/backbonejs.svg" width="48"> |
| `skills-light-bitbucker` | <img src="./public/icons/skills/light/bitbucker.svg" width="48"> |
| `skills-light-bootstrap` | <img src="./public/icons/skills/light/bootstrap.svg" width="48"> |
| `skills-light-bootstrap4` | <img src="./public/icons/skills/light/bootstrap4.svg" width="48"> |
| `skills-light-bootstrap5` | <img src="./public/icons/skills/light/bootstrap5.svg" width="48"> |
| `skills-light-bulma-ui` | <img src="./public/icons/skills/light/bulma-ui.svg" width="48"> |
| `skills-light-c#` | <img src="./public/icons/skills/light/c#.svg" width="48"> |
| `skills-light-c++` | <img src="./public/icons/skills/light/c++.svg" width="48"> |
| `skills-light-cakephp` | <img src="./public/icons/skills/light/cakephp.svg" width="48"> |
| `skills-light-chrome` | <img src="./public/icons/skills/light/chrome.svg" width="48"> |
| `skills-light-clojure` | <img src="./public/icons/skills/light/clojure.svg" width="48"> |
| `skills-light-cloudinary` | <img src="./public/icons/skills/light/cloudinary.svg" width="48"> |
| `skills-light-codeigniter` | <img src="./public/icons/skills/light/codeigniter.svg" width="48"> |
| `skills-light-crystal` | <img src="./public/icons/skills/light/crystal.svg" width="48"> |
| `skills-light-css3` | <img src="./public/icons/skills/light/css3.svg" width="48"> |
| `skills-light-digitalocean` | <img src="./public/icons/skills/light/digitalOcean.svg" width="48"> |
| `skills-light-django` | <img src="./public/icons/skills/light/django.svg" width="48"> |
| `skills-light-dlang` | <img src="./public/icons/skills/light/dlang.svg" width="48"> |
| `skills-light-docker` | <img src="./public/icons/skills/light/docker.svg" width="48"> |
| `skills-light-dovetail-1` | <img src="./public/icons/skills/light/dovetail-1.svg" width="48"> |
| `skills-light-dovetail` | <img src="./public/icons/skills/light/dovetail.svg" width="48"> |
| `skills-light-edge` | <img src="./public/icons/skills/light/edge.svg" width="48"> |
| `skills-light-electron` | <img src="./public/icons/skills/light/electron.svg" width="48"> |
| `skills-light-element-ui` | <img src="./public/icons/skills/light/element-ui.svg" width="48"> |
| `skills-light-elixir` | <img src="./public/icons/skills/light/elixir.svg" width="48"> |
| `skills-light-ember` | <img src="./public/icons/skills/light/ember.svg" width="48"> |
| `skills-light-eslint` | <img src="./public/icons/skills/light/eslint.svg" width="48"> |
| `skills-light-faunadb` | <img src="./public/icons/skills/light/faunadb.svg" width="48"> |
| `skills-light-figma` | <img src="./public/icons/skills/light/figma.svg" width="48"> |
| `skills-light-firebase` | <img src="./public/icons/skills/light/firebase.svg" width="48"> |
| `skills-light-firefox` | <img src="./public/icons/skills/light/firefox.svg" width="48"> |
| `skills-light-flask` | <img src="./public/icons/skills/light/flask.svg" width="48"> |
| `skills-light-flutter` | <img src="./public/icons/skills/light/flutter.svg" width="48"> |
| `skills-light-framer` | <img src="./public/icons/skills/light/framer.svg" width="48"> |
| `skills-light-gatsby` | <img src="./public/icons/skills/light/gatsby.svg" width="48"> |
| `skills-light-git` | <img src="./public/icons/skills/light/git.svg" width="48"> |
| `skills-light-github` | <img src="./public/icons/skills/light/github.svg" width="48"> |
| `skills-light-gitlab` | <img src="./public/icons/skills/light/gitlab.svg" width="48"> |
| `skills-light-go` | <img src="./public/icons/skills/light/go.svg" width="48"> |
| `skills-light-google-cloud` | <img src="./public/icons/skills/light/google-cloud.svg" width="48"> |
| `skills-light-graphql` | <img src="./public/icons/skills/light/graphql.svg" width="48"> |
| `skills-light-gridsome` | <img src="./public/icons/skills/light/gridsome.svg" width="48"> |
| `skills-light-gulp` | <img src="./public/icons/skills/light/gulp.svg" width="48"> |
| `skills-light-haskell` | <img src="./public/icons/skills/light/haskell.svg" width="48"> |
| `skills-light-heroku` | <img src="./public/icons/skills/light/heroku.svg" width="48"> |
| `skills-light-hexo` | <img src="./public/icons/skills/light/hexo.svg" width="48"> |
| `skills-light-hotjar` | <img src="./public/icons/skills/light/hotjar.svg" width="48"> |
| `skills-light-html5` | <img src="./public/icons/skills/light/html5.svg" width="48"> |
| `skills-light-id` | <img src="./public/icons/skills/light/id.svg" width="48"> |
| `skills-light-ie` | <img src="./public/icons/skills/light/ie.svg" width="48"> |
| `skills-light-inkspace` | <img src="./public/icons/skills/light/inkspace.svg" width="48"> |
| `skills-light-insomnia` | <img src="./public/icons/skills/light/insomnia.svg" width="48"> |
| `skills-light-invision` | <img src="./public/icons/skills/light/invision.svg" width="48"> |
| `skills-light-ionic` | <img src="./public/icons/skills/light/ionic.svg" width="48"> |
| `skills-light-jamstack` | <img src="./public/icons/skills/light/jamstack.svg" width="48"> |
| `skills-light-java` | <img src="./public/icons/skills/light/java.svg" width="48"> |
| `skills-light-jest` | <img src="./public/icons/skills/light/jest.svg" width="48"> |
| `skills-light-jira` | <img src="./public/icons/skills/light/jira.svg" width="48"> |
| `skills-light-jquery` | <img src="./public/icons/skills/light/jquery.svg" width="48"> |
| `skills-light-js` | <img src="./public/icons/skills/light/js.svg" width="48"> |
| `skills-light-json` | <img src="./public/icons/skills/light/json.svg" width="48"> |
| `skills-light-kotlin` | <img src="./public/icons/skills/light/kotlin.svg" width="48"> |
| `skills-light-kubernetes` | <img src="./public/icons/skills/light/kubernetes.svg" width="48"> |
| `skills-light-laravel` | <img src="./public/icons/skills/light/laravel.svg" width="48"> |
| `skills-light-less` | <img src="./public/icons/skills/light/less.svg" width="48"> |
| `skills-light-linux` | <img src="./public/icons/skills/light/linux.svg" width="48"> |
| `skills-light-lit` | <img src="./public/icons/skills/light/lit.svg" width="48"> |
| `skills-light-logrocket` | <img src="./public/icons/skills/light/logrocket.svg" width="48"> |
| `skills-light-lua` | <img src="./public/icons/skills/light/lua.svg" width="48"> |
| `skills-light-lunacy` | <img src="./public/icons/skills/light/lunacy.svg" width="48"> |
| `skills-light-material-ui` | <img src="./public/icons/skills/light/material-ui.svg" width="48"> |
| `skills-light-microsoft` | <img src="./public/icons/skills/light/microsoft.svg" width="48"> |
| `skills-light-mochajs` | <img src="./public/icons/skills/light/mochajs.svg" width="48"> |
| `skills-light-mongodb` | <img src="./public/icons/skills/light/mongodb.svg" width="48"> |
| `skills-light-mozilla` | <img src="./public/icons/skills/light/mozilla.svg" width="48"> |
| `skills-light-mysql` | <img src="./public/icons/skills/light/mysql.svg" width="48"> |
| `skills-light-nestjs` | <img src="./public/icons/skills/light/nestjs.svg" width="48"> |
| `skills-light-netlify-new` | <img src="./public/icons/skills/light/netlify-new.svg" width="48"> |
| `skills-light-netlify` | <img src="./public/icons/skills/light/netlify.svg" width="48"> |
| `skills-light-nextjs` | <img src="./public/icons/skills/light/nextjs.svg" width="48"> |
| `skills-light-nextjs2` | <img src="./public/icons/skills/light/nextjs2.svg" width="48"> |
| `skills-light-nim` | <img src="./public/icons/skills/light/nim.svg" width="48"> |
| `skills-light-nodejs` | <img src="./public/icons/skills/light/nodejs.svg" width="48"> |
| `skills-light-npm` | <img src="./public/icons/skills/light/npm.svg" width="48"> |
| `skills-light-nuxtjs` | <img src="./public/icons/skills/light/nuxtjs.svg" width="48"> |
| `skills-light-ocaml` | <img src="./public/icons/skills/light/ocaml.svg" width="48"> |
| `skills-light-onedrive` | <img src="./public/icons/skills/light/onedrive.svg" width="48"> |
| `skills-light-openai` | <img src="./public/icons/skills/light/openai.svg" width="48"> |
| `skills-light-oracle` | <img src="./public/icons/skills/light/oracle.svg" width="48"> |
| `skills-light-php` | <img src="./public/icons/skills/light/php.svg" width="48"> |
| `skills-light-postfresql` | <img src="./public/icons/skills/light/postfresql.svg" width="48"> |
| `skills-light-postman` | <img src="./public/icons/skills/light/postman.svg" width="48"> |
| `skills-light-powershell` | <img src="./public/icons/skills/light/powershell.svg" width="48"> |
| `skills-light-prettier` | <img src="./public/icons/skills/light/prettier.svg" width="48"> |
| `skills-light-prisma` | <img src="./public/icons/skills/light/prisma.svg" width="48"> |
| `skills-light-ps` | <img src="./public/icons/skills/light/ps.svg" width="48"> |
| `skills-light-pugjs` | <img src="./public/icons/skills/light/pugjs.svg" width="48"> |
| `skills-light-pwa` | <img src="./public/icons/skills/light/pwa.svg" width="48"> |
| `skills-light-python` | <img src="./public/icons/skills/light/python.svg" width="48"> |
| `skills-light-rails` | <img src="./public/icons/skills/light/rails.svg" width="48"> |
| `skills-light-react-query-1` | <img src="./public/icons/skills/light/react-query-1.svg" width="48"> |
| `skills-light-react-query` | <img src="./public/icons/skills/light/react-query.svg" width="48"> |
| `skills-light-reactjs` | <img src="./public/icons/skills/light/reactjs.svg" width="48"> |
| `skills-light-redhat` | <img src="./public/icons/skills/light/redhat.svg" width="48"> |
| `skills-light-redis` | <img src="./public/icons/skills/light/redis.svg" width="48"> |
| `skills-light-redux` | <img src="./public/icons/skills/light/redux.svg" width="48"> |
| `skills-light-ruby` | <img src="./public/icons/skills/light/ruby.svg" width="48"> |
| `skills-light-rust` | <img src="./public/icons/skills/light/rust.svg" width="48"> |
| `skills-light-sass` | <img src="./public/icons/skills/light/sass.svg" width="48"> |
| `skills-light-scala` | <img src="./public/icons/skills/light/scala.svg" width="48"> |
| `skills-light-semantic-ui` | <img src="./public/icons/skills/light/semantic-ui.svg" width="48"> |
| `skills-light-serverless` | <img src="./public/icons/skills/light/serverless.svg" width="48"> |
| `skills-light-sketch-new` | <img src="./public/icons/skills/light/sketch-new.svg" width="48"> |
| `skills-light-sketch` | <img src="./public/icons/skills/light/sketch.svg" width="48"> |
| `skills-light-solidity` | <img src="./public/icons/skills/light/solidity.svg" width="48"> |
| `skills-light-solidjs` | <img src="./public/icons/skills/light/solidjs.svg" width="48"> |
| `skills-light-spring` | <img src="./public/icons/skills/light/spring.svg" width="48"> |
| `skills-light-storyblok` | <img src="./public/icons/skills/light/storyblok.svg" width="48"> |
| `skills-light-storybook` | <img src="./public/icons/skills/light/storybook.svg" width="48"> |
| `skills-light-stream` | <img src="./public/icons/skills/light/stream.svg" width="48"> |
| `skills-light-sublime` | <img src="./public/icons/skills/light/sublime.svg" width="48"> |
| `skills-light-sveltejs` | <img src="./public/icons/skills/light/sveltejs.svg" width="48"> |
| `skills-light-swift` | <img src="./public/icons/skills/light/swift.svg" width="48"> |
| `skills-light-tailwind` | <img src="./public/icons/skills/light/tailwind.svg" width="48"> |
| `skills-light-trpc` | <img src="./public/icons/skills/light/tRPC.svg" width="48"> |
| `skills-light-typescript` | <img src="./public/icons/skills/light/typescript.svg" width="48"> |
| `skills-light-ubuntu` | <img src="./public/icons/skills/light/ubuntu.svg" width="48"> |
| `skills-light-ur` | <img src="./public/icons/skills/light/ur.svg" width="48"> |
| `skills-light-vim` | <img src="./public/icons/skills/light/vim.svg" width="48"> |
| `skills-light-visualbasic` | <img src="./public/icons/skills/light/visualBasic.svg" width="48"> |
| `skills-light-vitejs` | <img src="./public/icons/skills/light/vitejs.svg" width="48"> |
| `skills-light-vitest` | <img src="./public/icons/skills/light/vitest.svg" width="48"> |
| `skills-light-vs` | <img src="./public/icons/skills/light/vs.svg" width="48"> |
| `skills-light-vuejs` | <img src="./public/icons/skills/light/vuejs.svg" width="48"> |
| `skills-light-webassembly` | <img src="./public/icons/skills/light/webassembly.svg" width="48"> |
| `skills-light-webpack` | <img src="./public/icons/skills/light/webpack.svg" width="48"> |
| `skills-light-wordpress` | <img src="./public/icons/skills/light/wordpress.svg" width="48"> |
| `skills-light-xamarin` | <img src="./public/icons/skills/light/xamarin.svg" width="48"> |
| `skills-light-xd` | <img src="./public/icons/skills/light/xd.svg" width="48"> |
| `skills-light-zod` | <img src="./public/icons/skills/light/zod.svg" width="48"> |
| Simplify icon integration! Ezicons: Your go to place for seamless icon usage anywhere, from GitHub ReadMe to websites. 🎉🖼️ #Ezicons | cloudflare-workers,fs,javascript | 2023-08-22T03:30:00Z | 2023-08-30T10:41:51Z | null | 1 | 0 | 24 | 0 | 1 | 3 | null | null | JavaScript |
halabe84/E.Store | main | # E Store Project
Welcome to the E Store project! This web application is built using Laravel and React.js, allowing users to shop for products, create accounts, and manage their shopping experience. This README file provides essential information about the project, including installation instructions, features, and API endpoints.
## Project Features
The Website Store project offers the following features:
1. **User Authentication**:
- Users can create accounts and log in securely using tokens.
2. **Product Browsing**:
- Users can view a list of available products.
3. **Shopping Cart**:
- Users can add products to their shopping cart.
- Users can update the quantity of items in their cart.
- Users can remove products from their cart.
4. **Profile Management**:
- Users can view their profile information.
5. **Order Placement**:
- Authenticated users can place orders for the items in their cart.
6. **Order History**:
- Authenticated users can view their order history.
7. **Category Filtering**:
- Users can filter products by category.
8. **Search by name**:
- user can search for products by name
## Installation
To set up and run the Website Store project locally, follow these steps:
1. **Clone the Repository**:
-
```
git clone https://github.com/halababe84/E.Store
```
2. **Install Dependencies**:
- Install PHP dependencies:
```
composer install
```
- Install JavaScript dependencies:
```
npm install
```
3. **Database Configuration**:
- Create a new database and configure the `.env` file with your database connection settings.
4. **Migrate and Seed the Database**:
- Run the following commands to create and seed the database tables:
```
php artisan migrate
php artisan db:seed
```
5. **Generate Application Key**:
- Generate a unique application key:
```
php artisan key:generate
```
6. **Start the Development Server**:
- Run the development server:
```
php artisan serve
```
- Additionally, start the frontend development server :
```
npm start
```
7. **Access the Website**:
- Open your web browser and navigate to `http://localhost:8000`
## API Endpoints
Here are the API endpoints used in this project:
- **User Authentication**:
`/register` - User registration
`/login` - User login
- **Product Management**:
`/products` - Get a list of products
- **Shopping Cart**:
`/orders` - Create an order (requires authentication)
`/updateorder/{order_id}/product/{product_id}` - Update product quantity in the order (requires authentication)
`/deletefromorder/{order_id}/product/{product_id}` - Delete a product from the order (requires authentication)
- **Profile Management**:
`/user` - Get user profile information (requires authentication)
- **Order History**:
`/orders` - Get user order history (requires authentication)
- **Category Management**:
`/categories` - Get a list of all product categories
`/products/category/{categoryId}` - Get products by category
`/products/search` - Search for products
- **User Logout**:
`/logout` - User logout (requires authentication)
## Contact
For any inquiries or feedback, please feel free to reach out to the project owner:
LinkedIn Profile: [Ahmad Alhalabi](https://www.linkedin.com/in/halabe84/)
Thank you for using the Website Store project! Happy shopping!
| An online store website, a graduation project for the 1000 programmers course Medad Organization | css,html5,javascript,laragon,laravel-framework,mysql-database,reactjs | 2023-09-11T09:39:09Z | 2023-09-11T16:38:18Z | null | 1 | 0 | 5 | 0 | 0 | 3 | null | null | PHP |
youne-elma/Quiz-App | main | # Quiz Project
This project is made with Html / Css / Typescript / Reactjs
This is a complete Quiz game, fully optimized for _desktop_ and _mobile_, with a great design made also by me in Figma [QuizApp](https://www.figma.com/file/riVamF10d4X1GUIAZlvjEJ/quiz-app?type=design&node-id=0%3A1&mode=design&t=F1L1h4y2WNs8EWnc-1).
**Fetch API** : i used this API documentation (https://opentdb.com/api_config.php) to fetch all the questions and answers that i needed to my game.
> Home Page

## Table of contents
1. [Demo](#Demo)
2. [Technologies](#Technologies)
3. [Features](#Features)
4. [Development](#Development)
## Demo
Here is the working live Demo: [https://github.com/youne-elma/Quiz-App]
And here is the Figma Design i did by myself: [https://www.figma.com/file/riVamF10d4X1GUIAZlvjEJ/quiz-app?type=design&node-id=0%3A1&mode=design&t=F1L1h4y2WNs8EWnc-1]
## Technologies
- React components, ES6
- Typescript
- CSS
- HTML
## Features
- Multiple Routes in the application.
- Restart game (reset also the score).
- Display score.
- Blop style design.
- Loading animation.
- Cool css animation, Blop animation.
> Game Page

> Result Page

> Error Page

## Development
To set up this App locally, clone this repo to your desktop and run `npm install` to install all dependencies. Then `npm start` to lunch the App.
| A quiz project, that i made using web technologies | javascript,nodejs,reactjs,sass,typescript | 2023-08-19T15:21:19Z | 2023-08-29T13:11:42Z | null | 1 | 0 | 15 | 0 | 0 | 3 | null | GPL-3.0 | TypeScript |
guruguruTeam/eeblog | main | # ee's blog
**纸片君ee的博客|PAPEREE**
## 使用方法
### 安装库
- `pip3 install flask`
- `pip3 install gunicorn`
别问为什么没有`requirements.txt`,~~ee懒~~(被打
### 开始运行
- 根据实际情况修改`config.py`
- 输入`gunicorn --config=config.py main:app`
默认运行在`127.0.0.1:1234`,浏览器打开网址就能看到博客。
## 如何写文章
- 使用你喜欢的编辑器,用Markdown或HTML编写`.md`文件,将文件放置`notes`文件夹。
- 如果博客正在运行,打开你的网址就能看到这篇文章。
有个~~BUG~~特性,如果在文章拥有评论的情况下重命名`notes`中的文章,那么评论不会自动更新到新的文章。
### 解决方法
进入`client/_`,手动将评论数据重命名为新的文章名(对文件夹名是下划线(划掉
| 纸片君ee的博客|PAPEREE | css,gunicorn,html,javascript,python,python-flask,python3 | 2023-08-12T12:33:22Z | 2023-09-10T13:56:45Z | null | 2 | 0 | 22 | 0 | 0 | 3 | null | null | HTML |
edosrecki/google-cloud-sql-nodejs-connector-example | main | # Google Cloud SQL Node.js Connector Example
Example usage of [Google Cloud SQL Node.js Connector][cloud-sql-connector-node]. This is an alternative approach for connecting to Google Cloud SQL instance without needing Google Cloud SQL Auth Proxy.
Examples include:
* Databases: MySQL, PostgreSQL, and SQL Server
* Libraries: [knex], [sequelize], [typeorm], [prisma]
[cloud-sql-connector-node]: https://github.com/GoogleCloudPlatform/cloud-sql-nodejs-connector
[knex]: https://knexjs.org/
[sequelize]: https://sequelize.org/
[typeorm]: https://typeorm.io/
[prisma]: https://www.prisma.io/
## Google Cloud SQL Setup
### Terraform
See [terraform/README.adoc](terraform/README.adoc) for instructions.
### Manual
1. Create Cloud SQL instance(s).
1. (Optional) Configure private IP connectivity.
1. (Optional) Enable flag for IAM authentication.
3. (Optional) Create a service account for IAM authentication to the SQL instance.
1. Assign `Cloud SQL Client` and `Cloud SQL Instance User` roles.
2. Download JSON key file, or use Application Default Credentials, or service account impersonation.
## Run
```sh
## Install dependencies
## ~~~~~~~~~~~~~~~~~~~~
nvm install
npm install
## Configure environment for a DB that you want to test
## ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# If you used manual setup
cp .env.postgres.example .env # PostgreSQL
cp .env.mysql.example .env # MySQL
cp .env.sqlserver.example .env # SQL Server
vim .env
# If you used Terraform
cd terraform
terraform output -raw postgres_env > ../.env # PostgreSQL
terraform output -raw mysql_env > ../.env # MySQL
terraform output -raw sqlserver_env > ../.env # SQL Server
cd ..
## Run examples for each library
## ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
## NOTE:
## If you are using IAM authentication, make sure to authenticate
## as that service account, either by using JSON key, Application
## Default Credentials, or service account impersonation.
npm run pg
npm run mysql2
npm run mssql
npm run knex
# { connected: 'True' }
npm run sequelize
# Executing (default): SELECT 1+1 AS result
npm run typeorm
# [ { connected: 'True' } ]
npm run prisma
# [ { connected: 'True' } ]
```
| Example of using Google Cloud SQL connector for Node.js. | cloud-sql,cloud-sql-proxy,gcloud,google-cloud,google-cloud-sql,nodejs,sql,javascript,knex,proxy | 2023-09-01T12:46:30Z | 2023-10-09T17:13:00Z | null | 1 | 0 | 20 | 0 | 1 | 3 | null | null | TypeScript |
daniel752/markdown-zen | main | # MarkdownZen
MarkdownZen is a web application designed to streamline the creation and management of markdown documents. With a user-friendly interface and powerful features, MarkdownZen is your go-to tool for a zenful markdown experience.
## Table of Contents
- [Getting Started](#getting-started)
- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [Usage](#usage)
- [Features](#features)
- [Running With Docker](#running-with-docker)
- [Contributing](#contributing)
- [License](#license)
## Getting Started
### Prerequisites
Before you begin, make sure you have the following software installed on your computer:
- [Node.js](https://nodejs.org/en/)
- npm (Node Package Manager)
### Installation
1. **Clone the repository**:
Open your terminal/command prompt and navigate to the location where you want to store the project. Then, run the following command:
``
git clone https://github.com/daniel752/markdown-zen.git
``
This will download the project files to your computer.
2. **Navigate to the project folder**:
Use the `cd` command to change your working directory to the cloned project folder:
``
cd markdown-zen
``
3. **Install Dependencies**:
Inside the project folder, install the necessary dependencies for both the server and the client using a single command:
``
npm run setup-project
``
This will install the required packages for the server and client components of the app.
## Usage
1. **Start the Application**:
To launch the application, run the following command in the root (markdown-zen/) folder:
``
npm run dev
``
This command starts both the server and the client concurrently, so you can access the app in your browser.
2. **Access the App**:
Open your web browser and go to `http://localhost:5173`. This is where you'll find the MarkdownZen app.
3. **Creating and Managing Markdowns**:
- Log in or create an account.
- Start creating and managing your markdown documents effortlessly.
## Features
- Create, edit, and manage markdown documents with ease.
- Real-time markdown preview while editing.
- Organize markdowns using categories and tags.
- Secure authentication and authorization system.
- ...
## Running with Docker
You can also run MarkdownZen using Docker. Follow these steps:
1. **Pull the Docker Image**:
Pull the MarkdownZen Docker image from Docker Hub:
```shell
docker pull daniel752/markdown-zen:v1.0.0
2. **Run the Container**:
Start the MarkdownZen container:
```shell
docker run -d daniel752/markdown-zen:v1.0.0
* -d: Run the container in detached mode (in the background).
* The container will run port 8000 inside and 5173 outside.
## Contributing
We welcome contributions from the community! To contribute to MarkdownZen, follow these steps:
1. **Fork the Repository**:
Click the "Fork" button on the top right of the GitHub repository page. This creates a copy of the repository under your GitHub account.
2. **Clone Your Fork**:
Clone your forked repository to your local machine:
``
git clone https://github.com/your-username/markdown-zen.git
``
3. **Create a New Branch**:
Change to the project directory:
``
cd markdown-zen
``
Create a new branch for your feature:
``
git checkout -b feature/my-new-feature
``
4. **Make Changes**:
Make the necessary changes and commit them:
``
git commit -m 'Add some feature'
``
5. **Push Your Changes**:
Push your changes to your forked repository:
``
git push origin feature/my-new-feature
``
6. **Submit a Pull Request**:
Visit the original repository on GitHub and click the "New Pull Request" button to submit your changes for review.
## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
| MarkdownZen is a web application designed to streamline the creation and management of markdown documents. With a user-friendly interface and powerful features, MarkdownZen is your go-to tool for a zenful markdown experience. | javascript,markdown,markdown-editor,nodejs,react,backend-development,backend-for-frontend,backend-server,expressjs,frontend-development | 2023-08-09T15:59:29Z | 2023-09-11T11:39:41Z | null | 1 | 9 | 42 | 0 | 0 | 3 | null | MIT | JavaScript |
thecodexhub/xarvis-cli | main | # Xarvis CLI

[](https://opensource.org/licenses/MIT)
[](https://www.npmjs.com/package/xarvis-cli)
A Command-Line Interface for generating a production-ready starter template.
<img src="assets/images/screenshot.png" alt="xarvis cli">
## Supported Templates
- [xarvis-express-js](https://github.com/thecodexhub/xarvis-express-js) - A Xarvis Express app with JavaScript: (See [features](https://github.com/thecodexhub/xarvis-express-js#features) list)
- [xarvis-express-ts](https://github.com/thecodexhub/xarvis-express-ts) - A Xarvis Express app with TypeScript: (See [features](https://github.com/thecodexhub/xarvis-express-ts#features) list)
## Installation
The below command will make the xarvis command available globally, allowing you to use it from anywhere in your terminal.
```
$ npm install -g xarvis-cli
```
## Commands
### `xarvis -h` or `xarvis --help`
**Display the usage information.**
```shell
Usage: xarvis <command> [arguments]
🚀 A Command-Line Interface for generating production ready starter template.
Options:
-v, --version Display the current version.
-h, --help Display the usage information.
Commands:
create Creates a new xarvis project in the specified directory.
help [command] Display the usage information.
```
### `xarvis create express-app`
**Creates a new Xarvis Express project in the specified directory.**
```shell
Usage: xarvis create express-app <project-name> [arguments]
Creates a new Xarvis Express project in the specified directory.
Options:
-o, --output-directory The optional desired output directory when creating a new project.
-t, --template The template for this project. (choices: "javascript", "typescript")
--description The description for this new project. (default: "An Express starter project
created by Xarvis CLI.")
--skip-git Whether or not to skip initializing git (default: false)
-h, --help Display the usage information.
```
_Note: The `--template` and `--description` are required. If not provided by the CLI options, questions will be prompted, as shown in the below example._
```shell
$ xarvis create express-app my-app
? Enter the project description: An Express starter project created by Xarvis CLI.
? Choose a project template to use: (Use arrow keys)
> javascript
typescript
```
### Use `-h` or `--help` for any usage information
```shell
# Displays usage information for Xarvis CLI
$ xarvis -h
# Displays usage information for `xarvis create` command
$ xarvis create -h
# Displays usage information for `xarvis create express-app` command
$ xarvis create express-app -h
```
## License
The project is released under the [MIT License](LICENSE). Learn more about it, [here](https://opensource.org/license/mit/).
## Xarvis Feature Request
We welcome any ideas or recommendations about how to make the tool better. Unless there is an overwhelming demand for a feature, it might not get implemented.
Before posting, be kind to your surroundings and the authors who take joy in developing new features and writing documentation to help you.
### Create a Feature Request (Issue)
Create an issue including as much information as possible to your proposal. To create an issue -
- Go to the [issues](https://github.com/thecodexhub/xarvis-cli/issues) tab from the project repository.
- Then click on [new issue](https://github.com/thecodexhub/xarvis-cli/issues/new/choose).
- You'll have to choose type of the issue. In this case, click on **Get Started** button for the Feature Request type.
- Fill up the details and **Submit new issue**.
---
<p align="center">
<a href="https://github.com/thecodexhub">
<img width="75px" src="https://avatars.githubusercontent.com/u/56641059?v=4" alt="thecodexhub">
</a>
<p align="center">
Developed and Maintained with 💜 by <a href="https://github.com/thecodexhub">thecodexhub</a>
</p>
<p align="center">
<a href="https://github.com/thecodexhub/xarvis-cli">
<img src="https://img.shields.io/github/stars/thecodexhub/xarvis-cli?label=%E2%AD%90%20Star%20this%20repository&color=%23FFBF00" alt="Star this repository">
</a>
</p>
</p>
| A Command-Line Interface for generating production ready starter template. | cli,cli-app,expressjs,generate-code,javascript,project-generator,starter-template,typescript,generate-project | 2023-09-01T18:08:59Z | 2023-10-29T10:16:29Z | 2023-10-14T07:44:38Z | 1 | 2 | 60 | 0 | 0 | 3 | null | MIT | TypeScript |
jasmeet15069/jixone-shop-online-ecommerce-php-main | main |
> ## Updated project with extra Features like WISHLIST, List Orders, add Reviews, updated routing, resolved search bug is available for Premium
<h3>Things I code with</h3>
<p>
<img alt="npm" src="https://img.shields.io/badge/-NPM-CB3837?style=flat-square&logo=npm&logoColor=white" />
<img alt="html5" src="https://img.shields.io/badge/-HTML5-E34F26?style=flat-square&logo=html5&logoColor=white" />
<img src="https://img.shields.io/static/v1?label=Vue.js&message=v2.6&color=4FC08D&style=flat-square&logo=vue.js&logoColor=ffffff" alt="vue.js">
<img alt="Django" src="https://img.shields.io/badge/Django-092E20?style=flat-square&logo=django&logoColor=white" />
<img alt="Flutter" src="https://img.shields.io/badge/Flutter-02569B?style=flat-square&logo=flutter&logoColor=white" />
<img alt="JavaScript" src="https://img.shields.io/badge/JavaScript-323330?style=flat-square&logo=javascript&logoColor=F7DF1E" />
<img alt="Mysql" src="https://img.shields.io/badge/MySQL-00000F?style=flat-square&logo=mysql&logoColor=white" />
<img alt="postgresql" src="https://img.shields.io/badge/PostgreSQL-316192?style=flat-square&logo=postgresql&logoColor=white" />
<img alt="Amazon_AWS" src="https://img.shields.io/badge/Amazon_AWS-232F3E?style=flat-square&logo=amazon-aws&logoColor=white" />
<img alt="Css" src="https://img.shields.io/badge/CSS-239120?&style=flat-square&logo=css3&logoColor=white" />
<img alt="Sass" src="https://img.shields.io/badge/-Sass-CC6699?style=flat-square&logo=sass&logoColor=white" />
<img alt="Styled Components" src="https://img.shields.io/badge/-Styled_Components-db7092?style=flat-square&logo=styled-components&logoColor=white" />
<img alt="git" src="https://img.shields.io/badge/-Git-F05032?style=flat-square&logo=git&logoColor=white" />
<img alt="Heroku" src="https://img.shields.io/badge/-Heroku-430098?style=flat-square&logo=heroku&logoColor=white" />
<img alt="Docker" src="https://img.shields.io/badge/-Docker-46a2f1?style=flat-square&logo=docker&logoColor=white" />
<img alt="angular" src="https://img.shields.io/badge/-Angular-DD0031?style=flat-square&logo=angular&logoColor=white" />
<img alt="MongoDB" src="https://img.shields.io/badge/-MongoDB-13aa52?style=flat-square&logo=mongodb&logoColor=white" />
<img alt="Nodejs" src="https://img.shields.io/badge/-Nodejs-43853d?style=flat-square&logo=Node.js&logoColor=white" />
<img alt="Google Cloud Platform" src="https://img.shields.io/badge/-Google_Cloud_Platform-1a73e8?style=flat-square&logo=google-cloud&logoColor=white" />
<img alt="TypeScript" src="https://img.shields.io/badge/-TypeScript-007ACC?style=flat-square&logo=typescript&logoColor=white" />
</p>
<h1>Projects We develop</h1>
<ul>
<li><b>Vue JS</b></li>
<li><b>Nuxt JS</b></li>
<li><b>Python</b></li>
<li><b>Django</b></li>
<li><b>PHP and MYSQL</b></li>
<li><b>Angular JS</b></li>
<li><b>React JS</b></li>
<li><b>AI/ML</b></li>
</ul>
<h2> Projects with installation support and code explaination for Premium contact gmail: jasmeet.15069@gmail.com or visit :<a href="https://jixoneblog.000webhostapp.com/">Jixone Blog</a></h2>
# Installation
1. Install XAMPP or WAMPP.
2. Open XAMPP Control panal and start [apache] and [mysql] .
3. Download project from github(https://github.com/jasmeet15069/jixone-shop-online-ecommerce-php.git)
OR follow gitbash commands
i>cd C:\\xampp\htdocs\
ii>git clone https://github.com/jasmeet15069/jixone-shop-online-ecommerce-php.git
4. extract files in C:\\xampp\htdocs\.
5. open link localhost/phpmyadmin
6. click on new at side navbar.
7. give a database name as (onlineshop) hit on create button.
8. after creating database name click on import.
9. browse the file in directory.
10. after importing successfully.
11. open any browser.
12. first register and then login
13. admin login details Email=admin@gmail.com or username = admin and Password=123456789.
## If you like my project
Bye me Cup of coffee
## visit my other repository with different admin pages with below link
https://github.com/jasmeet15069
https://github.com/sushant6830
## If you like my project hit a star button
# Screenshots
## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
| Deployed Link | admin,admin-dashboard,cart,client-side,crud,css,database,ecommerce-website,hosting,html | 2023-08-23T11:37:09Z | 2023-08-24T08:13:34Z | null | 2 | 0 | 2 | 0 | 1 | 3 | null | Apache-2.0 | PHP |
equipedevo/API_2 | main | <h1 align='center'>
:beetle: EQUIPE DEVO :beetle:
APRENDIZAGEM POR PROJETOS INTEGRADOS
2º SEMESTRE DSM - 2023
</h1>
<h1 align='center'> :zap: Sistema HERMEZ :zap: </h1>
## :mag_right: Índice
<p align='center'>
<a href="#objetivo">Objetivo</a> |
<a href="#requisitos">Requisitos</a> |
<a href="#relatorios">Relatórios</a> |
<a href="#sprints">Entregas</a> |
<a href="#backlog">Backlog total</a> |
<a href="#tecnologias">Tecnologias</a> |
<a href="#equipe">Equipe</a>
</p>
<span id='objetivo'>
## :dart: Objetivo
<p align='justify'>
O projeto consiste em desenvolver um sistema de Gerenciamento de Chamados de Serviços. Este sistema deve ser capaz de fornecer informações sobre disponibilização de funcionalidades de planejamento, de acompanhar e controlar atendimentos de chamados de serviços, além de criar e exibir relatórios analíticos.
</p>
<span id='requisitos'>
## :clipboard: Requisitos
### Funcionais
:pushpin: Cadastros de Usuários, Técnicos, Equipamentos e Horários;
:pushpin: Diferentes perfis de usuários (administrador, técnicos e clientes);
:pushpin: Registro de chamados;
:pushpin: Acompanhamento de chamados de ponta a ponta;
:pushpin: Cadastro de soluções para problemas conhecidos.
### Não Funcionais:
:pushpin: Manual de usuário online;
:pushpin: Guia de instalação;
:pushpin: Protótipo de wireframe navegável.
→ [Voltar ao topo](#topo)
<span id='relatorios'>
## :pushpin: Relatórios
Na tabela abaixo é possível visualizar os resultados de cada Sprint clicando em "Ver entrega".
<!-- [ver entrega](link da sprint correspondente) -->
| Sprint | Entrega | Status | Relatório |
|:------:|:----------:|:---------------------------:|:---------:|
| 01 | 24/09/2023 | :white_check_mark: Finalizada! | [Ver entrega](https://github.com/equipedevo/API_2/blob/main/doc/sprints/Sprint_1.md) |
| 02 | 15/10/2023 | :white_check_mark: Finalizada! | [Ver entrega](https://github.com/equipedevo/API_2/blob/main/doc/sprints/Sprint_2.md) |
| 03 | 05/11/2023 | :white_check_mark: Finalizada! | [Ver entrega](https://github.com/equipedevo/API_2/blob/main/doc/sprints/Sprint_3.md) |
| 04 | 26/11/2023 | :white_check_mark: Finalizada! | [Ver entrega](https://github.com/equipedevo/API_2/blob/main/doc/sprints/Sprint_4.md) |
→ [Voltar ao topo](#topo)
<span id='sprints'>
## :incoming_envelope: Entregas
### Entrega da Sprint 4

> Caso deseje ver o vídeo do sistema em funcionamento na íntegra, acesse o nosso vídeo no YouTube: <a href="https://www.youtube.com/watch?v=uk6x5mN4uqA"> Clique Aqui </a>
→ [Voltar ao topo](#topo)
<span id='backlog'>
<h2>📑 Backlog total: </h2>
| ID | Sprint | Enquanto | Desejo | Prioridade | Critério de aceitação |
| :-: | :----: | :-------------: | :------------------------------------------------------------------------------------------------------------------: |:----------:| :------------------------------------------------------------------------------------------------------------: |
| 003 | 2 | Cliente | cadastrar minha empresa, para gerencia-la adequadamente | :red_circle: Alta | Sistema de cadastro e gerenciamento da empresa. |
| 004 | 2 | Cliente-empresa | cadastrar administradores, para que possam gerenciar o sistema para o cliente | :red_circle: Alta | Acesso ao usuário 'empresa', com opções para cadastrar outros usuários |
| 005 | 2 | Cliente | que meu sistema possa ser utilizado através da web. | :red_circle: Alta | Deploy do site como um todo (Front, Back e BD) |
| 006 | 2 | Administrador | que haja um registro de chamados, para que eu possa ver e acompanhar todos os chamados existentes. | :large_orange_diamond: Média | Página com registro de chamados |
| 007 | 2 | Administrador | poder cadastrar técnicos e usuários comuns, para que possam abrir chamados | :large_orange_diamond: Média | Acesso ao usuário "Administrador" com opções para cadastrar usuários |
| 008 | 3 | Cliente | que meus chamados possam ter seus status atualizados, para classifica-los de acordo com seu progresso de resolução. | :large_orange_diamond: Média | Criação de status para os chamados e ferramente para editar os mesmos |
| 009 | 3 | Cliente | que os chamados tenham prioridade de resolução e graus de urgência | :red_circle: Alta | Sistema delegar automaticamente a prioridade |
| 010 | 3 | Administrador | que todos os chamados sejam armazenados permanentemente | :red_circle: Alta |Criar banco de dados para armazenar informações dos chamados |
| 011 | 3 | Empresa | que todos os clientes possam ter seus dados alterados por administradores | :red_circle: Alta | Criar a funcionalidade para o administrador poder alterar dados dos usuários comuns e técnicos |
| 012 | 3 | Cliente | que eu possa me comunicar facilmente com o técnico que está atendendo meu chamado | :red_circle: Alta | Criar o chat entre funcionário e técnico que vai atender o chamado do mesmo |
| 013 | 4 | Cliente | que os chamados tenham sua resolução pré-estimada | :red_circle: Alta | Sistema que delegue automaticamente a estimativa de resolução dos chamados |
| 014 | 4 | Administrador | ter acesso a relatórios analíticos do sistema, para poder acompanhar a eficácia do mesmo. | :white_circle: Baixa | Página com relátorios analíticos |
| 015 | 4 | Cliente | que qualquer usuário possa saber como usar o sistema, que o sistema fique eficiente. | :large_orange_diamond: Média | Botão de ajuda com manual online para usuários |
→ [Voltar ao topo](#topo)
<span id='tecnologias'>
## 💻 Tecnologias
Foram usadas as seguintes ferramentas, linguagens e tecnologias para a execução do projeto:
- [Figma](https://www.figma.com): Prototipagem
- [Git](https://git-scm.com): Versionamento
- [GitHub](https://github.com/): Armazenamento de código e documentação
- [JavaScript](https://www.w3schools.com/js/default.asp): Linguagem de programação
- [Jira](https://www.atlassian.com/software/jira): Organização de tarefas
- [MySQL](https://www.mysql.com/): Banco de dados
- [NodeJS](https://nodejs.org/): Runtime
- [React](https://pt-br.reactjs.org/): Framework
→ [Voltar ao topo](#topo)
<span id="equipe">
## :busts_in_silhouette: Equipe
| Função | Nome | LinkedIn | GitHub |
| :-----------: | :-----------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
| Product Owner | Gabriel Lucena do Rosário | <a href="https://www.linkedin.com/in/lucena-gabriel" target="_blanck"> <img src="https://img.shields.io/badge/-LinkedIn-%230077B5?style=for-the-badge&logo=linkedin&logoColor=white" target="_blank"> | <a href="https://github.com/tGrimR34per" target="_blank"><img src="https://img.shields.io/badge/GitHub-100000?style=for-the-badge&logo=github&logoColor=white"></a> |
| Scrum Master |Pedro Augusto N. Silva | <a href="https://www.linkedin.com/in/pedroaugustonogueira" target="_blanck"> <img src="https://img.shields.io/badge/-LinkedIn-%230077B5?style=for-the-badge&logo=linkedin&logoColor=white" target="_blank"> | <a href="https://github.com/pedroansdev" target="_blank"><img src="https://img.shields.io/badge/GitHub-100000?style=for-the-badge&logo=github&logoColor=white"></a> |
| Dev Team | Bruno Serpa P. Carvalho | <a href="https://www.linkedin.com/in/brunoserpa" target="_blanck"> <img src="https://img.shields.io/badge/-LinkedIn-%230077B5?style=for-the-badge&logo=linkedin&logoColor=white" target="_blank"> | <a href="https://github.com/BrunoSerpa" target="_blank"><img src="https://img.shields.io/badge/GitHub-100000?style=for-the-badge&logo=github&logoColor=white"></a> |
| Dev Team | Caique Péricles Silva | <a href="https://www.linkedin.com/in/caiquepastelsilva" target="_blanck"> <img src="https://img.shields.io/badge/-LinkedIn-%230077B5?style=for-the-badge&logo=linkedin&logoColor=white" target="_blank"> | <a href="https://github.com/PasteldePaodeCoxinha" target="_blank"><img src="https://img.shields.io/badge/GitHub-100000?style=for-the-badge&logo=github&logoColor=white"></a> |
| Dev Team | Mariana Izumi Silva | <a href="https://www.linkedin.com/in/mariana-izumi-developer" target="_blanck"> <img src="https://img.shields.io/badge/-LinkedIn-%230077B5?style=for-the-badge&logo=linkedin&logoColor=white" target="_blank"> | <a href="https://github.com/MariMiks/" target="_blank"><img src="https://img.shields.io/badge/GitHub-100000?style=for-the-badge&logo=github&logoColor=white"></a> |
| Dev Team | Rafael Nunes de F. Silva | <a href="https://www.linkedin.com/in/rafael-nunes-silva" target="_blanck"> <img src="https://img.shields.io/badge/-LinkedIn-%230077B5?style=for-the-badge&logo=linkedin&logoColor=white" target="_blank"> | <a href="https://github.com/Rafael-Nunes-Silva" target="_blank"><img src="https://img.shields.io/badge/GitHub-100000?style=for-the-badge&logo=github&logoColor=white"></a> |
→ [Voltar ao topo](#topo)
| Referente a API do 2º Semestre da FATEC | aprendizado-por-projeto-integrado,css3,htm,html5,javascript,metodologia-agil,mysql | 2023-08-22T13:40:08Z | 2023-12-04T10:10:59Z | null | 8 | 0 | 52 | 0 | 0 | 3 | null | MIT | null |
Kokolipa/Nasdaq_100 | main | # Nasdaq 100 - Interactive Dashboard
## TLDR - Project Description - [](https://we.tl/t-lOyJsygSrs)
* Creating an interactive dashboard to explore the Nasdaq 100 share index using APIs to call the data, Python and SQLAlchemy to clean and transform the data, and loading the data to a SQLite database using SQLAlchemy's ORM.
* Reading the data from "nasdaq.sqlite" to create a Flask API.
* Rendering the Flask API using the D3 library and JavaScript to feed the HTML elements with data.
* Dropdown buttons
* Visuals
* A company description
* Reading data from the New York Times API to retrieve the most recent five corresponding articles for a given Nasdaq 100 share.
##### Dashboard

----------------------------------------------------------------
##### Information

### Project outline - ETL
----------------------------------------------------------------

#### Extract:
* **Data Extraction:**
* Calling the Alpha Vantage API to retrieve the Nasdaq index 100 trading data and metadata (an overview of each of the 101 companies within the index) from the last five years and return the data in jsonified format and CSV format.
* Extracting data from New York Times API (NYT) to retrieve the 5 latest corresponding **article snippets** for each share in Nasdaq 100 and the **web_url** for the article.
#### Transform:
* **Data Cleansing, Manipulation and Transformation:** Transforming the jsonified and CSV data (metadata & trading data) into Pandas DataFrames and manipulating the data to create a unique ID for each ticker symbol for both datasets. Removing irrelevant columns and renaming the left columns to enhance clarity.
* **Database Creation**: Using SQLAlchemy **ORM** to create the seven tables and load them with the **declerative base**. The tables were created to achieve a normalised database (third normal form correspondence). Domain integrity was enforced by defining one allowable data type for each column. Key integrity was enforced by assigning a unique primary key for each record in each table. Referential integrity was enforced by assigning foreign keys and defining relationships between tables.
* **NYT API** - Transforming the data returned from NYT to JSON format
* **Load**:
* Creating an API using Flask and SQLAlchemy. Loading data from the "nasdaq.sqlite" and assigning the data to each Flask route created. Two routes were created to retrieve all the data in jsonified format(a list of dictionaries with two keys: **metadata**, **trades**, and **tickers**) as follows:
* Calling the API created with JavaScript D3 library to render the data and feed the interactive visuals that were created with Plotly and HighChart.
* Retrieving the data from the NYT to feed the HTML elements using JavaScript and D3.

### Dashboard Functionality:
----------------------------------------------------------------
#### Dashboard
* The backend design was implemented with CSS and HTML. To ensure design flexibility, we used position relative and absolute and sizing HTML elements with percentages instead of pixels.
* To enable the modification of the dashboard based on a user selection, we stored within the HTML element a function and called it in the JavaScript code.
``` HTML
<label for="stock"><b>Select sector:</b></label>
<select id="sector" onchange="optionChanged(this.value)"></select>
<label for="stock"><b>Select a Stock:</b></label>
<select id="selDataset" onchange="optionChanged(this.value)"></select>
```
* The dashboard allows the selection from the sector and stock drop buttons.
* Initially, if a sector is selected, the dashboard will provide:
* A candlestick chart to summarise the trading period for the sector selected(inclusive, all time, based on the API GET call) and enable an overview of:
* closing price, opening price, low price, and high price.
* A bar chart to explore the volume per sector (including all periods specified).
* Pie chart to explore the market cap per sector.
* Otherwise, if a stock was selected initially, the dashboard will provide:
* A breakdown of the stock (name, sector, market cap, EBITDA, book value, dividend per share, and dividend yield).
* A bar chart to explore the volume per share (including all periods specified).
* Pie chart to explore the market cap per sector.
* A candlestick chart to summarise the trading period for the share selected (inclusive, all time, based on the API GET call) and enable an overview of:
* closing price, opening price, low price, and high price.
* If the default option was selected for both dropdown lists, all the visuals will be removed from the dashboard until a new selection is made.
##### About logic.js
To enable the above functionality, the logic was separated into two funnels.
1. **Functions funnel** => This funnel enables flexibility per selection and modifies the dashboard accordingly (based on the selection, the returned value from the subset created in the data funnel returned for plotting).
2. **Data funnel** => This funnel returns a subset of the data, structured to be easily accessed by the plotting libraries.
#### Information
* The information page includes one dropdown list containing the stocks.
* When a stock is selected, the description of the company selected will be displayed, as well as the latest five articles from NYT if those articles are available.
#### Libraries & APIs Used
**Python Libraries:**
* Pandas
* JSON
* Flask
* SQLite
* SQLAlchemy
* Datetime
* os
* Time
* requests
**JavaScript Libraries:**
* Plotly
* HighCharts
* D3
**APIs:**
* New York Times
* Alpha Vantage
#### Languages:
1. Python
2. JavaScript
3. CSS
5. HTML
6. SQL
#### Folder structure
``` yml
.
│ ├── ETL
│ | ├── clean_db_data # This folder contains the database tables
│ | | ├── clean_asset_type.csv
│ | | ├── clean_country.csv
│ | | ├── clean_currency.csv
│ | | ├── clean_industry.csv
│ | | ├── clean_metadata.csv
│ | | ├── clean_sector.csv
│ | | ├── clean_trade_data.csv
│ | ├── ERD.png
│ | ├── alpha_vantage_constants.py
│ | ├── alpha_vantage_extract.ipynb
│ | ├── alpha_vantage_load.ipynb
│ | ├── alpha_vantage_transform.ipynb
│ | ├── NASDAQ_Tickers.csv # This CSV file contains the tickers names from the slickercharts website
│ | ├── nasdaq_tickers_isolate.ipynb # This file retrieves the tickers from the slickercharts website
│ | ├── alpha_vantage_transform.ipynb
│ | ├── nasdaq.sqlite # This is the database
│ ├── flask_sqlite
│ | ├── routes
│ | | ├── __pycache__
│ | | | ├── get_all_data.cpython-310.pyc
│ | | | ├── get_data_by_date.cpython-310.pyc
│ | | | ├── get_data_by_sector.cpython-310.pyc
│ | | ├── get_all_data.py
│ | | ├── get_data_by_date.py
│ | ├── app.py # To run the api use the file (commend => python app.py)
│ ├── html_css_js # This folder contains the JavaScript, the CSS, and the HTML code
│ | ├── CSS
│ | | ├── about.css
│ | | ├── index.css
│ | ├── CSV_Data # This folder contains the CSV data for "all the data returned by the API "
│ | | ├── nytimes_articles.json # This folder contains the data extracted from the NYT API
│ | | ├── response.json
│ | ├── Icons
│ | | ├── dashboard.png
│ | | ├── info.png
│ | | ├── stock_image2.jpeg
│ | | ├── stocks_image.jpeg
│ | ├── js
│ | | ├── about.js
│ | | ├── logic.js
│ | ├── CSV_Data
│ | | ├── nytimes_articles.json
│ | | ├── response.json
│ | ├── about.html
│ | ├── index.html
│ ├── NYTimes API
│ | ├── Constants.py
│ | ├── import_articles.py
│ ├── Dashboard_images
│ | ├── dashboard.png
│ | ├── image.png
│ | ├── information.png
|___README.md
|___.gitignore
``` | Creating an interactive dashboard to explore the Nasdaq 100 share index using APIs to call the data, Python and SQLAlchemy to clean and transform the data, as well as loading the data to a SQLite database using SQLAlchemy's ORM. | css,d3,flask,highchart,html5,orm,pandas,plotly,python,sqlalchemy | 2023-09-11T10:46:53Z | 2023-09-21T00:26:51Z | null | 4 | 5 | 80 | 0 | 0 | 3 | null | null | Jupyter Notebook |
rahulb813/student-steward | main |
# Student Steward
##Introduction
- A full stack website in order to implement online-management system for hostel.
- Entire data for the website is stored on a MySQL programmed database.
- Users are classified on the basis of roles.
- Students are given to register and change their personal information.
- Admin get the complete rights to apply CRUD operations on any form of data.
## Technologies Used
- HTML
- CSS
- BootStrap
- JavaScript
- pHp
- MySQL
- XAMPP
## Implementation and Working
- Each of the functionality of the webpage is classified into a `.php` file that is embedded with HTML.
- BootStrap has been used with inline CSS for beautifying purposes.
- JavaScript has been used with ESLint6 for validation, user input and other BootStrap purposes.
- XAMPP Software has been used for local deployment and testing of the database.
## Testing
- The application has been tested on localhost server deployed by XAMPP Software with custom ports.
- The performance of the entire application has been tested by evaluating the overall performance of CRUD operations on the database.
| A full stack website in order to implement online-management system for hostel. | bootstrap,css3,eslint,html5,javascript,php,sql,xampp | 2023-09-08T16:02:30Z | 2023-09-08T17:57:50Z | null | 1 | 0 | 3 | 0 | 1 | 3 | null | GPL-3.0 | JavaScript |
Daltonic/Dappworks | main | # Build a Decentralized Voting Dapp with Next.js, TypeScript, Tailwind CSS, and CometChat
Read the full tutorial here: [**>> Build a Decentralized Voting Dapp with Next.js, TypeScript, Tailwind CSS, and CometChat**](https://daltonic.github.io)
This example shows How to Build a Decentralized Voting Dapp with Next.js, TypeScript, Tailwind CSS, and CometChat:

<center><figcaption>Placing Bids</figcaption></center>

<center><figcaption>Paying out</figcaption></center>

<center><figcaption>One-on-One Chat</figcaption></center>
## Technology
This demo uses:
- Metamask
- Hardhat
- Infuria
- ReactJs
- Tailwind CSS
- Solidity
- EthersJs
- Faucet
## Running the demo
To run the demo follow these steps:
1. Clone the project with the code below.
```sh
# Make sure you have the above prerequisites installed already!
git clone https://github.com/Daltonic/P2E PROJECT_NAME
cd PROJECT_NAME # Navigate to the new folder.
yarn install # Installs all the dependencies.
```
2. Create a CometChat project, copy and paste your key in the spaces below.
3. Update the `.env` file with the following details.
```sh
REACT_APP_COMET_CHAT_APP_ID=<CometChat_APP_ID>
REACT_APP_COMET_CHAT_AUTH_KEY=<Comet_Chat_AUTH_KEY>
REACT_APP_COMET_CHAT_REGION=<CometChat_REGION>
REACT_APP_RPC_URL=<http://127.0.0.1:8545>
```
4. Run the app using the following commands.
```sh
yarn install
yarn hardhat node
yarn hardhat run scripts/deploy.js
```
5. On another terminal, run `yarn start` to launch the project on the browser.
6. Add some hardhat accounts, connect your wallet and interact with the app.
<br/>
If your confuse about the installation, check out this **TUTORIAL** to see how you should run it.
Questions about running the demo? [Open an issue](https://github.com/Daltonic/P2E/issues). We're here to help ✌️
Access the [Teaching Guide Here](https://docs.google.com/document/d/13bBRyAO0bEwRt776FXbYgWm6-OBFiUu6zTeOgRbXXyI/edit?usp=sharing).
## Useful links
- 🏠 [Website](https://dappmentors.org/)
- ⚽ [Metamask](https://metamask.io/)
- 🚀 [CometChat](https://try.cometchat.com/oj0s7hrm5v78)
- 💡 [Hardhat](https://hardhat.org/)
- 📈 [Infuria](https://infura.io/)
- 🔥 [ReactJs](https://reactjs.org/)
- 🐻 [Solidity](https://soliditylang.org/)
- 👀 [EthersJs](https://docs.ethers.io/v5/)
- 🎅 [Faucet](https://www.alchemy.com/faucets)
- ✨ [Live Demo](https://dappworks.vercel.app/)
| This is a Blockchain use-case focusing in the building of a Decentralized Freelance Marketplace with React, Solidity, and CometChat. Please leave a star and remember, it is hosted on Sepolia test net. | blockchain,cometchat,dapps,ethersjs,hardhat,javascript,react,smartcontracts,solidity,tailwindcss | 2023-08-31T22:13:10Z | 2023-09-20T23:08:21Z | null | 2 | 16 | 43 | 0 | 0 | 3 | null | null | JavaScript |
ecryptoguru/ankitswap2.0 | master | This project was bootstrapped with [Create Eth App](https://github.com/paulrberg/create-eth-app).
## Ankitswap
Just launched my biggest Full-Stack Dapp yet! Introducing Ankitswap, a fully operational DEX with custom router and custom tokens deployed on Goerli Testnet. The custom-code backend was built using Uniswap Labs V2 core and Uniswap Periphery modules, integrating router, liquidity adder, and ERC-20 token exchange features.
The modern frontend, built using React and Tailwind CSS, includes massive features and took some time to build.
The Dapp is live and anyone can check it out, just make sure to have some weth to do the transactions on Goerli Testnet.
Live DEX
https://lnkd.in/dz5xivzU
Convert Goerli-eth to weth
https://lnkd.in/d7mfy7Tx
Router Contract Address
0x40069B4CF0Cb0F099F91a95642f2AF82823c9CE2
Custom Tokens
AD - 0xab3088f44FE4cf8807A3E011Af42719eb23Eb76b
AP - 0xDD0F0b4629EeCbA8d1AAe1fa5C3896eb4Be2C86e
AINU - 0x7D54d8fe1Dc4C3DB0836Bec661F1176A280Cc4be
| Introducing Ankitswap, a fully operational DEX, based on uniswapV2 with custom router and custom tokens deployed on Goerli Testnet. | erc20,full-stack,javascript,nextjs,solidity-dapps,uniswap-v2,web3 | 2023-08-21T21:24:36Z | 2023-08-23T08:08:56Z | null | 1 | 0 | 4 | 0 | 2 | 3 | null | null | JavaScript |
Arunvijay28/Sudoku-Game | main | # A 3-in-1 Sudoku Web Application
## Solve a Sudoku, Generate and Play a Sudoku of Varying Difficulty, or Input and Play Your Own Sudoku
## Table of Contents
[Brief Overview](#headers)
[About Us](#about)
[Website Walkthrough](#walkthrough)
[Technologies Used](#technology)
  [Python](#python)
  [Javascript](#js)
  [jQuery](#jquery)
  [HTML](#html)
  [CSS](#css)
[Features](#features)
  [Overall Features](#overallfeatures)
  [Player Interface Features](#interfacefeatures)
[File Descriptions](#files)
[Credits](#credits)
<a id="overview"></a>
## Brief Overview
This project is a multi-dimensional Sudoku web application, which runs with a Flask API web framework in Python. The application allows users the option to generate and play a random Sudoku based on varying difficulty (easy, medium, hard, or expert), input their own Sudokus (e.g. from a newspaper or other website) and play it, or solve any Sudoku of their choosing. The overall goal of this application is to give a seamless user experience by creating an intuitive interface and unique aesthetic, combined with a multitude of features that enhance speed and navigation throughout the Sudoku.
<a id="about"></a>
## About Us
As avid fans of solving Sudokus, we set out on this multi-week project to learn about some new technologies and frameworks, get a glimpse into unifying backend and frontend code, and create a one-stop-shop for all things Sudoku!
<p>Having encountered many interesting features across Sudoku mobile and web applications, we sought to combine all of them into one place for the enjoyment of friends and family, as well as any and all Sudoku lovers! We encourage you to give it a try!</p>
<a id="walkthrough"></a>
## Website Walkthrough
### Themes
<img src="/static/css/images/TanTheme.png" width="50%">
### Menu
<img src="/static/css/images/MenuScreenShot.png" width="50%">
### Play Path
<img src="/static/css/images/InputPlayerScreenShot.png" width="50%">
<img src="/static/css/images/PlayScreenShot.png" width="50%">
### Solve Path
<img src="/static/css/images/InputSolveScreenShot.png" width="50%">
<img src="/static/css/images/SolutionScreenShot.png" width="50%">
<a id="technology"></a>
## Technologies Used
<a id="python"></a>
### Python
+ The *Flask API Web Framework* is employed to organize and render all of the HTML files in the application. It also allows us to easily transfer data from Python to Javascript, and vice versa, in order to incorporate certain functionality like the solver, generator, and inputter.
+ The *Jinja 2 Templating Engine* is used to build HTML that can be returned to the user through an HTTP request. For our purposes, values are passed in the `render_template()` method in `app.py` to the HTML files, so that the placeholder variables of Jinja 2 can store the dynamic data. Furthermore, Jinja 2’s support for “template inheritance” allows us to utilize the same baseline HTML document while only making specific changes to each additional page.
+ *Object-oriented programming* creates the Sudoku objects and Generate objects. Sudoku objects are used to solve and validate the Sudokus while Generate objects are used to generate a random Sudoku based on a specified level of difficulty.
+ *Recursion* is the main technique used to implement the solving algorithm. It works by inputting a valid number in each cell and recursively filling all cells until all numbers are valid.
<a id="js"></a>
### Javascript
+ *Javascript functions* comprise the primary structure of the functionality since they are invoked from the HTML to accomplish specific tasks.
+ *Javascript global variables* are used to maintain and track information necessary for the implementation of numerous functions. These variables primarily involve Objects, Arrays, and the primitive data types of booleans, numbers, and strings.
+ Javascript is frequently used to access, alter, add, and delete parts of the *HTML DOM* (Document Object Model).
- DOM Elements (e.g. `document.getElementById`)
- DOM Nodes (e.g. `document.documentElement`)
- DOM Events (e.g. `onmousedown`, `onmouseup`, `onclick`)
- DOM CSS (e.g. `document.getElementById(id).style.property`)
- DOM Content (e.g. `document.getElementById(id).innerHTML`)
- DOM Collections (e.g. `document.getElementsByClassName`)
<a id="jquery"></a>
### jQuery
+ *jQuery* is used as a Javascript library to simplify HTML DOM manipulation, catch event function triggers, and exchange data with the server through AJAX.
+ *jQuery Event Methods* such as `keydown()` or `mousedown()` are used to notify the Javascript file of user interaction with the page while handlers such as `event.preventDefault()` restrict certain actions by the user.
+ *jQuery Selectors* are used to specify for which HTML DOM elements the event method should trigger. In most cases, this is set to the root document itself.
+ *AJAX calls* are made in jQuery to check for when the page has finished loading with the `.load()` method.
<a id="html"></a>
### HTML
+ The *HTML Web Storage API* supports the ability to store data within the user’s browser, with all pages on the web application accessing and changing the same data. This route was chosen over cookies as it is more secure and can store larger amounts of data with little adverse effects on performance. For our purposes, `window.localStorage` was used to maintain the user’s theme choice across pages.
+ *HTML Forms* collect the user input in the Sudoku, which include the values of the 81 cells in the grid. This form is sent with a form method of `POST` and a form action that depends on the page.
+ *HTML Form Validation* checks if the user input is valid in the input pages and if it is complete in the play page.
+ *HTTP POST Requests* collect the data in the form and send it as an HTTP request transaction to the appropriate page to be processed.
<a id="css"></a>
### CSS
+ *CSS Flexboxes* are used to design a page layout for the dynamic user interface. The layout allows us to arrange and align the mode and option div elements in a consistent way across pages.
+ *CSS Grid Layout Module*, which allows for specified placement of items in a row/column format, is used to build the actual Sudoku grid.
+ *CSS Variables* form the basis of the runtime feature of changing themes throughout our web application as these variables are accessed and manipulated in the Javascript. Variables also have the added benefit of eliminating repetition and clutter, as well as enhancing clarity in the main CSS document.
+ *CSS Functions* such as `linear-gradient()` are used to produce more appealing aesthetics, while properties like `filter()` define more complex visual effects.
+ *CSS Pseudo-selectors* and *pseudo-elements* define special styles and states of elements, such as when inputs are focused on or selected.
+ *Responsive dimensions* are used to define properties such as `max-width` and `max-height`.
<a id="features"></a>
## Features
<a id="overallfeatures"></a>
### Overall Features
#### Dynamic Themes
+ With a goal to create a minimalist yet aesthetic design, we give the user the ability to choose between four themes: dark, tan, light, and retro. Simply click on the *“Change Theme”* button located on every page to browse through the different choices. Once a theme has been chosen, elements around the document have their styles changed according to the specified CSS variables.
#### Home Icon
+ After exiting the menu page, an icon will appear on the left-side of each page that can redirect users back to the menu page.
#### Generating and Playing a Sudoku
+ The user can choose between 4 levels of difficulty (easy, medium, hard, expert) and the application will automatically preload a random Sudoku with that difficulty into the interactive player interface.
#### Inputting a Sudoku
+ This Sudoku application also allows users to input their own Sudokus to play and/or solve. Under the options on the menu page, users can select to either play or solve a Sudoku. Based on those specifications, users are then able to input their Sudokus. The user can input as many numbers into either inputter (as long as it is valid), and for better navigation, users are able to use arrow keys to traverse the grid. If the inputted Sudoku is invalid, a warning message will appear and allow users to go back to change the inputs.
#### Solving a Sudoku
+ Input any valid Sudoku and the solver will give you a correct solution that follows all Sudoku rules. The solution will return very quickly, even to the world’s hardest Sudoku!
#### Interactive Player Interface
+ Once the user has chosen a Sudoku to play, they are brought to the player interface, which incorporates many unique features that ease the Sudoku experience.
<a id="interfacefeatures"></a>
### Player Interface Features
#### Multiple Selection
+ Users can select multiple cells at once to input the same digits across the selected cells.
+ In order to select, users can either (1) hold the SHIFT key and use arrow keys (2) hold the SHIFT key and click individual cells or (3) drag the cursor across multiple cells.
+ In order to deselect, users can press the ESCAPE key or click on any cell without holding down the SHIFT key.
+ Selections appear in a different color to easily distinguish selected cells, and the shift indicator next to the home icon will be on if there are any selected cells in the grid.
#### User Inputs (Normal, Pencilmarks, or Colors)
+ *“Normal”* mode allows users to input numbers that they believe exist in the final solution.
+ *“Pencilmarks”* mode allows users to keep notes in specific cells if there are multiple possibilities. Users can easily delete specific pencilmarks in a cell by inputting the desired number again as a pencilmark in that cell. Normal numbers will automatically overwrite pencilmarks.
+ *“Colors”* mode allows users to input colors into the grid. This allows users to distinguish certain cells from each other.
+ All modes allow for the user to either click on the interactive table containing the numbers/colors or by pressing a number on the keyboard.
+ Modes can be changed by either clicking on the specific mode or by pressing the SPACE bar.
#### 3 Option Toggles
+ **Auto Delete Pencilmarks**: Automatically deletes pencilmarks that are in the same row, column, or box as a Normal number that has just been inputted. This eliminates the need to delete pencilmarks if the user inputs a Normal number.
+ **Highlight Numbers**: Allows users to easily see all instances of a number simply by focusing onto a cell with that number.
+ **Highlight Row, Column, and Box**: Shows the user all the cells in the grid that exist in the focused cell’s row, column, and box.
#### Other Options
+ **Auto Fill Pencilmarks**: Automatically inputs all possible pencilmarks in every cell . To undo this change, simply click *“Undo.”*
+ **Undo**: Users can easily undo their previous changes by clicking the *“Undo”* button.
#### Checking the Sudoku
+ After completing the Sudoku, users can click *“Check”*. Note that only Sudokus that only have Normal numbers in every cell can be checked. Otherwise, a warning will be shown. If the Sudoku is correct, a success message will be shown. If it is incorrect, an incorrect message will be shown and errors will be highlighted in red.
#### Restarting the Sudoku
+ Users can elect to restart the Sudoku by clicking *“Restart.”* This will revert the grid back to its starting state while all options that have been toggled will remain on.
#### Timing
+ A timer will begin upon starting the Sudoku and will end upon either successfully completing it or restarting.
#### Accessibility
+ The entire Sudoku can be completed by just using keys on the keyboard or by just clicking with the mouse.
## File Descriptions
#### `/sudopy.py`
This file contains 2 classes: Sudoku and Generate.
#### Sudoku Class
The Sudoku object is initialized with a passed 2D list. This list is then used to accomplish two main goals of solving the passed list and identifying if the passed list is a valid Sudoku.
Solving: The solver utilizes a backtracking algorithm. Using the numbers already in the cell, it iterates over every cell and attempts to fill each one with a valid number. If the inputted number results in an invalid Sudoku, then a different valid number takes its place. The grid is then filled recursively until all cells contain a valid number. This algorithm follows depth-first traversing, where it attempts to input as many valid numbers as possible before backtracking.
Validation: The validator checks every row, column, and box, and if there exists more than one instance of a number from 1-9, then the Sudoku is invalid.
#### Generate Class
The Generate object is initialized with a string that indicates a certain difficulty (easy, medium, hard, or expert). The intention of this class is to return a random Sudoku with a given difficulty. It achieves this by parsing through a .txt file of 200 Sudokus with the same name as the initialized string, choosing a random line, building that line into a list that can be used to initialize a Sudoku object, and finally returning it.
#### `/app.py`
This page controls all of the app routing through Flask. Depending on which route has been called, the defined functions render the appropriate template and send certain variables that will be accessed by Jinja 2 in the HTML document. The file imports the Sudoku and Generate classes from sudopy.py
The app route for `/solution` gathers the form request data from `input_solve.html` and creates the Sudoku object based on the numbers inputted by the user. The `solve()` method is then called and passed as a variable to solution.html so the completed Sudoku can be displayed to the user.
The app route for `/play` changes depending on which page created the “POST” request (either `input_play.html`, `menu.html`, or `play.html`). If the call was from `input_play.html`, it builds the Sudoku object based on the inputted numbers and returns the template for `play.html`. If it was called from `menu.html`, then it knows the user has chosen to play a Sudoku of a specified difficulty. It will check which difficulty level, create a Sudoku of that level with the Generate object, and then send that Sudoku to `play.html`. Lastly, if the call was from “play.html” itself, then the user has finished playing the Sudoku and wants to check if their solution is correct. Therefore, it will use the methods in the Sudoku class to send back a boolean of if the Sudoku is solved and which items are wrong, if any.
#### `/templates/menu.html` and `/static/javascript/menu.js`
The menu page can redirect users to three different pages: `solution.html` (if the user wants to solve a Sudoku), `input_play.html` (if the user wants to input and play their own Sudoku), or `play.html` (if the user chooses the difficulty level of the Sudoku they want to play.
#### `/templates/input_play.html` and `/static/javascript/base.js`
Upon entering a valid Sudoku and clicking *“Play,”* the user will be redirected to play.html, where the inputted numbers are preloaded as the starting numbers.
#### `/templates/play.html` and `/static/javascript/play.js`
After completing the Sudoku, the user can check the Sudoku to see if the solution is correct. This will redirect the user back to `play.html` with a message. If the solution is incorrect, the errors will be highlighted red.
#### `/templates/input_solve.html` and `/static/javascript/base.js`
Upon entering a valid Sudoku and clicking *“Solve,”* the user will be redirected to solution.html, where a solution to the inputted Sudoku will be displayed.
#### `/templates/solution.html` and `/static/javascript/base.js`
After seeing the solution to the inputted Sudoku, the user can choose to return to menu.html to solve a different Sudoku or utilize a different option.
#### `/static/css/main.css`
This is the main CSS document that is utilized by all of the HTML pages. The initial CSS variables are stored here, so they can be manipulated by the Javascript documents to create different themes.
**For a more in-depth look into the inner-workings of these files, feel free to open them in the repository and look at the documentation provided.**
<a id="credits"></a>
## Credits
All Sudokus inside the `/sudokus` folder were generated from https://qqwing.com/generate.html.
| A Sudoku Web App with backtracking strategy | backtracking-algorithm,css3,flask,flask-sqlalchemy,html5,javascript,python3 | 2023-08-16T08:45:27Z | 2023-12-14T16:41:47Z | null | 1 | 0 | 37 | 0 | 0 | 3 | null | null | JavaScript |
godpower13/AutomationTestingPlayground | main | # AutomationTestingPlayground
The **Automated Testing** for Web Applications is a comprehensive quality assurance project aimed at enhancing the reliability and stability of web-based software systems. Leveraging the power of Selenium, Mocha & Chai, this project is designed to automate the testing process, ensuring consistent and efficient evaluation of web applications.
# Design Pattern
The Page Object Model (POM) is a widely adopted design pattern in automated software testing, specifically for web applications. It provides a **structured** and **organized** approach to test automation by separating the test code from the elements and actions on web pages. The primary goal of the Page Object Model is to enhance test **maintainability**, **reusability**, and **readability**, thereby improving the overall **efficiency** of automated testing efforts.
# Capabilities
- Run test in Selenium Grid
- Run test local to your computer
- Run test in 3 browsers (Chrome, Edge, Firefox)
- Run test in parallel execution
- Export reports from test execution
# Required Actions & Settings
1) Download and install the required browsers ([Google Chrome](https://googlechromelabs.github.io/chrome-for-testing/), [Firefox](https://www.mozilla.org/en-US/firefox/new/), [Microsoft Edge](https://www.microsoft.com/en-us/edge/download?form=MA13FJ) )
2) Downolad the require browser drivers ([Google Chrome](https://googlechromelabs.github.io/chrome-for-testing/), [Firefox](https://github.com/mozilla/geckodriver/releases), [Microsoft Edge](https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/) )
3) To run tests successfully local must add in config.js file your path to driver and browser executables for all browsers Chrome, Firefox, Edge.
- `DRIVER_EXECUTABLE` : Path to driver executable.
- `EXECUTABLE` : Path to browser executable.
```javascript
pathToChrome: {
EXECUTABLE: "-> FILL THE PATH <-",
DRIVER_EXECUTABLE: "-> FILL THE PATH <-"
},
pathToFirefox: {
EXECUTABLE: "-> FILL THE PATH <-",
DRIVER_EXECUTABLE: "-> FILL THE PATH <-"
},
pathToEdge: {
EXECUTABLE: "-> FILL THE PATH <-",
DRIVER_EXECUTABLE: "-> FILL THE PATH <-"
},
```
# Configurations
In `config.js` file you can modify the configuration of the project :
- `timeoutTest` : Change the timeout of test in milliseconds
- `commandsTimeout` : Change the timeout of command execution
- `browser` : Specify the browsers for test (`chrome`, `MicrosoftEdge`, `firefox`)
- `environment` : Specify the environment for test to run :
- `local` : Tests will run locally to your computer.
- `grid` : Tests will run in Selenium Grid.
- `cicd` : Tests will run to your CI CD (must set this settings when you are ready to push in github)
# Run Tests
In `package.json` they have specify execution scripts :
- `test-serial` : Run tests in serial mode.
- `test-parallel` : Run tests in parallel mode.
- `test-mochawesome` : Run tests in serial mode and save a report file to `TestResults/NormalExecution`.
- `test-parallel-mochawesome` : Run tests in parallel mode and save a report file to `TestResults/ParallelExecution`.
| This is an Automation Testing Project in Javascript that performs testing in Web Applications with usage of Selenium , Mocha & Chai. | automation-testing,end-to-end-testing,javascript,mocha-chai,selenium,selenium-javascript,selenium-webdriver,testing,ui-testing,web-testing | 2023-09-08T15:59:04Z | 2024-05-13T13:07:36Z | null | 1 | 6 | 63 | 0 | 1 | 3 | null | MIT | JavaScript |
ninadvyas/Space-Glint | main | 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
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `app/page.js`. 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.
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.
| Space Glint is an platform where you can learn about the solar system in detail with interactive design. | framer-motion,galaxy,javascript,nextjs13,solar-system,space,tailwindcss | 2023-09-02T14:19:31Z | 2023-12-15T12:55:02Z | null | 1 | 0 | 33 | 0 | 0 | 3 | null | null | JavaScript |
mch-fauzy/tic-tac-toe-game | main | # Tic Tac Toe Game
This is a basic implementation of the Tic Tac Toe game built with React Vite and Chakra UI. The game features a simple interface where two players can take turns to play. The game will display the winner or a draw when the game ends.
You can play the game in [here](https://tic-tac-toe-game-silk-chi.vercel.app/) or deploy it manually below.
## Table of Contents
- [Features](#features)
- [Installation](#installation)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)
## Features
- Interactive game board
- Player turns indicated with "X" and "O"
- Winning line highlighted with a red color
- Restart button to reset the game
- Responsive design using Chakra UI components
## Installation
1. Clone this repository to your local machine:
```
git clone https://github.com/mch-fauzy/tic-tac-toe-game.git
```
2. Navigate to the project directory:
```
cd tic-tac-toe-game
```
3. Install the required dependencies:
```
npm install
```
## Usage
1. Start the development server:
```
npm run dev
```
2. Open your web browser and go to `http://localhost:5173` to play the game.
3. Players can take turns by clicking on the empty squares. The game will display the winner or a draw when the game ends.
4. Click the "Restart" button to start a new game.
## Contributing
Contributions are welcome! If you find any issues or want to contribute improvements, feel free to open a pull request.
## License
This project is licensed under the [MIT License](LICENSE). | Tic Tac Toe game built with React + Vite and Chakra UI | chakra-ui,javascript,react,vite,deployment,react-js | 2023-08-26T11:23:33Z | 2023-09-28T05:41:19Z | null | 1 | 0 | 6 | 0 | 0 | 3 | null | MIT | JavaScript |
yusufyusie/space-travelers-hub | dev | <a name="readme-top"></a>
<div align="center">

# Space Travelers' Hub
</div>
<!-- TABLE OF CONTENTS -->
<summary>
<h1>📗 Table of Contents</h1>
</summary>
- [Space Travelers' Hub](#space-travelers-hub)
- [📖 Space Travelers' Hub ](#-space-travelers-hub-)
- [🛠 Built With ](#-built-with-)
- [Tech Stack ](#tech-stack-)
- [Key Features ](#key-features-)
- [🚀 Live Demo ](#-live-demo-)
- [💻 Getting Started ](#-getting-started-)
- [Prerequisites](#prerequisites)
- [Setup](#setup)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#deployment)
- [👥 Authors ](#-authors-)
- [🔭 Future Features ](#-future-features-)
- [🤝 Contributing ](#-contributing-)
- [⭐️ Show your support ](#️-show-your-support-)
- [🙏 Acknowledgments ](#-acknowledgments-)
- [📝 License ](#-license-)
<!-- PROJECT DESCRIPTION -->
# 📖 Space Travelers' Hub <a name="about-project"></a>
> **Space Travelers' Hub** is a website that will be working with the real live data from the SpaceX API for a company that provides commercial and scientific space travel services. The application will allow users to book rockets and join selected space missions.
## 🛠 Built With <a name="built-with"></a>
- ReactJs
- Javascript
### Tech Stack <a name="tech-stack"></a>
<a href="https://www.w3.org/html/" target="_blank"><img align="center" src="https://uxwing.com/wp-content/themes/uxwing/download/brands-and-social-media/html-icon.svg" alt="html5" width="55" height="55"/></a>
<a href="https://www.w3schools.com/css/" target="_blank"><img align="center" src="https://uxwing.com/wp-content/themes/uxwing/download/brands-and-social-media/css-icon.svg" alt="css3" width="55" height="55"/></a>
<a href="https://reactjs.org/" target="_blank"><img align="center" src="https://uxwing.com/wp-content/themes/uxwing/download/brands-and-social-media/react-js-icon.svg" alt="react js" width="55" height="55"/></a>
<a href="https://redux.js.org/" target="_blank"><img align="center" src="https://uxwing.com/wp-content/themes/uxwing/download/brands-and-social-media/redux-icon.svg" alt="react js" width="55" height="55"/></a>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **Fetch and render Missions & Rockets data.**
- **Join/Leave Missions.**
- **Reserve/Cancel reservation of Rockets.**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## 🚀 Live Demo <a name="live-demo"></a>
- [Live demo](https://space-travelers-hub-76fy.onrender.com)
<!--
- [Video presentation](https://www.loom.com/share/)
-->
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need:
- [ ] A PC running any operating system like Windows, Linux, or MacOS
- [ ] An Internet connection
- [ ] Knowledge of some basic Git commands
- [ ] A browser like Brave, Google Chrome, Mozilla Firefox or Microsoft Edge
- [ ] Git installed
- [ ] A text editor
- [ ] nodejs
### Setup
- [ ] To get a local copy up and running you'll need to have [NodeJS](https://nodejs.org/en/download/) installed on your local machine.
- [ ] Clone this repository to your desired folder:
```
git clone https://github.com/yusufyusie/space-travelers-hub.git
```
```
cd space-travelers-hub
```
- [ ] Open the file in your code editor
```
code .
```
### Install
- [ ] Node modules:
```
npm i
```
### Usage
To run the project, execute the following command:
```
npm run dev
```
### Run tests
To run tests, run the following command:
```
npm test
```
### Deployment
You can build this project using:
```
npm run build
```
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **yesuf Fenta**
- GitHub: [@yusufyusie](https://github.com/yusufyusie)
- Twitter: [@yusufyusiee](https://twitter.com/yusufyusiee)
- LinkedIn: [Yesuf Fenta](https://www.linkedin.com/in/yusufyusie/)
👤 **May Pyone**
- GitHub: [@githubhandle](https://github.com/MayPyone)
- Twitter: [@twitterhandle](https://twitter.com/maypyone015)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/may-pyone-9439961a3/)
👤 **Binyam Yohannes**
- GitHub: [@githubhandle](https://github.com/binyamolango)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/binyamyohannes)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **Improve design.**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- CONTRIBUTING -->
## 🤝 Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](../../issues/).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- SUPPORT -->
## ⭐️ Show your support <a name="support"></a>
If you like this project then don't forget to give a star ⭐ on this repository.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank **.**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FAQ (optional) -->
<!--
## ❓ FAQ <a name="faq"></a>
-->
<!--
- **[Question_1]**
- [Answer_1]
- **[Question_2]**
- [Answer_2]
-->
<!--
<p align="right">(<a href="#readme-top">back to top</a>)</p>
-->
<!-- LICENSE -->
## 📝 License <a name="license"></a>
This project is [MIT](./MIT.md) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| Space Travelers' Hub is a website that will be working with the real live data from the SpaceX API for a company that provides commercial and scientific space travel services. The application will allow users to book rockets and join selected space missions. | css,javascript,react,redux,html5 | 2023-09-11T10:20:22Z | 2023-11-20T21:37:45Z | null | 3 | 23 | 113 | 0 | 2 | 3 | null | null | JavaScript |
khaouitiabdelhakim/FreeSquirrelEmail | main | null | SquirrelEmail is a Chrome extension designed to make collecting email addresses from webpages easier. It provides a simple user interface to extract and save email addresses to a text file. The extension's intuitive design makes it a convenient tool for various tasks such as research, lead generation, and more. | chrome,chrome-extension,chrome-extensions,css,emails,emailscrapping,html,javascript,scraping | 2023-08-22T15:14:16Z | 2023-08-22T15:17:12Z | null | 1 | 0 | 3 | 0 | 0 | 3 | null | null | null |
Its-Shojib/Money-Master-by-DOM | main | null | Money Master is a webpage which can calculate Income and Expances... | css,daisyui,html,javascript,tailwindcss | 2023-08-19T19:52:00Z | 2023-08-19T19:58:01Z | null | 1 | 0 | 3 | 0 | 0 | 3 | null | null | HTML |
deegrate/AutoArb | main | # Trading Bot Demo
## Technology Stack & Tools
- Solidity (Writing Smart Contract)
- Javascript (React & Testing)
- [Hardhat](https://hardhat.org/) (Development Framework)
- [Ethers.js](https://docs.ethers.io/v5/) (Blockchain Interaction)
- [Alchemy](https://www.alchemy.com/) (Blockchain Connection)
- [Balancer](https://balancer.fi/) (Flash Loan Provider)
## Requirements For Initial Setup
- Install [NodeJS](https://nodejs.org/en/). We recommend using the latest LTS (Long-Term-Support) version, and preferably installing NodeJS via [NVM](https://github.com/nvm-sh/nvm#intro).
- Create an [Alchemy](https://www.alchemy.com/) account, you'll need to create an app for the Ethereum chain, on the mainnet network
## Setting Up
### 1. Clone/Download the Repository
### 2. Install Dependencies:
`npm install`
### 3. Create and Setup .env
Before running any scripts, you'll want to create a .env file with the following values (see .env.example):
- **ALCHEMY_API_KEY=""**
- **ARB_FOR="0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2"** (By default we are using WETH)
- **ARB_AGAINST="0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE"** (By default we are using SHIB)
- **PRIVATE_KEY=""** (Private key of the account to recieve profit/execute arbitrage contract)
- **PRICE_DIFFERENCE=0.50** (Difference in price between Uniswap & Sushiswap, default is 0.50%)
- **UNITS=0** (Only used for price reporting)
- **GAS_LIMIT=400000** (Currently a hardcoded value, may need to adjust during testing)
- **GAS_PRICE=0.00000006** (60 Gwei, Currently a hardcoded value, may need to adjust during testing)
### 4. Start Hardhat Node:
In your terminal run:
`npx hardhat node`
Once you've started the hardhat node, copy the private key of the first account as you'll need to paste it in your .env file in the next step.
*As a reminder, do **NOT** use or fund the accounts/keys provided by the hardhat node in a real production setting, they are to be only used in your local testing!*
### 5. Add Private Key to .env
Copy the private key of the first account provided from the hardhat node, and paste in the value for the **PRIVATE_KEY** variable in your .env file
### 6. Deploy Smart Contract
In a separate terminal run:
`npx hardhat run scripts/deploy.js --network localhost`
Sometimes the deployed address may be different when testing, and therefore you'll need to update the **ARBITRAGE_ADDRESS** inside of the *config.json*
### 7. Start the Bot
`node bot.js`
### 8. Manipulate Price
In another terminal run:
`npx hardhat run scripts/manipulate.js --network localhost`
## About config.json
Inside the *config.json* file, under the PROJECT_SETTINGS object, there are 2 keys that hold a boolean value:
- isLocal
- isDeployed
Both options depend on how you wish to test the bot. By default both values are set to true. If you set isLocal to false, and then run the bot this
will allow the bot to monitor swap events on the actual mainnet, instead of locally.
isDeployed's value can be set on whether you wish for the abritrage contract to be called if a potential trade is found. By default isDeployed is
set to true for local testing. Ideally this is helpful if you want to monitor swaps on mainnet and you don't have a contract deployed.
This will allow you to still experiment with finding potential abitrage opportunites.
## Testing Bot on Mainnet
For monitoring prices and detecting potential arbitrage opportunities, you do not need to deploy the contract.
### 1. Edit config.json
Inside the *config.json* file, set **isDeployed** to **false** and **isLocal** to **false**.
### 2. Create and Setup .env
See step #4 in **Setting Up**
### 3. Run the bot
`node bot.js`
Keep in mind you'll need to wait for an actual swap event to be triggered before it checks the price.
## Anatomy of bot.js
The bot is essentially composed of 5 functions.
- *main()*
- *checkPrice()*
- *determineDirection()*
- *determineProfitability()*
- *executeTrade()*
The *main()* function monitors swap events from both Uniswap & Sushiswap.
When a swap event occurs, it calls *checkPrice()*, this function will log the current price of the assets on both Uniswap & Sushiswap, and return the **priceDifference**
Then *determineDirection()* is called, this will determine where we would need to buy first, then sell. This function will return an array called **routerPath** in *main()*. The array contains Uniswap & Sushiswap's router contracts. If no array is returned, this means the **priceDifference** returned earlier is not higher than **difference**
If **routerPath** is not null, then we move into *determineProfitability()*. This is where we set our conditions on whether there is a potential arbitrage or not. This function returns either true or false.
If true is returned from *determineProfitability()*, then we call *executeTrade()* where we make our call to our arbitrage contract to perform the trade. Afterwards a report is logged, and the bot resumes to monitoring for swap events.
### Modifying & Testing the Scripts
Both the *manipulate.js* and *bot.js* has been setup to easily make some modifications easy. Before the main() function in *manipulate.js*, there will be a comment: **// -- CONFIGURE VALUES HERE -- //**. Below that will be some constants you'll be able to modify such as the unlocked account, and the amount of tokens you'll want that account to spent in order to manipulate price (You'll need to adjust this if you are looking to test different pairs).
For *bot.js*, you'd want to take a look at the function near line 132 called *determineProfitability()*. Inside this function we can set our conditions and do our calculations to determine whether we may have a potential profitable trade on our hands. This function is to return **true** if a profitable trade is possible, and **false** if not.
Note if you are doing an arbitrage for a different ERC20 token than the one in the provided example (WETH), then you may also need to adjust profitability reporting in the *executeTrade()* function.
Keep in mind, after running the scripts, specifically *manipulate.js*, you may need to restart your hardhat node, and re-deploy contracts to properly retest.
### Additional Information
The *bot.js* script uses helper functions for fetching token pair addresses, calculating price of assets, and calculating estimated returns. These functions can be found in the *helper.js* file inside of the helper folder.
The helper folder also has *server.js* which is responsible for spinning up a local server, and *initialization.js* which is responsible for setting up our blockchain connection, configuring Uniswap/Sushiswap contracts, etc.
As you customize parts of the script it's best to refer to [Uniswap documentation](https://docs.uniswap.org/contracts/v2/concepts/protocol-overview/how-uniswap-works) for a more detail rundown on the protocol and interacting with the V2 exchange.
### Strategy Overview and Potential Errors
The current strategy implemented is only shown as an example alongside with the *manipulate.js* script. Essentially, after we manipulate price on Uniswap, we look at the reserves on Sushiswap and determine how much SHIB we need to buy on Uniswap to 'clear' out reserves on Sushiswap. Therefore the arbitrage direction is Uniswap -> Sushiswap.
This works because Sushiswap has lower reserves than Uniswap. However, if the arbitrage direction was swapped: Sushiswap -> Uniswap, this will sometimes error out if monitoring swaps on mainnet.
This error occurs in the *determineProfitability()* function inside of *bot.js*. Currently a try/catch is implemented, so if it errors out, the bot will just resume monitoring price. Other solutions to this may be to implement a different strategy, use different ERC20 tokens, or reversing the order.
## Using other EVM chains
If you are looking to test on an EVM compatible chain, you can follow these steps:
### 1. Update .env
- **ARB_FOR=""**
- **ARB_AGAINST=""**
Token addresses will be different on different chains, you'll want to reference blockchain explorers such as [Polyscan](https://polygonscan.com/) for Polygon for token addresses you want to test.
### 2. Update config.json
- **V2_ROUTER_02_ADDRESS=""**
- **FACTORY_ADDRESS=""**
You'll want to update the router and factory addresses inside of the *config.json* file with the V2 exchanges you want to use. Based on the exchange you want to use, refer to the documentation for it's address.
### 3. Change RPC URL
Inside of *initialization.js*, you'll want to update the websocket RPC URL. Example of Polygon:
```
provider = new hre.ethers.providers.WebSocketProvider(`wss://polygon-mainnet.g.alchemy.com/v2/${process.env.ALCHEMY_API_KEY}`)
```
Inside of *hardhat.config.js*, you'll want to update the forking URL. Example of Polygon:
```
url: `https://eth-mainnet.g.alchemy.com/v2/${process.env.ALCHEMY_API_KEY}`,
```
### 4. Changing Arbitrage.sol
You may also need to change the flashloan provider used in the contract to one that is available on your chain of choice. Currently Balancer seems to support the following chains:
- Ethereum Mainnet
- Arbitrum
- Optimism
- Polygon
- Gnosis
- Avalanche
- Goerli (Testnet)
- Sepolia (Testnet)
Be sure to check their documentation for latest updates regarding their contracts and deployment addresses:
- [Balancer Documentation](https://docs.balancer.fi/)
- [Balancer Flash Loans](https://docs.balancer.fi/guides/arbitrageurs/flash-loans.html)
### Additional Notes
- If testing out the *manipulate.js* script, you'll also want to update the **UNLOCKED_ACCOUNT** variable and adjust **AMOUNT** as needed. | Flash loan arbitrage bot from a Dapp University masterclass project | blockchain,javascript,nodejs,smartcontracts,solidity | 2023-08-09T00:39:27Z | 2023-08-09T00:34:48Z | null | 1 | 0 | 1 | 0 | 1 | 3 | null | null | JavaScript |
vitor-antoni/linktree-template | main | # Linktree Template
### Presentation
Hi there. How are you? Hope you're fine. 😁
In this repository, I would like to make available a website template for people who wants to share your's most important links in any social media. It's very customizable, so you are able to make any changes that you wants.
If necessary, feel free for ask or suggest me about anything. Intend to monitor this repository every day.
## 🎯 Website demo

## 💻 Somethings you can do
The `index.html` can imports two differents snowfall effects, but you must choose between one of these.
> Don't use both at the same time, it might seem a little strange.
If you want to keep default effect, don't change the lines where are this code:
```
<!-- Snowfall Background Animation -->
<section class="animated-background">
<div id="stars1"></div>
<div id="stars2"></div>
<div id="stars3"></div>
</section>
<!-- End of Snowfall Background Animation -->
```
But, if you want, comment this code above. After commenting the code above, go to the end of `index.html`, you may see a code code like that:
```
<!--
A different snowfall
<script src="snowfall.js"></script>
-->
```
Uncomment this code and press `ctrl+s` for see the updates in your website.
## 📑 Additional Information
This project was developed to contribute to the *open source* movement. Therefore, it doesn't have any complex code here.
I liked this project so much that I used it to develop a website for myself. You can see it [clicking here](https://links.vitor-antoni.com.br).
Furthermore, I must to give the credit to these people, that I got some pieces of code from their own projects to develop this.
[©️ johnggli](https://github.com/johnggli/linktree) <br>
[©️ SamirPaul1](https://github.com/SamirPaul1/links)
In case you are interested to follow or conected with me on LinkedIn, you can do it in this link: [LinkedIn](linkedin.com/in/vitor-silva-de-antoni/)
| FREE Linktree Template - HTML+CSS+JS | linktree,template,css,html,javascript | 2023-08-31T13:13:27Z | 2023-09-04T20:08:17Z | null | 1 | 0 | 35 | 0 | 2 | 3 | null | MIT | CSS |
shakhbozbekusmonov/30-Days-of-JavaScript | master | # 30-Days-of-JavaScript
# LeetCode 30 Days of JavaScript Challenge

Welcome to the LeetCode 30 Days of JavaScript Challenge! This repository contains my solutions to the daily coding challenges for the LeetCode 30 Days of JavaScript Challenge. Feel free to explore the solutions and learn from them.
## Table of Contents
- [About the Challenge](#about-the-challenge)
- [Solutions](#solutions)
- [How to Use](#how-to-use)
- [Contributing](#contributing)
- [License](#license)
## About the Challenge
LeetCode offers a 30-day challenge where you can improve your coding skills by solving one coding problem every day. Each problem comes with a description, example inputs, and expected outputs. The goal is to solve these problems using JavaScript.
This repository contains my solutions to the daily challenges. Feel free to use them as a reference or compare your solutions.
## Solutions
Here are the solutions to each day's challenge:
- [Day 1: Problem Title](Day1/)
- [Day 2: Problem Title](Day2/)
- [Day 3: Problem Title](Day3/)
- [Day 4: Problem Title](Day4/)
- [Day 5: Problem Title](Day5/)
- [Day 6: Problem Title](Day6/)
- [Day 7: Problem Title](Day7/)
- [Day 8: Problem Title](Day8/)
- [Day 9: Problem Title](Day9/)
- ...
- [Day 30: Problem Title](Day30/)
Each day's folder contains a JavaScript file with the solution, along with any necessary input files or additional resources.
## How to Use
1. Clone this repository to your local machine:
```bash
git clone https://github.com/shakhbozbekusmonov/30-Days-of-JavaScript.git
| null | 30-day-leetcoding-challenge,30-days-of-code,30-days-of-javascript,algorithms,data-structures,javascript,leetcode-solutions | 2023-08-22T19:11:16Z | 2023-08-31T10:45:35Z | null | 1 | 0 | 32 | 1 | 0 | 3 | null | null | JavaScript |
nicalaia/pomodoro | master |
[Live Demo](https://pomodoro.ciobanunicolae.com/)
To do:
- [ ] Add favicon
- [ ] Add sounds
- [ ] Button
- [ ] Finished
- [ ] Timer type
- [ ] Add metadata
| Pomodoro inspired timer built with React | app-router,app-router-nextjs,css,css-modules,css3,javascript,nextjs,pomodoro,pomodoro-timer,reactjs | 2023-08-22T10:12:47Z | 2023-09-20T14:58:08Z | null | 1 | 0 | 29 | 0 | 0 | 3 | null | null | TypeScript |
nishatrhythm/CSE11 | main | # CSE11
Visit this link to learn more: [Students Introductory Website Template](https://github.com/nishatrhythm/Students-Introductory-Website-Template)
| Website of 11th Batch, Department of CSE, Jagannath University, Dhaka | css,department-website,expressjs,html,introductory,javascript,multer,nodejs,website-template | 2023-09-03T21:16:42Z | 2024-02-25T11:47:10Z | null | 1 | 2 | 122 | 0 | 0 | 3 | null | MIT | JavaScript |
ViktorSvertoka/jokes-app | main | # Jokes React App

| My react practice ✍️ | css3,html5,javascript,react | 2023-08-20T18:25:31Z | 2023-08-20T18:54:23Z | null | 1 | 0 | 2 | 0 | 0 | 3 | null | null | JavaScript |
Danyerusama/DYR_IdleVideoTitle | main |
# DYR_IdleVideoTitle Plugin for RPG Maker MV
This plugin allows you to automatically play a video after a certain idle time in the title menu screen.
In this scenario, it emulates an idle video on the main title screen by utilizing an external event X positioned within a map.
## View Code and Download File
[DYR_IdleVideoTitle.js](https://github.com/Danyerusama/DYR_IdleVideoTitle/blob/10e6f60b4b9057141604b0f50650a7fffb88719b/DYR_IdleVideoTitle.js)
## Appendix
The Idle Video Title plugin enhances the title screen of your RPG Maker MV game by allowing you to showcase an introductory video to your players. Engage players from the moment they start your game with captivating videos that set the mood and immerse them into your game's world
## Features
- Automatically plays a video after a specified idle time on the title menu screen.
- Allows you to configure the map ID to transfer to and the amount of idle time before transferring.
- Provides options to set the video resolution.
- Script command to enable or disable the plugin.
## Installation
1. Download the DYR_IdleVideoTitle.js file.
2. Place the file in your RPG Maker MV project's js/plugins/ directory.
3. In RPG Maker MV, open the Plugin Manager and enable the
```
'DYR_IdleVideoTitle' Plugin
```
## Usage/Examples
1. Create a new map in your game with an auto-run event.
2. Prompt the player with a choice, asking if they want to watch the video or skip it.
3. If the player chooses to watch the video, use the "Show Video" event command to play the video.
4. When the video finishes playing, call the Event command: ``` go to title screen``` to return to the title screen.
5. If the player chooses to skip the video, proceed with other event commands, including returning to the title screen.
## Screenshots
1. New Map:

2. Project Event Config:

3. Plugin Config:

## Video DEMO
[Demo](https://github.com/Danyerusama/DYR_IdleVideoTitle/assets/142346653/1777624a-7cb2-4bb9-83b7-f61e100adb0f)
## Issues and Feedback
If you encounter any issues, bugs, or have suggestions for improvements, please feel free to open an [ISSUE](https://github.com/Danyerusama/DYR_IdleVideoTitle/issues). Your feedback and contributions are highly valued and will contribute to enhancing the quality of these plugins. Thank you for helping to make them better!
Before creating a new issue, please ensure that a similar issue has not already been reported. Providing detailed information about the problem you're experiencing will assist in quicker resolution.
Looking forward to addressing your feedback and working together to improve these plugins!
## License
All my plugins are licensed under the [MIT License](https://github.com/Danyerusama/DYR_IdleVideoTitle/blob/d218b5695bfde6b2c1581b0c00b16f73c631574c/LICENSE). Feel free to use them in both commercial and non-commercial games. If you wish to modify the code, please reach out to me at [danyerusama@gmail.com](mailto:danyerusama@gmail.com) for approval.
## Support my Work
If you've found value in the projects, plugins, or insights I offer, your support would mean the world to me. Even the smallest contribution goes a long way in enabling me to dedicate time and effort to crafting meaningful content and projects for our community. If you're interested in supporting me and becoming a part of this journey, you can do so through:
[](https://paypal.me/Danyerusama?country.x=CO&locale.x=es_XC) [](https://patreon.com/Danyerusama?utm_medium=clipboard_copy&utm_source=copyLink&utm_campaign=creatorshare_creator&utm_content=join_link) [](https://ko-fi.com/danyerusama)
Thank you for considering supporting my work and being a part of this community!
| This plugin allows to auto-play a video after a certain idle time in the title menu screen. | javascript,plugins,rpg-maker,rpg-maker-mv | 2023-08-15T18:57:41Z | 2023-08-17T01:57:54Z | 2023-08-15T20:58:45Z | 1 | 0 | 38 | 1 | 0 | 3 | null | MIT | JavaScript |
Palladd/Netreach | main | ## App still in early acces state
No README.md because i dont have time for that. Optionaly, you can check Realeses.
Ideas:
- Make Nmap avaible on site | Web tool to search for geolocation and internet information. | javascript,reactjs | 2023-09-02T19:06:19Z | 2023-12-11T23:09:39Z | 2023-09-02T19:09:36Z | 1 | 0 | 12 | 0 | 0 | 3 | null | null | TypeScript |
Nandu-2003/NewsHub_WebApp | main | # NewsHub_WebApp
Welcome to the News Hub website, a simple and responsive news aggregator that allows you to browse news articles on various topics such as IPL, finance, politics, and technology. The website fetches real-time news data from the NewsAPI and presents it in a user-friendly card-based layout.
Preview:



## Features
- Browse news articles on different topics: IPL, finance, politics, and technology.
- Search for news articles using keywords.
- Click on news cards to read the full article.
- Responsive design that adapts to various screen sizes, including mobile devices and tablets.
## Technologies Used
- HTML, CSS, and JavaScript for building the front-end user interface.
- Fetch API to retrieve news data from the NewsAPI.
- Responsive design using media queries and CSS flexbox.
## Contribution
To use it yourself:
1. Fork this repository to your GitHub account.
2. Clone the forked repository to your local machine.
3. Open the `index.html` file in your browser to see the website locally.
4. Customize the project as needed.
5. Push your changes to the repository.
Feel free to contribute, report issues, or suggest enhancements by opening issues or pull requests on this repository. Let's stay informed with News Hub!
| A simple and responsive news aggregator that allows you to browse news articles on various topics such as IPL, finance, politics, and technology in a user-friendly card-based layout. | css,frontend-app,html,javascript,newsapi | 2023-08-18T10:53:46Z | 2023-08-19T06:13:55Z | null | 1 | 0 | 14 | 0 | 0 | 3 | null | null | CSS |
mateoniksic/project-untitled-crm | main | 
# What is UntitledCRM?
UntitledCRM is a web-based Customer Relationship Management (CRM) system meticulously crafted to empower businesses with efficient sales and contact management. This dynamic application combines the power of ReactJS and Supabase, offering users a seamless experience to drive their business forward. Our platform is designed to make your life easier by providing a comprehensive set of tools to streamline your operations and boost your bottom line. To get started with UntitledCRM:
1. Sign up for a free UntitledCRM account.
2. Explore your personalized dashboard.
3. Add contacts and create deals.
4. Tailor your CRM to meet your business needs through the settings.
# What are the core features?
**Dashboard Insights**
- Get a real-time overview of your business with insightful statistics.
- Track open, lost, closed, and total deal values at a glance.
- Visualize your sales pipeline with detailed stage breakdowns.
**Contact Management**
- Effortlessly add, edit, and organize your contacts.
- Capture essential information such as phone numbers, emails, and profile images.
- Keep your network centralized and accessible.
**Deal Tracking**
- Create and assign new deals to contacts seamlessly.
- Monitor deal details including title, description, value, status, and stage.
- Optimize your sales process with organized deal management.
**User-Friendly Settings**
- Customize your business information and preferences, including currency settings.
- Update your profile details, such as name, email, and profile photo.
- Enhance your account security by managing email, password, and inviting team members to collaborate within your workspace.
# Tech Stack
- ReactJS *(18.2.0)*
- ReactRouter
- ReactContextAPI
- ReactQuery
- ReactHookForm
- ReactErrorBoundary
- Styled components
- PostgreSQL (Supabase)
- HTML / CSS
- JavaScript
# How to start the application?
1. **Clone repository**
2. **Run command:** `npm run dev`
3. **Open in browser:** http://localhost:5173/
4. **Stop command:** CTRL + C
# Live preview
- [[ CLICK HERE TO EXPERIENCE UNTITLEDCRM IN ACTION → ]](https://project-untitled-crm.vercel.app/)
# Sneak peek
https://github.com/mateoniksic/project-untitled-crm/assets/57192709/df266c4c-8dc6-4c06-9cfc-60d6a18bc5f8
| web-based CRM application (CODE) [ REACT / POSTGRESQL (SUPABASE) / HTML / CSS / JAVASCRIPT ] | css3,html5,javascript,postgresql,react,reactjs,supabase | 2023-08-15T08:39:10Z | 2023-09-16T17:32:54Z | null | 1 | 5 | 61 | 0 | 1 | 3 | null | null | JavaScript |
yasharusakov/automatic_passing_of_test_rust | master | 






# Project "automatic_passing_of_test_rust"
This project was created in 10th grade to automatically pass tests on the naurok.com.ua website. The goal was to save time and avoid having to manually answer the questions.
The [original version](https://github.com/yasharusakov/automatic_passing_of_test) of the project was written in Node.js, but it had some drawbacks that made it difficult to use. For example, it had no graphical user interface (GUI), so users had to interact with it through the command line. Additionally, users had to install dependencies and configure the project before they could use it.
To address these issues, I rewrote the project in Rust. The new version has a GUI, so users can easily interact with it. Additionally, the project is now self-contained, so users don't need to install any dependencies.
## How to use it
Remember that every action is mandatory.
### Linux
- Install `Firefox browser`.
- Install `geckodriver`. You can do this with your distribution's package manager. If it is not available, you can install it manually from the official [Mozilla releases](https://github.com/mozilla/geckodriver/releases) and add it to `$PATH`.
- Download the package for your Linux distribution from the [releases](https://github.com/yasharusakov/automatic_passing_of_test_rust/releases) of this project.
- Run the application.
### Windows
- Install `Firefox browser`.
- Install [geckodriver.exe](https://github.com/mozilla/geckodriver/releases) from the official Mozilla releases.
- Download the package for your architecture from the [releases](https://github.com/yasharusakov/automatic_passing_of_test_rust/releases) of this project and extract the package containing two files (keep them together).
- Run `geckodriver.exe`.
- Run `automatic-passing-of-test.exe`.
The antivirus might flag this as malware, so disable it for now.
## Requirements for development
To successfully compile and run the project, you must have the following installed:
- [Rust](https://www.rust-lang.org/tools/install)
- [System Dependencies](https://tauri.app/v1/guides/getting-started/prerequisites/#setting-up-linux)
- [Node.js](https://nodejs.org/) and npm
- Mozilla Firefox browser
- Geckodriver
- Windows: you need to download manually [geckodriver](https://github.com/mozilla/geckodriver/releases) from official mozilla releases
- Arch Linux: `sudo pacman -S geckodriver`
- Debian: you need to download manually and add geckogriver to `$PATH`
## Installation
Install Tauri CLI
```shell
cargo install tauri-cli
```
Clone the repository:
```shell
git clone https://github.com/yasharusakov/automatic_passing_of_test_rust.git
cd automatic_passing_of_test_rust
```
Install interface dependencies:
At the `root` of the project:
```shell
npm install
```
Install the dependencies for the Rust part:
In the `src-tauri` directory:
```shell
cd src-tauri
cargo update
```
## Development and Release
Once the dependencies are installed and configured, you can use the Tauri CLI to manage the development process and create the final release:
At the `root` of the project:
For development, use:
```shell
cargo tauri dev
```
To create a final release, use:
```shell
cargo tauri build
```
## License
This project is licensed under the terms of the [license](LICENSE.txt).
| This program was made to not waste time on passing the test manually for school website "naurok.com.ua" | javascript,nodejs,react,rust,scss,tauri,typescript,html,open-source,linux | 2023-08-25T11:21:07Z | 2024-02-29T12:05:21Z | 2024-02-29T12:05:21Z | 2 | 2 | 13 | 2 | 0 | 3 | null | Apache-2.0 | Rust |
Danziger/starsjs | main | <h1 align="center">Stars.js</h1>
<p align="center">
✨ Generate a rotating galaxy in a canvas.
</p><p align="center">
🚀 Check it out at <a href="https://danziger.github.io/starsjs/">https://danziger.github.io/starsjs/</a>!
</p>
<br />
<p align="center">
<a href="https://danziger.github.io/starsjs/" target="_blank">
<img src="./static/og-images/starsjs-banner-2.5x.png" />
</a>
</p>
<br />
Running It (Development)
------------------------
Take a look at `package.json`, the scripts are self-explanatory, but otherwise `npm install` and `npm start` work in `90%` of teh cases :D
The project will be accessible at http://localhost:8080/.
<br />
Reporting a problem
-------------------
Don't hesitate to report any issue you find in this website/project by opening a new issue in this repository, but please make sure that problem hasn't been reported before by another user.
<br />
TODOs & Bug
-----------
### Bugs
- Animate (fade-in) FPS meter.
<br />
### Stars Generation & Options
- Add a footer with an attribution and a "HIRING?" label similar to the one in [gmzcodes.com](https://gmzcodes.com).
- Make `twinkle` proportional to the distance to the center (so that the effect is more noticeable on larger stars that are further away from the center).
- Consider implementing the settings panel with a few different libraries to see the differences with a real example.
<br />
### Other Features
- Progressively highlight "Stars.js" letter as the animation loads.
- Animate "Starts.js" dot as a blinking star.
<br />
### Tech Debt
<br />
Options (to be implemented)
---------------------------
- Pattern:
- Type: uniform, radial, linear
- Direction: in, out, left, right, top, bottom, custom vector
- Movement:
- Type: none, rotate, translate
- Direction: clockwise, counterclockwise, left, right, top, bottom, custom vector
- Speed
- Style:
- Background color
- Foreground gradient
- Star color(s) / pattern(s)
- Performance:
- Number of starts:
- Total (raw number)
- Density (stars per 100px^2)
- Grouped (stars per group, each group is a pre-rendered set of 2-10 similar or equal stars)
- Mouse Interaction:
- Type: none, tilt, translate / drag
- Direction: away, towards
- Duration: permanent, spring effect
- Range / intensity
- Acceleration / transition function
- Scroll Interaction:
- Type: none, tilt, translate / drag
- Direction: same, opposite
- Duration: permanent, spring effect
- Range / intensity
- Acceleration / transition function
<br />
Settings Panel
--------------
I've been considering different libraries to implement the settings panel available on Stars.js to play around with the settings above (once they get implemented), and I thought the comparison might be relevant for some other people, so here it is (still in draft, I'll be adding more info soon).
- `dat.gui` - [Repo](https://github.com/dataarts/dat.gui), [Docs](https://github.com/dataarts/dat.gui/blob/master/API.md), `dat.gui migration guide`, [Demo (not official)](https://sbcode.net/threejs/dat-gui/), [NPM](https://www.npmjs.com/package/dat.gui)
Monthly installs: X, Stars: X, Issues: X, Last updated: YYY.MM.DD
- `tweakpane` - [Repo](https://github.com/cocopon/tweakpane), [Docs](https://tweakpane.github.io/docs/), `dat.gui migration guide`, [Demo](), [NPM]()
Monthly installs: X, Stars: X, Issues: X, Last updated: YYY.MM.DD
- `control-panel` - [Repo & Docs](https://github.com/freeman-lab/control-panel?tab=readme-ov-file), `dat.gui migration guide`, [Demo](https://control-panel.surge.sh/), [NPM]()
Monthly installs: X, Stars: X, Issues: X, Last updated: YYY.MM.DD
- `guify` - [Repo](https://github.com/colejd/guify), [Docs](), `dat.gui migration guide`, [Demo](), [NPM]()
Monthly installs: X, Stars: X, Issues: X, Last updated: YYY.MM.DD
- `lil-gui` - [Repo](https://github.com/georgealways/lil-gui), [Docs](https://lil-gui.georgealways.com/), `dat.gui migration guide`, [Demo](https://lil-gui.georgealways.com/examples/basic/), [NPM]()
Monthly installs: X, Stars: X, Issues: X, Last updated: YYY.MM.DD
- `controlkit.js` - [Repo](https://github.com/automat/controlkit.js), [Docs](), `dat.gui migration guide`, [Demo](), [NPM]()
Monthly installs: X, Stars: X, Issues: X, Last updated: YYY.MM.DD
- `oui` - [Repo](https://github.com/wearekuva/oui), [Docs](), `dat.gui migration guide`, [Demo](), [NPM]()
Monthly installs: X, Stars: X, Issues: X, Last updated: YYY.MM.DD
- `palette.js` - [Repo](https://github.com/lehni/palette.js), [Docs](), `dat.gui migration guide`, [Demo](), [NPM]()
Monthly installs: X, Stars: X, Issues: X, Last updated: YYY.MM.DD
- `quicksettings` - [Repo](https://github.com/bit101/quicksettings), [Docs](), `dat.gui migration guide`, [Demo](), [NPM]()
Monthly installs: X, Stars: X, Issues: X, Last updated: YYY.MM.DD
- `paper-gui` - [Repo](https://github.com/google/paper-gui), [Docs](), `dat.gui migration guide`, [Demo](), [NPM]()
Monthly installs: X, Stars: X, Issues: X, Last updated: YYY.MM.DD
<br />
### Comparison:
TODO: Add a table (maybe Airtable link) with:
- `dat.guy` drop-in replacement?
- Fields / attributes list.
- React library?
- Some links to projects using it (e.g. https://www.vantajs.com/).
- Dependencies / dependency-free.
<br />
Some other sites I've built
---------------------------
- **[GMZCODES](https://gmzcodes.com/)**
👨💻 Dani Gamez's personal website PWA built using JavaScript, SCSS and HTML5.
- **[Stylophone.js](https://danziger.github.io/stylophonejs/)**
🎹 The classic Stylophone, now in your phone and computer.
- **[Key.js](https://keyjs.dev)**
⌨ Press any key to get the JavaScript keyboard event event key, code, which, keyCode and more properties!
- **[Slot.js](https://danziger.github.io/slotjs/)**
🎰 Circular slot machine mobile-first SPA built with JavaScript, CSS variables and Emojis!
- **[Job.js](https://danziger.github.io/jobjs/)**
💼 Sharable image summaries for your open positions: Share your jobs as an image on LinkedIn and Instagram to get a visibility boost and more applicants!
<br />
Author
------
<img
src="https://s.gravatar.com/avatar/ff1de7f1a325c8005379a310949f7f23?s=128"
alt="Dani Gámez Franco"
align="left" />
Dani Gámez Franco
LinkedIn: https://www.linkedin.com/in/danigamezfranco/
Stack Overflow: https://stackoverflow.com/users/3723993/danziger
| ✨ Generate a rotating galaxy in a canvas. | animated-background,animation,background,canvas,galaxy,javascript,javascript-performance,parallax,parallax-effect,performance | 2023-08-16T21:54:42Z | 2024-01-06T16:00:29Z | null | 1 | 1 | 27 | 0 | 0 | 3 | null | MIT | JavaScript |
ibrahimhabibeg/aide | main | <div align='center'>
<img src=https://i.imgur.com/mPY0eWI.png alt="logo" />
<h1>Aide</h1>
<p>Aide is an AI-powered application that helps high school students succeed in their studies. The app can help students with a variety of tasks, including writing essays, explaining topics, and analyzing words.</p>
<h4> <span> · </span> <a href="https://github.com/ibrahimhabibeg/aide/blob/master/README.md"> Documentation </a> <span> · </span> <a href="https://github.com/ibrahimhabibeg/aide/issues"> Report Bug </a> <span> · </span> <a href="https://github.com/ibrahimhabibeg/aide/issues"> Request Feature </a> </h4>
</div>
# 📙 Table of Contents
- [About the Project](#⭐-about-the-project)
- [Local Installation](#🧰-local-installation)
- [FAQ](#❔-faq)
- [Contact](#🤝-contact)
- [Acknowledgements](#💎-acknowledgements)
## ⭐ About the Project
Inspired by the boring tasks I have faced during my high school years, I decided to build Aide. Aide stands for an assistant or right-hand-man, and I wanted the app to be the assistant for all high school students. The app uses Ai to help make students life easier.
### 🎯 Features
- Email Generation
- Essay Writing
- Explanation
- Poem Writing
- Word Analysis
### 🧑💻 Technologies
- React Native
- Expo
- React Navigation
- Axios
- PaLM API
## 🧰 Local Installation
### ⚠️ Prerequisites
- Install Node JS in your computer<a href="https://nodejs.org/en"> Here</a>
- This project uses Yarn as package manager
```bash
npm i -g yarn
```
### 🏃♂️ Run Locally
Clone the project
```bash
git clone https://github.com/ibrahimhabibeg/aide
```
Go to the project directory
```bash
cd aide
```
Install dependencies
```bash
yarn install
```
Create environment variables file
```bash
touch .env
```
Add your PaLM API key to .env file
```
API_KEY=my_api_key
```
Start the app
```bash
npm run start
```
## ❔ FAQ
Q. How are questions handled by the program?
A. The queries are handled by PaLM API by Google.
Q. What OS are supported?
A. The app supports both Android and IOS.
Q. What languages are supported?
A. Currently, English is the only supported language.
Q. I can't find app on Play Store or App Store.
A. Currently, the app isn't released to production since PaLM api is currently in public preview. During public preview, developers can use the PaLM API only for experimentation and prototyping. Production applications are not permitted.
Q. Is the app production ready?
A. No. Currently PaLM API is currently in public preview; therefore, it can't be used in production applications.
Since the app isn't built for production, I decided to store the API key in the .env file and call PaLM API directly from the client side. This is a mistake from the security prespective. As long as the app isn't going to be deployed to play store or app store, this mistake is acceptable.
If you are going to build the app for production You will have to build a backend program that will store the API key and use it to contact PaLM API. The mobile app will then use the API provided by the backend system you have built.
## 🤝 Contact
Ibrahim Habib - - ibrahimhabib.eg@gmail.com - - [LinkedIn](https://www.linkedin.com/in/ibrahim-habib-a2948b286/)
Project Link: [Github](https://github.com/ibrahimhabibeg/aide)
## 💎 Acknowledgements
- https://hotpot.ai/ for Images and Splash Screen Creation
- https://www.freepik.com/ for Logo Creation | AI assistant for high school 🏫 students. | ai,bard,bard-api,expo,javascript,palm,palm-api,prompt-engineering,react-native,react-navigation | 2023-08-28T23:19:37Z | 2023-09-15T17:07:55Z | null | 1 | 0 | 20 | 0 | 0 | 3 | null | null | JavaScript |
officialrobert/rewipe-js | main | # rewipe-js
RewipeJS - Easily track and kill memory leak
> Roadmap:
>
> - Enable developers to track memory usage from JavaScript runtime (backend or frontend)
> - Github Action integration so developers can test increase/decrease in memory usage for each PR that gets merged
<img src="https://github.com/officialrobert/rewipe-js/blob/main/docs/rewipe-cover.png" width="100%" height="auto"/>
## Install
```js
npm i rewipe-js
```
## For testing
The `testMemoryLeak` function repeatedly calls the provided function to record heap usage. Works on nodejs and browsers.
```js
import { testMemoryLeak } from 'rewipe-js';
import Store from 'lib/store';
test('Should not consume more than 1MB', async () => {
const { memoryInsights, memoryConsumed } = await testMemoryLeak(
// you can pass in async/non-async function
() => {
Store.save('foo', { foo: 'bar' });
},
30, // iterations
'node' // 'node' or 'browser'
);
// memoryConsumed in bytes
console.log(`${memoryConsumed} bytes`);
// log: 15000 bytes
cosole.log(memoryInsights);
// log: Total memory consumed — 1 Mb
expect(memoryConsumed).toBeLessThan(1_000_000);
});
```
**Note:** Some browsers might not support the `window.performance.memory` API. To begin testing from a Chromium-based browser, run the app with the `--enable-precise-memory-info` flag.
## How it works (advanced)
You can use this library for record-keeping. You can keep the payload using [**Sentry**](https://sentry.io/welcome/) or [**Posthog**](https://posthog.com/)
```js
import * rewipe from 'rewipe-js';
rewipe.config({
environment: 'development', // 'development' | 'production' | 'stage'
eventsListCountLimit: 3, // max items to record per event
verbose: true // allow logs
});
```
```js
// Example case
const onSubmitCheckout = async (e) => {
const id = await rewipe.run({
eventName: 'SubmitCheckout',
});
// your computation code here
// ...
await rewipe.end({
id,
eventName: 'SubmitCheckout',
});
};
```
## Track your event's memory heap
```js
const info = rewipe.getEvent('SubmitCheckout');
const sampleInfoPayload = info[0];
console.log(sampleInfoPayload);
// sample log data
const sampleInfoPayload = {
id: 'xx-xx-unique-id',
eventName: 'SubmitCheckout',
// This means, it took 10 MB-
// to complete checkout functionality from client's end
start: {
// ...other props
unsupported: false,
// in bytes
heapTotal: 3e7,
usedHeap: 1e7,
},
end: {
// ...other props
unsupported: false,
usedHeap: 2e7,
},
startTimeIso: '2023-08-18T08:21:55.468Z',
endTimeIso: '2023-08-18T08:22:43.215Z',
};
```
## ExpressJS server
```js
import * as rewipe from 'rewipe-js';
const app = express();
app.post('/test-endpoint', async (req, res, next) => {
try {
const eventName = 'FileUpload';
const id = await rewipe.run({ eventName });
// file handling ...
await rewipe.end({
// id is required
id,
eventName,
});
const memoryEventInfo = rewipe.getEvent(eventName);
const consumed = rewipe.getConsumedMemory(memoryEventInfo);
console.log(consumed);
// in bytes
// log: 15000
// or
// log({
// ...
// message: `File upload took ${rewipe.readableMemory(consumed)}`,
// });
console.log(rewipe.getEventMemoryInsights(memoryEventInfo));
// log: 15% heap memory increase
} catch (err) {
next(err);
}
});
```
## Alternatively, use 'trackMemoryAndPromise' API
```js
const addNumberTracked = trackMemoryAndPromise('addNumber', (x = 0, y = 0) => {
return x + y;
});
const sum = await addNumberTracked(2, 2);
console.log('event addNumber', 'sum', sum, getEvent('addNumber'));
// log: 'event addNumber sum 4 { id: 'xx-id', eventName: 'addNumber', ... }
```
## Identify which user experienced the app crash
You can store either the user `id` or `email` so you can easily search from the dashboard which user experienced the crash.
```js
rewipe.run({
eventName: 'SubmitCheckout',
props: { email: 'user@mail.com', id: 'xxxx-user-id' },
});
```
## Documentation
Access the <a href="./docs/README.md"><b> full API docs.</b></a>
## License
Licensed under [MIT](./LICENSE).
| RewipeJS - Easily track and kill memory leak | javascript,memory-leak,memory-management,nodejs,typescript | 2023-08-18T03:33:47Z | 2023-09-03T12:55:31Z | null | 2 | 0 | 108 | 0 | 0 | 3 | null | MIT | TypeScript |
Simplicity-Tech-Solutions/create-solid-press-starter | main | <a name="readme-top"></a>
<h1 align="center">Welcome to SolidPress 👋</h1>
<h3 align="center">The blazing fast, easy to manage way to create Wordpress templates powered by Solid JS and Tailwind CSS</h3>
![GitHub package.json version (branch)][solidpress-version]
[![Contributors][contributors-shield]][contributors-url]
[![Forks][forks-shield]][forks-url]
[![Stargazers][stars-shield]][stars-url]
[![Issues][issues-shield]][issues-url]
[![MIT License][license-shield]][license-url]
[![Website][website-shield]][website-url]
<table align="center">
<tbody>
<tr>
<td>
<a href="https://solidpress.org">📚 Read the docs</a>
</td>
<td>
<a href="https://solidpress.org">🎓 Learn More</a>
</td>
<td>
<a href="https://github.com/Simplicity-Tech-Solutions/create-solid-press-starter/">👨🏽💻 Start Contributing</a>
</td>
<td>
<a href="https://solidpress.org">🌐 Visit our Website</a>
</td>
</tr>
</tbody>
</table>
</div>
<!-- TABLE OF CONTENTS -->
<details>
<summary align="center" ><h4>Click to Table of Contents 🖱️</h4></summary>
<ol>
<li>
<a href="#about-the-project">What is SolidPress?</a>
<ul>
<li><a href="#built-with">Built With</a></li>
</ul>
</li>
<li>
<a href="#getting-started">Getting Started</a>
<ul>
<li><a href="#prerequisites">Prerequisites</a></li>
<li><a href="#installation">Installation Guide</a></li>
</ul>
</li>
</ol>
</details>
## What is SolidPress?
SolidPress is a modern wordpress template. Reinventing the way in which developers make templates by using the frontend library Solid.JS to build dynamic, easy to manage, and lightweight websites for all of your needs!
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## Getting Started
SolidPress is a wordpress template. So to use it you will need to have npm and a way of running wordpress on your local machine. We reccomend using LocalWP which you can learn more about by clicking this link <a href="">🔗</a>.
### Prerequisites
* Install the NPM registry through your terminal
```sh
npm install npm@latest -g
```
* Install LocalWP onto your machine
<a href="">🔗 Click here to go install to LocalWP</a>
### Installation
_Below is how you can get started with developing your new wordpress website using SolidPress! Currently we only have a guide for **Windows** and MacOS is not supported in full. ( MacOS Guide and release will be coming in the near future! )_
1. Open LocalWP on your device ( <a href="">🔗 Click here to go install to LocalWP</a> ) and pick the **Create a new site** option. Then press continue to go to the next page:
<p align="center">
<img src="https://github.com/Simplicity-Tech-Solutions/create-solid-press-starter/blob/main/img/install_step_one.png" width="80%" height="auto">
</p>
2. Once you see the screen below. Create Your Local WordPress Site ( _Pick a name for your website_ ). Then press continue to go to the next page:
<p align="center">
<img src="https://github.com/Simplicity-Tech-Solutions/create-solid-press-starter/blob/main/img/install_step_two.png" width="80%" height="auto">
</p>
3. Once you see the screen below. Click **Custom** and select your php version ( *Recomended: Any PHP version after 8.0.0* ). Select **Apache** for your web server ( *Recomended: Any Apache version after 2.4.0* ). Select **MySQL** for your database ( *Recomended: Any MySQL version after 8.0.0* ). Then press continue to go to the next page:
<p align="center">
<img src="https://github.com/Simplicity-Tech-Solutions/create-solid-press-starter/blob/main/img/install_step_three.png" width="80%" height="auto">
</p>
4. Once you see the screen below. Pick a username and password of your choice. Then fill out what email you want to have connected to the admin account. After these have been filled out to your liking click continue to go to the next page:
<p align="center">
<img src="https://github.com/Simplicity-Tech-Solutions/create-solid-press-starter/blob/main/img/install_step_four.png" width="80%" height="auto">
</p>
5. You now have set up your wordpress website! You should see a screen similar to the one below. Click the **Start site** button in the top rigt corner of the screen to start your wordpress website.
<p align="center">
<img src="https://github.com/Simplicity-Tech-Solutions/create-solid-press-starter/blob/main/img/install_step_five.png" width="80%" height="auto">
</p>
6. Click the _Open site shell_ button or open the directory of the website into your favorite code editor and or shell and go to the **themes** directory of your wordress installation.
```sh
wsl
```
```sh
cd wp-content/themes
```
7. Once you are in the **themes** directory. Use the NPX command to install/create your website theme
```sh
npx @solidpress/create-solidpress-starter my-website
```
8. Open the Wordpress admin panel and navigate to the theme page by going to Appreance -> Themes
<p align="center">
<img src="https://github.com/Simplicity-Tech-Solutions/create-solid-press-starter/blob/main/img/install_step_eight-one.png" width="80%" height="auto">
</p>
<p align="center">
<img src="https://github.com/Simplicity-Tech-Solutions/create-solid-press-starter/blob/main/img/install_step_eight-two.png" width="80%" height="auto">
</p>
9. Once you are in the themes portion of the admin panel activite your new solidpress theme by hovering over the _SolidPress Starter Theme_ and clicking **Activate**!
<p align="center">
<img src="https://github.com/Simplicity-Tech-Solutions/create-solid-press-starter/blob/main/img/install_step_nine.png" width="80%" height="auto">
</p>
10. Click on the Home Icon on the top left of your screen and start developing solid press website!
<p align="center">
<img src="https://github.com/Simplicity-Tech-Solutions/create-solid-press-starter/blob/main/img/enjoy_your_website.png" width="80%" height="auto">
</p>
<p align="center">(<a href="#readme-top">back to top</a>)</p>
## License
SolidPress Starter Theme is an [MIT-licensed](LICENSE) open-source wordpress template by [Simplicity Tech Solutions](https://simplicitytechsolutions.com) and [contributors](https://github.com/Simplicity-Tech-Solutions/create-solid-press-starter/graphs/contributors):
<a href="https://github.com/aidenybai/million/graphs/contributors">
<img src="https://contrib.rocks/image?repo=Simplicity-Tech-Solutions/create-solid-press-starter" />
</a>
<p align="center">(<a href="#readme-top">back to top</a>)</p>
[contributors-shield]: https://img.shields.io/github/contributors/Simplicity-Tech-Solutions/create-solid-press-starter.svg?style=for-the-badge
[contributors-url]: https://github.com/Simplicity-Tech-Solutions/create-solid-press-starter/graphs/contributors
[forks-shield]: https://img.shields.io/github/forks/Simplicity-Tech-Solutions/create-solid-press-starter.svg?style=for-the-badge
[forks-url]: https://github.com/Simplicity-Tech-Solutions/create-solid-press-starter/network/members
[stars-shield]: https://img.shields.io/github/stars/Simplicity-Tech-Solutions/create-solid-press-starter.svg?style=for-the-badge
[stars-url]: https://github.com/Simplicity-Tech-Solutions/create-solid-press-starter/stargazers
[issues-shield]: https://img.shields.io/github/issues/Simplicity-Tech-Solutions/create-solid-press-starter.svg?style=for-the-badge
[issues-url]: https://github.com/Simplicity-Tech-Solutions/create-solid-press-starter/issues
[license-shield]: https://img.shields.io/github/license/Simplicity-Tech-Solutions/create-solid-press-starter.svg?style=for-the-badge
[license-url]: https://github.com/Simplicity-Tech-Solutions/create-solid-press-starter/blob/master/LICENSE.txt
[website-shield]: https://img.shields.io/website/https/solidpress.org.svg?style=for-the-badge&logo=website&colorB=555
[website-url]: https://solidpress.org
[solidpress-version]: https://img.shields.io/github/package-json/v/Simplicity-Tech-Solutions/create-solid-press-starter/main.svg?style=for-the-badge
| The best way to start a new modern wordpress website. | cli,javascript,npx,php,solidjs,wordpress,wordpress-boilerplate,wordpress-development,wordpress-starter-theme,opensource | 2023-08-18T13:07:14Z | 2023-08-31T13:17:59Z | 2023-08-28T21:21:50Z | 1 | 2 | 20 | 0 | 0 | 3 | null | MIT | JavaScript |
signeasynow/react-pdf-sdk | main | # React PDF Editor
View, edit, and Chat-with-your-PDF with AI.
Add View to your app for free. Learn pricing for all features [here](https://www.signeasynow.com/upgrade)

# Demo
https://www.signeasynow.com/edit-your-pdf
Want to see the source code for the above demo? Find it [here](https://github.com/signeasynow/react-pdf-demo).
# Quick start
1. Copy-paste the `pdf-ui` folder [here](https://github.com/signeasynow/react-pdf-demo/tree/main/public/pdf-ui) into your own `public` folder.
1. Install
`npm install --save @prodfox/react-pdf-editor`
or
`yarn add @prodfox/react-pdf-editor`
3. Create a component
```
import { useRef } from 'react';
import { useCreateIframeAndLoadViewer } from "@prodfox/react-pdf-editor";
function App() {
const containerRef = useRef(null);
const { download } = useCreateIframeAndLoadViewer({
container: containerRef,
licenseKey: "sandbox",
locale: "en",
tools: {
editing: [
"extract",
"remove",
"move"
],
thumbnails: [
"zoom",
"expand"
],
general: [
"thumbnails",
"download",
"search",
"panel-toggle",
"zoom"
],
},
files: [
{
url: "https://pdftron.s3.amazonaws.com/downloads/pl/demo-annotated.pdf",
name: "my-file1.pdf"
},
{
url: "https://pdftron.s3.amazonaws.com/downloads/pl/demo-annotated.pdf",
name: "my-file2.pdf"
}
],
});
return (
<div>
<button onClick={download}>Download</button>
<div className="container" id="pdf" ref={containerRef}>
</div>
</div>
);
}
export default App;
```
## Core
## Parameters
### container `Required`
The HTML element to attach the PDF viewer to.
### tools `Object` `{}`
Control what tools are available in the UI. Available keys are `thumbnails`, `general`, `editing`, ...
```
useCreateIframeAndLoadViewer({
tools: {
thumbnails: ...,
general: ...,
editing: ...,
},
...other parameters
});
```
#### general `Object` `[]`
| Field | Description |
| ------- | ---------------- |
| zoom | Enable zoom in/out of the document in view |
| search | Enable search functions |
| download | Enable downloading the document |
| thumbnails | Enable a thumbnails panel |
| panel-toggle | Enable the left-side panel to be togglable |
| chat | Enable AI conversations with your PDF (user ID is required after 10 questions) |
```
useCreateIframeAndLoadViewer({
tools: {
general: [
"zoom",
"search",
"download",
"thumbnails",
"panel-toggle"
],
},
...other parameters
});
```
#### thumbnails `Object` `[]`
| Field | Description |
| ------- | ---------------- |
| zoom | Enable a slider above thumbnails to increase/decrease the size of the thumbnails |
| expand | Enable the thumbnails bar to be expandable to the full screen |
```
useCreateIframeAndLoadViewer({
tools: {
thumbnails: [
"zoom",
"expand"
],
},
...other parameters
});
```
#### editing `Object` `[]`
| Field | Description |
| ------- | ---------------- |
| remove | Enable the ability to remove pages |
| rotation | Enable the rotation of individual pages |
| extraction | Enabling extracting out a set of pages into one document |
| move | Re-arrange pages in a document |
```
useCreateIframeAndLoadViewer({
tools: {
editing: [
"remove",
"rotation",
"extraction",
"move"
],
},
...other parameters
});
```
#### locale `string` `en` `Optional`
Options:
`en` - English
`es` - Spanish
`ru` - Russian
(Reach out if you need a particular language added)
#### onFileFailed `Function` `optional`
Callback when a file fails to upload
```
useCreateIframeAndLoadViewer({
onFileFailed: (errorMessage) => {
// handle the failure as you need
}
});
```
#### mode `string` `optional`
Defaults to `regular`. Set it to `split` to enable being able to select split markers to be then used for splitting a document into several documents.
# Functions
Combine several files into one
```
const { combineFiles } = useCreateIframeAndLoadViewer({
...
});
combineFiles();
```
Listen for when the pages are loaded for the active document
```
const { pagesLoaded } = useCreateIframeAndLoadViewer({
...
});
if (pagesLoaded) {
// logic here
}
```
Download
```
const { download } = useCreateIframeAndLoadViewer({
...
});
download();
```
Listen for when the PDF editor is ready to accept commands
```
const { isReady } = useCreateIframeAndLoadViewer({
...
});
if (isReady) {
// logic here
}
```
Toggle displaying the full screen thumbnail view
```
const { toggleFullScreenThumbnails } = useCreateIframeAndLoadViewer({
...
});
toggleFullScreenThumbnails(true) // set this to true or false to open/close it.
```
Control the thumbnail zoom level. Ranges from 0 to 1.
```
const { setThumbnailZoom } = useCreateIframeAndLoadViewer({
...
});
setThumbnailZoom(0.5)
```
Toggle displaying the search bar on the right
```
const { toggleSearchbar } = useCreateIframeAndLoadViewer({
...
});
toggleSearchbar(true) // set this to true or false to open/close it.
```
Delete the AI conversation chat history
```
const { removeChatHistory } = useCreateIframeAndLoadViewer({
...
});
removeChatHistory()
```
Get the 0-indexed array of selected pages
```
const { selectedPages } = useCreateIframeAndLoadViewer({
...
});
```
Extract the selected pages
```
const { extractPages } = useCreateIframeAndLoadViewer({
...
});
extractPages()
```
Split the document into several documents based on the split markers the user selected.
```
const { splitPages } = useCreateIframeAndLoadViewer({
...
});
splitPages()
```
| Open Source PDF Editor | document-signing,javascript,open-source,pdf-editor,pdf-editor-free,pdf-editor-react,pdf-sign,self-hosted,signing,react | 2023-08-17T01:15:00Z | 2024-02-01T02:07:13Z | null | 1 | 0 | 42 | 0 | 1 | 3 | null | NOASSERTION | JavaScript |
ankit071105/usr_complex | main | # adi
A website For booking purpose
| A website For booking purpose | css,html5,javascript | 2023-09-04T18:18:06Z | 2023-09-05T08:39:20Z | null | 1 | 0 | 9 | 1 | 0 | 3 | null | null | HTML |
Benawi/Blog-App | develop | .<a name="readme-top"></a>
<div align="center"><a href="https://github.com/Benawi"><img src="https://github.com/Benawi/Benawi/assets/21217148/de823737-5f7f-4de8-b62e-3fe88c238eab"/></a>
</div> <div align="center">🛰Blog App 🚀</div>
# 📗 Table of Contents
- [📗 Table of Contents](#-table-of-contents)
- [📖 Blog App ](#-ruby-group-capstone---catalog-of-my-things-)
- [🛠 Built With ](#-built-with-)
- [Tech Stack ](#tech-stack-)
- [Key Features ](#key-features-)
- [💻 Getting Started ](#-getting-started-)
- [Prerequisites](#prerequisites)
- [Setup](#setup)
- [Install](#install)
- [Run localy](#run-localy)
- [Run Tests ](#run-tests-)
- [👥 Authors ](#-authors-)
- [🔭 Future Features ](#-future-features-)
- [🤝 Contributing ](#-contributing-)
- [⭐️ Show your support ](#️-show-your-support-)
- [🙏 Acknowledgments ](#-acknowledgments-)
- [📝 License ](#-license-)
# 📖 Blog App <a name="about-project"></a>
A Blog app similar classic blog website. With a fully functional website that shows the list of posts and empowers readers to interact with them by adding comments and liking post
The project is a repository consisting of the following files:
- Ruby files.
- Rails files.
- Ruby linters file
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<ul>
<li>
<a href="https://www.ruby-lang.org/en/">
<img align="center" width="19" height="auto" src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/73/Ruby_logo.svg/198px-Ruby_logo.svg.png?20101129171534" alt="rubylogo" />
Ruby
</a>
</li>
<li>
<a href="https://rubyonrails.org/">
<img align="center" width="19" height="auto" src="./rails-red-logo.svg" alt="ruby logo" />
Rails
</a>
</li>
<li>
<a href="https://www.postgresql.org/">
<img align="center" width="19" height="auto" src="https://wiki.postgresql.org/images/3/30/PostgreSQL_logo.3colors.120x120.png" alt="postgreSQL logo" />
PostgreSQL
</a>
</li>
</ul>
</ul>
### Key Features <a name="key-features"></a>
- [x] Display Users, posts, comments on posts, likes on posts
- [x] Create a new app
- [x] Processing data in model
- [x] Validations and Model spec
- [x] Setup and controllers
- [x] The project has a Postgres database set up
- [x] Create and run the necessary migration files
- [x] Table and column names match the [ERD](https://github.com/microverseinc/curriculum-rails/blob/main/blog-app/images/blog_app_erd.png) diagram with [developed](https://github.com/Benawi/Blog-App/assets/21217148/5b403dca-d56b-4a66-bc96-58efbf0d7eae)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
### Prerequisites
In order to run this project you need:
- [Ruby](https://www.ruby-lang.org/en/) installed and running. To get more information, read the [installation instructions](https://github.com/microverseinc/curriculum-ruby/blob/main/simple-ruby/articles/ruby_installation_instructions.md).
- You should be able to use [IRB](https://en.wikipedia.org/wiki/Ruby_(programming_language)#Features).
- First of all, make sure you have both `Ruby` & `Rails` installed on your machine
(else You can install `Rails` just with this simple command ```gem install rails```)
### Setup
Clone this repository to your desired folder
```
git clone https://github.com/Benawi/Blog-App.git
cd Blog-App
```
### Install
Install project dependencies with
```
bundle install
```
### Run locally
- Then go to the right folder
```
$ cd Blog-App
```
```
$ bundle
```
and run to install npm package
```
$ npm install
```
make sure the database is up and running.
```
$ rails db: create
```
When you add a migration file, you can add commands like
```
$ rails db: migrate
```
Run this command line to add some dummy data
```
$ rails db: seed
```
- Finaly run `rails s` and visit http://localhost:3000/ in your browser!
### Run Tests <a name="run-tests"></a>
Go to your gemfile and add the RSpec gem in the development test group:
```
group : development, test do
gem 'rspec-rails'
end
```
Then in your terminal run the command:
```
$ bundle install
```
To set up RSpec in your app and create the Spec folder run:
```
$ rails generate rspec: install
```
To run Request specs locally you need just to run the following command in your terminal:
```
$ rspec spec/model/
$ rspec spec/models/ --format documentation
```
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Authors <a name="authors"></a>
### 👤 **Habtamu Alemayehu**
- GitHub: [Benawi](https://github.com/Benawi)
- Linkedin: [Habtamu](https://www.linkedin.com/in/habtamualemayehu/)
👤 : **Bwambale**
- GitHub: [@githubhandle](https://github.com/wolterbwambale)
- Twitter: [@twitterhandle](https://twitter.com/BwambaleWolter)
- LinkedIn [LinkedIn](https://www.linkedin.com/in/bwambale-benny-wolter/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- [ ] Integration specs for Views and fixing n+1 problems.
- [ ] Add Devise.
- [ ] Add authorization rules.
- [ ] Add API endpoints.
- [ ] API documentation.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🤝 Contributing <a name="contributing"></a>
Contributions, [issues](https://github.com/Benawi/Blog-App/issues), and feature requests are welcome!
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ⭐️ Show your support <a name="support"></a>
Give me ⭐️ If you like this project!
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
- I wanted to take a moment to express my sincere gratitude for the opportunity to work with you all on this project.
- Microverse, thank you for providing the structure, guidance and community to help me level up my skills as a developer. The experiential learning model has been invaluable in improving my coding abilities and collaboration skills. I appreciate the code reviews and feedback to help me write cleaner, more professional code..
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 License <a name="license"></a>
This project is [MIT](./MIT.md) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| A Blog app similar classic blog website. With fully functional website that show the list of posts and empower readers to interact with them by adding comments and liking posts. | javascript,migration,postgresql,ruby-on-rails | 2023-08-29T10:51:50Z | 2024-05-23T13:31:39Z | null | 2 | 12 | 277 | 0 | 0 | 3 | null | MIT | Ruby |
musarda/Random-Password-Generater | main | <div align="center">
<h1>Random Password Generater</h1>
</div>
<!------------BADGE------------>
<div style="text-align: center;" align="center">
<a href="https://musarda.github.io">
<img src="https://img.shields.io/badge/Visit%20My-Website-E6E6E6" alt="Web Site Rozeti">
</a>
<a href="https://www.github.com/musarda"> <!--GitHub Link-->
<img src="https://img.shields.io/badge/-GitHub-000?style=quare&labelColor=000&logo=GitHub&logoColor=white&link=link" alt="Github Badge">
</a>
<a href="https://www.youtube.com/@CodeChain"> <!--YouTube Link-->
<img src="https://img.shields.io/badge/-YouTube-c4302b?style=quare&labelColor=c4302b&logo=YouTube&logoColor=white&link=link" alt="YouTube Badge">
</a>
<a href="https://discord.gg/kf29ZKZyw6"> <!--Discord Link-->
<img src="https://img.shields.io/badge/-Discord-738adb?style=quare&labelColor=blurple&logo=Discord&logoColor=white&link=link" alt="Discord Badge">
</a>
<a href="https://www.glitch.com/@musarda44"> <!--Glitch Link-->
<img src="https://img.shields.io/badge/-Glitch-2800ff?style=quare&labelColor=2800ff&logo=Glitch&logoColor=white&link=link" alt="Glitch Badge">
</a>
<a href="https://discord.gg/Kaye7tpHcQ"> <!--Discord2 Link-->
<img src="https://img.shields.io/badge/-Discord-738adb?style=quare&labelColor=blurple&logo=Discord&logoColor=white&link=link" alt="Discord Badge">
</a>
</div>
<br>
<div align="center">
This is a simple web based sample <b>Random Password Generater</b> application.
</div>
## Images
<img src="https://github.com/musarda/Random-Password-Generater/blob/main/img/img-1.png?raw=true" title="Random Password Generater" alt="HC-SR04" width="250"> <img src="https://github.com/musarda/Random-Password-Generater/blob/main/img/img-g.png?raw=true" title="Generate" alt="Generate" width="250"> <img src="https://github.com/musarda/Random-Password-Generater/blob/main/img/img-c.png?raw=true" title="Copy" alt="Copy" width="250">
## How to use
First of all, we need a code editor with which we can run the code, so we will use **Visual Studio Code** in this project.
1. **[Download](https://code.visualstudio.com/)** **Visual Studio Code**,
2. **Copy [Code](https://github.com/musarda/Random-Password-Generater/tree/main/Code)** Folder After Installing Visual Studio Code,
3. After Uploading the Code to **Visual Studio Code**, **Right Click** on the **index.html** file > **Click Reveal in File Explorer** and **Open the Chrome** File Named **Index in the Folder**,
4. **Random Password Generator Ready! Remember This Is Just An Example.**
## Features
- **Random password generation**
- **Copying the password to the clipboard**
## Setup
```bash
gh repo clone musarda/Random-Password-Generater
```
## Code
**You can reach [here](https://github.com/musarda/Random-Password-Generater/tree/main/Code)**
### HTML
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>musarda | Random Password Generater</title>
</head>
<body>
<div class="body">
<div class="box">
<h2>Random Password Generater</h2>
<input type="text" name="" placeholder="Create password" id="password" readonly>
<table>
<th><div id="button" class="btn1"onclick="genPassword()">Generate</div></th>
<th><a id="button" class="btn2" onclick="copyPassword()">Copy</a></th>
</table>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>
```
### CSS
```css
* {
margin: 0;
padding: 0;
user-select: none;
box-sizing: border-box;
}
body {
background-color: #212121;
justify-content: center;
align-items: center;
display: flex;
min-height: 100vh;
}
.box {
background-color: rgb(197, 197, 197);
padding-top: 30px;
padding: 30px;
border-radius: 12px;
}
.box h2 {
margin-bottom: 40px;
text-align: center;
font-size: 26px;
color: #131313;
font-family: sans-serif;
}
input {
padding: 20px;
user-select: none;
height: 50px;
width: 400px;
border-radius: 6px;
border: none;
border: 2px solid #212121;
outline: none;
font-size: 22px;
}
input::placeholder {
font-size: 23px;
}
#button {
font-family: sans-serif;
font-size: 15px;
margin-top: 40px;
border: 2px solid #212121;
width: 155px;
height: 50px;
text-align: center;
background-color: #6b6b6b;
display: flex;
color: #fff;
justify-content: center;
align-items: center;
cursor: pointer;
border-radius: 7px;
}
.btn2 {
margin-left: 85px
}
#button:hover {
color: white;
background-color: #212121;
}
```
### JavaScript
```js
var password = document.getElementById("password");
function genPassword() {
var chars = "0123456789abcdefghijklmnopqrstuvwxyz!@#$%^&*()ABCDEFGHIJKLMNOPQRSTUVWXYZ";
var passwordLength = 12;
var password = "";
for (var i = 0; i <= passwordLength; i++) {
var randomNumber = Math.floor(Math.random() * chars.length);
password += chars.substring(randomNumber, randomNumber + 1);
}
document.getElementById("password").value = password;
}
function copyPassword() {
var copyText = document.getElementById("password");
copyText.select();
copyText.setSelectionRange(0, 999);
document.execCommand("copy");
}
```
# Licence
This project is licensed under the MIT license. See the **[LICENSE](https://github.com/musarda/Random-Password-Generater/blob/main/LICENSE)** file for more information.
| Random Password Generator Making. HTML - CSS - JavaScript | css3,html5,javascript,web,webapp,website-design | 2023-09-01T12:40:47Z | 2023-09-01T13:20:54Z | null | 1 | 0 | 7 | 0 | 0 | 3 | null | MIT | CSS |
microether/frontend | main | # MicroEther's Frontend
> Frontend UI for MicroEther's liquidity web platform.

| MicroEther frontend | bootstrap,css3,dex,ethmunich,html5,javascript,liquidity-pool,metamask,molecule-protocol,microfinance | 2023-08-11T20:00:43Z | 2023-08-13T06:12:38Z | null | 4 | 0 | 40 | 0 | 0 | 3 | null | null | HTML |
koushikop5/Hello-Music | main | [](https://github.com/discordjs)
[](https://www.youtube.com/c/KoushikCodez)    
<br />
<p align="center">
<a href="https://github.com/brblacky/WaveMusic">
<img src="https://media.discordapp.net/attachments/1034712149961998339/1148019073981104218/Network-Music-Bot.png?width=480&height=480" alt="Pbot-plus" width="200" height="200">
</a>
<h3 align="center">Hello-Music</h3>
<p align="center">
Hello-Music is a high quality music Bot
<br />
<br />
<a href="https://github.com/koushikop5/Hello-Music.git/issues">Bug Report</a>
·
<a href="https://github.com/koushikop5/Hello-Music/issues">Feature Suggest</a>
# About Us
<!--
<a href="https://github.com/koushikop5/Hello-Music">
<img align="center" src="https://github-readme-stats.vercel.app/api/pin/?username=koushikop5&repo=Hello-Music" />
</a> -->
[](https://github.com/koushikop5/Hello-Music)
<!-- cop -->
Hello Music is a high quality music bot, made by Team Koushi codez this is javascript based bot where we are trying to include everything possible join voice channel type ,play and enjoy your songs.
FEATURES
Hello Music gets ready with zero configuration just give read access where you are going to use it and you are ready to 24/7 music.
YouTube Search
User can play songs by passing a youtube url or just passing query.
Smooth Playback.
Quality audio and clear sound ensures premium music experience.
Zero Lag
Runs 24/7 online. Hosted on Google cloud platform, enjoy song with Disney Music Bot..
Playlist Support
You can enjoy your favourite playlist form YouTube, Spotify, SoundCloud supported.
Free 24/7 on Hello Music Bots & high quality music (more `Coming Soon`)
## Support Server
If you need any help
[Support Server](https://discord.gg/gdsdWZZZpy) join Support Server
| Hello Music is open source high quality music bot with lots of commands | 247-music,discord-bot,discord-js,javascript,lavacord,lavalink-client,lavalink-musicbot,lavaplayer,music,musicbot | 2023-09-03T19:37:51Z | 2023-09-03T22:33:37Z | null | 1 | 1 | 6 | 0 | 2 | 3 | null | MIT | JavaScript |
f-lab-edu/clone-toss-tech | main | # Toss Tech Blog built with vanilla JS
## 프로젝트 소개
[토스 테크 블로그](https://toss.tech/)를 클론 코딩한 프로젝트입니다.
해당 프로젝트의 [테크 스펙](https://docs.google.com/document/d/1Mo0bxmFlvRBjjDsTF8LsH1OGRASzghsj9XOpNwGINEo/edit?usp=sharing)입니다.
## 프로젝트 결과물
[결과물 링크 열기](https://clone-toss-tech.vercel.app/)
## 프로젝트 목표
Vanilla JS와 History API를 사용하여 SPA를 구현합니다.
[MVC 패턴](https://developer.mozilla.org/ko/docs/Glossary/MVC)에 기반한 구조로 설계합니다.
코드를 추상화하여 객체지향 설계를 지향합니다.
## How to run
```bash
$ git clone https://github.com/f-lab-edu/clone-toss-tech.git
$ npm install
$ npm run dev
```
## Preview
### Main Page

### Article Page

| SPA Blog with Vanilla JS | frontend,javascript | 2023-08-09T05:02:55Z | 2024-02-09T15:14:12Z | null | 13 | 35 | 51 | 0 | 1 | 3 | null | null | JavaScript |
DeveloperTharan/corso | main | null | Corso is a e-learning platform | bootstrap5,css3,html5,javascript | 2023-09-05T13:22:17Z | 2023-09-05T13:25:51Z | null | 1 | 0 | 1 | 0 | 0 | 3 | null | null | HTML |
Myphz/trips-be | master | <p align="center">
<h1 align="center">
<img src="https://github.com/Myphz/trips-fe/assets/71951166/30a30490-2183-499d-94ca-65b2c9466572" alt="drawing" width="50" align="top" />
<span>Trips!</span>
</h1>
<h3 align="center">Explore, Share, Connect!</h3>
</p>
<p align="center">
<img src="https://img.shields.io/badge/svelte-%23f1413d.svg?style=for-the-badge&logo=svelte&logoColor=white">
<img src="https://img.shields.io/badge/tailwindcss-%2338B2AC.svg?style=for-the-badge&logo=tailwind-css&logoColor=white">
<img src="https://img.shields.io/badge/typescript-%23007ACC.svg?style=for-the-badge&logo=typescript&logoColor=white">
<img src="https://img.shields.io/badge/Google_Play-414141?style=for-the-badge&logo=google-play&logoColor=white">
<img src="https://img.shields.io/badge/Supabase-3ECF8E?style=for-the-badge&logo=supabase&logoColor=white">
</p>
<p align="center">
<a href="https://github.com/Myphz/trips-fe" target="_blank">Frontend repository</a>
</p>
## Features 🚀
- Seamless trip planning and organization.
- Unlimited photo storage to capture and share memories.
- Collaboration with friends for shared experiences.
- Effortless budget tracking for cost-effective trips.
- Customizable activities and itineraries.
## Usage 📲
Download the Trips app from the Play Store
<a href='https://play.google.com/store/apps/details?id=com.tripsphoexa.app&pcampaignid=pcampaignidMKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'><img alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png' width="200" align="middle"/></a>
## Run It Locally 💻
To run the Trips app locally, follow these steps:
1. Clone this repository
2. Install the necessary dependencies using `npm install`
3. Start the live server with `npm run dev`
4. Clone and start the [frontend repository](https://github.com/Myphz/trips-fe)
The Svelte app will be available on `http://localhost:5173`
## Contributions and Feedback 🙌
We welcome contributions and value your feedback. Feel free to submit issues, feature requests, or contribute to the project.
| Backend for Trips! | express,supabase,supabase-auth,supabase-js,typescript,javascript | 2023-09-09T17:57:36Z | 2024-01-13T13:46:33Z | null | 1 | 0 | 51 | 0 | 0 | 3 | null | null | TypeScript |
Polyfrost/Nexus | main | # **Nexus**

A monorepo containing our website, launcher, and tools used by Polyfrost.
[**polyfrost.org »**](https://polyfrost.org)
## Apps
- [**`apps/desktop`**](apps/launcher): The Polyfrost launcher.
- [**`apps/website`**](apps/website): The Polyfrost website.
- [**`apps/cli`**](apps/cli): Our launcher's CLI.
## Packages
- [**`core`**](core) The core of our launcher, written in Rust.
- [**`packages/client`**](packages/client) A TypeScript client library to handle dataflow via RPC between UIs and our Rust core.
- [**`packages/ui`**](packages/ui) A shared React component library for our UIs.
- [**`packages/interface`**](packages/interface) The complete user interface for our Launcher.
- [**`packages/config`**](packages/config) A TypeScript library to handle configuration files.
| A monorepo that houses our docs and websites. | javascript,minecraft,minecraft-launcher,nexus,oneconfig,rust,rust-game,rust-gamedev,rust-lang,typescript | 2023-08-22T23:59:56Z | 2024-05-12T02:25:37Z | null | 15 | 8 | 140 | 0 | 1 | 3 | null | AGPL-3.0 | Astro |
inifarhan/admin-dashboard | main | # Admin Dashboard

## Introduction
Admin Dashboard is a fullstack application that you can use to manage your e-commerce store.
In the application, I use JWT Auth to authenticate the users, it also includes the pagination for the product list 👍
### Tech Stack 💻 :
- React
- ExpressJs
- Material UI
- Mysql
- PrismaDB
- JWT Auth
### Cloning the repository
```shell
git clone https://github.com/inifarhan/admin-dashboard.git
```
### Install packages
```shell
cd backend
npm i
cd frontend
npm i
```
### Setup .env file for the backend application
```js
PORT=
REFRESH_TOKEN_SECRET=
ACCESS_TOKEN_SECRET=
DATABASE_URL=
```
### Start the app
```shell
cd backend
npm run dev
cd frontend
npm run dev
```
## Available commands
Running commands with npm `npm run [command]`
| command | description |
| :-------------- | :--------------------------------------- |
| `dev` | Starts a development instance of the app |
| Admin Dashboard is a fullstack application that you can use to manage your e-commerce store. Tech stack: Reactjs, Expressjs, Mysql, Prisma, MaterialUI, JWT Auth | authentication,backend,frontend,fullstack,javascript,jwt,jwt-authentication,material-ui,mysql,pagination | 2023-08-14T06:42:14Z | 2024-05-04T06:52:51Z | null | 1 | 0 | 56 | 0 | 0 | 3 | null | null | JavaScript |
gaurav-patil-1/result-management-system | main | ## Result-Management-System
---
A Result Management System using HTML, CSS, JavaScript, Nodejs, Expressjs, Ejs and Mongoose<br/>
• Seperate login section to the application for staff and student on homepage.<br/>
• Students can enter their prn number and date of birth to view their result.<br/>
• Teachers can View all records, add new record, edit and delete the records module-wise(subject-wise).<br/>
---
# Setup Guide
## Database
1. Signin to https://account.mongodb.com/account/login
or
Signup to https://account.mongodb.com/account/register
2. Create a cluster and connect it to your application.
3. Refer to : https://www.section.io/engineering-education/nodejs-mongoosejs-mongodb/
4. Do edit your username, password and desired database name in the connection string copied to app.js file.
## Backend
1. Open the project in Visual Studio Code.
2. Go to toolbar --> terminal --> Open new terminal.
3. Run "npm install" and "npm install -g nodemon" .
4. Now to run the project --> Run "nodemon app.js" on terminal.
## Frontend
1. Open URL "http://localhost:3000" on a browser.
## Staff Login Username and Password
1. Username : admin@example.com
Password : admin
2. Username : teacher@example.com
Password : teacher
## Live Demo
link : https://gauravpatilrmsapp.onrender.com
# Screen-Shots
## Project Structure
<img width="267" alt="Project structure" src="https://raw.githubusercontent.com/gaurav-patil-1/my-raw-files/main/Result-Management-System/Project%20Structure.png">
## HomePage
<img width="50%" alt="homepage" src="https://raw.githubusercontent.com/gaurav-patil-1/my-raw-files/main/Result-Management-System/homepage.png">
## StaffLogin
<img width="50%" alt="Staff Login" src="https://raw.githubusercontent.com/gaurav-patil-1/my-raw-files/main/Result-Management-System/staffLogin.png">
## DashBoardHome
<img width="50%" alt="Dashboard Home" src="https://raw.githubusercontent.com/gaurav-patil-1/my-raw-files/main/Result-Management-System/dashboardHome.png">
## Dashboard
<img width="50%" alt="dashboard" src="https://raw.githubusercontent.com/gaurav-patil-1/my-raw-files/main/Result-Management-System/dashboard.png">
## Students
<img width="50%" alt="students" src="https://raw.githubusercontent.com/gaurav-patil-1/my-raw-files/main/Result-Management-System/students.png">
## EditStudent
<img width="50%" alt="Edit Student" src="https://raw.githubusercontent.com/gaurav-patil-1/my-raw-files/main/Result-Management-System/editStudent.png">
## Admission
<img width="50%" alt="admission" src="https://raw.githubusercontent.com/gaurav-patil-1/my-raw-files/main/Result-Management-System/admission.png">
## Modules(Subjects)
<img width="50%" alt="modules" src="https://raw.githubusercontent.com/gaurav-patil-1/my-raw-files/main/Result-Management-System/modules.png">
## Edit Marks
<img width="50%" alt="Edit Marks" src="https://raw.githubusercontent.com/gaurav-patil-1/my-raw-files/main/Result-Management-System/editMarks.png">
## Result
<img width="50%" alt="result" src="https://raw.githubusercontent.com/gaurav-patil-1/my-raw-files/main/Result-Management-System/result.png">
## StudentLogin
<img width="50%" alt="Student Login" src="https://raw.githubusercontent.com/gaurav-patil-1/my-raw-files/main/Result-Management-System/studentLogin.png">
## Marksheet
<img width="50%" alt="marksheet" src="https://raw.githubusercontent.com/gaurav-patil-1/my-raw-files/main/Result-Management-System/marksheet.png">
| The Result Management System is a web application that allows students to view their academic results by logging in with their PRN and date of birth. Staff members can access a dashboard to view, add, edit, and delete academic records on a subject-wise basis. It offers secure user authentication and MongoDB database integration for data storage. | css,ejs,expressjs,html5,javascript,mongoose,nodejs | 2023-08-21T16:27:32Z | 2023-11-21T00:45:16Z | null | 1 | 0 | 13 | 0 | 0 | 3 | null | null | EJS |
shreyamalogi/Basic-text-Editor | main | basic text editor WEB APP using HTML5, CSS3, Javascript, jQuery | css3,html5,javascript,jquery | 2023-08-31T10:30:02Z | 2023-09-22T11:15:51Z | null | 1 | 0 | 6 | 0 | 0 | 3 | null | null | JavaScript | |
BiatrizR/MultiplayerCarRacing | main | ## About development 🏎
- 2d version of a racing game, with top view.
- Multiplayer game.
- with database connection.
- for two players only.
##
### bibliotecas
- p5.min.js
- p5.play.js
- p5.sound.min.js
- sweetalert.min.js
- firebase
##
### recursos
- firebase/app
- firebase/database
## about game
> Control the players with the directional arrows;
>
> reach the end without losing life or fuel;
>
##
# Desafio de atualização: ✔
- Modificar as imagens da caixa de diálogo;
- ajustar tamanho caso necessário.
- Modificar texto das caixa de diálogo
# atualização opcional ✔
1. Uso das bibliotecas de som
- funções: loadSound(), play() e stop()
- sons de colisão;
- up level
- lose sound
3. GameOver para fim de combustível
| Car Racing 2d top view | css,firebase,firebase-database,game-development,javascript | 2023-09-11T19:07:09Z | 2023-09-15T17:29:47Z | null | 2 | 1 | 13 | 0 | 1 | 3 | null | null | JavaScript |
itsmarmot/basic-JS | main | <p align="center">
<img style="width: 10%;" src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Unofficial_JavaScript_logo_2.svg/2048px-Unofficial_JavaScript_logo_2.svg.png" />
<h1 align="center">Basic Learning</h1>
</p>
## Preview Materi
Pada folder ini kita akan mempelajari hal-hal basic atau dasar dari Pemrograman Javascript, mulai dari Variabel, Operator, Pengkodisian dan masih banyak lagi. Materi yang disajikan ramah untuk pemula sehingga tidak ada syarat bahasa pemrograman tertentu yang perlu dikuasai terlebih dahulu untuk mempelajari Javascript Dasar ini.
### Tools yang digunakan
- Komputer yang memiliki akses internet dengan sistem operasi Windows/Linux/Mac.
- Spesifikasi minimal komputer
- Sistem Operasi
<br> Windows, Linux dan MacOS.
- Prosesor
<br> Intel Celeron atau yang setara. (Rekomendasi Intel Core I3 dan AMD A4 atau yang setara)
- RAM : 2 GB. (Rekomendasi 4 GB)
- Software
- Teks Editor : VSCode, Sublime Text, Notepad++, Atom, Vim, dll.
- Command Line : Terminal atau cmd, Git Bash, dll.
- Install NodeJS. [Cara Install](https://www.youtube.com/watch?v=VfN1_pEdQAA)
---
Apa saja yang ada di folder ini?
1. [**Hello world**](001_hello_world/)<br>
Menampilkan teks dengan menggunakan `console.log` di console browser.
2. [**Variabel dan Tipe Data**](002_variable_datatype/)<br>
Mengenal apa itu **Variabel** dan **Tipe Data** yang ada di **Javascript**.
3. [**Operator**](003_operator/)<br>
Mengenal **Operator** dalam **Javascript** seperti **Perbandingan**, **Kelogisan**, dan **Aritmatika**.
4. [**String dan Rekayasa String**](004_string_and_string_manipulation/)<br>
Cara mendeklarasikan **String** dan **Memanipulasi String** pada **Javascript**.
5. [**Pengkondisian**](005_conditioning/)<br>
Penggunaan pengkodisian pada **Javascript** seperti `if`, `else`, `else if`, dan `switch case`.
6. [**Operasi Matematika**](006_arithmetic_operation/)<br>
Penggunaan operasi matematika pada **Javascript** seperti penjumlahan `+`, pengurangan `-`, perkalian `*`, pembagian `/`, modulus`%`, eksponen `**`, increment/kenaikan `++`, dan decrement/penurunan `--`.
7. [**Perulangan**](007_looping/)<br>
Mengenal **Perulangan** atau **Looping** pada **Javascript** beserta cara penggunaannya. Beberapa jenis **Looping** antara lain `for`, `while`, dan `do while`.
8. [**Fungsi**](008_function/)<br>
Mengenal **Function**(fungsi) pada **Javascript** dengan berbagai macam **Function** dan sifatnya.
9. [**Array**](009_array/)<br>
Bagaimana cara menggunakan **Array**, mendeklarasikan, mengakses dan mengambil, serta mengecek panjang atau banyak data pada **Array**.
10. [**Manipulasi Array**](010_array_manipulation)<br>
Memanipulasikan **Array** dengan beberapa jenis metode seperti `Filter`, `Map`, `Sort`, `Push & Pop`, `Shift & Unshift`, dan `Reduce`.
11. [**Object**](011_object)<br>
Mengenal **Object** pada **Javascript** serta cara penggunaannya.
12. [**Manipulasi Object**](012_object_manipulation/)<br>
Memanipulasi **Object** dengan beberapa metode seperti `Object.keys()`, `Object.values()`, `Object.enties()`, dan `Object.assign()`.
13. [**Strict Mode**](013_strict_mode)<br>
Mengenal **Strict Mode** dan penggunaannya pada **Javascript**.
14. [**Basic Program**](014_basic_program)<br>
Berisi contoh program sederhana dengan menggunakan fungsi, rekayasa string, logika.
| learn basic JS which is a programming language #2 in the worlds 🌎 | basic-programming,javascript | 2023-08-29T23:52:18Z | 2023-08-29T23:53:46Z | null | 1 | 0 | 1 | 0 | 0 | 3 | null | null | JavaScript |
Twfek-Ajeneh/Global-Share-ERP | main | # Global Share ERP System
The Global Share ERP System is an innovative web-based application designed to streamline volunteer, recruitment and task management. It incorporates task management, recruitment features, promote effective communication, and drive organizational excellence.
The purpose of the Global Share ERP System is to address the challenges faced by organizations in managing employee tasks, recruiting the right talent. By providing a comprehensive suite of tools, the system aims to streamline HR processes, facilitate effective communication, and foster a culture of excellence. This document serves as a baseline for the development team, providing a clear understanding of the project's goals and objectives.
## System Overview
The Global Share ERP System consists of several interconnected components that work together to support volunteer mangement, recruitment and task management. These components include:
1. General Overview Website: A public-facing website that provides information about Global Share's mission, activities, and volunteer opportunities. It includes pages for each section, a privacy policy page, a feedback form, and a login page for volunteers and HR employees.
2. Volunteers Management Subsystem: Enables volunteers to log hours, view department tasks, update profiles. HR employees can manage volunteer profiles, search/filter volunteers, and generate reports on volunteer activity and performance.
3. Recruitment Subsystem: Allows HR employees to manage job applications, control vacancies, track the recruitment process, and send automated emails to applicants. Feedback from HR employees and orchestrators can be gathered through the system.
4. Dashboards: A section dedicated to managing the structure of the organization, including teams, positions and volunteer positions consisting of a data table structure with server-side search, filtering and pagination
6. Task Management Subsystem: Enables volunteers to view department boards and tasks, create new tasks, assign tasks to other members, track task progress, set priorities, filter and sort tasks, and add comments and attachments.
## Release
- Feel free to try it from [Here](https://twfek-ajeneh.github.io/Global-Share-ERP/).
- Note :
1. The server take time to turn on so be patient please.
2. Use this account to login: username : ceo@gs.com , password : 12345678
## Preview











| Global Share ERP is an innovative React application designed to simplify the process of recruiting and managing volunteers within the Global Share organization, in addition to the task management department and hours log. | axios,clsx,javascript,lodash,material-ui,react,react-beautiful-dnd,react-data-table-component,react-hook-form,react-hooks | 2023-09-01T17:05:29Z | 2023-09-02T16:58:42Z | null | 1 | 0 | 7 | 0 | 0 | 3 | null | null | JavaScript |
xerifandtomas/miyax-gantt-js | master | # Miyax Gantt Chart
An open source gantt chart for the web
----

## Installation
```bash
npm i @miyax/ganttjs
```
or
```bash
yarn add @miyax/ganttjs
```
## Usage
Create a html element
```html
<div id="gantt-chart"></div>
```
```javascript
import { GanttChart, ES } from '@miyax/ganttjs'
import '@miyax/ganttjs/src/theme/default.css'
// Define the tasks
const tasks = [
{
id: "1",
name: "Hello world!!",
start: new Date("2023/08/09"),
end: new Date("2023/08/15"),
color: "#CC8888",
description: "Lorem ipsum dolor sit amet consectetur adipisicing elit.",
}
]
// Define the element
const ganttChartHtmlElement = document.getElementById("gantt-chart")
// Define the period
const startGanttChart = new Date("2023/08/01")
const endGanttChart = new Date("2023/08/10")
// Create a new gantt chart
const gantt = new GanttChart() // or new GanttChart(ganttChartHtmlElement)
// Basic
gantt
.element(ganttChartHtmlElement) // set the element
.period(startGanttChart, endGanttChart) // show the period from 2023/08/01 to 2023/08/31
.tasks(tasks) // add the tasks
.render() // render the gantt chart
// All options
gantt
.element(ganttChartHtmlElement) // set the element
.period(startGanttChart, endGanttChart) // show the period from 2023/08/01 to 2023/08/31
// .todayTo(2) // show the period from today to 2 days after
.tasks(tasks) // add the tasks
.widthHeader('350px') // set the width of the header, default is 150px
.withWeekDays() // show the week days
.withMonthDay() // show the month day
.withYearMonths() // show the year months
.withTime() // show the duration of the tasks
.showHeaders(false) // disable or enable the headers, default is true
.i18n(ES) // set the language, default is EN
.render() // render the gantt chart
// Update the gantt chart
const newTask = {
id: "2",
name: "¡¡Hola mundo!!",
start: new Date("2023/08/09"),
end: new Date("2023/08/15"),
color: "#88CC88",
}
tasks.push(newTask)
gantt
.task(tasks) // add the tasks
.period(new Date("2023/08/01"), new Date("2023/08/31")) // show the period from 2023/08/01 to 2023/08/31
.render() // update the gantt chart
```
## Events
```javascript
// Selected task event
ganttChartId.addEventListener("selected", (e) => console.log('Task selected', e.detail))
```
## Example VUE
Sandbox example: https://codesandbox.io/s/dawn-browser-k66vzr?file=/src/App.vue
```html
<template>
<main>
<form @submit.prevent="update" class="form">
<input type="date" v-model="start" />
<input type="date" v-model="end" />
<button type="submit">Update</button>
<button type="button" @click="toggleHeaders">Toggle headers</button>
</form>
<div ref="gantt" @selected="selectedTask"></div>
<div>{{ lastSelectedTask }}</div>
</main>
</template>
<script>
import { GanttChart, ES } from '@miyax/ganttjs'
import '@miyax/ganttjs/src/themes/default.css'
const tasks = [
{
id: "1",
name: "Hello world!!",
start: new Date("2023/08/1"),
end: new Date("2023/08/10"),
color: "#a3d8a3",
},
{
id: "2",
name: "¡¡Hola mundo!!",
start: new Date("2023/08/9"),
end: new Date("2023/08/21"),
color: "#2ade3c",
description: "Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, voluptatum.",
},
]
const gantt = new GanttChart()
export default {
name: 'App',
data() {
return {
toggleHeader: true,
lastSelectedTask: {},
start: '2023-08-01',
end: '2023-08-31'
}
},
mounted() {
gantt
.element(this.$refs.gantt)
.tasks(tasks)
.period(new Date("2023/08/01"), new Date("2023/08/31"))
.widthHeader('350px')
.withWeekDays()
.withMonthDay()
.i18n(ES)
.render()
},
methods: {
update() {
const start = new Date(this.start)
const end = new Date(this.end)
gantt
.period(start, end)
.render()
},
toggleHeaders() {
this.toggleHeader = !this.toggleHeader
gantt
.showHeaders(this.toggleHeader)
.render()
},
selectedTask(task) {
this.lastSelectedTask = task.detail
console.log(task.detail)
},
}
}
</script>
<style scoped>
.form {
display: flex;
justify-content: center;
align-items: center;
padding: 1rem;
gap: 1rem;
}
</style>
```
## I18n example
Createa new object with the translations
```js
const ES = {
daysOfWeek: {
monday: 'Lunes',
tuesday: 'Martes',
wednesday: 'Miércoles',
thursday: 'Jueves',
friday: 'Viernes',
saturday: 'Sábado',
sunday: 'Domingo',
},
monthsOfYear: {
january: 'Enero',
february: 'Febrero',
march: 'Marzo',
april: 'Abril',
may: 'Mayo',
june: 'Junio',
july: 'Julio',
august: 'Agosto',
september: 'Septiembre',
october: 'Octubre',
november: 'Noviembre',
december: 'Diciembre',
},
monthsTitle: 'Meses',
daysTitle: 'Días',
dayOfweekTitle: 'Días de la semana',
}
```
| An open source gantt chart for the web | gantt,gantt-chart,gantt-diagram,javascript,web | 2023-08-22T08:28:51Z | 2023-08-25T12:43:24Z | 2023-08-25T11:44:44Z | 1 | 0 | 33 | 0 | 0 | 3 | null | null | JavaScript |
orelz890/Instafoodies_final_project | main | <div align="center">
<img src="pics/logo.jpeg" alt="InstaFoodies Logo" width="1000" height="210"/>
<h1>InstaFoodies: Social Media Platform for Food Enthusiasts</h1>
<p>Welcome to InstaFoodies, where culinary creativity meets social networking!</p>
</div>
---
## 🍔 Introducing InstaFoodies
Discover and share mouthwatering recipes from around the world. Join a community of food enthusiasts, upload your culinary creations, and connect with fellow foodies.
This repository serves as the main introduction to the InstaFoodies project.
For detailed code and documentation, please refer to the individual repositories:
- [App Repository](https://github.com/orelz890/InstaFoodies): User interface of the InstaFoodies app.
- [Server Repository](https://github.com/orelz890/InstaFoodies_server): Backend server of the InstaFoodies app.
---
## 📋 System Overview
The recipe-sharing application is a vibrant social hub where users weave a culinary tapestry, sharing and unearthing posts both with and without recipes. A canvas for creativity, it empowers users to craft and exchange gastronomic gems, fostering connections and friendships along the way.
Beyond personal joy, it offers a realm of commerce where businesses can curate content, potentially monetizing their culinary expertise. With a feature-rich toolkit, users gather and cherish recipes, translating digital inspiration into tangible delights. In a world where notifications echo like culinary whispers, this platform cultivates a journey of flavors, from novice to connoisseur.
It also has a user-friendly interface that allows for easy navigation and interaction.
---
## Human Interface Design
Our UI is a canvas of user-centric design, harmoniously merging aesthetics and functionality to craft an unparalleled experience.
Key screens include:
## Table of Contents
| Login | Register | Feed |
| :---: | :---: | :---: |
| <img src="pics/login.jpg" alt="login" width="250" /> |<img src="pics/register.jpg" alt="register" width="250" /> | <img src="pics/feed.jpg" alt="feed" width="250" /> |
| Post | Comments | Scraping |
| :---: | :---: | :---: |
| <img src="pics/post.jpg" alt="post" width="250" /> | <img src="pics/comments.jpg" alt="comments" width="250" /> | <img src="pics/scraping.png" alt="scraping" width="250" /> |
| Networking | Chat Requests | Chat |
| :---: | :---: | :---: |
|<img src="pics/chats.png" alt="chats" width="250" />| <img src="pics/requests.jpg" alt="requests" width="250" /> | <img src="pics/chat.jpg" alt="chat" width="250" /> |
| Notifications | Search | Payment |
| :---: | :---: | :---: |
| <img src="pics/notifications.jpg" alt="notifications" width="250" /> | <img src="pics/search.jpg" alt="search" width="250" /> | <img src="pics/payment.png" alt="payment" width="250" /> |
## 🏗️ System Architecture
| Start Nginx Load Balancer |
| :---: |
| <img src="pics/system_architecture.png" alt="system_architecture" width="700" /> |
---
### Architectural Design
The application developed using the Model-View-ViewModel (MVVM) architectural pattern, which allows for the separation of concerns and easy maintenance of the codebase.
- **Model:** Includes both the communication logic for interacting with the server and the logic for handling data from the server.
- **View:** Android UI, layouts, and user interface elements.
- **ViewModel:** Handles the preparation of data from the Model for the UI and contains UI-related logic.
---
### Project Management Approach
We embraced Scrum, an agile project management framework, to efficiently manage our project's development. Our daily standup meetings promoted team synchronization, progress sharing, and issue resolution. Guided by a dedicated Scrum Master, we ensured adherence to Scrum principles, rapid obstacle removal, and a culture of continuous improvement.
---
## 🌟 Features
- 📸 Upload food photos with detailed recipe descriptions.
- 👥 Follow users and curate your personalized recipe feed.
- 🗓️ Plan your weekly recipes and export your cart as a WhatsApp message.
- 🔔 Receive real-time notifications for likes, comments, and follows.
- 💬 Chat with friends and fellow food lovers.
- 🔍 Search for users and recipes with ease.
- 🔍 Use content recognition to ensure the quality of shared recipes.
- 🔗 Seamlessly integrate scraped recipes from external websites.
---
## 📜 License
This project is licensed under the [Creative Commons Attribution-NonCommercial 4.0 International License (CC BY-NC 4.0)](https://creativecommons.org/licenses/by-nc/4.0/). This means that you are free to share, adapt, and build upon the material, as long as you provide appropriate attribution, do not use the material for commercial purposes, and do not impose additional legal restrictions.
Please note that this license is designed to prevent commercial usage of the code. If you have any questions about how you can use or adapt this code within the terms of the license, feel free to contact us via email smarterfoodies@gmail.com 📮.
## 📬 Contact
If you have any questions, suggestions, or feedback, please don't hesitate to contact us:
smarterfoodies@gmail.com 📮.
| 🔥 Explore Culinary App - Share Food Adventures & Recipes 📸🍔 | firebase,firebase-ml-kit,java,javascript,multithreaded-server,nginx-load-balancer,nodejs,social-media-application | 2023-08-17T16:38:47Z | 2024-02-06T12:13:59Z | null | 4 | 10 | 43 | 0 | 1 | 3 | null | NOASSERTION | null |
AbdulRafayZia/blogging-app | main | # Getting Started with Create React App
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## Available Scripts
In the project directory, you can run:
### `npm start`
Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
The page will reload when you make changes.\
You may also see any lint errors in the console.
### `npm test`
Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
### `npm run build`
Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
### `npm run eject`
**Note: this is a one-way operation. Once you `eject`, you can't go back!**
If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
## Learn More
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
To learn React, check out the [React documentation](https://reactjs.org/).
### Code Splitting
This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
### Analyzing the Bundle Size
This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
### Making a Progressive Web App
This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
### Advanced Configuration
This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
### Deployment
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
### `npm run build` fails to minify
This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
| Blog website created in React js framework | css3,html,javascript,reactjs | 2023-09-08T02:53:13Z | 2023-09-08T02:59:15Z | null | 1 | 0 | 1 | 0 | 0 | 3 | null | null | JavaScript |
Its-Shojib/Digital-Tasbih | main | null | Digital Tasbih | css,daisyui,html,javascript,tailwindcss | 2023-08-13T07:37:05Z | 2023-08-13T08:07:11Z | null | 1 | 0 | 3 | 0 | 0 | 3 | null | null | HTML |
nicalaia/huez | master | ## Huez
Automatic UI Color Palette Generator from a Base Color
[huez](https://huez.ciobanunicolae.com)
## Installation
```
npm install huez
```
## Usage
```jsx
import { huez } from "huez";
const baseColor = "#0077cc";
const colorFormat = "hex"; // "hsl", "rgb", or "hex"
try {
const palette = huez(baseColor, colorFormat);
} catch (error) {
console.error(error.message);
}
```
## To do
- [x] Add contibuting guide
- [ ] Set up workflows
- [ ] Change output to formatted string ( hsl(30, 50%, 75%) instead of [30,50,75] )
- [ ] Create documentation
## Contributing
Please read the [contributing guide](/CONTIBUTING.md)
## License
[MIT](https://github.com/ciobanunicolae/huez/blob/master/LICENSE)
| Automatic UI Color Palette Generator | color,npmjs,palette,reactjs,brand,javascript,nextjs,typescript,app-router,app-router-nextjs | 2023-08-23T10:30:52Z | 2023-09-19T18:28:40Z | 2023-09-19T12:54:42Z | 1 | 0 | 57 | 1 | 0 | 3 | null | MIT | TypeScript |
dasha-musienko/weather-forecast | main | <h2 align="center">Weather Forecast</h2>
<img src="https://github.com/dasha-musienko/weather-forecast/blob/main/src/img/gh_descr/cover.jpeg" alt="Cover image">
<h2>⚡️Goal</h2>
<p>The primary goal of the Weather Forecast project is to create a visually appealing and highly functional weather forecasting platform that utilizes various technologies to deliver accurate and up-to-date weather information. By integrating WeatherAPI, Notiflix, and Chart.js, this project aims to offer a holistic weather forecasting experience to users, allowing them to access, visualize, and receive timely weather updates seamlessly.</p>
<h2>🔥Features</h2>
<ul>
<li><strong>Real-time Weather Data: </strong>Weather Forecast harnesses the power of WeatherAPI to provide users with real-time weather information. Users can access data such as temperature, humidity, wind speed, and precipitation forecasts for any location worldwide.
</li>
<li><strong>Sleek User Interface: </strong>The project boasts a modern and visually appealing design that makes it easy for users to navigate and access weather information effortlessly. The user interface is intuitive, ensuring a seamless user experience.</li>
<li><strong>Interactive Chart: </strong>Chart.js integration enables users to visualize weather data in the form of interactive charts and graphs. This feature allows users to track weather trends and patterns over time, aiding in a better understanding of weather conditions.</li>
<li><strong>Customized Notifications: </strong>Notiflix integration allows users to set up customized weather notifications. Users can receive alerts for specific weather conditions, such as rain, snow, or extreme temperatures, ensuring they stay prepared for any weather event.
</li>
<li><strong>Multi-platform Accessibility: </strong> Weather Forecast is accessible on various devices, including desktops, tablets, and mobile phones, ensuring users can access weather information on the go.
</li>
<li><strong>Search: </strong>The application features a robust search functionality, making it effortless for users to find weather information for any location.
</li>
</ul>
<h2>🔗Link</h2>
https://dasha-musienko.github.io/weather-forecast/
<h2>👩💻Techologies and Tools</h2>
<img align="left" height="70px" alt="Cover image" src="https://github.com/dasha-musienko/weather-forecast/blob/main/src/img/gh_descr/js.png" />
<img align="left" height="70px" alt="Cover image" src="https://github.com/dasha-musienko/weather-forecast/blob/main/src/img/gh_descr/css.png" />
<img align="left" height="70px" alt="Cover image" src="https://github.com/dasha-musienko/weather-forecast/blob/main/src/img/gh_descr/html.png" />
<img align="left" height="70px" alt="Cover image" src="https://github.com/dasha-musienko/weather-forecast/blob/main/src/img/gh_descr/chart.png" />
<img align="left" height="70px" alt="Cover image" src="https://github.com/dasha-musienko/weather-forecast/blob/main/src/img/gh_descr/weatherapi.png" />
<img align="left" height="70px" alt="Cover image" src="https://github.com/dasha-musienko/weather-forecast/blob/main/src/img/gh_descr/figma.png" />
<img align="left" height="70px" alt="Cover image" src="https://github.com/dasha-musienko/weather-forecast/blob/main/src/img/gh_descr/vscode.png" />
| Weather Forecast is a cutting-edge web application that combines a sleek design with the power of real-time weather data, notifications, and interactive charts. This project is designed to provide users with a comprehensive and user-friendly weather forecasting experience, making it easy for anyone to stay informed about weather conditions. | chartjs,css,figma,html,javascript,notiflix,weather-app,weather-forecast,weatherapi | 2023-09-04T09:08:03Z | 2023-09-10T21:15:05Z | null | 3 | 0 | 96 | 0 | 0 | 3 | null | null | HTML |
purpleblueslime/is18 | main | null | Is this 18? | javascript,just-for-fun,package,is18 | 2023-08-13T11:43:27Z | 2023-08-13T11:44:12Z | null | 1 | 0 | 1 | 0 | 0 | 3 | null | MIT | JavaScript |
MartaFagundez/50projects_50days | main | <h1>50 Projects in 50 Days Challenge</h1>
<br>
<img src="https://raw.githubusercontent.com/MartaFagundez/FCC-ResponsiveWebDesign-Projects/master/portfolio/img/50p50d_1ExpCds_thumb.png" alt="" >
<p>Practice makes perfect! That's why I join the challenge of doing 50 mini-projects in 50 days. 👩💻💪</p>
<br>
<p>Pure HTML, CSS and JS. And following the highly recommended course by Brad Traversy and Florin Pop ("50 Projects In 50 Days", via Udemy).🌟</p>
<br>
<p>Here I share my version of each day's homework.🫰</p>
<br>
| Practice makes perfect! That's why I join the challenge of doing 50 mini-projects in 50 days. | css,html,javascript | 2023-08-24T19:46:35Z | 2023-11-08T02:09:48Z | null | 1 | 0 | 84 | 0 | 0 | 3 | null | null | CSS |
Ifarra/WebBlockerCRX | main | null | Website Blocker is an extension for chrome and edge browsers, this extension will lock all websites on the internet except for websites that are given permission to be accessed. | chrome-extension,javascript | 2023-08-21T04:26:33Z | 2023-08-21T13:50:47Z | null | 1 | 0 | 6 | 0 | 0 | 3 | null | null | JavaScript |
DeveloperTharan/MEG | main | null | Meg is a Office designing website | bootstrap5,css3,html5,javascript | 2023-09-05T13:31:43Z | 2023-09-05T13:32:56Z | null | 1 | 0 | 1 | 0 | 0 | 3 | null | null | HTML |
snehkr/OIBSIP | main | <h2 align="center"> Oasis Infobyte Internship</br>WEB-DEVELOPMENT-AUG23 </h2>
</br>
### Ⓜ️ Platform Used :
- Visual Studio Code
</br>
### 📝 TASK 1 :
- A Landing Page [ OTT APP ] With the help of HTML CSS & JS
- <a href="https://oasis-internship.netlify.app/task-1/">LIVE DEMO </a>
### 📝 TASK 2 :
- A Portfolio With the help of HTML CSS & JS
- <a href="https://oasis-internship.netlify.app/task-2/">LIVE DEMO </a>
### 📝 TASK 3 :
- A Temperature Converter With the help of HTML CSS & JS
- <a href="https://oasis-internship.netlify.app/task-3/">LIVE DEMO </a>
</br>
### [+] Find me on :
<a href="https://telegram.me/SnehKr" target="_blank"><img src="https://img.shields.io/badge/Messenger-SnehKr-blue?style=for-the-badge&logo=messenger"></a>
<a href="mailto:Snehkr.official@gmail.com" target="_blank"><img src="https://img.shields.io/badge/Email-Snehkr.official@gmail.com-blue?style=for-the-badge&logo=gmail"></a>
</br>
---
<h5 align="center">© 2023-24 SnehKr.</h5>
| Oasis Infobyte Internship WEB-DEV. AUG23 | css,html,internship,internship-task,javascript,landing-page,oasis-infobyte | 2023-08-20T09:48:40Z | 2023-11-18T10:33:26Z | null | 2 | 1 | 7 | 0 | 0 | 3 | null | GPL-3.0 | CSS |
FatemeGhalandari/Beautyness | master | <a href="https://beautyness-bodycare.vercel.app/">
<img src="src/assets/Logo_white.svg" alt="Beauty is power a smile is its sword.">
</a>
<br>
<br>
Beautyness is a modern and responsive website dedicated to beauty and body care. This Git repository contains the source code for the Beautyness website, which is built using ReactJS, Tailwind CSS, and Vite.
## Features
- **Reusable Components:** Beautyness is designed with modularity in mind. It includes a collection of reusable components that make maintaining and extending the website easy. These components can be used across different sections of the site, ensuring a consistent and user-friendly experience.



- **Responsive Design:** Beautyness is fully responsive, ensuring it looks great and functions smoothly on various devices, from desktop computers to smartphones and tablets. This responsiveness is achieved using Tailwind CSS's utility classes, making it easy to adapt the layout for various screen sizes.
 
- **ReactJS:** The website is built using ReactJS, a popular JavaScript library for building user interfaces. React's component-based architecture allows for efficient development and easy integration of the reusable components mentioned earlier.
- **Tailwind CSS:** Beautyness uses Tailwind CSS, a utility-first CSS framework, to style its components and layout. Tailwind CSS makes it simple to create a consistent and visually appealing design while also enabling rapid development through its utility classes.
- **Vite:** The project is set up with Vite, a fast and efficient build tool for JavaScript applications. Vite's development server and build process ensure quick development cycles and optimal production builds.
## Getting Started
Follow these steps to get the Beautyness website up and running on your local machine:
1. Clone this repository to your local machine:
```bash
git clone https://github.com/FatemeGhalandari/Beautyness.git
```
2. Navigate to the project directory:
```bash
cd beautyness
```
3. Install the project dependencies:
```bash
npm install
```
4. Start the development server:
```bash
npm run dev
```
5. Open your web browser and visit [http://localhost:5173](http://localhost:5173) to view the Beautyness website.
## Contributing
If you'd like to contribute to the Beautyness website project, please follow these guidelines:
1. Fork this repository to your own GitHub account.
2. Create a new branch for your feature or bug fix:
```bash
git checkout -b feature/your-feature-name
```
3. Make your changes and commit them with clear and descriptive commit messages.
4. Push your changes to your forked repository:
```bash
git push origin feature/your-feature-name
```
5. Create a pull request from your forked repository to this main repository, describing your changes in detail.
6. Your pull request will be reviewed, and once approved, your changes will be merged into the main branch.
---
Thank you for checking out the Beautyness website project! I hope you find it useful and inspiring for your beauty and body care needs. If you have any questions or suggestions, please don't hesitate to open an issue or reach out. Enjoy exploring the world of beauty and self-care with Beautyness!
| A responsive website using ReactJS, tailwindCSS and Vite with modern looks. | javascript,reactjs,tailwindcss,vitejs | 2023-08-20T21:54:23Z | 2024-05-02T15:38:48Z | null | 1 | 0 | 196 | 0 | 1 | 3 | null | null | JavaScript |
astrohelm/isolation | main | <h1 align="center">
**Isolation**
</h1>
**Why should i use it ?** How often do you see libraries which mutates global variables Or how often
do you check libraries actions ? Library provides script isolation in custom contexts to solve this
kind of issues. Also, isolation prevents global scope and prototypes pollution.
> [!TIP]
>
> ## **Possible use case**
>
> May be useful as routing loader, if some loaded route makes an error while runtime, you may
> recreate it - to prevent memory leaks. Another worlds, with this library you can create
> multi-tenant applications;
<h2 align="center">
**Installation**
</h2>
```bash
npm i isolation --save
```
<h2 align="center">
**Basic Usage**
</h2>
- **Prevent intentionally damage**
It will stop tricky users code, while you don't allow it.
```javascript
// unchecked-dangerous-library index.js
const fs = require('fs');
fs.rm(process.cwd(), { recursive: true }); // Ha ha, no-code developer
```
```javascript
// routes/route/get.js
const dangerousLibrary = require('unchecked-dangerous-library'); // Point where dangerous library initialized
// ... other logic
```
```javascript
// index.js
const Isolation = require('isolation');
const routes = Isolation.read('./routes');
// ⚠️ Will throw an error because fs doesn't allowed
```
- **Prevent unintentionally damage**
This solves problem where libraries used to mutate global variables.
```javascript
// unchecked-dangerous-library index.js
var console = msg => process.stdout.write(msg); // Someone just want different implementation for console
global.console = console;
console('Here it works fine');
String.prototype = {}; // Or just mutating prototypes
```
```javascript
// routes/route/get.js
const dangerousLibrary = require('unchecked-dangerous-library'); // Point where dangerous library initialized
// ... other logic
```
```javascript
// index.js
const Isolation = require('isolation');
Isolation.read('./routes');
console.log('All works fine');
console('Here it not works'); // Will throw an error
String.prototype; // Will be as default
```
<h2 id="module-types" align="center">
**Module types / Script syntax**
</h2>
> [!CAUTION]
>
> You can run any script from string, just like eval, but in custom VM container. But you
> **shouldn't use** it for unknown script evaluation, it may create **security issues**.
### **Commonjs**
By default Isolation will use Standard Nodejs syntax. With this type of syntax it will provide to
your realms global variables such as:
- **require** function, which is almost same as nodejs require, but with extra cup of isolation;
- **module** & **exports** variables provided to manipulate with exports between modules;
- **\_\_filename** & **\_\_dirname** are same as with default nodejs realm;
> [!IMPORTANT]
>
> You always should use module.exports to export, otherwise you will see undefined as the result of
> realm execution.
```javascript
const Isolation = require('isolation');
console.log(new Isolation(`module.exports = { field: 'value' };`).execute()); // Output: { field: 'value' }
console.log(Isolation.execute(`module.exports = (a, b) => a + b;`)(2 + 2)); // Output: 4
console.log(Isolation.execute(`(a, b) => a + b;`)(2 + 2)); // Output: undefined
Isolation.execute(`module.exports = async (a, b) => a + b;`)(2 + 2).then(console.log); // Output: 4
```
### **ISO**
This type of syntax will stand your script alone without any of extra global variables. That means
that you would not see <code>module</code> or <code>exports</code> in your environment. But your
context variables will still work well.
> [!IMPORTANT]
>
> In this mode, your realms will export result of the last expression, that means that you should
> put a reference to your variable or expression at the end of the file / row;
```javascript
const Isolation = require('isolation');
const options = { type: 'iso' };
console.log(new Isolation(`{ field: 'value' };`, options).execute()); // Output: { field: 'value' }
console.log(Isolation.execute(`(a, b) => a + b;`, options)(2 + 2)); // Output: 4
Isolation.execute(`async (a, b) => a + b;`, options)(2 + 2).then(console.log); // Output: 4
```
### **ESM**
Isolation doesn't yet support esm syntax. That's because currently <code>node.vm</code> ESM modules
are experimental.
<h2 id="context-api" align="center">
**Context API**
</h2>
You can create custom context or use default presets with **context api**. This will allow you to
provide your custom variables to the context without requiring any module.
> [!TIP]
>
> Remember to reuse your contexts. This will increase performance of your application. To help you
> with this we have default contexts:
### **Context example**
```javascript
const { contextify, execute } = require('isolation');
const custom = contextify({ console }); // ⚠️ Object will be mutated
execute(`console.log(123);`, { ctx: custom }); // STD Output: 123
execute(`console.log(123);`); // No STD output, because different stdout stream
```
Also its allow you to change program behavior with something like:
```js
const ctx = Isolation.contextify({ a: 1000, b: 10 });
const realm = new Isolation(`module.exports = a - b`, { ctx });
realm.execute(); // Output: 990
realm.execute({ ...ctx, a: 0 }); // Output: -10
realm.execute({ ...ctx, b: 7 }); // Output: 993
```
### **Default contexts**
Default contexts are accessible from Isolation.contextify, there you can find:
- Isolation.contextify.**EMPTY**, that just empty context
- Isolation.contextify.**COMMON**, timers, buffer, fetch etc...
- Isolation.contextify.**NODE**, global, console, process & **COMMON** context You should'nt use
**NODE** context, it may create security issues, otherwise it may road to possible context
escaping.
<h2 id="reader-api" align="center">
**Reader API**
</h2>
Reader allow you to run scripts from files and extends possible provided options with:
- Option <code>prepare:boolean</code> reader will return non-executed scripts, **default false**
- Option <code>depth:number|boolean</code> nested directories restrictions, **default true**
- Option <code>flat:boolean</code> result with nested scripts will be flat, **default false**
- <code>read</code> Allow you to read source codes from files and directories
```javascript
const Isolation = require('isolation');
Isolation.read('./path/to/script.js').then(console.log); // Output: result of script execution
Isolation.read('./path/to').then(console.log); // Output: { script: any }
Isolation.read('./path/to', { prepare: true }).then(console.log); // Output: { script: Script {} }
```
By default reader works with nested directories, to disable this behavior you can do:
```js
const Isolation = require('isolation');
Isolation.read('./path/to', { depth: false });
// Or limit it:
Isolation.read('./path/to', { depth: 3 });
```
- <code>read.file</code> Allow you to execute script from single file
```javascript
const Isolation = require('isolation');
Isolation.read.file('./path/to/script.js').then(console.log); // Output: result of script execution
Isolation.read.file('./path/to/script.js', { prepare: true }).then(console.log); // Output: Script {}
```
- <code>read.dir</code> Allow you to execute multiple scripts from directory
```javascript
const Isolation = require('isolation');
Isolation.read.dir('./path/to').then(console.log); // Output: { script: any, deep: { script: any } }
Isolation.read.dir('./path/to', { prepare: true }).then(console.log); Output: { script: Script {} }
Isolation.read.dir('./path/to', { depth: false }).then(console.log); // Output: { script: any }
```
<h2 id="access-control" align="center">
**Access control**
</h2>
You may control access over realm submodules and reader api;
> [!NOTE]
>
> If access doesn't provided realm submodules would'nt be accessible and reader will read all files
> in directed repository.
```js
const options = { access: pathOrModule => pathOrModule === 'fs' || pathOrModule.endsWith('.js') };
Isolation.execute('module.exports = require("fs")', options);
Isolation.read('./path/to/script.js', options);
// Or
const options2 = {
access: {
reader: path => true, // Directory reader
realm: module => {}, // Realm submodules
},
};
```
### **Library substitution**
You can replace result of require for specific libraries with anything what you want;
```js
const Isolation = require('isolation');
const src = `
const fs = require('fs');
module.exports = fs.readFile('Isolation.js');
`;
const sub = name => {
if (name !== 'fs') return true;
return {
readFile: filename => filename + ' Works !',
};
};
const result = Isolation.execute(src, { access: { realm: sub } });
console.log(result); // Output: Isolation.js Works !
```
<h2 id="script-options" align="center">
**Possible script options**
</h2>
| Option | Possible | Default | Description |
| ---------------- | ---------------------------------------------- | -------------------------------- | ----------------------------------------------------------------------------------------------------- |
| **type** | iso \| cjs | cjs | Type of script handling, see [syntax types](#module-types) |
| **ctx** | object | - | Realm context, see [Context API](#context-api) |
| **filename** | string | ISO | Name of the module , also it is global variable **\_\_filename** for root realm |
| **dir** | string | process.cwd() | Module directory , also it is global variable **\_\_dirname** and realm require start point |
| **npmIsolation** | boolean | false | Controls npm modules isolation |
| **access** | [Access](./types/options.d.ts#L51) | - | Isolation restrictions, see [Access API](#reader-api) |
| **prepare** | boolean | false | Reader would'nt execute script for you |
| **flat** | boolean | false | Reader will flat nested scripts |
| **depth** | boolean \| number | true | Restricts dir reading depth |
| **script** | [ScriptOptions](./types/options.d.ts#L63) | - | Configuration for VM.Script initialization |
| **run** | [RunningCodeOptions](./types/options.d.ts#L62) | { timeout: 1000 } | Configuration for VM.Script execution |
<h2 align="center">Copyright & contributors</h2>
<p align="center">
Copyright © 2023 <a href="https://github.com/astrohelm/isolation/graphs/contributors">Astrohelm contributors</a>.
This library is <a href="./LICENSE">MIT licensed license</a>.<br/>
And it is part of <a href="https://github.com/astrohelm">Astrohelm solutions</a>.
</p>
| How often do you see libraries which mutates global variables. Or how often do you check libraries actions 🥸 ?This library prevents unexpected behavior and global pollution. | astrohelm,container,context,isolation,javascript,loader,nodejs,runner,sandbox,script | 2023-08-25T21:04:33Z | 2024-05-07T14:17:03Z | 2024-05-07T14:17:03Z | 1 | 13 | 58 | 0 | 1 | 3 | null | MIT | JavaScript |
sai4ul/portfolio | main | # portfolio-starter-kit
amazing Minimal Personal Portfolio html Theme which is extremely easy to use. Besides its unique and modern look, Drake is designed for all devices, not only responsive, It is fully optimized for all display devices. You can use it for Designer, Developer, Programmer, Freelancer, Artist, Photographer & Can be used for Personal Portfolio, and more website projects. or just a Blog.
Live Demo <a href="https://sai4ul.github.io/portfolio-starter-kit/" target="_blank">Live</a>
<img src="./assets/img/home.png" width="100%" align="left"/>
## Folder Structure
```
.
├── assets
│ ├── css
│ │ ├── bootstrap-5.0.2.min.css
│ │ ├── icon.css
│ │ ├── plugin.css
│ │ └── main-style.css
│ └── fonts
│ │ ├── Line-awsome
│ │ ├── Font-Awesome
│ │ └── main-style.css
│ └── js
│ | ├── bootstrap-5.0.2.min.js
│ | ├── jquery-3.6.0.min.js
│ | ├── proper.min.js
│ | └── plugin.js
| └── video-bg
| |
| └── SCSS
| ├── global
| │ ├── animations.scss
| │ ├── buttons.scss
| │ ├── global.scss
| │ ├── misins.scss
| │ └── variables.scss
| │ |
| │ └── pages
| │ ├── about.scss
| │ ├── accordion.scss
| │ ├── approveMarket.scs
| │ ├── contact_form.scss
| │ ├── hero.scss
| │ ├── tab.scss
| │ ├── want-wark.scss
| │ └── cololib.scss
| |
| ├── layout
| │ ├── dark-mode.scss
| │ ├── footer.scss
| │ ├── header.scss
| │ ├── sidebar.scss
| │ └── theme-customizer.scss
| ├── templates
| │ ├── CategoriesTemplate
| │ ├── CategoryTemplate
| │ ├── IndexTemplate
| │ ├── NotFoundTemplate
| │ ├── PageTemplate
| │ ├── PostTemplate
| │ ├── TagsTemplate
| │ └── TagTemplate
| |
| └── main-style.scss
|
├── include
| └── Footer.html
|
├── admin.html
|
├── blog.html
|
├── colorlib.html
|
├── gov_other.html
|
├── themeforest.html
|
└── index.html
```
## Contributors
Thanks to these wonderful people!
<!-- Single -->
<!-- | [<img alt="ihororlovskyi" src="https://avatars.githubusercontent.com/u/7969737?v=4&s=117" width="117">](https://github.com/ihororlovskyi) | [<img alt="rtveitch" src="https://avatars.githubusercontent.com/u/25228001?v=4&s=117" width="117">](https://github.com/rtveitch) | [<img alt="timbroder" src="https://avatars.githubusercontent.com/u/121503?v=4&s=117" width="117">](https://github.com/timbroder) | [<img alt="yodahuang" src="https://avatars.githubusercontent.com/u/11242657?v=4&s=117" width="117">](https://github.com/yodahuang) | [<img alt="axelclark" src="https://avatars.githubusercontent.com/u/16856928?v=4&s=117" width="117">](https://github.com/axelclark) | [<img alt="tonyz0x0" src="https://avatars.githubusercontent.com/u/29159357?v=4&s=117" width="117">](https://github.com/tonyz0x0) |
| :---------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------: |
| [ihororlovskyi](https://github.com/ihororlovskyi) | [rtveitch](https://github.com/rtveitch) | [timbroder](https://github.com/timbroder) | [yodahuang](https://github.com/yodahuang) | [axelclark](https://github.com/axelclark) | [tonyz0x0](https://github.com/tonyz0x0) | -->
| constantly evolving and thoughtful architecture for creating static personal portfolios and blogs with Gatsby. | css3,html5,javascript,query,sass,bootstrap5 | 2023-08-18T16:56:36Z | 2024-01-31T14:56:47Z | null | 1 | 0 | 78 | 0 | 0 | 3 | null | GPL-3.0 | HTML |
McDaived/Discord-Profile-Card | main | <h1 align="center">Discord Profile Card With Webhook</h1>
<p align="center">
<a href="https://github.com/McDaived/Discord-Profile-Card">
<img src="https://github.com/McDaived/Discord-Profile-Card/assets/18085492/35ffced0-44dc-496c-88d2-a1c7a5be1d26" alt="Logo" width="500" height="100">
</a>
<h4 align="center">An exact copy of discord profile card with 3 cards</h4>
## Features :
- Send message with webhook.
- With username badge hashtag.
- Add note.
- Photo profile & Animation banner.
- rolles & random roles.
## ScreenShot :
- live Demo : [here](https://daived.me/Discord-Profile-Card)

| An exact copy of discord profile card + webhook with 3 Cards | api,css,discord,html,javascript,profile,webhook | 2023-09-07T07:49:52Z | 2023-09-07T10:32:52Z | 2023-09-07T08:16:27Z | 1 | 0 | 7 | 0 | 0 | 3 | null | MIT | null |
HopefulHeart2020/foxfinance | main | ## Build Setup Testing
### Live: https://shop.foxfinance.io/
```bash
# create .env file locally from development.env
$ cp development.env .env
# install dependencies
$ npm install
# serve with hot reload at localhost:3000
$ npm run dev
# generate static project to deploy to production
$ npm run generate
# upload to Amazon s3
$ aws s3 sync dist s3://fox-market
# clear cloudfront cache
$ aws cloudfront create-invalidation \
--distribution-id E3MHC1NKTPE0P2 \
--paths "/" "/homepage" "/homepage/" "/contribution-success" "/contribution-success/"
```
For detailed explanation on how things work, check out [Nuxt.js docs](https://nuxtjs.org).
| Fox Finance is a community-driven multimedia blockchain society with a charitable mission and business enterprises that support our goals. | blockchain,ethers,javascript,node,react,smart-contract,web3,coin | 2023-08-25T21:18:38Z | 2023-09-22T14:34:52Z | null | 2 | 0 | 3 | 0 | 1 | 3 | null | null | Vue |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.