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
brayandiazc/aprendiendo-javaScript
main
# Aprendiendo JavaScript Guía completa para aprender JavaScript desde cero. ## Descripción Esta guía está diseñada para ayudar a principiantes a aprender los conceptos fundamentales de JavaScript y a adquirir habilidades de programación en este lenguaje. La guía cubre temas desde la configuración del entorno de desarrollo hasta la introducción a librerías y frameworks populares. ## Índice 1. Introducción 1. [Que es JavaScript](./01-introduccion/01-que-es-javascript.md) 2. [Historia de JavaScript](./01-introduccion/02-historia-javascript.md) 2. Fundamentos 1. [Variables](./02-fundamentos/01-variables.md) 2. [Tipos de datos](./02-fundamentos/02-tipos-de-datos.md) 3. [Coercion de datos](./02-fundamentos/03-coercion-de-datos.md) 4. [Operadores](./02-fundamentos/04-operadores.md) 5. [Ejercicios](./02-fundamentos/05-ejercicios.md) 3. Estructuras de control 1. [Condicionales](./03-estructuras-de-control/01-condicionales.md) 2. [Bucles](./03-estructuras-de-control/02-bucles.md) 3. [Ejercicios](./03-estructuras-de-control/03-ejercicios.md) 4. Funciones 1. [Funciones](./04-funciones/01-funciones.md) 2. [Ejercicios](./04-funciones/02-ejercicios.md) 5. Arrays 1. [Arrays](./05-arrays/01-arrays.md) 2. [Agregar y eliminar elementos](./05-arrays/02-agregar-y-eliminar-elementos.md) 3. [Iterando arrays](./05-arrays/03-iterando-arrays.md) 4. [Arrow functions](./05-arrays/04-arrow-functions.md) 5. [Arrow functions con arrays](./05-arrays/05-arrow-functions-con-arrays.md) 6. [Ejercicios](./05-arrays/06-ejercicios.md) 6. Objetos y clases 1. [EcmaScript 6](./06-objetos-y-clases/01-ecmascript-6.md) 2. [Declaración con let y const](./06-objetos-y-clases/02-declaracion-con-let-y-const.md) 3. [String templates](./06-objetos-y-clases/03-string-templates.md) 4. [Objetos](./06-objetos-y-clases/04-objetos.md) 5. [Iterando objetos](./06-objetos-y-clases/05-iterando-objetos.md) 6. [Desestructuración de objetos](./06-objetos-y-clases/06-desestructuracion-de-objetos.md) 7. [Desestructuración de arrays](./06-objetos-y-clases/07-desestructuracion-de-arrays.md) 8. [Clases](./06-objetos-y-clases/08-clases.md) 9. [Ejercicios](./06-objetos-y-clases/09-ejercicios.md) 7. Programación orientada a objetos 1. [Programación orientada a objetos](./07-poo/01-programacion-orientada-a-objetos.md) 2. [Declaración de clases](./07-poo/02-declaracion-de-clases.md) 3. [Abstract classes](./07-poo/03-abstract-classes.md) 4. [Herencia](./07-poo/04-herencia.md) 5. [Encapsulamiento](./07-poo/05-encapsulamiento.md) 6. [Polimorfismo](./07-poo/06-polimorfismo.md) 7. [Ejercicios](./07-poo/07-ejercicios.md) 8. DOM y eventos 1. [DOM](./08-dom/01-dom.md) 2. [Eventos](./08-dom/02-eventos.md) 3. [Selección del DOM](./08-dom/03-seleccion-del-dom.md) 4. [Crear elementos](./08-dom/04-crear-elementos.md) 5. [Eventos del dom](./08-dom/05-eventos-del-dom.md) 6. [Agregar eventos a elementos](./08-dom/06-agregar-eventos-a-elementos.md) 7. [Manipulación de atributos](./08-dom/07-manipulacion-de-atributos.md) 8. [LocalStorage](./08-dom/08-localstorage.md) 9. [Elementos dinámicos](./08-dom/09-elementos-dinamicos.md) 10. [Ejercicios](./08-dom/10-ejercicios.md) 9. Proyectos 1. [Conversor de monedas](./proyectos/conversor-monedas.md) ## Empezando 🚀 Para comenzar a trabajar con esta guía, es necesario tener un navegador web moderno (como Google Chrome, Mozilla Firefox, Edge o Safari) y un editor de código (como Visual Studio Code, Sublime Text o Atom). ### Pre-requisitos 📋 * Navegador web actualizado (Google Chrome, Mozilla Firefox, Safari, etc.) * Editor de código (Visual Studio Code, Sublime Text, Atom, etc.) ### Instalación 🔧 1. Instalar el editor de código preferido. 2. Crear una carpeta para guardar los archivos del proyecto. 3. Crear un archivo HTML y otro JavaScript en la carpeta del proyecto. 4. Agregar una referencia al archivo JavaScript en el archivo HTML. 5. Abrir el archivo HTML en el navegador y usar la consola de desarrollador para ver el resultado de tu código. ## Ejecución de ejemplos ⚙️ A medida que avanzas en la guía, es recomendable practicar los conceptos aprendidos creando ejemplos y modificando el código. ```javascript console.log("Hola, mundo!"); ``` ## Contribuir 🖇️ Si deseas contribuir a esta guía, por favor lee [CONTRIBUTING.md](https://gist.github.com/tu_usuario_github/xxxxxx) para obtener detalles sobre nuestro código de conducta y el proceso para enviar pull requests. ## Recursos adicionales 📖 Consulta la sección "Recursos adicionales y siguientes pasos" en la guía para obtener más información sobre tutoriales en línea, libros recomendados y comunidades de desarrolladores. ## Autores ✒️ * **Brayan Diaz C** - [brayandiazc](https://github.com/brayandiazc) ## Licencia 📄 Este proyecto está bajo la licencia MIT License (MIT) - consulta el archivo [LICENSE.md](LICENSE.md) para obtener detalles o visita [MIT License](https://opensource.org/licenses/MIT) para más información. ## Agradecimientos 🎁 * Comenta a otros sobre este proyecto 📢 * Dale una estrella a este proyecto ⭐️. * Haz un fork y contribuye con el proyecto 🤓. * Da las gracias públicamente 🤓. * Invita una cerveza 🍺 o un café ☕. * etc. --- ⌨️ con ❤️ por [Brayan Diaz C](https://github.com/brayandiazc) 😊
Una guía completa y amigable para aprender JavaScript desde cero, enfocada en hablantes de español. Incluye ejemplos prácticos, ejercicios y recursos adicionales para mejorar tus habilidades en el desarrollo web.
javascript,tutorial,aprendiendo-javascript,aprendizaje,desarrollo-web,educacion,programacion,recursos,ejemplos-javascript
2023-04-13T15:50:03Z
2024-02-15T16:29:40Z
null
1
0
62
0
17
29
null
MIT
JavaScript
Ctoic/CalHub
master
# Calculator App **Table of Contents** - [Description](#description) - [Technologies Used](#technologies-used) - [Project Overview](#project-overview) - [How to Use the App](#how-to-use-the-app) - [Credits](#credits) - [License](#license) ## Description The Calculator App is a straightforward yet powerful web application crafted using a combination of HTML, CSS, and JavaScript to perform basic mathematical operations with ease. ## Technologies Used - HTML - CSS - JavaScript ## Project Overview This web-based Calculator App empowers users to conduct fundamental arithmetic operations as well as many scientific operations, including addition, subtraction, multiplication, division, finding logarithms, trigonometrical operations, and factorial. The application boasts a user-friendly interface that provides real-time calculation results. [Access the Calculator](https://calhub.netlify.app) ### How to Use the App To make use of the Calculator App, follow these simple steps: 1. Enter the first number into the designated input field or click one of the scientific operators beforehand to perform a scientific operation on a number. 2. Select the desired operation (+, -, *, /). 3. Select Desired Scientific Operation (tan, cos, sin and many more ). 4. Input the second number. 5. Click the "=" button to execute the calculation and instantly view the result. Additionally, you can employ the "C" button to clear the input fields or the "DEL" button to remove the last entered digit. ### CONTRIBUTORS <a href="https://github.com/Ctoic/Calculator-using-HTML-CSS-JS/blob/master/Contributors.md"> <img src="https://contributors-img.web.app/image?repo=Ctoic/Calculator-using-HTML-CSS-JS"/> </a> ## Credits This project was thoughtfully created by Najam Ali Abbas as part of an Introduction to Web Development course initiated by the Blockchain Society. Special thanks to the Brilliant HactoberFest Contributors. ## License This project is licensed under the [MIT License](LICENSE), providing the freedom to utilize and adapt the code to meet your specific requirements.
The "Calculator" repository on GitHub is a comprehensive codebase for building a functional calculator using HTML, CSS, and JavaScript. The repository is open-source, allowing developers to freely contribute and use the code.
css,html,javascript,hacktoberfest,learn,collaborate,communityexchange,github-codespaces
2023-04-13T16:21:04Z
2023-11-05T20:31:51Z
null
26
60
138
13
37
28
null
MIT
CSS
ecemgo/mini-samples-great-tricks
main
## <img src="https://user-images.githubusercontent.com/13468728/233831804-0f5c7ee5-d654-4c13-9c77-a5bd6dc4fe74.jpg" title="great tricks" alt="great tricks" width="50" height="50"/> Mini Samples Great Tricks This repository includes some great tricks with mini samples. #### Tools used in samples: ![HTML5](https://img.shields.io/badge/-HTML5-E34F26?style=for-the-badge&logo=html5&logoColor=white)&nbsp; ![CSS3](https://img.shields.io/badge/-CSS3-1572B6?style=for-the-badge&logo=css3)&nbsp; ![JavaScript](https://img.shields.io/badge/Javascript-F7DF1E.svg?style=for-the-badge&logo=javascript&logoColor=black)&nbsp; ![Swiper](https://img.shields.io/badge/swiper%20js-4287F5?style=for-the-badge&logo=swiper&logoColor=white)&nbsp; ![Green Sock](https://img.shields.io/badge/greensock-88CE02?style=for-the-badge&logo=greensock&logoColor=white)&nbsp; ![ScrollReveal](https://img.shields.io/badge/scrollreveal-8B49B8?style=for-the-badge&logo=scrollreveal&logoColor=white)&nbsp; ![Particles JS](https://img.shields.io/badge/particles%20js-10135E?style=for-the-badge&logo=particlejs&logoColor=white)&nbsp; ![tsParticles](https://img.shields.io/badge/tsParticles-262852?style=for-the-badge&logo=particlejs&logoColor=white)&nbsp; ![Chart.js](https://img.shields.io/badge/chart%20js-Cf7C8F?style=for-the-badge&logo=chartjs&logoColor=white)&nbsp; ![Figma](https://img.shields.io/badge/figma-6E12C4.svg?style=for-the-badge&logo=figma&logoColor=white)&nbsp; <!-- ![Sass](https://img.shields.io/badge/-Sass-CC6699?style=for-the-badge&logo=sass&logoColor=white)&nbsp; --> <br> #### Note: These projects can be accessible but it is not meant for unlimited use. Please, do not use them in profit-making platforms and projects without permission. ### Slider | # | Samples | | :-: | :------------------------------------------------------------------------------------------------------------------------------------- | | 01 | [Testimonial Slider](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/testimonial-slider-v1) | | 02 | [Card Effect](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/card-effect) | | 03 | [Neumorphic Slider](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/neumorphic-slider) | | 04 | [Responsive Slider with Scrollbar](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/responsive-slider-with-scrollbar) | | 05 | [Background Slider with The Hero](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/background-slider-with-the-hero) | | 06 | [Slider with Two Different Sidebars](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/slider-with-two-different-sidebars) | | 07 | [Animated Slider](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/animated-slider) | | 08 | [Animated Slider II](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/animated-slider-2) | | 09 | [Cube Effect Slider](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/cube-effect-slider) | | 10 | [Music Player with Slider](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/music-player-with-slider) | <br> ### Cards | # | Samples | | :-: | :--------------------------------------------------------------------------------------------------------------- | | 01 | [Card Hover Effect](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/card-hover-effect) | | 02 | [80s Music Facts - Animated Cards](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/80s-music-fact) | | 03 | [Expanding Cards](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/expanding-cards) | <br> ### Login Form | # | Samples | | :-: | :---------------------------------------------------------------------------------------------------------- | | 01 | [Form Validation](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/clientside-form-validation) | | 02 | [Login Form with Snow](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/login-form-with-snow) | <br> ### Dashboard | # | Samples | | :-: | :-------------------------------------------------------------------------------------------------------------------------------------- | | 01 | [Fitness App Dashboard](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/fitness-app-dashboard) | | 02 | [Responsive Dashboard with Sliders and Music Player](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/music-app-dashboard) | | 03 | [Responsive Dashboard with Doughnut Chart](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/event-dashboard) | <br> ### Landing Page | # | Samples | | :-: | :---------------------------------------------------------------------------------------------------------------------- | | 01 | [Octoberfest Landing Page](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/octoberfest-landing-page) | | 02 | [Mentorship Landing Page](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/mentorship-landing-page) | | 03 | [Retrobeats Landing Page](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/retrobeats-landing-page) | | 04 | [Responsive macOS Style Portfolio](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/macos-style-portfolio) | <br> ### Parallax Effect | # | Samples | | :-: | :----------------------------------------------------------------------------------------------------- | | 01 | [Parallax Effect](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/parallax-effect) | | 02 | [Halloween Parallax](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/halloween-parallax) | <br> ### Scroll Animation | # | Samples | | :-: | :----------------------------------------------------------------------------------------------------------------------- | | 01 | [Collage Art - Scroll Animation and Lightbox](https://github.com/ecemgo/mini-samples-great-tricks/tree/main/collage-art) |
This repository includes mini samples by using some CSS animations and JS libraries such as sliders, dashboards, landing pages and login forms. You can find more from my CodePen profile.
codepen,html-css-javascript,javascript,mini-project,css,animation,slider,responsive,responsive-design,greensock
2023-04-19T20:21:52Z
2024-05-15T12:12:12Z
null
1
0
438
0
7
28
null
null
HTML
filecoin-project/fevm-data-dao-kit
main
# FEVM-Data-DAO-Kit This is a beta kit to demo how to build a basic Decentralized Autonomous Organization (DAO) on Filecoin. ## About This Repo Start out in the "hardhat" directory and follow the readme there to begin deploying and interacting with contracts. Then go to the "frontend" directory to run an example frontend!
A kit to demonstrate the basics of getting a DataDAO up and running on the Filecoin Virtual Machine (FVM).
dao,filecoin,javascript,solidity
2023-04-17T15:53:17Z
2023-10-18T13:31:21Z
null
20
25
18
2
13
27
null
MIT
JavaScript
symfony/ux-svelte
2.x
# Symfony UX Svelte Symfony UX Svelte integrates [Svelte](https://svelte.dev/) into Symfony applications. It provides tools to render Svelte 3 components from Twig. **This repository is a READ-ONLY sub-tree split**. See https://github.com/symfony/ux to create issues or submit pull requests. ## Resources - [Documentation](https://symfony.com/bundles/ux-svelte/current/index.html) - [Report issues](https://github.com/symfony/ux/issues) and [send Pull Requests](https://github.com/symfony/ux/pulls) in the [main Symfony UX repository](https://github.com/symfony/ux)
Integration of Svelte in Symfony
javascript,symfony,symfony-ux,ux
2023-04-17T15:04:56Z
2024-04-19T06:36:45Z
null
13
0
34
0
0
25
null
MIT
PHP
nishatrhythm/Responsive-Animated-and-Colourful-Portfolio
main
# Responsive Animated and Colourful Portfolio <figure> <figcaption>Website View (on desktop screen)</figcaption> <img src="images/website.gif" alt="Website View" width="700"> </figure> <figure> <figcaption>Screenshot 1 (on desktop screen)</figcaption> <img src="images/Screenshot_1.png" alt="Screenshot 1" width="700"> </figure>
Simple responsive animated portfolio website using HTML, CSS and JavaScript.
animated-website,css,html,javascript,portfolio
2023-04-18T17:36:12Z
2023-05-27T16:35:28Z
null
1
1
13
0
16
25
null
MIT
CSS
SatyaRajAwasth1/bloggingSite
main
# bloggingSite A fully responsive full stack dynamic blogging site with java jsp, servlet, ajax, bootstrap and mysql as database. Where anyone can signup, login, react and write read blog posts. ### You are open to contribute proceed to [CONTRIBUTE.md](https://github.com/SatyaRajAwasth1/bloggingSite/blob/main/CONTRIBUTE.md) before sending a PR. ![Landing Home Page](https://user-images.githubusercontent.com/77236280/230829516-7acf451b-f736-4998-8e30-c7ab72b6bd04.png) ![Profile Page](https://user-images.githubusercontent.com/77236280/230829271-dae76463-05f2-4768-8365-756798db3af0.png) ![Login Page](https://user-images.githubusercontent.com/77236280/230829055-d8abb62d-af35-4b4a-bf82-a7fe5fd71ba3.png) ![Signup Page](https://user-images.githubusercontent.com/77236280/230829119-a3929aff-67e5-4bf2-b862-d1ef4a9c2894.png) ## Contributors <a href="https://github.com/SatyaRajAwasth1/bloggingSite/graphs/contributors"> <img src="https://contrib.rocks/image?repo=SatyaRajAwasth1/bloggingSite"/> </a>
A blogging site with java jsp, servlet, ajax, bootstrap and mysql as database. Where anyone can signup, login, react and write read blog posts.
ajax,blogging-site,jakarta-ee,jsp,mysql,servlet,bootstrap,java,javascript
2023-04-10T04:54:17Z
2023-05-31T01:54:28Z
null
1
3
26
0
3
24
null
null
Java
thecodophile/PlayTube
master
<div align="center"> <h1><strong>PlayTube</strong> - watch share & enjoy</h1> <h2> <a href="https://playtube-eight.vercel.app/">Live Project Link</a> </h2> <div align="center"> <a href="https://playtube-eight.vercel.app/"> <img alt="Mockup" src="https://user-images.githubusercontent.com/108585532/234017327-dfcc7374-71a3-4b5b-ae9c-299012e76792.png" /> </a> </div> <br/> <P>Welcome to PlayTube, a video streaming platform built using <strong>React</strong>, <strong>Tailwind CSS</strong> and <strong>YouTube's public API</strong>. With PlayTube, you can watch your favorite videos in a user-friendly interface, without any distractions. PlayTube offers seamless video playback, easy video discovery, and a simple user interface. Get started today and discover a world of video content at your fingertips!</p> </div> --- ## Features 📋 ⚡️ Browse videos using the left navigation bar video categories\ ⚡️ Search for videos using the search bar\ ⚡️ Play videos with full controls, just like YouTube\ ⚡️ Get suggested video lists during video playback\ ⚡️ Beautiful UI to notify users of internet connection interruptions\ ⚡️ Seamless redirection to the page upon internet connection resumption\ ⚡️ Fully responsive design to ensure compatibility with all devices\ ⚡️ PlayTube's Shimmer UI effect adds a subtle, eye-catching animation that lets users know when content is loading, enhancing the overall user experience and making it more visually appealing.\ ⚡️ PlayTube comes with a Light and Dark mode feature. This feature automatically matches the user's browser theme preference upon loading, with the option to toggle between modes at any time for a personalized viewing experience. ## Pages 📚 ✔️ Home\ ✔️ video\ ✔️ searchResult ## Frameworks & Libraries used 📚 `ReactJS` `Tailwind CSS` `tailwindcss/line-clamp` `react-router-dom` `axios` `js-abbreviation-number` `moment` `react-icons` `react-player` ## Usage 🍕 To use this project, follow these steps: 1. Clone the repository. 2. Install the dependencies using `npm install`. 3. Now go to the Rapid API website. Type "youtube" and search, then among the all result choose the api named `"YouTube"`, only "YouTube". That is a Freemium and Verified api. 4. Subscribe that api and copy the api key. 5. Create a `.env` file in the root directory and add your YouTube API key as `REACT_APP_YOUTUBE_API_KEY=<your-api-key>`. 6. Start the development server using `npm start`. 7. Open your web browser and navigate to `http://localhost:3000`. ⭐ Star this repo on GitHub — it helps!
PlayTube is a user-friendly video streaming platform with full playback controls, which I built using my ReactJS, Tailwind CSS and API based data handling skills.
context-api,javascript,rapidapi,react-router-dom,reactjs,tailwind-css,youtube-clone-react
2023-04-20T09:22:12Z
2023-04-29T18:08:20Z
null
1
0
31
1
7
24
null
null
JavaScript
zw12579/gantt-planing-react
main
<p align="center"> <a href="http://www.bimcc.com/"> <img width="30%" src="./images/feichuan.png" > </a> </p> <p align="center"> <strong style="font-size: 24px">飞椽4合一网络图引擎(更懂工程人的进度引擎)-- Gantt图+时标网络图+双代号(箭线图)+PERT图(单代号前导图),更直观便捷的让您随时随地掌控项目进度,给您不一样的进度管理体验</strong> </p> <p align="center"> <a target="_blank" href="https://baike.baidu.com/item/MIT%E8%AE%B8%E5%8F%AF%E8%AF%81/6671281?fr=aladdin"> <img src="https://img.shields.io/:license-MIT-blue.svg" /> </a> <a target="_blank" href="https://react.zcopy.site/"> <img src="https://img.shields.io/badge/React%2BTS-v18%20v4.5-blue.svg" /> </a> <a target="_blank" href="https://react.zcopy.site/"> <img src="https://img.shields.io/badge/rating-%E2%98%85%E2%98%85%E2%98%85%E2%98%85%E2%98%85-brightgreen" /> </a> </p> <p align="center"> <a href="https://gantt.bimcc.net/" target="_blank">在线演示</a> &nbsp;| <a href="http://www.bimcc.com/" target="_blank">飞椽零代码</a>&nbsp;| <a href="https://gantt.bimcc.net/network-diagram" target="_blank">4合一引擎演示</a>&nbsp;| <a href="https://gitee.com/zw12579/gantt-planing-network" target="_blank">码云仓库</a>&nbsp;| <a href="https://github.com/zw12579/gantt-planing-react" target="_blank">Github仓库</a> </p> ### 特别说明 - 开源不易,如蒙青睐,希望您动动发财的小手点点Star,以下功能源码正逐步开放中,谢谢 - 提供案例代码及API文档,提供React与Vue (NPM包)插件安装 - 4合一网络图交流学习群: 451367009 欢迎大家一起交流学习,作者QQ:1257956488 - 飞椽零代码平台请访问 www.bimcc.com ©重庆市筑云科技有限责任公司 **023-68682379** ### 功能速览 - - [x] 完美兼容Project数据标准,支持project数据导入导出、PNG、PDF导出 - - [x] 任意自主设计网络图、节点拖动、箭线调整等、一键逆向生成Gantt图、时标网络图、双代号、PERT图 - - [x] 任务自定义告警等级颜色以及告警规则 - - [x] 无限级任务树,支持大量数据虚拟滚动加载优化 - - [x] 自定义网络图样式(一键换肤、内置多套皮肤) - - [x] 日、周、月、季、年、时六级切换 - - [x] 进度bar任务概览 - - [x] 基线对比,实际与计划进度对比,预计提前与滞后工程量计算 - - [x] 进度计划拖拽调整、前置后置连线联动 - - [x] 里程碑标识节点 - - [x] 自定义字段,任务字段宽度拖拽调整 - - [x] 任务栏与进度栏区域调整,任务栏显示隐藏 - - [x] 自动生成WBS字段 - - [x] 灵活的事件扩展机制 - - [x] 前置后置关系(SS、SF、FS、FF) - - [x] 周六日非工作时间标识 - - [x] 日期进度调整联动修改 - - [x] 任务快捷添加、编辑、升级、降级、删除(Tab、Enter、DELETE) - - [x] 进度检查点标记线 - - [x] 检查点进度前锋线 - - [x] 关键路径自动计算(甘特图、时标、单双代号),关键路径特殊颜色标识 - - [x] 任务进度S曲线 - - [x] 人、机、资源分配及消息提醒 - - [x] 甘特图、时标网络图、单代号(前导图、PERT图、七格图)、双代号(箭线图) - - [x] 4合一引擎,数据互通无缝切换 - - [x] 日历任务待办视图转换(日程转化) ### 案例截图 <p align="center"> <a href="https://gantt.bimcc.net/"> <img width="100%" src="./images/gantt-3.png" > </a> <a href="https://gantt.bimcc.net/"> <img width="100%" src="./images/gantt-2.png" > </a> <a href="https://gantt.bimcc.net/"> <img width="100%" src="./images/gantt-7.png" > </a> <a href="https://gantt.bimcc.net/"> <img width="100%" src="./images/gantt-6.png" > </a> <a href="https://gantt.bimcc.net/"> <img width="100%" src="./images/gantt-8.png" > </a> <a href="https://gantt.bimcc.net/"> <img width="100%" src="./images/gantt-9.png" > </a> <a href="https://gantt.bimcc.net/"> <img width="100%" src="./images/pert-1.png" > </a> <a href="https://gantt.bimcc.net/"> <img width="100%" src="./images/gantt-5.png" > </a> <a href="https://gantt.bimcc.net/"> <img width="100%" src="./images/gantt-1.png" > </a> <a href="https://gantt.bimcc.net/"> <img width="100%" src="./images/gantt-4.png" > </a> </p> ### 发布计划 | 版本 | 功能说明 | 计划日期 | | ---- | ------------------------------------------------------------ | ----------------------- | | V1.0 | 开源版:甘特图(工具栏功能)、接口文档、Vue/React NPM插件 | 2023-07-20 | | V2.0 | 标准版:Gantt图 + PERT网络图(单代号-七格图) | 2023-08-20 | | V3.0 | 专业版:4合一网络图引擎 - Gantt图+时标网络图+双代号+PERT | 2023-08-30 - 2023-09-30 | | V4.0 | 小微版:Gantt图、时标网络图、双代号网络图、PERT图(单版本授权) | 2023-08-30 - 2023-09-30 | - V1.0版本发布计划 - 甘特图:自定义任务标题栏显示字段 - 甘特图:任务标题栏宽度拖拽 - 甘特图:任务栏数据行内编辑 - 甘特图:任务栏拖动调整顺序,升级降级 - 甘特图:任务栏无限级、任务横道展开收起联动 - 甘特图:WBS任务自动编码 - 甘特图:任务栏/横道图显示隐藏,分割面板左右拖动改变宽度 - 甘特图:日、周、月、年4级切换 - 甘特图:快捷键:Enter 新增一行数据 - 甘特图:快捷键:Shift+Tab 升级 Tab 降级 - 甘特图:快捷键:Ctrl + Z、X、C、V 撤销、剪切、复制、粘贴 - 甘特图:快捷键:Ctrl + D、Delete删除 - 甘特图:鼠标移入横道任务气泡概览 - 甘特图:大数据无卡顿虚拟滚动 - 甘特图:鼠标长按画布移动画布 - 甘特图:自动保存、历史版本选择 - 甘特图:双击任务栏定位 - 甘特图:项目、任务、里程碑 - 甘特图:实际进度拖拽 - 甘特图:横道自由拖拽(任务日期联动修改) - 甘特图:甘特图事件回调扩展 - 甘特图:API文档与示例代码演示 - 甘特图:Vue3/React npm插件 - V2.0版本发布计划 - 甘特图:快捷工具栏(升级降级,自动、手动任务,上下移动,任务、里程碑新增,版本选择,检查线、前锋线、进度曲线等快捷按钮) - 甘特图:MPP文件导入 - 甘特图:检查点标记线 - 甘特图:进度前锋线 - 甘特图:连线拖拽 - 甘特图:非工作日标识 - 甘特图:SF、SS、FS、FF依赖关系 - 甘特图:进度S曲线 - 甘特图:关键路径、关键路径动画模拟 - 甘特图:进度模拟播放 - 甘特图:预估完成时间计算 - 甘特图:预计提前与滞后工期计算 - 甘特图:基线计划对比 - 甘特图:自定义任务颜色 - 甘特图:多套样式切换,一键换肤 - 甘特图:自定义告警规则 - 甘特图:Project(MPP文件)导出、PDF导出、Excel(XML)导入导出 - PERT图:PDF导出、PNG图片导出 - PERT图:甘特图+PERT图相互转换 - PERT图:最早开始、最早完成、最晚开始、最晚完成、持续时间、自由活动时间、总浮动时间 - PERT图:PERT关键路径标识 - PERT图:节点拖动、拖拽连线 - V3.0版本发布计划 - 4合一网络图:授权管理,鉴权验证,授权续签等 - 4合一网络图:在线协同,实时共享协作与互动讨论,IM协同 - 4合一网络图:快捷工具栏,功能升级扩展 - 4合一网络图:任务栏分组(按人员、自定义字段) - 4合一网络图:网络图模板 - 4合一网络图:工序节点自由拖拽新增 - 4合一网络图:首尾节点拖动,连线,同步修改依赖关系与日期(XY坐标) - 4合一网络图:布局算法优化,虚活动与实活动连线重合,设置偏移量 - 4合一网络图:网络图鼠标左键长按移动网络图画布 - 4合一网络图:选中左侧任务,定位并选中双代号连线 - 4合一网络图:网络图ctrl+鼠标滚动放大缩小网络图 - 4合一网络图:框选选中任务及连线(左右选中同步并定位) - 4合一网络图:选中连线上下左右移动,调整连线拐点 - 4合一网络图:网络图打印设置,导入导出(图片、PDF、MPP) - 4合一网络图:右键菜单操作(网络图样式、图注、特殊格式) - 4合一网络图:父子级包含色块标识,层级横道分组(类斑马进度分组方式) - 4合一网络图:Ctrl+F 弹出输入框查找并定位任务,查找结果特殊颜色标注 - 4合一网络图:Ctrl+R 弹出替换输入框,任务名称替换,查找结果特殊颜色标注 ———————————————————————————————————————————— - 4合一网络图:网络图本地打开,本地化保存,定义数据标准后缀名(迭代升级计划) - 4合一网络图:网络图制图说明(类似CAD)(迭代升级计划) - 4合一网络图:网络图资源管理面板视图(迭代升级计划) - 4合一网络图:工程标尺(时标刻度)优化(按网络图比例缩小或放大刻度)智能调图(迭代升级计划) - 4合一网络图:节点连线交叉点桥洞线处理(迭代升级计划) - 4合一网络图:日历、日程任务视图切换(迭代升级计划) - 4合一网络图:移动端兼容,手机看图(迭代升级计划) - 4合一网络图:多端跨平台兼容,客户端、APP(迭代升级计划) - V4.0 单版本授权发布计划 - 甘特图:单独商用授权的全功能版甘特图 - 时标网络图:单独商用授权的全功能版时标网络图 - 双代号网络图:单独商用授权的全功能版双代号网络图 - 单代号(PERT)网络图:单独商用授权的全功能版单代号(PERT)网络图 - 4合一网络图:自由选择,多种组合(二合一、三合一自由组合) ### PS:飞椽零代码平台 <p> <strong style="font-size: 16px;line-height:35px;">&nbsp;&nbsp;&nbsp;&nbsp;飞椽云-泛工程零代码平台是面向建设工程领域基于项企协同管理体系的信息系统数字化、智能化建设的一站式全场景落地的解决方案。平台结合SaaS、PaaS、IaaS系统(既是软件也是服务更是基础设施)的技术发展新趋势及应用新场景,融合工程建设企业与项目的行业特点打造,是一个具有项企联动体系的多层级架构,垂直行业软件应用体系、多方协同的BIMGIS + AIoT 一体化系统。系统采用平台化设计、网络化协同、个性化定制、服务化延伸,贯通工程制造领域全场景、全过程、基于数据的集成化应用落地。具有包含流程引擎、BIMGIS引擎、表格引擎、甘特图网络图引擎等10大自主引擎及物联网中台、数据中台所形成的10+2能力架构,通过10+2能力架构可覆盖工程行业绝大部分的项目管理的数字化转型基座能力要求。通过该平台无代码、可视化的效率特性,以业务需求为导向,数据驱动为核心,网络化协同为辅助,以价值驱动为目标,敏捷地帮助企业和项目打造如数字建造系统、项目管理系统、智慧工地系统、BIMGIS协同系统、工程数字孪生系统、智能运维系统、企业级业务管理(生产、安全、技术质量等)系统等,并基于灵活的基础库能力,适应建筑工程、市政工程、道路交通工程、水运工程、水利工程等多类型工程领域,帮助用户以低成本、短周期、高效率的方式实现各类数字化应用。</strong> </p> #### 10大引擎+2个中台 - 元数据建模(数据智仓)引擎 - 无代码页面渲染引擎(常规页面、APP/H5、大屏、工作台图表) - BIMGIS数字孪生引擎 - 表单引擎 - 流程引擎 - 逻辑蓝图&ETL视图引擎 - 数据表格引擎(自研在线Excel) - 360°全景引擎(低延时全景直播) - 任务自动化引擎 - 飞椽4合一网络图引擎(Gantt图+时标网络图+双代号+PERT图) - 数据中台(元数据、数据仓湖一体、数据治理、数据集、数据服务、数据质量) - 物联网中台(常见物联网协议、TCP/IP自定义协议、MQTT、数据转发) <p align="center"> <a href="https://www.bimcc.com/"> <img width="100%" src="./images/image-1.png" > </a> <br/> <a href="https://www.bimcc.com/"> <img width="100%" src="./images/image-2.png" > </a> <br/> <a href="https://www.bimcc.com/"> <img width="100%" src="./images/image-3.png" > </a> <br/> <a href="https://www.bimcc.com/"> <img width="100%" src="./images/image-4.png" > </a> <br/> <a href="https://www.bimcc.com/"> <img width="100%" src="./images/image-5.png" > </a> <br/> <a href="https://www.bimcc.com/"> <img width="100%" src="./images/image-6.png" > </a> <br/> <a href="https://www.bimcc.com/"> <img width="100%" src="./images/image-7.png" > </a> </p>
飞椽4合一网络图引擎(更懂工程人的进度引擎)- Gantt图、时标网络图、双代号(箭线图)、单代号(前导图)
react,typescript,javascript,gantt,gantt-chart,gantt-diagram,network-diagram,planning,schedule,schedule-tasks
2023-04-11T03:53:18Z
2023-07-26T09:19:32Z
null
1
0
17
0
2
23
null
MIT
TypeScript
P5-wrapper/next
master
# @P5-wrapper/next ![@P5-wrapper/next](https://socialify.git.ci/p5-wrapper/next/image?description=1&font=Rokkitt&forks=1&issues=1&language=1&logo=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2F8%2F8e%2FNextjs-logo.svg&name=1&owner=1&pattern=Floating%20Cogs&pulls=1&stargazers=1&theme=Auto) > **Note:** > > This library simply re-exports the [@P5-wrapper/react (react-p5-wrapper) component](https://github.com/P5-wrapper/react) as a NextJS dynamic component. Nothing more. > > For more in-depth information on the base component, check the documentation via [the @P5-wrapper/react (react-p5-wrapper) docs](https://github.com/P5-wrapper/react). ## Installation To install the component, run the following: ```shell [npm|yarn|pnpm] [install|add] @p5-wrapper/next @p5-wrapper/react ``` ## Usage Then to use the component in your NextJS project you can simply import like so: ```tsx import React from "react"; import { type Sketch } from "@p5-wrapper/react"; import { NextReactP5Wrapper } from "@p5-wrapper/next"; const sketch: Sketch = (p5) => { p5.setup = () => p5.createCanvas(600, 400, p5.WEBGL); p5.draw = () => { p5.background(250); p5.normalMaterial(); p5.push(); p5.rotateZ(p5.frameCount * 0.01); p5.rotateX(p5.frameCount * 0.01); p5.rotateY(p5.frameCount * 0.01); p5.plane(100); p5.pop(); }; }; export default function Page() { return <NextReactP5Wrapper sketch={sketch} />; } ```
A NextJS specific library for the @P5-Wrapper/react project.
javascript,react,typescript,component,animation,creative-coding,graphics-programming,nextjs,p5,sketches
2023-04-19T11:47:41Z
2024-04-30T06:52:09Z
2024-04-08T11:29:51Z
3
42
49
0
2
23
null
MIT
TypeScript
unyt-org/uix
uix-new
<img alt="UIX - The Fullstack Framework" src="./src/logos/banner.svg" style="max-width:400px"> [uix.unyt.org](https://uix.unyt.org) &nbsp;&nbsp;&nbsp;•&nbsp;&nbsp;&nbsp; a unyt.org project -------------------------- ## What is UIX? UIX is an open-source full-stack framework for developing reactive web apps with *restorable and shared state*. UIX runs on a [deno](https://docs.deno.com/runtime/manual) backend and supports both *single- and multi page* applications with frontend or server-side rendering and hydration. The [DATEX JavaScript Library](https://docs.unyt.org/manual/datex/introduction) acts as the backbone of UIX, providing useful functionality such as *reactivity and cross-device data exchange*. In contrast to frameworks like React, UIX provides *direct wiring* to the DOM for reactivity and does not need a virtual DOM. There are many ways to create UIX applications: * using the **TypeScript UIX Library** and JSX (focus of the documentation) * defining UIX states with **DATEX** * using the **UIX Web Editor** (still in development) The UIX library is designed with a modular approach that makes it easy for developers to add custom components and logic as needed. **Main features** * [Cross-network reactivity](./docs/manual/02%20Cross-Realm%20Imports.md#Reactivity) * [Server side rendering with partial hydration](./docs/manual/08%20Rendering%20Methods.md) * [Hybrid backend/frontend routing](./docs/manual/05%20Entrypoints%20and%20Routing.md) * [Cross-realm imports](./docs/manual/02%20Cross-Realm%20Imports.md) * [Shared memory](./docs/manual/02%20Cross-Realm%20Imports.md#Synchronization) * [JSX support](./docs/manual/03%20JSX.md) * [Reusable web components](./docs/manual/04%20Components.md) * [And many more](https://uix.unyt.org)... UIX aims to simplify all phases of the app development cycle, including design, development, testing and distribution, in order to make the developer experience as convenient as possible. This is why UIX ships with integrated features such as: * Hot reloading * [Testing library](https://github.com/unyt-org/unyt-tests/) * [Stage management](./docs/manual/09%20Configuration.md#app-deployment-stages) * Version management * [Automated deployment](./docs/manual/15%20Deployment.md) ## Documentation > [!NOTE] > You can find all [UIX](https://uix.unyt.org) documentation and resources on [docs.unyt.org](https://docs.unyt.org). > Please be aware that the documentation is work in progress and may change in the future. 1. [Getting Started](./docs/manual/01%20Getting%20Started.md) 2. [Imports](./docs/manual/02%20Cross-Realm%20Imports.md) 3. [JSX](./docs/manual/03%20JSX.md) 4. [Components](./docs/manual/04%20Components.md) 5. [Entrypoints and Routing](./docs/manual/05%20Entrypoints%20and%20Routing.md) 6. [Component States](./docs/manual/06%20Component%20States.md) 7. [Persistent Contexts](./docs/manual/07%20Persistent%20Contexts.md) 8. [Rendering Methods](./docs/manual/08%20Rendering%20Methods.md) 9. [Configuration](./docs/manual/09%20Configuration.md) 10. [Localization](./docs/manual/10%20Localization.md) 11. [Functions and Contexts](./docs/manual/11%20Functions%20and%20Contexts.md) 12. [Styles and Themes](./docs/manual/12%20Styles%20and%20Themes.md) 13. [Shadow DOM](./docs/manual/13%20Shadow%20DOM.md) 14. [Utility Functions](./docs/manual/14%20Utility%20Functions.md) 15. [Deployment](./docs/manual/15%20Deployment.md) 16. [HTTP Tunneling](./docs/manual/16%20HTTP%20Tunneling.md) 17. [Plugins](./docs/manual/17%20Plugins.md) 18. [Guide](./docs/manual/18%20Guide.md) 19. [Rendering](./docs/manual/19%20Rendering.md) 20. [App Communication](./docs/manual/20%20App%20Communication.md) ## Examples Feel free to browse a collection of UIX projects on [uix.unyt.org/templates](https://uix.unyt.org/templates). * [UIX Base Project](https://github.com/unyt-org/uix-base-project) * [UIX Base Project + Routing](https://github.com/unyt-org/uix-base-project-routing) * [UIX Base Project + Login](https://github.com/unyt-org/uix-login-project) * [Localization](https://github.com/unyt-org/example-localization) * [Simple Messenger](https://github.com/unyt-org/example-simple-messenger) * [Shopping List](https://github.com/unyt-org/example-shared-list) * [Website Screenshot Tool](https://github.com/unyt-org/example-website-screenshot) * [Tic-Tac-Toe](https://github.com/unyt-org/example-tic-tac-toe) * [Weather App](https://github.com/unyt-org/example-weather-app) * [Artwall](https://github.com/unyt-org/example-artwall) * [Video Call](https://github.com/unyt-org/example-video-call) ## Browsers support | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png" alt="Chrome" width="24px" height="24px" />](http://gotbahn.github.io/browsers-support-badges/)</br>Chrome | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt="Edge" width="24px" height="24px" />](http://gotbahn.github.io/browsers-support-badges/)</br>Edge | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png" alt="Firefox" width="24px" height="24px" />](http://gotbahn.github.io/browsers-support-badges/)</br>Firefox | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png" alt="Safari" width="24px" height="24px" />](http://gotbahn.github.io/browsers-support-badges/)</br>Safari | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari-ios/safari-ios_48x48.png" alt="iOS Safari" width="24px" height="24px" />](http://gotbahn.github.io/browsers-support-badges/)</br>iOS Safari | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/samsung-internet/samsung-internet_48x48.png" alt="Samsung" width="24px" height="24px" />](http://gotbahn.github.io/browsers-support-badges/)</br>Samsung | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/opera/opera_48x48.png" alt="Opera" width="24px" height="24px" />](http://gotbahn.github.io/browsers-support-badges/)</br>Opera | | --------- | --------- | --------- | --------- | --------- | --------- | --------- | | Chrome 94+ | Edge 104+ | Firefox 94+ | Safari 15.5+ | Safari 16+ | *unknown* | *unknown* ## UIX DOM The UIX full-stack framework is built on top of [UIX DOM](https://github.com/unyt-org/uix-dom), a standalone library that allows you to define reactive DOM elements on the frontend and backend. The full-stack UIX framework provides many more features, but if you just need a basic reactive DOM library, you can take a look at UIX DOM. ## Contributing We welcome every contribution!<br> Please take a look at the [development guidelines](./DEVELOP.md) and the unyt.org [contribution guidlines](https://github.com/unyt-org/.github/blob/main/CONTRIBUTING.md). ## Connect with us ![https://unyt.org/discord](https://dcbadge.vercel.app/api/server/qJwsRRqezy) **Check out our [Blog](https://unyt.blog)!** ## Contributors ✨ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --> <!-- prettier-ignore-start --> <!-- markdownlint-disable --> <table> <tbody> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/benStre"><img src="https://avatars.githubusercontent.com/u/35869401?v=4?s=100" width="100px;" alt="Benedikt Strehle"/><br /><sub><b>Benedikt Strehle</b></sub></a><br /><a href="https://github.com/unyt-org/uix/issues?q=author%3AbenStre" title="Bug reports">🐛</a> <a href="#content-benStre" title="Content">🖋</a> <a href="https://github.com/unyt-org/uix/commits?author=benStre" title="Documentation">📖</a> <a href="#design-benStre" title="Design">🎨</a> <a href="#ideas-benStre" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-benStre" title="Maintenance">🚧</a> <a href="https://github.com/unyt-org/uix/commits?author=benStre" title="Tests">⚠️</a> <a href="#projectManagement-benStre" title="Project Management">📆</a> <a href="https://github.com/unyt-org/uix/commits?author=benStre" title="Code">💻</a></td> <td align="center" valign="top" width="14.28%"><a href="https://unyt.org"><img src="https://avatars.githubusercontent.com/u/27917349?v=4?s=100" width="100px;" alt="Jonas Strehle"/><br /><sub><b>Jonas Strehle</b></sub></a><br /><a href="#design-jonasstrehle" title="Design">🎨</a> <a href="https://github.com/unyt-org/uix/commits?author=jonasstrehle" title="Code">💻</a> <a href="https://github.com/unyt-org/uix/commits?author=jonasstrehle" title="Documentation">📖</a> <a href="#ideas-jonasstrehle" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-jonasstrehle" title="Maintenance">🚧</a></td> </tr> </tbody> </table> <!-- markdownlint-restore --> <!-- prettier-ignore-end --> <!-- ALL-CONTRIBUTORS-LIST:END --> This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! --- <sub>&copy; unyt 2024 • [unyt.org](https://unyt.org)</sub>
The UIX Framework
framework,fullstack,javascript,typescript,web,uix,deno,unyt
2023-04-13T15:37:50Z
2024-05-07T06:09:00Z
2024-04-24T15:51:28Z
7
43
935
52
2
22
null
MIT
TypeScript
visnkmr/netspeed_pc
main
[![Github All Releases](https://img.shields.io/github/downloads/visnkmr/netspeed_pc/total.svg)]() # Netspeed Monitor Netspeed is a cross-platform desktop application that shows the live upload speed, download speed and day's usage as an overlay. ![Screenshot](/screenshot.jpg?raw=true) ## Features - Displays the current upload and download speed as an overlay - Shows the total data usage for the day, updates every minute - Supports Windows, Linux, and macOS - Lightweight and easy to use ## Installation To install Netspeed on your system, follow these steps: - Download the latest release from the [releases page](/releases) for your platform. - Run the executable file downloaded as per your OS. - Optionally, you can create a shortcut or add the executable to your startup folder for convenience. ## Usage To use Netspeed , simply run the executable file and you will see an overlay open in a window with a close and minimise option either side of upload speed, download speed, day's usage. ## Contributing Netspeed is an open source project and welcomes contributions from anyone who wants to improve or extend it. Please read the [contributing guide](/CONTRIBUTING.md) for more details on how to get started. If you find a bug or have a feature request, please open an issue on [GitHub](/issues). If you have any questions or feedback, please contact the [author](https://github.com/visnkmr). ## License Netspeed is licensed under the [MIT License](/LICENSE). This means you can use, copy, modify, and distribute it as long as you give credit to the original author and include the license notice.
Monitor live bandwidth usage/ network speed on PC. Native version also available for Android, separately.
javascript,linux,mac,netspeed,rust,tauri,typescript,windows
2023-04-19T11:56:17Z
2024-02-27T07:01:03Z
2023-04-24T09:14:27Z
1
2
28
1
1
21
null
MIT
Rust
Salimer/RLCS-event-landing-page
main
<a name="readme-top"></a> <div align="center"> <img src="murple_logo.png" alt="logo" width="140" height="auto" /> <br/> <h1><b>Welcome to my project 😃</b></h1> </div> <div align="center"> <br/> <h1 align="center">Rocket League Championship Series 22-23 event landing page</h1> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🤯 Walk through video ](#walk-through) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [❓ FAQ (OPTIONAL)](#faq) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 [RLCS event landing page] <a name="about-project"></a> **RLCS event webpage** is a project to market, sell tickets and more about a hypotetical event of Rocket League. This project is adaptable for other topics, [check out this loom recording.](https://www.loom.com/share/0d02cb2c31d24d74adf57b188ad122bd) ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://www.w3.org/TR/2011/WD-html5-20110405/">HTML5</a></li> <li><a href="https://www.w3.org/Style/CSS/specs.en.html">CSS</a></li> <li><a href="https://www.ecma-international.org/publications-and-standards/standards/ecma-262/">JavaScript</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **Landing Page for activities** - **Mobile first development** - **Responsiveness and flexibility for any screen size** - **Fast access to social media and other ways of contact** - **Easy to the eyes and cultivating at the same time** - **Dynamic creation of content** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- WALKTHROUGH --> ## 🤯 Walk through video <a name="walk-through"></a> - [here](https://www.loom.com/share/30859eeefe9d40118a82014368ebd457) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link](https://salimer.github.io/RLCS-event-landing-page/) <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: - Clone this repo as described in the setup section. - Make modifications as peferred ### Prerequisites In order to run this project you need: To clone or fork and run it in a browser ### Setup Clone this repository to your desired folder: Example commands: ```sh cd my-folder git clone https://github.com/Salimer/RLCS-event-template.git cd Portfolio ``` using Ubuntu: ```sh cd my-desired-folder git clone https://github.com/Salimer/RLCS-event-template.git ``` For more information on how to clone or fork a repository: - <a href="https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository">How to clone a repo</a> - <a href="https://docs.github.com/en/get-started/quickstart/fork-a-repo">How to fork a repo</a> ### Install There is no installation required. ### Usage To run the project, open with **index.html** with any web browser. For example, for Google Chrome with Ubuntu: ```sh cd RLCS-event-template google-chrome index.html ``` ### Run tests There are no test available for this project. ### Deployment To deploy this project, use any web hosting service. This project is deployed using [GitHub Pages](https://pages.github.com/). Go to [🚀 Live Demo](#live-demo) to check it out. <p align="right">(<a href="#readme-top">back to top</a>)</p> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Author <a name="authors"></a> 👤 **Salim Bamahfoodh** - GitHub: [@Salimer](https://github.com/Salimer) - LinkedIn: [Salim Bamahfoodh](https://www.linkedin.com/in/salim-bamahfoodh-707b74200/) - Youtube: [Salim Bamahfoodh](https://www.youtube.com/channel/UCGKq9eJQY2qTKRfDDbMOUyA) <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> Future changes: - improve slider responsiveness - Add more webpages such as Tickets Page and Schedule Page. <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> Give a ⭐️ if you like this project! <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> - Templete used in project provided by (Microverse). - Original design idea by [Cindy Shin in Behance](https://www.behance.net/adagio07). <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FAQ (optional) ## ❓ FAQ (OPTIONAL) <a name="faq"></a> > Add at least 2 questions new developers would ask when they decide to use your project. - **[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](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
RLCS landing page is a project to market, sell tickets and more about a hypotetical event of Rocket League. The featured teams section shows full dynamic elements created using javascript in the desktop version. while only shows 2 elements and a user can click on see more to expand the list. Built with Bootstrap, CSS and JavaScript.
bootstrap,css,javascript
2023-04-17T07:48:32Z
2023-05-08T12:49:23Z
null
1
2
83
0
0
21
null
MIT
CSS
semicognitive/sveltekit-modal-stablediffusion
main
<img width="1676" alt="Xnapper-2023-04-15-23 13 16" src="https://user-images.githubusercontent.com/20548516/232266073-e7cbe1b1-6af1-48a9-92b7-08e8f3a80a30.png"> # sveltekit-modal-stablediffusion Built for ***Intelligent Svelte***. An example SvelteKit project using https://github.com/semicognitive/sveltekit-modal, showing how easy it is to write Python endpoints in SvelteKit. ## This example - Includes a frontend written in [TailwindCSS](https://tailwindcss.com) - Has a `api/prompt` endpoint which takes a prompt, and generates and image with Stable Diffusion!! Written in Python with [Stable Diffusion](https://github.com/CompVis/stable-diffusion)
An example SvelteKit project using sveltekit-modal, with a Python server endpoint written with stable diffusion.
javascript,ai,python,stable-diffusion,svelte,sveltekit,typescript
2023-04-16T04:07:40Z
2023-04-17T20:12:50Z
null
1
0
7
0
2
19
null
null
JavaScript
ZiuChen/JSRunner
main
# JSRunner [⭐️ 主页 | WebSite](https://ziuchen.github.io/project/JSRunner/) [🕶️ 在线体验 | Online](https://ziuchen.github.io/JSRunner/) [🚚 更新日志 | Changelog](https://ziuchen.github.io/project/JSRunner/log/) - ✅ Run JavaScript code to quickly verify code logic - ✅ Support switching NodeJS/browser operating environment - ✅ `Ctrl/Command+R` Quickly run code - ✅ `Ctrl/Command+Q` Clear the console - ✅ `Ctrl/Command+N` Create new code snippet - ✅ `Ctrl/Command+E` Toggle Lock status - ✅ `Ctrl/Command+Shift+P` Call Command Palette - ✅ `Ctrl/Command+Shift+L` List all history - ✅ Support backtracking code history. Support saving/editing code running history - ✅ Support manually triggering code execution/running code in real time - ✅ Support top-level await. Adapt to dark mode ![](./docs/img1.png)
🚗 Run JavaScript dynamicly in Browser/Node.js
javascript,runner
2023-04-19T09:06:34Z
2024-01-20T17:09:54Z
null
1
0
99
0
7
19
null
Apache-2.0
TypeScript
PB2204/Project-Euler
main
# Project-Euler Solutions Of Project Euler's Problem Using JavaScript Problem Website : https://projecteuler.net Solution Website : https://pabitrabanerjee.newsgoogle.org
Solutions Of Project Euler's Problem Using JavaScript
competitive-programming,hackerrank,javascript,project-euler
2023-04-21T19:22:32Z
2023-04-22T06:41:58Z
null
1
0
70
0
0
18
null
GPL-3.0
JavaScript
pawantech12/portfolio-website
main
null
Responsive Portfolio Website Using HTML , CSS and JavaScript
aos-animation,bootstrap,css,css3,html,javascript,portfolio,responsive-portfolio-website
2023-04-21T12:14:50Z
2023-05-30T12:28:15Z
null
1
0
2
0
7
18
null
null
HTML
whitehorse21/Vehicle
main
null
Vehicle Tracking System - Build with react native, node.js, expressjs, graphQL and Google maps
expressjs,google-maps,graphql,javascript,nodejs,react-native,tailwindcss
2023-04-19T20:21:10Z
2023-05-14T16:03:06Z
null
1
1
5
0
0
17
null
null
JavaScript
ansonbenny/MultiVendor-Ecommerce
master
# Multi Vendor Ecommerce Multi Vendor ecommerce website for online shopping, it's allows multi vendor features to allow sellers to sell on this website. ## Main Features - Pwa - Offline Mode - Courier Service - Shiprocket - PinCode available check - Order Live Tracking - Cart & Wishlist & Direct Buy Now Option - Live Chat - Variant - Vendor - Admin Panel Dedicated - Responsive Design - Razorpay Payment and COD - Razorpay Offers Accessible - Cupon Code - User Can Manage Address [Add , Edit , Delete] ## Prerequisites Make sure you have installed all of the following prerequisites on your development machine: - Node Js & Npm [Download and Install](https://nodejs.org/en) - MongoDB [Download and Install](https://www.mongodb.com/docs/manual/installation/) - Git [Download and Install](https://git-scm.com/downloads) ## Technology Used #nextjs #reactjs #scss #nodejs #expressjs #mongodb #jsonwebtoken authentication #javascript ## Environment Variables To run this project, you will need to add the following environment variables to your .env file in server directory `PORT` = `5000` `DB_URL` `DB_NAME` `JWT_SECRET` `SHIPROCKET_EMAIL` `SHIPROCKET_PASS` `SHIPROCKET_PICKUPID` = `Delhi` `MAIL_USER` `MAIL_PASS` `MAIL_FROM‎` = `Ecommerce <email@gmail.com>` `ADMIN_MAIL` `RAZORPAY_ID` `RAZORPAY_SECREt` ## Run Locally Clone the project ```bash git clone https://github.com/ansonbenny/MultiVendor-Ecommerce.git ``` ##To Start BackEnd Go to the server directory ```bash cd MultiVendor-Ecommerce/SERVER ``` Install dependencies ```bash npm install ``` Start ```bash npm start ``` ##To Start FrontEnd Go to the client directory ```bash cd MultiVendor-Ecommerce/Client ``` Install dependencies ```bash npm install ``` Start ```bash npm run dev ``` ## 🔗 Links [![linkedin](https://img.shields.io/badge/linkedin-0A66C2?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/anson-benny-502961238/)
Multi Vendor ecommerce website for online shopping, it's allows multi vendor features to allow sellers to sell.
ecommerce,ecommerce-application,ecommerce-website,expressjs,javascript,mern-stack,mongodb,multivendor-ecommerce,nodejs,reactjs
2023-04-19T04:29:56Z
2024-05-08T06:11:17Z
null
1
0
8
1
8
17
null
MIT
JavaScript
ComputeNepal/js-coding-challenges
main
# JS Coding Challenges [![ComputeNepal - js-coding-challenges](https://img.shields.io/static/v1?label=ComputeNepal&message=js-coding-challenges&color=blue&logo=github)](https://github.com/ComputeNepal/js-coding-challenges "Go to GitHub repo") [![stars - js-coding-challenges](https://img.shields.io/github/stars/ComputeNepal/js-coding-challenges?style=social)](https://github.com/ComputeNepal/js-coding-challenges) [![forks - js-coding-challenges](https://img.shields.io/github/forks/ComputeNepal/js-coding-challenges?style=social)](https://github.com/ComputeNepal/js-coding-challenges) [![License](https://img.shields.io/badge/License-MIT-blue)](#license) [![issues - js-coding-challenges](https://img.shields.io/github/issues/ComputeNepal/js-coding-challenges)](https://github.com/ComputeNepal/js-coding-challenges/issues) [![contributions - welcome](https://img.shields.io/badge/contributions-welcome-blue)](/CONTRIBUTING.md "Go to contributions doc") ![js-coding-challenges](./assets/js-coding-challenges.png) This repository contains a collection of JavaScript coding challenges that are designed to help you improve your skills and test your knowledge of the language. Each challenge is accompanied by a README file that explains the problem statement, input/output, and any additional requirements. The answers will be available in /solutions/problem_title/answer.js while the explanation will be given in /solutions/problem_title/readme.md. Make sure to star the repository if you find it useful. And contributions to the repository are welcome. ## Resources Before moving forward, if you are an complete beginner and don't know anything about programming or JavaScript, you may want to look at the following resources: - [Resources](./Resources/Resources.md) - [Roadmap](./Resources/Roadmap.md) ## Challenge 1: FizzBuzz Write a program that prints the numbers from 1 to 100. But for multiples of three, print "Fizz" instead of the number and for the multiples of five, print "Buzz". For numbers which are multiples of both three and five, print "FizzBuzz". For example, your program should print: ```javascript 1 2 Fizz 4 Buzz Fizz 7 8 Fizz Buzz 11 Fizz 13 14 FizzBuzz 16 ... ``` [Solution Explanation](./solutions/ch_1_FizzBuzz/readme.md) ## Challenge 2: Palindrome Checker Create a function that takes a string as an argument and returns `true` if it's a palindrome and `false` if it's not. A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward. For example, "racecar" is a palindrome, but "hello" is not. [Solution Explanation](./solutions/ch_2_Palindrome_Checker/readme.md) ## Challenge 3: Fibonacci Series Write a function that takes a number `n` as input and returns the first `n` numbers in the Fibonacci sequence. The Fibonacci sequence is a series of numbers in which each number is the sum of the two preceding numbers. The first two numbers in the sequence are 0 and 1. For example, if `n` is 5, the function should return the array` [0, 1, 1, 2, 3]`. [Solution Explanation](./solutions/ch_3_Fibonacci_Series/readme.md) ## Challenge 4: Find the Longest Word Write a function that takes a string and returns the longest word in the string. If there are two or more words that are of the same length, return the first one that appears in the string. For example, if the input string is "The quick brown fox jumps over the lazy dog", the function should return "quick". [Solution Explanation](./solutions/ch_4_Longest_Word/readme.md) ## Challenge 5: Reverse a String Write a function that takes a string as input and returns the string reversed. For example, if the input string is "hello", the function should return "olleh". [Solution Explanation](./solutions/ch_5_Reverse_String/readme.md) ## Challenge 6: Capitalize the First Letter of Each Word Write a function that takes a string as input and returns the string with the first letter of each word capitalized. For example, if the input string is "the quick brown fox", the function should return "The Quick Brown Fox". [Solution Explanation](./solutions/ch_6_Capitalize_First_Letter_of_Word/readme.md) ## Challenge 7: Check for Prime Numbers Write a function that takes a number as input and returns `true` if it's a prime number and `false` if it's not. A prime number is a natural number greater than 1 that is not a product of two smaller natural numbers. For example, 2, 3, 5, 7, 11, and 13 are prime numbers, but 4, 6, 8, and 9 are not. [Solution Explanation](./solutions/ch_7_Prime_Numbers/readme.md) ## Challenge 8: Sum of Digits Write a function that takes a number as input and returns the sum of its digits. For example, if the input number is 123, the function should return 6 (1 + 2 + 3 = 6). [Solution Explanation](./solutions/ch_8_Sum_of_Digits/readme.md) ## Challenge 9: Title Case a Sentence Write a function that takes a string as input and returns the string with the first letter of each word capitalized. For example, if the input string is "the quick brown fox", the function should return "The Quick Brown Fox". Note that the function should capitalize the first letter of every word, even if it's a small word like "and" or "the". [Solution Explanation](./solutions/ch_9_Title_Case_Sentence/readme.md) ## Challenge 10: Find the Factorial of a Number Write a function that takes a number as input and returns its factorial. The factorial of a number is the product of all positive integers from 1 to the number itself. For example, the factorial of 5 is 120 (1 _ 2 _ 3 _ 4 _ 5 = 120). Write a function called `factorial` that takes a number as its parameter and returns its factorial. If the input number is 0, the function should return 1. [Solution Explanation](./solutions/ch_10_Factorial_of_Number/readme.md) ## Challenge 11: Find the Second Largest Number Write a function that takes an array of numbers as input and returns the second largest number in the array. For example, if the input array is [5, 10, 7, 2, 1], the function should return 7. Write a function called `secondLargest` that takes an array of numbers as its parameter and returns the second largest number in the array. [Solution Explanation](./solutions/ch_11_Second_Largest_Number/readme.md) ## Challenge 12: Find the Smallest Common Multiple Write a function that takes two numbers as input and returns the smallest common multiple of those numbers. The smallest common multiple is the smallest number that is divisible by both of the input numbers. For example, the smallest common multiple of 3 and 4 is 12. Write a function called `smallestCommonMultiple` that takes two numbers as its parameters and returns the smallest common multiple of those numbers. [Solution Explanation](./solutions/ch_12_Smallest_Common_Multiple/readme.md) ## Challenge 13: Remove Duplicates from an Array Write a function that takes an array as input and returns a new array with all duplicate elements removed. For example, if the input array is [1, 2, 2, 3, 4, 4, 5], the function should return [1, 2, 3, 4, 5]. Write a function called `removeDuplicates` that takes an array as its parameter and returns a new array with all duplicate elements removed. [Solution Explanation](./solutions/ch_13_Remove_Duplicate_From_Array/readme.md) ## Challenge 14: Find the Maximum Subarray Sum (Kadane's Algorithm) Write a function that takes an array as input and returns the Maximum subarray sum. Subarrays are arrays inside another array which only contains contiguous elements. For example, if the array is [-3, -4, 5, -1, 2, -4, 6, -1], the function should return 8 since subarray [5, -1, 2, -4, 6] is the max sum contiguous subarray with sum 8. Write a function `MaxSubArraySum` that takes an array as its parameter and returns the maximum subarray sum. [Solution Explanation](./solutions/ch_14_Max_Subarray_Sum/readme.md) ## Challenge 15: Swap two numbers Write a function that takes two numbers as input and swaps the numbers. For example if inputs are num_1 = 5 and num_2 = 10 the function should return num_1 = 10 and num_2 = 5 Write a function `swap` that takes two integers as its parameter and swaps them. [Solution Explanation](./solutions/ch_15_Swap_Numbers/readme.md) ## Challenge 16: Convert Celsius to Fahrenheit Write a function that takes a temperature in Celsius as input and returns the equivalent temperature in Fahrenheit. The formula for converting Celsius to Fahrenheit is F = (C \* 1.8) + 32. Write a function called `celsiusToFahrenheit` that takes a temperature in Celsius as its parameter and returns the equivalent temperature in Fahrenheit. [Solution Explanation](./solutions/ch_16_Celsius_To_Fahrenheit/readme.md) ## Challenge 17: Calculate the Sum of N Natural Number Write a function that takes a number as input and returns sum from 1 to `n`. For example, if the input is 10, the function should return 55. Write a function called `getNaturalSum` that takes a number `n` as its parameter and returns sum of natural number. [Solution Explanation](./solutions/ch_17_Sum_Of_N_Natural_Number/readme.md) ## Challenge 18: Convert Decimal to Binary Write a function that takes a decimal number as input and returns binary string. For example, if the input is 12, the function should return 1100. Write a function called `decimalToBinary` that takes a decimal number as `decimal` in its parameter and returns binary string. [Solution Explanation](./solutions/ch_18_Decimal_To_Binary/readme.md) ## Challenge 19: Count Vowels in a String Write a function that takes a string as input and returns number of vowels in string. For example, if the string is "Hello World!", the function should return 3. Write a function called `countVowels` that takes a string as `str` in its parameter and returns number of vowels in string. [Solution Explanation](./solutions/ch_19_Count_Vowels_In_String/readme.md) ## Challenge 20: Check String Url Write a function that takes a url string as input and returns true if url is valid and false otherwise. For example, if the string is "https://www.example.com", the function should return true. Write a function called `isValidURL` that takes a string url as `url` in its parameter and returns true or false. [Solution Explanation](./solutions/ch_20_Check_String_Url/readme.md) ## Challenge 21: Validate Username Write a function that checks if a given string is a valid username. A valid username should contain only alphanumeric characters and underscores, and should be between 4 and 16 characters long. Write a function called `isValidUsername` that takes a string `username` in its parameter and returns true or false. [Solution Explanation](./solutions/ch_21_Validate_Username/readme.md) ## Challenge 22: Check Leap Year Write a function that checks if a given year is a leap year. Write a function called `isLeapYear` that takes `year` in its parameter and returns true or false. [Solution Explanation](./solutions/ch_22_Check_Leap_Year/readme.md) ## Challenge 23: Sum of Array Elements Write a JavaScript function to sum of all elements in an array. Write a function called `sumArray` that takes `array` in its parameter and returns sum of all array elements. [Solution Explanation](./solutions/ch_23_Sum_Of_Array_Elements/readme.md) ## Challenge 24: Find Longest Word in Sentence Write a function to find the longest word in a sentence. Write a function called `findLongestWord` that takes string as argument `sentence` of type string and return longest word in sentence. [Solution Explanation](./solutions/ch_24_Find_Longest_Word_In_Sentence/readme.md) ## Challenge 25: Check Empty Object Write a function to check if an object is empty or not. Write a function called `isObjEmpty` that takes an object `obj` as arguments will return true if it is empty otherwise false. [Solution Explanation](./solutions/ch_25_Check_Empty_Object/readme.md) ## Challenge 26: Convert Time from 12Hrs to 24Hrs Format Write a function which can convert time from 12 hours format to 24 hours format. Write a function called `convertTo24HrsFormat` which take `time` as parameter in `HH:MMAM` format. for example, `12:10AM`. [Solution Explanation](./solutions/ch_26_Convert_Time_To_24_Format/readme.md) <!-- Add new challenges before this comment --> ## Contributors <a href="https://github.com/ComputeNepal/js-coding-challenges/graphs/contributors"> <img src="https://contrib.rocks/image?repo=ComputeNepal/js-coding-challenges" /> </a> ## Forkers [![Forkers repo roster for @ComputeNepal/js-coding-challenges](https://reporoster.com/forks/ComputeNepal/js-coding-challenges)](https://github.com/ComputeNepal/js-coding-challenges/network/members) ## Stargazers [![Stargazers repo roster for @ComputeNepal/js-coding-challenges](https://reporoster.com/stars/ComputeNepal/js-coding-challenges)](https://github.com/ComputeNepal/js-coding-challenges/stargazers) ## License Released under [MIT](/LICENSE) by [@ComputeNepal](https://github.com/ComputeNepal). [![Website - Visit ComputeNepal](https://img.shields.io/static/v1?label=Website&message=Visit+ComputeNepal&color=2ea44f&logo=RSS)](https://computenepal.com)
This repository contains a collection of JavaScript coding challenges that are designed to help you improve your skills and test your knowledge of the language.
javascript,javascript-challenge,javascript-challenges,js,js-challenge,js-challenger,js-challenger-solutions,js-challenges,learn-javascript,learn-programming
2023-04-20T13:46:44Z
2023-06-25T10:23:59Z
null
7
20
81
1
12
17
null
MIT
JavaScript
krishnasagrawal/Javascript-Programming-Notes-Resources
main
# Javascript-Programming-Notes-Resources In this repo, you will find all the JavaScript notes, resources, pdfs and Interview preparation materials. ## How to Contribute If you have any additional resources related to Java programming language that you would like to share, feel free to create a pull request or open an issue. ------------ ------------ ## Join our Telegram Channel for Regular Jobs and Internships updates. ###### [https://telegram.me/jobsinternshipswale][https://telegram.me/jobsinternshipswale] ## Telegram/Instagram Channel For Notes and Interview Preparation Materials ###### [https://telegram.me/staylearner][https://telegram.me/staylearner] ###### [https://www.instagram.com/coders_notes/][https://www.instagram.com/coders_notes/] [https://telegram.me/jobsinternshipswale]: https://telegram.me/jobsinternshipswale "https://telegram.me/jobsinternshipswale" [1]: https://telegram.me/staylearner "https://telegram.me/staylearner" [https://telegram.me/staylearner]: https://telegram.me/staylearner "https://telegram.me/staylearner" [https://www.instagram.com/coders_notes/]: https://www.instagram.com/coders_notes/ "https://www.instagram.com/coders_notes/"
In this repo, you will find all the JavaScript notes, pdfs and Interview preparation materials.
javascript
2023-04-14T06:18:25Z
2023-04-20T15:01:32Z
null
1
0
5
0
3
17
null
null
null
EuJinnLucaShow/game-pig
main
# Project #3. Game "Pig".
Project #3. Game "Pig".
css,game,html,javascript
2023-04-17T18:09:17Z
2023-04-18T18:30:26Z
null
1
0
9
0
0
16
null
null
JavaScript
Htripathi07/Myntra-Ecommerce-Clone
main
# Myntra Clone Project This is a clone of the Myntra e-commerce website, built using HTML,CSS and JavaScript.Myntra is a major Indian fashion e-commerce company headquartered in Bengaluru, Karnataka, India. The company was founded in 2007-2008 to sell personalized gift items. In May 2014, Myntra.com was acquired by Flipkart. <h1>Live Demo </h1>-- https://myntra8.netlify.app/ ## Tech Stack - HTML - CSS - Javascript - (DOM Manipulation, Local Storage) - Bootstrap - Git - github ## Features The following features have been implemented in the project: - Home Page:- Nav Bar, sliding banners & slider for Products. - ![Screenshot_20230909_205036](https://github.com/Htripathi07/team8_Myntra_clone_project/assets/120841935/374438bd-6b9c-4a09-8cd1-f5c49b1952f3) - ![Screenshot_20230909_205050](https://github.com/Htripathi07/team8_Myntra_clone_project/assets/120841935/204c590d-4504-402e-ac56-8985b81b84dd) - Sign-In:- User authentication to check whether user email and password match with details existing in the database. - ![Screenshot_20230909_205131](https://github.com/Htripathi07/team8_Myntra_clone_project/assets/120841935/69df8de6-3e6e-4906-871a-d303ae73dcf3) - User authentication (login) - Responsiveness for different screen sizes - Browse products by category - ![Screenshot_20230909_205112](https://github.com/Htripathi07/team8_Myntra_clone_project/assets/120841935/b1790f36-ed38-430f-9eed-d1efae8be7b2) - Sorting products for reccomended, What's new, popularity, Price high to low and low to High - Filter products in pages based on brand, colour, Price, and discount - Add products to cart,a remove button to remove from cart - ![Screenshot_20230909_205251](https://github.com/Htripathi07/team8_Myntra_clone_project/assets/120841935/55975856-36b8-4271-9e71-51094811a9b0) - Address page lets you input and displays address, and then through the payment page - ![Screenshot_20230909_205312](https://github.com/Htripathi07/team8_Myntra_clone_project/assets/120841935/2d0ea216-4a84-4c4b-a831-4241167026a6) - Checkout and payment processing - ![Screenshot_20230909_205336](https://github.com/Htripathi07/team8_Myntra_clone_project/assets/120841935/043d5c98-276c-41e1-a8f4-d17b4f2fcbdc) ## Deployed on(netlify): https://myntra8.netlify.app/
This is a clone of the Myntra e-commerce website, built using HTML,CSS and JavaScript.Myntra is a major Indian fashion e-commerce company headquartered in Bengaluru, Karnataka, India.
bootstrap,css3,html5,javascript
2023-04-15T13:21:18Z
2024-05-08T10:09:22Z
null
5
12
43
0
4
16
null
null
HTML
Krishna11118/Trekki
master
<!-- PROJECT LOGO --> <br /> <div align="center"> <a href="https://github.com/othneildrew/Best-README-Template"> <img src="https://res.cloudinary.com/dvjnxuxxj/image/upload/v1687005049/Readme_Trekki/Readmelogo3_jul8y7.gif" alt="Logo" width="150" height="120"> </a> </div> <!-- TABLE OF CONTENTS --> <details> <summary>Table of Contents </summary> <ol> <li> <a href="#about-the-project">About The Project</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</a></li> </ul> </li> <li><a href="#usage">Usage</a></li> <li><a href="#contributing">Contributing</a></li> <li><a href="#license">License</a></li> <li><a href="#contact">Contact</a></li> <li><a href="#acknowledgments">Acknowledgments</a></li> </ol> </details> <!-- ABOUT THE PROJECT --> ## About The Project Welcome to our travel booking website, where we make it easy for you to plan your dream vacation. Whether you're looking for a romantic getaway, a family vacation, or an adventure-filled trip, we have a wide range of destinations available to suit all your traveling needs. We also offer payment options, making it convenient for you to secure your bookings. Our team of travel experts is always available to assist you in planning your trip, and we strive to provide you with the best travel experience possible. Start planning your next adventure today! 👉 Live Demo: <a href='https://trekki.vercel.app/' style="margin-bottom:10px" >Live Demo</a> <div> <img src="https://github.com/Krishna11118/Trekki/blob/master/example/qTripGif3.gif" alt="img" height="500px" width=""> </div> ### Built With List of frameworks/libraries/languages that were used to built this project. * [![React][React.js]][React-url] * [![Express][Expressjs.com]][Expressjs-url] * [![Node][nodejs.org]][Node-url] * [![Bootstrap][Bootstrap.com]][Bootstrap-url] * [![Css][Css.com]][Css-url] * [![Html][Html.com]][Html-url] * [![Js][Js.com]][Js-url] <!-- GETTING STARTED --> ## Getting Started Instructions for setting up project locally. To get a local copy up and running follow these simple example steps. ### Prerequisites * npm ```sh npm install npm@latest -g ``` * Install Nodemon packages ```sh npm install --global nodemon ``` * Install Express packages ```sh npm install -g express-generator ``` ### Installation 1. Clone the repo ```sh git clone https://github.com/Krishna11118/Trekki.git ``` 2. Install NPM packages ```sh npm install ``` 3. To start Backend ```js nodemon or npm run start-dev ``` 4. To start Frontend ```sh npm start ``` ## Tour Packages section <!-- ![Alt Text](https://res.cloudinary.com/dvjnxuxxj/image/upload/v1687022907/Readme_Trekki/Readme2/Screenshot_208_f1cwd8.png ) --> <img src="https://res.cloudinary.com/dvjnxuxxj/image/upload/v1687022907/Readme_Trekki/Readme2/Screenshot_208_f1cwd8.png" width="956" height="500"> ## Tour details & booking form <img src="https://res.cloudinary.com/dvjnxuxxj/image/upload/v1687116254/Readme_Trekki/Trekki2/Screenshot_220_tucabn.png" width="956" height="480"> ## Filling details & reviews section <img src="https://res.cloudinary.com/dvjnxuxxj/image/upload/v1687022906/Readme_Trekki/Readme2/Screenshot_203_gsorav.png" width="956" height="480"> ## Checkout section <img src="https://res.cloudinary.com/dvjnxuxxj/image/upload/v1687115995/Readme_Trekki/Trekki2/Screenshot_215_iin9qe.png" width="956" height="538"> <!-- CONTRIBUTING --> ## Contributing If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! <img src="https://res.cloudinary.com/dvjnxuxxj/image/upload/v1687024365/Readme_Trekki/Readme2/43154-removebg-preview_gellpu.png" width="20" height="20"> Thanks again! <!-- CONTACT --> ## Contact Krishna - [@Whatsapp](https://wa.me/+917318378893) - krishnassss365@gmail.com - [@LinkedIn](https://www.linkedin.com/in/krishna365/) Project Link: [https://github.com/Krishna11118/Trekki.git](https://github.com/Krishna11118/Trekki.git) <!-- ACKNOWLEDGMENTS --> ## Acknowledgments Use this space to list resources you find helpful and would like to give credit to. I've included a few of my favorites to kick things off! * [Icon8 ](https://icons8.com/) * [Choose an Open Source License](https://choosealicense.com) * [GitHub Emoji Cheat Sheet](https://www.webpagefx.com/tools/emoji-cheat-sheet) * [Malven's Flexbox Cheatsheet](https://flexbox.malven.co/) * [Malven's Grid Cheatsheet](https://grid.malven.co/) * [Img Shields](https://shields.io) * [GitHub Pages](https://pages.github.com) * [Font Awesome](https://fontawesome.com) * [React Icons](https://react-icons.github.io/react-icons/search) <hr> <!-- <LICENSE> --> ## License * Completely free (MIT)! See LICENSE.md for more. [License ](https://github.com/Krishna11118/Trekki/blob/master/LICENSE) <!-- MARKDOWN LINKS & IMAGES --> <!-- https://www.markdownguide.org/basic-syntax/#reference-style-links --> [contributors-shield]: https://img.shields.io/github/contributors/othneildrew/Best-README-Template.svg?style=for-the-badge [contributors-url]: https://github.com/othneildrew/Best-README-Template/graphs/contributors [forks-shield]: https://img.shields.io/github/forks/othneildrew/Best-README-Template.svg?style=for-the-badge [forks-url]: https://github.com/othneildrew/Best-README-Template/network/members [stars-shield]: https://img.shields.io/github/stars/othneildrew/Best-README-Template.svg?style=for-the-badge [stars-url]: https://github.com/othneildrew/Best-README-Template/stargazers [issues-shield]: https://img.shields.io/github/issues/othneildrew/Best-README-Template.svg?style=for-the-badge [issues-url]: https://github.com/othneildrew/Best-README-Template/issues [license-shield]: https://img.shields.io/github/license/othneildrew/Best-README-Template.svg?style=for-the-badge [license-url]: https://github.com/othneildrew/Best-README-Template/blob/master/LICENSE.txt [linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555 [linkedin-url]: https://linkedin.com/in/othneildrew [product-screenshot]: images/screenshot.png [Next.js]: https://img.shields.io/badge/next.js-000000?style=for-the-badge&logo=nextdotjs&logoColor=white [Next-url]: https://nextjs.org/ [React.js]: https://img.shields.io/badge/React-20232A?style=for-the-badge&logo=react&logoColor=61DAFB [React-url]: https://reactjs.org/ [Vue.js]: https://img.shields.io/badge/Vue.js-35495E?style=for-the-badge&logo=vuedotjs&logoColor=4FC08D [Vue-url]: https://vuejs.org/ [Angular.io]: https://img.shields.io/badge/Angular-DD0031?style=for-the-badge&logo=angular&logoColor=white [Angular-url]: https://angular.io/ [Svelte.dev]: https://img.shields.io/badge/Svelte-4A4A55?style=for-the-badge&logo=svelte&logoColor=FF3E00 [Svelte-url]: https://svelte.dev/ [Expressjs.com]: https://img.shields.io/badge/Expressjs-0FBEFE?style=for-the-badge&logo=express&logoColor=black [Expressjs-url]: https://expressjs.com/ [Css.com]: https://img.shields.io/badge/Css-C14FB9?style=for-the-badge&logo=css3&logoColor=black [Css-url]: https://developer.mozilla.org/en-US/docs/Web/CSS/ [Html.com]: https://img.shields.io/badge/HTML-E44C27?style=for-the-badge&logo=html5&logoColor=black [Html-url]: https://html.com/ [Nodejs.org]: https://img.shields.io/badge/Nodejs-35802E?style=for-the-badge&logo=nodedotjs&logoColor=white [Node-url]: https://nodejs.org/ [Bootstrap.com]: https://img.shields.io/badge/Bootstrap-563D7C?style=for-the-badge&logo=bootstrap&logoColor=white [Bootstrap-url]: https://getbootstrap.com [Js.com]: https://img.shields.io/badge/JavaScript-F7DF1E?style=for-the-badge&logo=javascript&logoColor=black [Js-url]:https://developer.mozilla.org/en-US/docs/Web/JavaScript/
Travel booking website, where we make it easy for you to plan your dream vacation.
bootstrap,css,expressjs,javascript,mongodb,nodejs,react
2023-04-15T16:13:54Z
2024-04-21T15:47:39Z
null
1
1
98
0
0
16
null
null
JavaScript
tumainimaganiko/Vehicle-Company
main
<a name="readme-top"></a> <div align="center"> <br/> <h3><b>TUMAINI BARNABAS MAGANIKO</b></h3> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📗 Table of Contents](#-table-of-contents) - [📖 TBM CAR Company ](#-tbm-car-company-) - [🛠 Screenshot](#-screenshot) - [Desktop Home Page](#desktop-home-page) - [Mobile Home page](#mobile-home-page) - [Desktop About Page](#desktop-about-page) - [🛠 Built With ](#-built-with-) - [Tech Stack ](#tech-stack-) - [🚀 Live Demo ](#-live-demo-) - [🚀 Video about the project ](#-video-about-the-project-) - [💻 Getting Started ](#-getting-started-) - [Prerequisites](#prerequisites) - [Setup](#setup) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#deployment) - [👥 Author ](#-author-) - [🤝 Contributing ](#-contributing-) - [⭐️ Show your support ](#️-show-your-support-) - [🙏 Acknowledgments ](#-acknowledgments-) - [📝 License ](#-license-) <!-- PROJECT DESCRIPTION --> # 📖 TBM CAR Company <a name="about-project"></a> >Welcome to TBM CAR COMPANY, The mission of this company is to provide high-quality vehicles to their valued customers while delivering exceptional customer service. ## 🛠 Screenshot ### Desktop Home Page ![Desktop Home Screen](images/home%20page.png) ### Mobile Home page ![Desktop Home Screen](images/mobile.png) ### Desktop About Page ![Desktop Home Screen](images/about%20page.png) ## 🛠 Built With <a name="built-with"></a> 1. HTML 2. CSS 3. JAVASCRIPT 4. BOOTSTRAP ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="/index.html">HTML</a></li> <li><a href="/styles.css">CSS</a></li> <li><a href="/index.js">JAVASCRIPT</a></li> </ul> </details> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link](https://tumainimaganiko.github.io/Vehicle-Company/) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🚀 Video about the project <a name="live-demo"></a> - [Video Link](https://www.loom.com/share/66a96ad690c840eab382c862335c4156) <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> To get a local copy up and running, follow these steps. ### Prerequisites 1. Web browser 2. Code editor 3. Git-smc ### Setup To get a local copy up and running follow these simple example steps. - git clone https://github.com/tumainimaganiko/Vehicle-Company - cd To-Do-Lists - npm install ### Usage To run the project, execute the following command: Open index.html using live server extension. ### Run tests Coming soon ### Deployment Coming soon <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Author <a name="authors"></a> 👤 Tumaini Maganiko - GitHub: [@githubhandle](https://github.com/tumainimaganiko) - Twitter: [@twitterhandle](https://twitter.com/Chief2maini) - LinkedIn: [LinkedIn](https://www.linkedin.com/in/tumaini-maganiko-991b30262/) -Summarized video of my project: [loom](https://www.loom.com/share/1ea2df078c4940e39b408606dbbd1cbf) <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! 1. Fork the Project 2. Create your Feature Branch (`git checkout -b 'branchname'`) 3. Commit your Changes (`git commit -m 'Add some branchname'`) 4. Push to the Branch (`git push origin branchname`) 5. Open a Pull Request 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 rate me star <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> 1. Microverse 2. Cindy Shin - Original design by (Cindy Shin in Behance) [https://www.behance.net/gallery/29845175/CC-Global-Summit-2015]. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
Vehicle Company 🚐🚙 is a website designed to help customers find their dream cars. Users can visit the audition and see the amazing cars available at the company. Built with HTML, CSS, BOOTSTRAP, and JAVASCRIPT.
bootstrap5,css,html5,javascript
2023-04-16T12:56:06Z
2023-06-04T22:22:33Z
null
1
2
91
0
0
16
null
MIT
HTML
musangamfure/capstone-project-module1
main
<!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠️ Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🤯 Walk through video ](#walk-through) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [❓ FAQ (OPTIONAL)](#faq) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 [GLOBAL REMOTE SOFTWARE DEVELOPER SUMMIT 2023] <a name="about-project"></a> > This website is the result of the first Capstone Project for the Microverse Program😊. This is showing the World Tour for La Rienda Band, an argentinian band that will travel around the world.👌 ## 🛠️ Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://www.w3.org/TR/2011/WD-html5-20110405/">HTML5</a></li> <li><a href="https://www.w3.org/Style/CSS/specs.en.html">CSS</a></li> <li><a href="https://www.ecma-international.org/publications-and-standards/standards/ecma-262/">JavaScript</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - Landing Page for activities - Mobile first development - Responsiveness and flexibility for any screen size - Apply JavaScript best practices and language style guides in code.👌 - Use JavaScript to manipulate DOM elements. - Use JavaScript events.💯 - Use objects to store and access data. - Communicate technical concepts to other technical people. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🤯 Walk through video <a name="walk-through"></a> - [here](https://www.loom.com/share/f91d82d78ddd4b338f0c749ecc0d911e) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link](https://musangamfure.github.io/capstone-project-module1/) <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 of this project up and running on your local machine follow the steps below. ### Prerequisites - Basic html, css and medium Javascript know how. - Git installation - A text editor - A terminal - A web browser to view output e.g Google Chrome - An IDE e.g Visual studio code ### Setup - Clone this repository or download the Zip folder: ``` git clone https://github.com/musangamfure/capstone-project-module1.git ``` - Navigate to the location of the folder in your machine: **`you@your-Pc-name:~$ cd <folder>`** ### Usage - After Cloning this repo to your local machine - Open the `index.html` in your browser ### Run Tests To track linter errors locally follow these steps: Download all the dependencies run: ``` npm install ``` Track HTML linter errors run: ``` npx hint . ``` Track CSS linter errors run: ``` npx stylelint "**/*.{css,scss}" ``` Track JavaScript linter errors run: ``` npx eslint . ``` ### Deployment - I used GitHub Pages to deploy my website - For more information about publishing sources, see "[About github page](https://docs.github.com/en/pages/getting-started-with-github-pages/about-github-pages#publishing-sources-for-github-pages-sites)" <!-- AUTHORS --> ## Author 👤 **Is-Musangamfura Emmanuel** - GitHub: [@musangamfure](https://github.com/musangamfure) - Twitter: [@musangamfure](https://twitter.com/musangamfure) - LinkedIn: [@Musangamfura Emmanuel](https://www.linkedin.com/in/musangamfura-emmanuel-6a214a262/) <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> Future changes: - improve slider responsiveness - Add more webpages such as Tickets Page and Schedule Page. <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> Give a ⭐ if you like this project! <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> - Templete used in project provided by (Microverse). - Original design idea by [Cindy Shin in Behance](https://www.behance.net/adagio07). <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
This GitHub repository contains the code for the Capstone Project Module 1, which focuses on building a responsive web design using HTML, CSS, and JavaScript. The project is part of the Microverse curriculum and aims to develop skills in modern web development techniques and tools
css,css-flexbox,css-grid,html,html-css-javascript,javascript,responsive-design
2023-04-20T07:47:07Z
2023-04-22T19:11:31Z
null
1
1
13
1
0
15
null
MIT
HTML
Alejandroq12/my-movies
dev
# group-capstone-js <a name="readme-top"></a> <div align="center"> <h3><b>JavaScript capstone project Readme</b></h3> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 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](#support) - [🙏 Acknowledgements](#acknowledgements) - [❓ FAQ(#faq) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 [JavaScript capstone project] <a name="about-project"></a> **[JavaScript capstone project]** this project provide users a webapp. Where Users can access a list of movies. User can interact with this webapp, he/she can add likes and also he/she can add a comment. ## 🛠 Built With <a name="built-with"></a> HTML CSS ES6 Modules Webpack APIs ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="#">HTML, CSS, JavaScript, Webpack, API</a></li> </ul> </details> <details> <summary>Server</summary> <ul> <li><a href="https://localhost:8080/">Dev Server</a></li> </ul> </details> <details> <summary>Pakage Manager</summary> <ul> <li><a href="#">NPM</a></li> </ul> </details> <details> <summary>APIs</summary> <ul> <li><a href="https://api.tvmaze.com/shows">Movies API</a></li> <li><a href="https://us-central1-involvement-api.cloudfunctions.net/capstoneApi/apps/p01X0Mr4syDGinD4IhgC/comments">involvment API</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **[User can see list of movies]** - **[Allow user to add likes]** - **[Allow user to add comment]** - **[Display list of comments]** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link](https://alejandroq12.github.io/group-capstone-js/dist/) <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 web browser to view output e.g [Google Chrome](https://www.google.com/chrome/). - An IDE e.g [Visual studio code](https://code.visualstudio.com/). - `node` should be installed in your local machine, [node website](https://nodejs.org/en/download/). - Install the `npm` package manager use this [to install both node and npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm). - [A terminal](https://code.visualstudio.com/docs/terminal/basics). ### Setup Clone this repository to your desired folder or download the Zip folder: ``` https://github.com/Alejandroq12/group-capstone-js ``` - Navigate to the location of the folder in your machine: **``you@your-Pc-name:~$ cd group-capstone-js``** ### Install To install all dependencies, run: ``` npm install ``` ### Usage To run the project, follow these instructions: - After Cloning this repo to your local machine. - Open the `index.html` in your browser. - You can also use `npm start` command in terminal to run this at localhost:8080 ### Run tests To run tests, run the following command: - Track HTML linter errors run: ``` npx hint . ``` - Track CSS linter errors run: ``` npx stylelint "**/*.{css,scss}" ``` - Track JavaScript linter errors run: ``` npx eslint . ``` - run test: ``` npx jest ``` ### Deployment <a name="deployment"></a> You can deploy this project using: GitHub Pages, - I used GitHub Pages to deploy my website. - For more information about publishing sources, see "[About GitHub pages](https://docs.github.com/en/pages/getting-started-with-github-pages/about-github-pages#publishing-sources-for-github-pages-sites)". <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Author <a name="authors"></a> 👤 **Salman Ahmad Khan** - GitHub: [@fpsapc](https://github.com/fpsapc) - Twitter: [@salman-ahmadkhan1987](https://twitter.com/salman-ahmadkhan1987) - LinkedIn: [@salman-ahmad1987](https://linkedin.com/in/salman-ahmad1987 ) 👤 **Julio Quezada** - GitHub: [Alejandroq12](https://github.com/Alejandroq12) - Twitter: [@JulioAle54](https://twitter.com/JulioAle54) - LinkedIn: [Julio Quezada](https://www.linkedin.com/in/quezadajulio/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **[We will make this project responsive to make it look's more attractive]** <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 give me a star ⭐️ <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I want to thank my coding partner Julio Quezada who help me a lot to complete this project. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FAQ --> ## ❓ FAQ <a name="faq"></a> - **[How this list works]** - [you can see the list of movies] - [you can add likes] - [you can add comments] <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
API-based web application built with Vanilla JavaScript ES6 and pure CSS! I used a range of tools and best practices to ensure high-quality code and effective collaboration.
api,css3,dom,dom-manipulation,javascript,jest,jest-tests,js,webpack
2023-04-17T14:45:15Z
2023-04-20T18:23:23Z
null
2
16
110
3
1
14
null
NOASSERTION
JavaScript
hummusonrails/chatgpt-gmail-suggestions-chrome-extension
main
# ChatGPT Email Reviewer [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT) [![Contributing](https://img.shields.io/badge/Contributing-Guidelines-blue)](CONTRIBUTING.md) [![Code of Conduct](https://img.shields.io/badge/Code%20of%20Conduct-Respectful-orange)](CODE_OF_CONDUCT.md) [![Visitors](https://visitor-badge.glitch.me/badge?page_id=hummusonrails.chatgpt-gmail-suggestions-chrome-extension)](https://github.com/hummusonrails/chatgpt-gmail-suggestions-chrome-extension) [![Made with Love](https://img.shields.io/badge/Made%20with-Love-ff69b4.svg)](https://shields.io/) This is a Chrome extension that integrates with Gmail to review email drafts using ChatGPT. The extension allows users to select different writing styles for their emails, such as friendly, business, authoritative, personal, casual, serious, and lighthearted. It then uses ChatGPT to analyze and provide suggestions for the email draft based on the chosen writing style. ## Installation To use this extension, you'll need to install it on your Google Chrome browser or any Chromium-based browser. Follow the steps below: Download or clone the project from GitHub: ```bash git clone https://github.com/hummusonrails/chatgpt-gmail-suggestions-chrome-extension ``` Open the Extensions page in Chrome by navigating to `chrome://extensions/`. Enable "Developer mode" in the top right corner of the Extensions page. Click the "Load unpacked" button and select the project directory that you cloned or downloaded. The extension is now installed and ready to use in your Gmail account. ### Configuration Before you can use the extension, you'll need to set up a few configuration variables: #### OpenAI API Key The extension uses the OpenAI API to analyze the email drafts and provide suggestions. To use the API, you'll need an API key from OpenAI. You can obtain an API key by [creating an account on the OpenAI website](https://beta.openai.com/signup/). To configure the API key, click the extension icon in your browser's toolbar and enter your OpenAI API key in the provided input field. After entering the API key, click the "Save Settings" button to save it for future use. #### Signature Delimiter If your email signature is automatically appended to your email drafts in Gmail, you can specify a delimiter to distinguish the signature from the main content of the email. The extension will use this delimiter to exclude the signature from the analysis. To configure the signature delimiter, click the extension icon in your browser's toolbar and enter the delimiter in the provided input field. Then click the "Save Settings" button. ## Usage To use the extension, compose a new email draft in Gmail. After writing the email draft, click the extension icon in your browser's toolbar. Select the desired writing style(s) for your email and click the "Review Email" button. The extension will analyze your email draft using ChatGPT and provide suggestions based on the chosen writing style. You can then choose to use the suggestions to improve your email draft. ## Code of Conduct Please note that this project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms. ## License This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information.
Elevate your email writing style in Gmail with real-time suggestions from OpenAI's ChatGPT using the ChatGPT Email Reviewer Chrome extension.
chatgpt,chrome-extension,gmail,javascript,hacktoberfest
2023-04-11T14:03:00Z
2023-04-19T21:03:06Z
2023-04-12T17:09:24Z
1
4
11
0
2
14
null
MIT
JavaScript
whitehorse21/APEs
main
# APEs This is NFT Minging site. I have built this website with React on Vechain blockchain network. As this is MVP version, Just implemented UI/UX according to design file and requirement.
NFT Minting Website built with React for Vechain blockchain network
javascript,react,react-bootstrap,styled-components
2023-04-10T00:37:36Z
2023-04-23T14:29:25Z
null
1
0
6
0
0
14
null
null
JavaScript
zanwei/FontDetector
main
<img src="https://github.com/zanwei/FontDetector/blob/1ae48641f2638daed31582ffd5b05c3fab949f2f/thumbnail.png" alt="" style="max-width: 100%; height: auto;"> # FontDetector `FontDetector` simplifies the tedious process of determining fonts as you browse the web. No more switching between windows or searching through lines of code. Just hover over a font you like, and within three seconds you'll have the font name, saving a ton of time! `Hover`, `detect`. As easy as 1-2. An essential tool for any web designer or front-end developer. # Basic Usage You can view your favorite fonts through it `font family`, `font weight`, `font size`, `letter spacing`, `line height`, and `text alignment` Using `default: Shift + Alt + X` `mac: Shift + Alt + X` to run `FontDetector` in the browser <br> Click `ESC` to close `FontDetector` in the browser # Chrome Web Store ⏬ <a href="https://chrome.google.com/webstore/detail/fontdetector/jphgedmdokkhlllaibcbndaccmdcckfe" target="_blank">Download here</a> ## About Me <a href="https://twitter.com/zanweiguo" target="_blank">Twitter ↗︎</a> <br> <a href="https://www.instagram.com/zanwei.guo/" target="_blank">Instagram ↗︎</a>
FontDetector simplifies the tedious process of determining fonts as you browse the web
chrome-extension,font,font-inspector,javascript
2023-04-15T09:02:57Z
2023-12-01T05:16:03Z
2023-09-26T16:25:18Z
1
7
74
0
0
14
null
null
JavaScript
Vinyl-Davyl/talku-talku-v3
main
# Talku Talku V3 (final version) 💬 <p> <img alt="Version" src="https://img.shields.io/badge/version-3.0.1-blue.svg?cacheSeconds=2592000" /> <a href="#" target="_blank"> <img alt="License: MIT" src="https://img.shields.io/badge/License-MIT-red.svg" /> </a> </p> Ever wanted to communicate with friends in real-time and you worry about accessibility, compatibility, customization, and cost-effectiveness or having to download an app most times, TalkuTalku is that platform 🎉 Talku Talku is a Realtime private Chat Application that runs majorly on the web, might metamorphose into apps to run on other platforms. Its a minimalistic platform where users can come, join rooms with other frineds/users to talk about all kinds of chit chat with real time experience. ### ✨ [Live Demo](https://talku-talku-v3.vercel.app) ## Problems Talked Down on 🪡 Accessibility: Giving web-based chat apps more power with the leverage of been accessed from any device with an internet connection, giving users greater flexibility and convenience. 🪡 No Download Required: Users don't need to download and install a separate app onto their device, saves storage space and reduces the time it takes to get started. 🪡 Cross-Platform Compatibility: TalkuTalku works across multiple platforms, including desktops, laptops, smartphones, and tablets, making them more accessible to a wider range of users. 🪡 Easy Integration: Web-based chat apps can easily integrate with other web applications or services, such as social media platforms, email, and project management tools. 🪡 SEO Benefits: Web-based chat apps can help improve website traffic and visibility through search engine optimization (SEO), as they can be optimized for specific keywords. to name a few... ## Support is contiguous Leave a ⭐️ If this project got you going! <p> <a href="https://www.buymeacoffee.com/VinylDavyl"> <img align="left" src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" height="50" width="210" alt="buymeacoffee.com/VinylDavyl" /></a> </p> <br /><br /><br /> ## Stack Built on the MERN Stack with `NodeJs` `TypeScript` `ReactJs` `Express` `Styled-Components` `SocketIo` and `MongoDB` DB systems for Database Management and storage. ## Features ### From V2 - [x] Users can register/login via username and password. - [x] Generate random avatars using [MultiAvatar](https://api.multiavatar.com/) API - [x] Emoji picker Integrated. - [x] Users can browse and skim through active users - [x] Cross-Platform Compatibile ### Update on Features come V3 - [x] Full Migration to Typescript for scalability - [x] Profile section where users can update their avatars with actual selected image - [x] User should be abould to send photos and images while conversating - [x] Users should be able to update already set profile image, after profile creation - [x] UI Update ## Sneak Peek <img width="960" alt="Screenshot 2023-04-11 013330" src="https://user-images.githubusercontent.com/68241801/231026195-9f120896-ba33-45fc-9663-bffb382b93b7.png"> <img width="959" alt="Screenshot 2023-03-23 205051" src="https://user-images.githubusercontent.com/68241801/227335176-f41b8428-89c0-49a1-b476-54436cb059fa.png"> <img width="960" alt="Screenshot 2023-04-11 013603" src="https://user-images.githubusercontent.com/68241801/231026333-bfb82347-aee4-4629-bc69-9d1106506bb8.png"> <img width="960" alt="Screenshot 2023-04-11 014441" src="https://user-images.githubusercontent.com/68241801/231026563-bfb4380d-200b-4bcb-a112-45844d9b77ea.png"> <img width="960" alt="Screenshot 2023-04-11 013729" src="https://user-images.githubusercontent.com/68241801/231026670-be01c1ee-2245-418a-977c-61d493ec28a8.png"> <img width="960" alt="Screenshot 2023-04-11 014128" src="https://user-images.githubusercontent.com/68241801/231026727-d42903bf-ca31-48a8-b70c-6c13fe990184.png"> ## Author 👤 **Vinyl Davyl** <br/> Leave a ⭐️ If this project got you going! - Website: https://vinyldavyl.netlify.app - Twitter: [@Vinylchi](https://twitter.com/Vinylchi)
💬 Talku-Talku(final version) Next-Gen social experience! Talk with closest circle of friends and family on the web. TypeScript, Styled-components, MongoDB, Node/Express, and Socket.io
accessibility,chat-application,expressjs,full-stack,full-stack-application,javascript,mern-stack,mongodb,nodejs,react
2023-04-10T09:04:12Z
2023-04-22T14:27:56Z
2023-04-11T00:47:55Z
1
0
16
1
2
14
null
null
TypeScript
kevmo314/browser-geo-tz
main
# browser-geo-tz ![npm version](https://img.shields.io/npm/v/browser-geo-tz) This is a browser variant of [node-geo-tz](https://github.com/evansiroky/node-geo-tz). The original library says that the files are too big for the browser. This library takes advantage of HTTP range requests to load the data quickly. Check out the [demo](https://kevmo314.github.io/browser-geo-tz/). ## Usage ### Unpkg ```html <script src="http://unpkg.com/browser-geo-tz@latest/dist/geotz.js"></script> <script> console.log(await GeoTZ.find(37.3861, -122.0839)); </script> ``` ### NPM ```bash npm install browser-geo-tz ``` ```javascript import GeoTZ from "browser-geo-tz"; console.log(await GeoTZ.find(37.3861, -122.0839)); ```
A browser module to find the timezone based on gps coordinates
datetime,javascript,timezone
2023-04-14T21:23:25Z
2024-05-02T17:33:13Z
null
1
2
19
1
1
14
null
MIT
TypeScript
treeder/rend
main
# rend - the pure JavaScript server-side renderer <pre> _________ _________________________ / __ ___/ _ \_ __ \ __ / _ / / __/ / / / /_/ / /_/ \___//_/ /_/\__,_/ </pre> A light-weight, no dependency, JavaScript renderer inspired by [Lit](https://lit.dev). While Lit is awesome for client side components, Rend provides a similar experience on the server-side. It's all standard, modern JavaScript using interpolation which enables you to do any kind of JavaScript tricks you want without using some proprietary syntax. Your server side code and syntax is nearly the same as the client side. Use Rend for server side and [Lit](https://lit.dev) web components for the client side. A perfect match. [Live Demo](https://rend-giosppuxqq-uc.a.run.app/) I love constructive feedback, so please post any questions, feedback or ideas [here](https://github.com/treeder/rend/discussions). [Subscribe here](https://thingster.app/orgs/treeder/spaces/rend) to get latest updates, tips and tricks. ## Benefits * No build - ie: zero build time! * No lock-in * No proprietary syntax like with other template engines * Server side rendering * Client side rendering - use web components! They are built into the browser and are awesome. The philosophy behind this is based on islands architecture or components architecture where you server side render all the static things for super fast first contentful paint then you hydrate the dynamic areas with JavaScript to make them usable. ## Quickstart This repo is Codespaces ready, just click the button below, then at the terminal run `make run` [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/treeder/rend?quickstart=1) ## Getting Started Just install rend: ```sh npm install treeder/rend ``` ## Usage ### NEW - Islands / Component Islands / Slots Whatever you want to call it, the [basic idea](https://thingster.app/things/qsXjgXN2TD6CsL5gpmVRd) is to server side render the layout of your app and static content, then drop in client side components for interactivity. So users get a lightning fast initial page load while still having all the interactivity we expect in an app. First we make a `layout.js` file and we add content slots to it. This example has a navigation rail/drawer area and the main content area: ```js export async function layout(d) { return ` ${header(d)} <div class="container"> <div class="flex" style="gap: 12px;"> <div>${await slot('rail', d)}</div> <div>${await slot('main', d)}</div> </div> </div> ${footer(d)} ` } ``` Then you use that layout like this: ```js // Initialize rend with your main layout: let rend = new Rend({ layout: layout, data: { apiURL }, }) // In your request handler: let d = { // slotted content: rail: './views/drawer.js', // direct import, must have export a render function main: './views/index.js', // or use class components // the rest of your data name: "John Wick", car: "Mustang Boss 429", greeting: msg('Hello, how are you?', { id: 'greeting', // This is the localization ID to lookup in the es.js file locale: 'es', // Snag the user's locale from a cookie, or 'Accept-Language' or something instead of hardcoding here. }), } return rend.html(d) ``` Then make a JavaScript file for each view, we'll start with `views/index.js`: ```js import { html } from 'rend' export function render(d) { return html` <h2>Hello ${d.name}!</h2> ` } ``` To change the response status, simply add a status field: ```js return rend.html({ main: './views/404.js', status: 404, }) ``` You can find a full example of this [here](https://github.com/treeder/rend/tree/2886f788da4a2b5ab51048b0eb51b98f0316f5d9/examples/bun-hono). ## Server Side Rendering - SSR The examples above are all server side code. If you run it and view it, you'll see it render insanely fast. Because this is all JavaScript based you can do everything as you normally would in JavaScript. Here's some examples: #### Loops Here's how to loop and output: ```js export function render(d) { return html` <h2>Hello ${d.name}!</h2> These are your tasks for today: <ul> ${d.tasks.map(t) => `<li>${t.name}</li>`} </ul> ` } ``` #### Conditionals ```js export function render(d) { return html` <h2>Hello ${d.name ? d.name : 'World'}!</h2> ` } ``` ## Server Side Components Server-side components are reusable classes that render on the server. These are generally static, but can contain client-side components to make them interactive. The basic structure is to make a class with a render method. If you want to get the data object into it, create a `constructor` function like the example below. Here is an example of a server-side component: ```js import { html } from 'rend' export class MyReusableComponent { constructor(d) { this.d = d } render(d) { return html` <div style="border: 1px solid blue; border-radius: 8px; padding: 10px;"> <div class="mb-3"> I am a reusable server-side component. <span class="blue">Hello ${this.d.name}.</span> </div> <div class=""> <!-- This is a client-side web component: --> <script type="module"> import '/components/hello-world.js' </script> <hello-world name="${this.d.name}" car="${this.d.car}"></hello-world> </div> </div> ` } } ``` Then you can use it inside your pages `render` function: ```js import { html } from 'rend' import { MyReusableComponent } from './components/my-reusable-component.js' export function render(d) { return html` <h3>Server-side components</h3> <div class="mt-3"> ${new MyReusableComponent(d)} </div> ` } ``` ## Using with various platforms ### Bun with Hono This is the recommended path as Bun and Hono are more modern and use standard APIs whereas Node has it's own non-standard APIs. Example: ```js app.get('/', async (c) => { let d = { name: "John Wick", car: "Mustang Boss 429", } return rend.html('./views/index.js', d) }) ``` That's it! Full example available at [examples/bun-hono](examples/bun-hono). ### Cloudflare Pages Functions Very similar to the rest, here is an example `functions/index.js` that will serve at `/` in your Cloudflare Pages app: ```js import { Rend, html } from 'rend' import { header, footer } from './_layout.js' let rend = new Rend({ header, footer, prod: true }) export function onRequest(context) { return rend.html(index, {name: 'Honey'}) } function index(d) { return html` ${d.name}, I'm home! ` } ``` ### Node with Fastify This is a fastify example, but you can do the same with Express or whatever you like to use. ```js import { Rend } from 'rend' import { header, footer } from './views/layout.js' // Initialize Rend with header and footer render functions: let rend = new Rend({ header, footer }) // other options found in code such as prod: true for extra performance fastify.get('/', async (request, reply) => { // The following will write the response using the template at index.js and a data object you can use in your template: return rend.send(reply, './views/index.js', {name: 'John Wick'}) }) ``` To see the full example of this, see [examples/node-fastify](examples/node-fastify). Start it up with `node server.js` and surf to https://localhost:3000. That's it! ## Client Side - Web Components Web components are standard technology that is now supported in every major browser. This eliminates the need to use things like React that were created before web components were a thing. Because it's part of the browser you'll get better performance, fast builds and no lock-in! I recommend using [Lit](https://lit.dev) to help you use web components, it's a lightweight wrapper around the web components API. ### Quick example Copy the following into a file called `hello-world.js`, make sure it's in a publicly accessible folder. ```js import {html, css, LitElement} from 'lit' export class HelloWorld extends LitElement { static styles = css`p { color: blue }` static properties = { name: {type: String}, } constructor() { super() this.name = 'Somebody' } render() { return html`<p>Hello, ${this.name}!</p>` } } customElements.define('hello-world', HelloWorld) ``` Then in your `render()` function for your view, just need to import and use it: ```js <script type="module"> import '/components/hello-world.js' </script> <hello-world name="${d.name}"></hello-world> ``` It's that simple! See the [example](examples/) apps for working examples. ## Localization I recommend using the [Loco](https://github.com/treeder/loco) library as it's very simple and has some really nice convenience features. The [example](/example) app uses it to show how easy it is. The very nice thing is that it is Lit compatible you can use @lit/localize and loco with the same language files. This is being used in the [example app](/example) and [demo](https://rend-giosppuxqq-uc.a.run.app/). ## Other helpful functions ### stringify - a special version for web components A little enhancement to JSON.stringify so that it works with HTML attributes. Use this if you want to pass objects into a web or Lit component. NOTE: you do NOT need to use this if you are using the `html` tag function in your render method, it will automatically do this for you. ```js import { stringify } from 'rend' <my-component something="${stringify(obj)}"></my-component> ``` ### head - generates a nice and optimized head section A nice little function to generate a nice and optimized `<head>` section. It will help with lazy loading fonts, set all your opengraph and twitter meta tags, etc. Use this in your layout.js `header(d)` function: ```js import {head} from 'rend/head.js' export function header(d){ // this can be your entire header function: return html` ${head({ title: 'My web app!', })} ` } ``` See [examples](examples/) for more of the fields you can pass, like description, fonts, styles, etc. ## Good Practice Guidelines Here's some things we find useful that make building your apps more consistent. ### Errors Use `cause` to wrap errors: ```js try { something() } catch (err) { throw new Error("New error message", { cause: err }) } ``` Then you can check the cause with `err.cause`. ### API / HTTP Errors Use the following: ```js export class APIError extends Error { constructor(message, options) { super(message, options) this.status = options.status } toString() { return `${this.status} ${this.message}`; } } ``` ## Development ### Codespaces (recommended) To get everything setup out of the box, simply open this repo in a codespace and run: `make run`. ### Local Clone this repo. Setup: ```sh make install ``` Run: ```sh make run ``` bump
the pure JavaScript server-side renderer
framework,javascript
2023-04-09T01:31:53Z
2024-05-02T18:23:17Z
null
1
5
185
15
2
14
null
Apache-2.0
JavaScript
tomasesquivelgc/module1-capstone
main
<a name="readme-top"></a> <div align="center"> <h3><b>Module 1 capstone project</b></h3> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 [module 1 capstone project] <a name="about-project"></a> In this project I have been tasked to copy a website using everything I've learned throughout the module. Design choices have been restricted to the template, changing only the content. for a short video explanation of my project [click here](https://www.loom.com/share/6249f6a6535e4df7a40e9b1624ac3174) ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> This project is a website built using: <details> <summary>Languages</summary> <ul> <li><a href="https://html.com/">HTML</a></li> <li><a href="https://https://lenguajecss.com/">CSS</a></li> <li><a href="https://www.javascript.com/">JavaScript</a></li> </ul> </details> <details> <summary>Frameworks</summary> <ul> <li><a href="https://getbootstrap.com/">Bootstrap</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **Responsive UI** - **Mobile and desktop menu** - **JavaScript generated section** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> Visit my Live version here - [Live Demo Link](https://tomasesquivelgc.github.io/module1-capstone/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> This project is good for understanding how a website can be setup. To get a local copy up and running, follow these steps. ### Prerequisites In order to run this project you just need a web broswer. ### Setup Clone this repository to your desired folder: ```sh cd my-folder git clone https://github.com/tomasesquivelgc/module1-capstone.git ``` ### Install No need to install anything. ### Usage To run the project, simply open index.html on a web browser. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Tomás Matías Esquivel** - GitHub: [tomasesquivelgc](https://github.com/tomasesquivelgc) - Twitter: [tomas esquivel](https://twitter.com/EsquivelTomas) - LinkedIn: [tomas esquivel](https://www.linkedin.com/in/tomas-esquivel-b2160568/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **Animations** - [ ] **Button functions** - [ ] **More sections** <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](https://github.com/tomasesquivelgc/module1-capstone/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 please give it a star and continue supporting my career! <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank Microverse for helping me move forward and the following pages for providing free content for use: - https://iconos8.es - https://pixabay.com - https://www.freepik.com Also the original author of the template (Cindy Shin)[https://www.behance.net/adagio07] <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
🎉👷‍♂️Capstone project for the module 1 of Microverse. Landing page for a made up festival containing different sections. Two different documents you can navigate through with web responsiveness and 2 different layouts for mobile and desktop. DOM manipulation to create whole sections of content.
css,css3,dom-manipulation,html,javascript,mobile-first,responsive-web-design
2023-04-17T14:32:39Z
2023-10-23T04:04:21Z
null
1
2
53
0
0
13
null
MIT
HTML
CarlosIgreda/Peer-feedback
main
<a name="readme-top"></a> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Prerequisites](#prerequisites) - [Setup](#setup) - [👥 Author](#author) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [❓ FAQ (OPTIONAL)](#faq) - [📝 License](#license) # 📖 Peer feedback <a name="about-project"></a> In the "Better communication in code reviews" lesson, I have read and think a lot about the quality of my code and communication in code reviews. Now it is time for me to perform a code review for me partner! ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://www.hostinger.com/tutorials/what-is-html">HTML</a></li> <li><a href="https://www.hostinger.com/tutorials/what-is-css">CSS</a></li> <li><a href="https://www.hostinger.com/tutorials/what-is-javascript">JAVASCRIPT</a></li> </ul> </details> <details> <summary>Server</summary> <ul> <li>N/A</li> </ul> </details> <details> <summary>Database</summary> <ul> <li>N/A</li> </ul> </details> ### Key Features <a name="key-features"></a> - **Follow a correct Gitflow** - **Comply with linters** - **DOM events with Javascript** - **Javascript events** - **Use objects to store and access data** - **Use proper ES6 syntax** - **Use npm as software packages system** - **Use webpack to bundle JavaScript** - **Use ES6 modules to write modular JavaScript** <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link](https://carlosigreda.github.io/Peer-feedback) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 💻 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: ✅ Github account <br> ✅ Visual Studio Code installed <br> ✅ Node.js installed <br> ✅ Git Bash installed (optional) ### Setup Clone this repository to your desired folder: ```sh cd [my-folder] git clone git@github.com:CarlosIgreda/Peer-feedback.git ``` <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 👥 Author <a name="author"></a> **Carlos Igreda** - GitHub: [@CarlosIgreda](https://github.com/CarlosIgreda) - Twitter: [@carlosigreda](https://twitter.com/carlosigreda) - LinkedIn: [@carlosigreda](https://www.linkedin.com/in/carlosigreda) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🔭 Future Features <a name="future-features"></a> - [ ] **Dragging items** - [ ] **Frameworks** <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🤝 Contributing <a name="contributing"></a> ## 👤 Collaboration: 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> ## ⭐️ Show your support <a name="support"></a> If you like this project you can follow me on Github. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank all Microverse staff and my coding partners as well. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## ❓ FAQ <a name="faq"></a> - **What is a Linter?** - Linter is a tool that analyzes source code to flag programming errors, bugs, stylistic errors, and suspicious constructs. - **What is meant by Gitflow?** - Gitflow is an alternative Git branching model that involves the use of feature branches and multiple primary branches. - **What is DOM?** - The Document Object Model (DOM) is the data representation of the objects that comprise the structure and content of a document on the web. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
In the "Better communication in code reviews" lesson, I have read and think a lot about the quality of my code and communication in code reviews. Now it is time for me to perform a code review for me partner! We asked Code Reviewers to ignore any issues related to best practices or clean code rules during their reviews.
css,html,javascript
2023-04-11T15:10:43Z
2023-04-19T17:57:35Z
null
1
1
19
0
0
13
null
null
JavaScript
hunghg255/svg-to-jsx
master
# Script generate svg react component [![npm version](https://badge.fury.io/js/agile-svg2jsx.svg)](https://badge.fury.io/js/agile-svg2jsx) [![npm](https://img.shields.io/npm/dt/agile-svg2jsx.svg?logo=npm)](https://www.npmjs.com/package/agile-svg2jsx) [![npm](https://img.shields.io/bundlephobia/minzip/agile-svg2jsx)](https://www.npmjs.com/package/agile-svg2jsx) [![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg)](#contributors-) ## Add script package.json ```bash "scripts": { ... "g": "npx agile-svg2jsx --i $PATH_SVGS_FOLDER --o $PATH_REACT_FOLDER" }, ``` ## Demo ![Demo](./public/demo.gif) ### About <a href="https://www.buymeacoffee.com/hunghg255" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me A Coffee" height="41" width="174"></a> Gia Hung – [hung.hg](https://hung.thedev.id)
Script Convert Svg to JSX
generator,javascript,npm,svg
2023-04-20T03:21:23Z
2023-07-22T10:01:55Z
null
1
0
11
0
1
12
null
null
TypeScript
whitehorse21/ReactFlow
main
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ## 1.install ### npm ``` npm i or npm i --legacy-peer-deps ``` ### yarn ``` yarn install ``` ## 2.Start ```sh npm start or yarn start ``` ## 3.Build ```sh npm run build or yarn build ``` Builds the app for production to the `build` folder.<br> 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.<br> Your app is ready to be deployed. ## User Guide You can find detailed instructions on using Create React App and many tips in [its documentation](https://facebook.github.io/create-react-app/).
Implemented react-flow library
javascript,muiv5,react,react-flow-renderer,stripe-api,styled-components
2023-04-19T21:02:21Z
2023-04-24T20:12:21Z
null
1
0
3
0
2
12
null
null
JavaScript
whitehorse21/Structure
main
# Structure This is Landing page for crypto network. Main lang: React, TailwindCSS, StyledComponents, etc
Landing website for crypto network. Provides beautiful and full responsive interface.
bootstrap,javascript,react,styled-components,tailwindcss,typescript
2023-04-10T00:40:44Z
2023-04-17T19:16:50Z
null
1
0
5
0
0
12
null
null
JavaScript
scanapp-org/imagecodes
master
# ImageCodes by ScanApp A cross platform javascript library for scanning and generating QR codes and barcodes. This library was forked from [mebjas/html5-qrcode](https://github.com/mebjas/html5-qrcode) by the [mebjas](https://github.com/mebjas) to set path for high quality, performant and scalable library for everyone to scan and generate image codes using javascript. ## Very Important -- latest code and npm packages are in beta **Do not use this library for production yet** > mebjas@: I have forked and published this package to reserve package name. It's not yet ready for consumption as the APIs are prone to breaking changes in future. You can follow [this discussion](https://github.com/scanapp-org/imagecodes/discussions/1) to track updates on this library. Meanwhile please continue to use the latest published version of [mebjas/html5-qrcode](https://github.com/mebjas/html5-qrcode). If you are interested, please continue to use this, test and give feedbacks but **do not use this in production**. ## Key highlights for the planned library - 🔲 Support scanning [different types of bar codes and QR codes](#supported-code-formats). - 🖥 Supports [different platforms](#supported-platforms) be it Android, IOS, MacOs, Windows or Linux - 🌐 Supports [different browsers](#supported-platforms) like Chrome, Firefox, Safari, Edge, Opera ... - 📷 Supports scanning with camera as well as local files - ➡️ Comes with an [end to end library with UI](#easy-mode---with-end-to-end-scanner-user-interface) as well as a [low level library to build your own UI with](#pro-mode---if-you-want-to-implement-your-own-user-interface). - 🔦 Supports customisations like [flash/torch support](#showtorchbuttonifsupported---boolean--undefined), zooming etc. - Supports scanning as well as generating image codes. ## We need your help! ![image](https://user-images.githubusercontent.com/3007365/222830114-e5bcca15-bf8a-434e-9f48-339e82a0a4ef.png) Help incentivise feature development, bug fixing by supporting the sponsorhip goals of this project. See [list of sponsered feature requests here](https://github.com/mebjas/html5-qrcode/wiki/Feature-request-sponsorship-goals#feature-requests). [![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/L3L84G0C8) ## Supported platforms We are working continuously on adding support for more and more platforms. If you find a platform or a browser where the library is not working, please feel free to file an issue. Check the [demo link](https://blog.minhazav.dev/research/html5-qrcode.html) to test it out. **Legends** - ![](https://scanapp.org/assets/github_assets/done.png) Means full support — inline webcam and file based - ![](https://scanapp.org/assets/github_assets/partial.png) Means partial support — only file based, webcam in progress ### PC / Mac | <img src="https://scanapp.org/assets/github_assets/browsers/firefox_48x48.png" alt="Firefox" width="24px" height="24px" /><br/>Firefox | <img src="https://scanapp.org/assets/github_assets/browsers/chrome_48x48.png" alt="Chrome" width="24px" height="24px" /><br/>Chrome | <img src="https://scanapp.org/assets/github_assets/browsers/safari_48x48.png" alt="Safari" width="24px" height="24px" /><br/>Safari | <img src="https://scanapp.org/assets/github_assets/browsers/opera_48x48.png" alt="Opera" width="24px" height="24px" /><br/>Opera | <img src="https://scanapp.org/assets/github_assets/browsers/edge_48x48.png" alt="Edge" width="24px" height="24px" /><br/> Edge | --------- | --------- | --------- | --------- | ------- | |![](https://scanapp.org/assets/github_assets/done.png)| ![](https://scanapp.org/assets/github_assets/done.png)| ![](https://scanapp.org/assets/github_assets/done.png)| ![](https://scanapp.org/assets/github_assets/done.png) | ![](https://scanapp.org/assets/github_assets/done.png) ### Android | <img src="https://scanapp.org/assets/github_assets/browsers/chrome_48x48.png" alt="Chrome" width="24px" height="24px" /><br/>Chrome | <img src="https://scanapp.org/assets/github_assets/browsers/firefox_48x48.png" alt="Firefox" width="24px" height="24px" /><br/>Firefox | <img src="https://scanapp.org/assets/github_assets/browsers/edge_48x48.png" alt="Edge" width="24px" height="24px" /><br/> Edge | <img src="https://scanapp.org/assets/github_assets/browsers/opera_48x48.png" alt="Opera" width="24px" height="24px" /><br/>Opera | <img src="https://scanapp.org/assets/github_assets/browsers/opera-mini_48x48.png" alt="Opera-Mini" width="24px" height="24px" /><br/> Opera Mini | <img src="https://scanapp.org/assets/github_assets/browsers/uc_48x48.png" alt="UC" width="24px" height="24px" /> <br/> UC | --------- | --------- | --------- | --------- | --------- | --------- | |![](https://scanapp.org/assets/github_assets/done.png)| ![](https://scanapp.org/assets/github_assets/done.png)| ![](https://scanapp.org/assets/github_assets/done.png)| ![](https://scanapp.org/assets/github_assets/done.png)| ![](https://scanapp.org/assets/github_assets/partial.png) | ![](https://scanapp.org/assets/github_assets/partial.png) ### IOS | <img src="https://scanapp.org/assets/github_assets/browsers/safari_48x48.png" alt="Safari" width="24px" height="24px" /><br/>Safari | <img src="https://scanapp.org/assets/github_assets/browsers/chrome_48x48.png" alt="Chrome" width="24px" height="24px" /><br/>Chrome | <img src="https://scanapp.org/assets/github_assets/browsers/firefox_48x48.png" alt="Firefox" width="24px" height="24px" /><br/>Firefox | <img src="https://scanapp.org/assets/github_assets/browsers/edge_48x48.png" alt="Edge" width="24px" height="24px" /><br/> Edge | --------- | --------- | --------- | --------- | |![](https://scanapp.org/assets/github_assets/done.png)| ![](https://scanapp.org/assets/github_assets/done.png)* | ![](https://scanapp.org/assets/github_assets/done.png)* | ![](https://scanapp.org/assets/github_assets/partial.png) > \* Supported for IOS versions >= 15.1 > > Before version 15.1, Webkit for IOS is used by Chrome, Firefox, and other browsers in IOS and they do not have webcam permissions yet. There is an ongoing issue on fixing the support for iOS - [issue/14](https://github.com/mebjas/html5-qrcode/issues/14) ### Framework support The library can be easily used with several other frameworks, I have been adding examples for a few of them and would continue to add more. |<img src="https://scanapp.org/assets/github_assets/html5.png" width="30px" />| <img src="https://scanapp.org/assets/github_assets/vuejs.png" width="30px" />|<img src="https://scanapp.org/assets/github_assets/electron.png" width="30px" /> | <img src="https://scanapp.org/assets/github_assets/react.svg" width="30px" /> | <img src="https://seeklogo.com/images/L/lit-logo-6B43868CDC-seeklogo.com.png" width="30px" /> | -------- | -------- | -------- | -------- | -------- | | [Html5](./examples/html5) | [VueJs](./examples/vuejs) | [ElectronJs](./examples/electron) | [React](https://github.com/scanapp-org/html5-qrcode-react) | [Lit](./examples/lit) ### Supported Code formats Code scanning is dependent on [Zxing-js](https://github.com/zxing-js/library) library. We will be working on top of it to add support for more types of code scanning. If you feel a certain type of code would be helpful to have, please file a feature request. | Code | Example | | ---- | ----- | | QR Code | <img src="https://scanapp.org/assets/github_assets/qr-code.png" width="200px" /> | | AZTEC | <img src="https://scanapp.org/assets/github_assets/aztec.png" /> | | CODE_39| <img src="https://scanapp.org/assets/github_assets/code_39.gif" /> | | CODE_93| <img src="https://scanapp.org/assets/github_assets/code_93.gif" />| | CODE_128| <img src="https://scanapp.org/assets/github_assets/code_128.gif" />| | ITF| <img src="https://scanapp.org/assets/github_assets/itf.png" />| | EAN_13|<img src="https://scanapp.org/assets/github_assets/ean13.jpeg" /> | | EAN_8| <img src="https://scanapp.org/assets/github_assets/ean8.jpeg" />| | PDF_417| <img src="https://scanapp.org/assets/github_assets/pdf417.png" />| | UPC_A| <img src="https://scanapp.org/assets/github_assets/upca.jpeg" />| | UPC_E| <img src="https://scanapp.org/assets/github_assets/upce.jpeg" />| | DATA_MATRIX|<img src="https://scanapp.org/assets/github_assets/datamatrix.png" /> | | MAXICODE*| <img src="https://scanapp.org/assets/github_assets/maxicode.gif" /> | | RSS_14*| <img src="https://scanapp.org/assets/github_assets/rss14.gif" />| | RSS_EXPANDED*|<img src="https://scanapp.org/assets/github_assets/rssexpanded.gif" /> | > *Formats are not supported by our experimental integration with native > BarcodeDetector API integration ([Read more](/experimental.md)). ## Support 💖 This project would not be possible without all of our fantastic contributors and [sponsors](https://github.com/sponsors/mebjas). If you'd like to support the maintenance and upkeep of this project you can [donate via GitHub Sponsors](https://github.com/sponsors/mebjas). **Sponsor the project for priortising feature requests / bugs relevant to you**. (Depends on scope of ask and bandwidth of the contributors). <!-- sponsors --> <a href="https://github.com/webauthor"><img src="https://github.com/webauthor.png" width="40px" alt="webauthor@" /></a> <a href="https://github.com/ben-gy"><img src="https://github.com/ben-gy.png" width="40px" alt="ben-gy" /></a> <a href="https://github.com/bujjivadu"><img src="https://github.com/bujjivadu.png" width="40px" alt="bujjivadu" /></a> <!-- sponsors --> Help incentivise feature development, bug fixing by supporting the sponsorhip goals of this project. See [list of sponsered feature requests here](https://github.com/mebjas/html5-qrcode/wiki/Feature-request-sponsorship-goals#feature-requests). Also, huge thanks to following organizations for non monitery sponsorships <!-- sponsors --> <div> <a href="https://scanapp.org"><img src="https://scanapp.org/assets/svg/scanapp.svg" height="60px" alt="" /></a> </div> <div> <a href="https://www.browserstack.com"><img src="https://www.browserstack.com/images/layout/browserstack-logo-600x315.png" height="100px" alt="" /></a> </div> <!-- sponsors --> ## Credits The decoder used for the QR code reading is from `Zxing-js` https://github.com/zxing-js/library<br />
A cross platform javascript library for scanning and generating QR codes and barcodes.
qrcode,barcode,android,barcode-generator,javascript,pwa,qrcode-generator,scanner
2023-04-15T07:29:53Z
2023-04-15T07:48:25Z
null
34
0
295
0
2
12
null
Apache-2.0
TypeScript
joshuaFrias95/Encriptador-Alura-Oracle-ONE
main
# Encriptador-Alura-Oracle-ONE V'3.2 ![HTML5](https://img.shields.io/badge/html5-%23E34F26.svg?style=for-the-badge&logo=html5&logoColor=white) ![CSS3](https://img.shields.io/badge/css3-%231572B6.svg?style=for-the-badge&logo=css3&logoColor=white) ![SASS](https://img.shields.io/badge/SASS-hotpink.svg?style=for-the-badge&logo=SASS&logoColor=white) ![JavaScript](https://img.shields.io/badge/javascript-%23323330.svg?style=for-the-badge&logo=javascript&logoColor=%23F7DF1E) <br> Challenge #1 del programa del el programa [Oracle Next Education](https://www.oracle.com/mx/education/oracle-next-education/) en conjunto con [Alura Latam](https://www.aluracursos.com/) realizado con herramientas Front-end y diseño responsivo. ![Logo Alura](https://raw.githubusercontent.com/joshuaFrias95/Encriptador-Alura-Oracle-ONE/main/img/readme/aluraoracle.png) ## Funcionamiento El programa permite ingresar una cadena de texto o mensaje al cuál se reemplazan sus vocales según el siguiente patrón y viceversa: ``` 'a': 'ai', 'e': 'enter', 'i': 'imes', 'o': 'ober', 'u': 'ufat' ``` También es posible desencriptar el mismo mensaje y copiarlo al portapapeles del navegador. ![](/img/readme/dise%C3%B1ooriginalencriptadorresult.png) ## 🛠 ¡Lo logramos! Concluimos la V'3.2 <img width="100%" src="https://media.giphy.com/media/ASlOH7v8ZbimO40nm1/giphy.gif"> <br> <br> ***Algunos features que se agregaron a la versión final:*** - Diseño responsivo para escritorio, tablet o móvil ![](https://raw.githubusercontent.com/joshuaFrias95/Encriptador-Alura-Oracle-ONE/main/img/readme/encriptador%20Desktop.png) ![](https://raw.githubusercontent.com/joshuaFrias95/Encriptador-Alura-Oracle-ONE/main/img/readme/tablet.png) ![](https://raw.githubusercontent.com/joshuaFrias95/Encriptador-Alura-Oracle-ONE/main/img/readme/movil.png) - Fondo animado responsivo dentro de la etiqueta `<canvas>` - Notificación modal de copiado ## Colaborar ¿Te interesa colaborar? Sientete en la libertad de hacerlo poniendo los siguientes prefijos seguidos de su localización y de tu commit: - `Fix`: Optimización de algún fragmento de código - `Bug`: Corrección de algún error - `Add-on`: Adición de features. Prefijos de localización: - `Script`: Fichero JS - `Style`: Fichero CSS - `index`: Fichero HTML. EJEMPLO: `Add-on Script: Agrego función toggle para modo oscuro` ![](https://media.giphy.com/media/TCBJw2ZLdeOg2bDyLh/giphy.gif) ## Authors - [@joshuaFrias95](https://github.com/joshuaFrias95/) [![behance](https://img.shields.io/badge/my_portfolio-000?style=for-the-badge&logo=ko-fi&logoColor=white)](about:blank) [![linkedin](https://img.shields.io/badge/linkedin-0A66C2?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/joshua-fr%C3%ADas/) ![](https://media.giphy.com/media/KzJkzjggfGN5Py6nkT/giphy.gif)
Encriptador | Desencriptador parte del programa ONE de Oracle + Alura
challengeonecodificador5,css,html,javascript
2023-04-11T19:08:43Z
2023-05-19T05:47:01Z
2023-05-19T05:47:01Z
1
3
62
0
3
12
null
null
SCSS
bharathkalyans/leetcode-rest-api
master
# LeetCode Public API 🚀 * Get access to the live api 👉🏻 [Leetcode Rest API](https://bit.ly/leetcodeapi) # Build ⚒️ ## Initialize - Clone the repository `https://github.com/bharathkalyans/leetcode-rest-api.git` using command `git clone https://github.com/bharathkalyans/leetcode-rest-api.git` - Open the terminal, navigate to the package.json directory and run the command `npm i` or `npm install` to install all the dependencies. ## Running the Application Run the application using the below command ``` npm start ``` - Visit `http://localhost:4000` for local server access. ## File Structure ``` /. app.js /routes /leetcode.js /userInfo.js /error.js /mainRoutes.js /queries /leetcodeGraphqlQueries.js /userGraphqlQueries.js /utils /constants.js /listRoutes.js /utility.js ``` # Open Source Contribution 🎒 ### What do you need to get started? #### Latest version of Node JS, idea of how a REST API works and a bit of googling skills 😉. - All contributions are welcome 🙌🏼 - Open an issue first, get yourself assigned before working on it and describe changes made properly and attach supporting Snapshots in the PR. #### Contributors <!-- - <a href="https://github.com/bharathkalyans">**Bharath Kalyan S**</a> ~ Author - <a href="https://github.com/07prajwal2000">**Prajwal Aradhya**</a> <br> --> <a href="https://github.com/bharathkalyans/leetcode-rest-api/graphs/contributors"> <img src="https://contrib.rocks/image?repo=bharathkalyans/leetcode-rest-api" /> </a> # Sponsor ❤️ - Do consider sponsoring ❤️ us to Support this project so that we can cover the costs of the server. - You can also support this project by starring the repository, contributing through refactoring the code or updating the documentation as well. If interested in sponsoring, visit the <a href="https://github.com/bharathkalyans">**Author's**</a> profile page to Sponsor directly. <br> ## Thank you for visiting our page 😀
LeetCode API to access the details of a User
leetcode,public-api,nodejs,expressjs,javascript
2023-04-20T17:08:32Z
2023-05-22T16:15:23Z
null
2
4
40
0
2
12
null
GPL-3.0
JavaScript
hoangsonww/RecipeGenie-App
main
null
👨‍🍳 Welcome to The Recipe Genie App - The Ultimate Recipe Assistant, your personal culinary guide and portal to a world of delicious dishes. Both the web and mobile app versions are available - with the mobile app coming very soon!
html,javascript,recipe,recipe-app,recipes,cordova,django,restful-api,flask,machine-learning
2023-04-12T02:39:24Z
2024-05-23T10:18:14Z
null
2
7
75
1
7
11
null
MIT
Swift
Andrew-Tsegaye/project_openai_website_clone
start-engine
# Project OpenAI Website Clone This repository contains a clone of the [OpenAI](https://openai.com) website, created by [Andrew Tsegaye](https://github.com/Andrew-Tsegaye). The project aims to replicate the design and functionality of the original website as closely as possible, while also serving as a learning resource for web development enthusiasts. ## Table of Contents - [Demo](#demo) - [Features](#features) - [Technologies Used](#technologies-used) - [Getting Started](#getting-started) - [Contributing](#contributing) - [License](#license) ## Demo You can view a live demo of the cloned website here: [OpenAI Website Clone Demo](https://your-deployment-url.example.com) ![OpenAI Website Clone Screenshot](https://i.imgur.com/CUstJ7h.png) ## Features - Responsive design that adapts to different screen sizes - Smooth scrolling and navigation between sections - Accurate replication of the original website's layout and styling - Optimized for performance and accessibility ## Technologies Used The OpenAI Website Clone relies on the following technologies: - JavaScript - [GSAP](https://greensock.com/gsap/) - [Barba.js](https://barba.js.org) - [ScrollMagic](https://scrollmagic.io) ## Getting Started To set up the project on your local machine, follow these steps: 1. Clone the repository: https://github.com/Andrew-Tsegaye/project_openai_website_clone.git 2. Navigate to the project directory: [cd project_openai_website_clone](./client) 3. Open the `index.html` file in your preferred web browser. ## Contributing Contributions are welcome! If you'd like to improve the project, please follow these steps: 1. Fork the repository 2. Create a new branch (`git checkout -b feature-name`) 3. Commit your changes (`git commit -m 'Add feature'`) 4. Push to the branch (`git push origin feature-name`) 5. Create a new Pull Request ## License This project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for details.
This project aims to replicate the design and functionality of the original website of OpenAI as much as better than .... , while also serving as a learning resource for web development enthusiasts.
gsap,javascript
2023-04-20T11:03:46Z
2023-04-20T11:58:48Z
null
1
0
4
0
6
11
null
null
HTML
ultraleap/TouchFreeWebTooling
develop
<!--links--> [discord]: https://discord.com/invite/3VCndThqxS 'Discord Server' [touchfree]: https://developer.leapmotion.com/touchfree 'TouchFree Download' [web]: https://developer.leapmotion.com/touchfree-tooling-for-web 'TouchFree Web Tooling' [unity]: https://developer.leapmotion.com/touchfree-tooling-unity 'TouchFree Unity Tooling' [download]: https://developer.leapmotion.com/touchfree-tooling-for-web 'Ultraleap TouchFree Web Tooling Bundle Download' [install]: https://www.npmjs.com/package/touchfree 'Ultraleap TouchFree Web Tooling' [documentation]: https://docs.ultraleap.com/touchfree-user-manual/tooling-for-web.html 'Ultraleap TouchFree Web Tooling Documentation' [setup]: https://docs.ultraleap.com/touchfree-user-manual/tooling-for-web.html#setup 'Ultraleap TouchFree Web Tooling Setup Documentation' [examples]: https://github.com/ultraleap/TouchFree-Tooling-Examples/tree/develop/Examples-Web 'Ultraleap TouchFree Tooling Web Examples' <!--content--> # Ultraleap TouchFree Web Tooling [![touchfree](https://img.shields.io/badge/TouchFree-00cf75)][touchfree] [![webtooling](https://img.shields.io/badge/Web%20Tooling-00cf75)][web] [![unitytooling](https://img.shields.io/badge/Unity%20Tooling-00cf75)][unity] ![GitHub](https://img.shields.io/github/license/ultraleap/TouchFreeWebTooling) [![documentation](https://img.shields.io/badge/Documentation-docs.ultraleap.com-e47400)][documentation] [![mail](https://img.shields.io/badge/Email%20Support%20-%20support%40ultraleap.com-7535de)](mailto:support@ultraleap.com) [![discord](https://img.shields.io/badge/Ultraleap%20Developer%20Discord-7535de)][discord] TouchFree Web Tooling empowers developers to build touchless Web applications using Ultraleap's hand tracking technology. ## Getting Started Install from [NPM][install]: ``` npm i touchfree ``` Follow the [setup steps here][setup] to get started with TouchFree Web Tooling. > NPM is the recommended way to consume this package. However, if you can't use NPM, we also offer a JavaScript bundle which can be found [here][download]. ## Examples The tooling bundle includes a quick start example: `quick-start/Quick-Start_Example.html`. More examples can be found in [TouchFree Tooling Web Examples][examples]. ## Developer Guide ### Setup In order to work on TouchFree Tooling for web, you will need to do the following: - Install the LTS of [Node.js](https://nodejs.org/en/download/) - Open this directory in a terminal and run `npm i` to install dependencies - _Note: An IDE with an integrated terminal such as Visual Studio Code is recommended._ - To build TouchFree and the Snapping Plugin for Web, run `npm run build` in this directory once the dependencies are installed as above - To run the unit tests, run `npm test` in this directory # Support User Support Email: support@ultraleap.com [Ultraleap Developer Discord][discord]
TouchFree Web Tooling empowers developers to build touchless Web applications using Ultraleap's hand tracking technology
hand-tracking,javascript,leap-motion,touchfree,typescript,ultrahaptics,ultraleap,web
2023-04-18T12:05:41Z
2023-11-03T15:57:46Z
null
16
45
3,268
0
2
11
null
Apache-2.0
TypeScript
VelzckC0D3/Free_2_Playzone
dev
<a name="readme-top"></a> <div align="center"> <img src="https://github.com/VelzckC0D3/SQL_Database/assets/92229666/64c8d8a7-b625-4a25-847a-ea02e00df2f4" alt="Sin título-1"> </div> <!-- TABLE OF CONTENTS --> # 📗 Index - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Deployment](#deployment) - [👥 Author](#author) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 [Free 2 Play Zone] `WebPack` `ES6` <a name="about-project"></a> <div align="center"> <img src="mock_up.png" alt="logo" width="100%" height="auto" /> <br/> </div> **Games For Free** is a website dedicated to providing a wide range of free games for users to enjoy. The site offers a diverse selection of games in various genres, including action, adventure, puzzle, sports, and more. The games are accessible to all users and are designed to provide a fun and enjoyable gaming experience. Users can easily browse through the site to find their favorite games, which are updated regularly to provide fresh and exciting content. Whether you are a casual or avid gamer, "Games For Free" offers a fun and engaging platform for you to play games without having to pay a cent. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://webpack.js.org/">WebPack</a></li> <li><a href="https://babeljs.io/">Babel</a></li> <li><a href="https://eslint.org/">ESLint</a></li> </ul> </details> <details> <summary>Database</summary> <ul> <li><a href="https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage">Local Storage</a></li> <li><a href="https://www.freetogame.com/api-doc">Free to game API</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **[See Game Info]** Users can view information about the game, such as its title, description, and rating. - **[View Game Img]** Users can see an image of the game to get a better idea of what it looks like. - **[Play Game]** Users can directly go to the game website without having to search it. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo & preview <a name="live-demo"></a> - _You can visit the live demo [here](https://free2playzone.netlify.app/)_ <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: ```sh To have a computer, Internet, Keyboard and Mouse ``` ### Setup Clone this repository to your desired folder: ```sh Open it with Visual Studio Code (or your preffered IDE), and open a server with "LiveServer". ``` ### Install Install this project with: ```sh Installation is not necessary ``` ### Usage To run the project, execute the following command: ```sh npm run start ``` ### Deployment You can deploy this project following these steps: ```sh Open the console and run the command: npm run build This command will build the project for deployment. ``` ```sh Once the build process is complete, run the command: npm run start This command will start the deployment process. ``` ```sh The website will be deployed and accessible for use. ``` <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHOR --> ## 👥 Authors <a name="author"></a> 👤 **Alejandro Velasquez** - GitHub: [@VelzckC0D3](https://github.com/VelzckC0D3) - LinkedIn: [VelzckC0D3](https://linkedin.com/in/VelzckC0D3) 👤 **Marco Almada** - GitHub: [@MarcoDDM](https://github.com/MarcoDDM) - LinkedIn: [MarcoAlmada](https://linkedin.com/in/marcoalmadaar) <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, be pending on my profile since I'll be doing much more! <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thanks my Microverse Team and partners for helping me to get this done. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
For our JavaScript capstone, MarcoDDM and I applied the skills and knowledge we acquired in the first two modules. We incorporated various features, including pop-ups, dynamic objects, Jest unit testing, and WebPack integration, and utilized ES6 modules for better organization and functionality
api,dom-manipulation,javascript,jest,webpack
2023-04-17T15:31:12Z
2023-06-11T17:30:04Z
null
2
9
63
0
1
11
null
MIT
JavaScript
Krivich/GPT-Over-API
main
# GPT-Over-API GPT-Over-API is a lightweight client for OpenAI's GPT language model, which uses a cost-effective API. The client can be easily run from an HTML file in your browser and has no third-party dependencies or servers, making it a simple and secure solution for interacting with GPT which keeps your API token in safe. ## Getting Started To get started with the GPT-Over-API chat client, simply download the `index.html` file to your computer and open it in your web browser. Once the page loads, you will need to provide your API token to begin using the chat client. If you do not have an API token yet, it can easily be generated on the OpenAI website using link provided in the app. ## Demo Check out our live [Demo](https://krivich.github.io/GPT-Over-API/) to see GPT-Over-API in action! ## Main Features 1. Easy to use alternative client for ChatGPT 1. Uses a cost-effective API instead of buying a ChatGPT Plus subscription 1. ChatGPT responses can be cut off mid-sentence. This client lets you set a token limit to prevent this issue 1. ChatGPT responses can vary greatly between conversations. Here you to customize parameters like model selection and temperature for more consistent responses 1. Long discussions can be hindered by incorrect responses and discarded hypotheses. Our client lets you specify context data for generating more accurate and relevant answers 1. Serverless HTML & JS client, fully self-contained with no dependencies. Open-source and minimalistic, providing maximum freedom to add features and use in any browser ## Contributing We welcome contributions from anyone interested in improving GPT-Over-API! This is a very early and basic version of the client, and there is much room for improvement. If you have ideas for new features or improvements, please feel free to submit a pull request. Together, we can make GPT more accessible and useful for everyone. Note: This project is not affiliated with or endorsed by OpenAI.
An alternative lightweight ChatGPT client that uses a cost-effective API and eliminates the risk of API token leak by running from an html file in your browser and having no third-party dependencies.
chat-gpt,gpt,gpt-4,javascript,openai,openai-api
2023-04-18T12:30:15Z
2023-12-22T17:46:07Z
null
2
3
17
0
2
11
null
Apache-2.0
HTML
stephenkati/Unsplash-Image-Hub
dev
<!-- HOW TO USE: This is an example of how you may give instructions on setting up your project locally. Modify this file to match your project and remove sections that don't apply. REQUIRED SECTIONS: -Project description - Table of Contents - About the Project - Built With - Live Demo - Getting Started - Authors - Future Features - Contributing - Show your support - Acknowledgements - License OPTIONAL SECTIONS: - FAQ After you're finished please remove all the comments and instructions! --> <div align="center"> <!-- You are encouraged to replace this logo with your own! Otherwise you can also remove it. --> <br/> <h3><b>Unsplash Image Hub</b></h3> </div> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#triangular_flag_on_post-deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [Video-presentation](#presentation) - [❓ FAQ (OPTIONAL)](#faq) - [📝 License](#license) # 📖 [Unsplash Image Hub] **[Unsplash Image Hub]** provides collections from unsplash API. A user can interact with any collection by clicking on it to view details. A user can search for a collection and navigate through pages. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="#">CSS</a></li> <li><a href="#">JavaScript</a></li> <li><a href="#">React js</a></li> <li><a href="#">Readux js</a></li> </ul> </details> <details> <summary>Server</summary> <ul> <li><a href="#">No Server build yet</a></li> </ul> </details> <details> <summary>Database</summary> <ul> <li><a href="#">No database build yet</a></li> </ul> </details> ### Key Features <a name="key-features"></a> - **[Used Linters]** - **[Great summary for the repo]** - **[Use of GitFlow]** <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 💻 Getting Started <a name="getting-started"></a> - A new developer can get the project from my Github repo link i shall provide. - To get a local copy up and running, follow these steps. - go to https://github.com/stephenkati/Unsplash-Image-Hub.git - clone or download the project - Run `npm install` - Run `npm start` ### Prerequisites In order to run this project you need: - A code editor, preferably VSCode. Any other code editor is okay. - Browser ### Setup Clone this repository to your desired folder: - Run `git clone https://github.com/stephenkati/Unsplash-Image-Hub.git` - cd `Unsplash-Image-Hub` ### Install Install this project with: - Download the project from github and run it in your browser. - Install dependencies. - `npm install` ### Usage - To run the project, navigate to the project directory and use a live Server extension in your VSCode to run the project. Run `npm start` ### Run tests You can run tests to check for linter errors by running the following commands: - `npx stylelint "**/*.{css,scss}"` for testing css errors - `npx eslint "**/*.{js,jsx}"` for Javascript errors <p align="right">(<a href="#readme-top">back to top</a>)</p> ## Deployment The project is deployed on [Render](https://image-hub.onrender.com/) ## 👥 Author <a name="authors"></a> 👤 **Stephen Katuli** - GitHub: [@githubhandle](https://github.com/stephenkati) - LinkedIn: [LinkedIn](https://www.linkedin.com/in/stephen-katuli/) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🔭 Future Features <a name="future-features"></a> - [ ] **[More backround images]** - [ ] **[Animations and transitions]** - [ ] **[More Javascript Functionality]** <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🤝 Contributing <a name="contributing"></a> - Contributions, issues, and feature requests are welcome! - Feel free to check the [issues page](https://github.com/stephenkati/Unsplash-Image-Hub/issues). <p align="right">(<a href="#readme-top">back to top</a>)</p> ## ⭐️ Show your support <a name="support"></a> If you like this project please reach out to me on my social media, hire me for more content like this. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🙏 Acknowledgments <a name="acknowledgements"></a> - I would like to thankmy Microverse team and my coding partners for their support and guidance. - I am very grateful to [Nelson Sakwa on Behance](https://www.behance.net/gallery/31579789/Ballhead-App-(Free-PSDs)) for the design I used. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## PRESENTATION <a name="presentation"></a> **PROJECT PRESENTATION VIDEO** [Here](https://www.loom.com/share/74ec45675a46410983d33438bb5a8495) is a video presentation. ## ❓ FAQ (OPTIONAL) <a name="faq"></a> - **[How good are your communication skills?]** - [I have good writting and speaking communication skills in English.] - **[What else do you do apart from coding?]** - [I do graphics design.] <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 📝 License <a name="license"></a> This project is [MIT](/LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
A web app that provides unsplash image collections. It provides detailed information for each collection a user clicks.
collections,images,react,redux,unsplash-api,javascript
2023-04-17T05:44:49Z
2023-06-10T10:53:59Z
null
1
18
126
2
0
11
null
MIT
JavaScript
richardfxr/mini-synth
main
[![Mini Synth](designs/MiniSynth-GitHub-banner.jpg)](https://www.mini-synth.app/) ## What is Mini Synth? Mini Synth is a simple [Tone.js](https://tonejs.github.io/) synthesizer built with [SvelteKit](https://kit.svelte.dev/). It runs in all major browsers and was designed to provide Ugandan refugees with a tool to create music digitally. Launch the [production website](https://www.mini-synth.app/) or [learn more about this project in my portfolio](https://www.richardfxr.com/projects/mini-synth). <br> ![Mini Synth running on two Galaxy S21s in dark and light mode respectively. The player looks like a cassette with a keyboard or soundboard below it.](designs/MiniSynth-GitHub-mockup.jpg) ## Technical Overview Mini Synth is built using [SvelteKit](https://kit.svelte.dev/), mostly written in [TypeScript](https://www.typescriptlang.org/), and styled with [Dart Sass](https://sass-lang.com/dart-sass). The production site is deployed using [Vercel](https://vercel.com/). All audio capabilities are built using [Tone.js](https://tonejs.github.io/) and all songs are stored using [IndexedDB](https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API/Using_IndexedDB) with [Dexie.js](https://dexie.org/). ## Getting Started To run the code locally, you must have [Node.js](https://nodejs.org/en) installed. Then, run the following in a terminal in this project's root directory: ```bash # this will install all dependencies npm i # this will start a development server and open the app in a new browser tab npm run dev -- --open ``` ## Commit Messages [Commit messages](https://github.com/richardfxr/mini-synth/commits/main) are prefixed with the following labels to make them easier to read: - ♿️A11Y: accessibility - 🔧CNFG: configuration - 💄CSS: styling (CSS or SCSS) - 📐DES: design - 📝DOC: documentation - 🐛FIX: bug fix - 🟠SVLT: Svelte and SvelteKit - 🚧WIP: work in progress (broken/partial code) - 🎉RLS: new release ## Architecture This repository is separated into the [designs](https://github.com/richardfxr/mini-synth/tree/main/designs), [src](https://github.com/richardfxr/mini-synth/tree/main/src), and [static](https://github.com/richardfxr/mini-synth/tree/main/static) directories, along with a few top-level files. ``` designs ├── MiniSynth-GitHub-banner.jpg GitHub banner image ├── MiniSynth-GitHub-socialPreview.jpg GitHub social preview image └── miniSynth-UIconcepts-1.ai Illustrator file with all assets src ├── lib libaray of Svelte components │ ├── SVGs all icon SVGs │ ├── BPMslider.svelte cassette BPM slider and adjustment buttons (synth) │ ├── cassetteHeader.svelte cassette header section (synth) │ ├── controls.svelte cassette player controls (synth) │ ├── envLi.svelte enviroment list item (info page) │ ├── footer.svlete footer (index and info page) │ ├── helpers.ts helper functions │ ├── indexHeader.svelte header section (index page) │ ├── keyboard.svelte piano keyboard for melody input (synth) │ ├── keyboardControls.svelte three buttons that scroll keyboard (synth) │ ├── reels.svelte contrainer for melody and beats tapes (synth) │ ├── searchBar.svelte search bar (index page) │ ├── songLi.svelte song list item (index page) │ ├── soundboard.svelte soundboard for beats input (synth) │ ├── synth.svelte main synthesizer (song and demo page) │ └── tape.svelte tape (reels) │ ├── routes all Svelte file for different pages of the web app │ ├── demo\[slug] │ │ └── +page.svelte dynamic demo page that loads the [slug] demo song │ │ │ ├── info │ │ └── +page.svelte info page │ │ │ ├── song\[slug] │ │ └── +page.svelte dynamic song page that loads the [slug] song │ │ │ ├── +layout.svelte layout file (applied to all pages) │ └── +page.svelte index page │ ├── storage │ ├── db.ts Dexie database (IndexedDB) │ └── store.ts Svelte stores (state management) │ ├── styles global styling │ ├── _colors.scss sass map with all colors │ ├── _index.scss fowards all partial SCSS files in this folder │ ├── _variables.scss CSS & SCSS variables │ ├── global.scss global styles │ ├── resets.scss style resets │ └── typeface.scss typeface imports │ ├── app.d.ts type definitions └── app.html main HTML static ├── audio audio samples ├── icons web manifest icons ├── typefaces typeface files ├── app.webmanifest web manifest ├── *.png favicons and icons └── og-image-1.jpg Open Graph image ```
A simple Tone.js synth built with SvelteKit
audio,css,html,javascript,scss,svelte,sveltekit,synthesizer,tonejs,typescript
2023-04-10T16:38:10Z
2024-03-28T18:34:44Z
2024-03-28T18:34:44Z
1
0
275
0
1
11
null
null
Svelte
pradipchaudhary/100-javascript-projects
master
# [100 JavaScript Projects](https://github.com/pradipchaudhary/100-javascript-projects) **A Collection of Vanilla JavaScript Projects** This repository contains a collection of various Vanilla JavaScript projects. Each project is designed to showcase different aspects of JavaScript and its functionalities. [![Logo](./assets/images/thumbnail.jpg)](https://100jsproject.vercel.app/) <!-- ![Screenshot](banner.jpg) --> Feel free to explore each project in detail by navigating to their respective folders. Each project contains its own set of files and instructions on how to run or integrate them. # JavaScript Projects Here is a list of JavaScript projects: | Index | Project Name | Code Link | |-------|--------------|-----------| | 01 | To-Do List App | [Code](https://github.com/pradipchaudhary/100-javascript-projects/tree/master/01-To-Do%20List%20App) | | 02 | Simple Calculator | [Code](https://github.com/pradipchaudhary/100-javascript-projects/simple-calculator) | | 03 | Digital Clock | [Code](https://github.com/pradipchaudhary/100-javascript-projects/digital-clock) | | 04 | Tip Calculator | [Code](https://github.com/pradipchaudhary/100-javascript-projects/tip-calculator) | | 05 | Temperature Converter | [Code](https://github.com/pradipchaudhary/100-javascript-projects/temperature-converter) | | 06 | Random Quote Generator | [Code](https://github.com/pradipchaudhary/100-javascript-projects/random-quote-generator) | | 07 | Basic Image Slider | [Code](https://github.com/pradipchaudhary/100-javascript-projects/basic-image-slider) | | 08 | Countdown Timer | [Code](https://github.com/pradipchaudhary/100-javascript-projects/countdown-timer) | | 09 | BMI Calculator | [Code](https://github.com/pradipchaudhary/100-javascript-projects/bmi-calculator) | | 10 | Currency Converter | [Code](https://github.com/pradipchaudhary/100-javascript-projects/currency-converter) | | 11 | Weather App | [Code](https://github.com/pradipchaudhary/100-javascript-projects/weather-app) | | 12 | Expense Tracker | [Code](https://github.com/pradipchaudhary/100-javascript-projects/expense-tracker) | | 13 | Memory Game | [Code](https://github.com/pradipchaudhary/100-javascript-projects/memory-game) | | 14 | Chat Application | [Code](https://github.com/pradipchaudhary/100-javascript-projects/chat-application) | | 15 | Interactive Quiz | [Code](https://github.com/pradipchaudhary/100-javascript-projects/interactive-quiz) | | 16 | Pomodoro Timer | [Code](https://github.com/pradipchaudhary/100-javascript-projects/pomodoro-timer) | | 17 | Music Player | [Code](https://github.com/pradipchaudhary/100-javascript-projects/music-player) | | 18 | Recipe App | [Code](https://github.com/pradipchaudhary/100-javascript-projects/recipe-app) | | 19 | Car Rental Website | [Code](https://github.com/pradipchaudhary/100-javascript-projects/car-rental-website) | | 20 | Blogging Platform | [Code](https://github.com/pradipchaudhary/100-javascript-projects/blogging-platform) | | 21 | Social Media Dashboard | [Code](https://github.com/pradipchaudhary/100-javascript-projects/social-media-dashboard) | | 22 | E-commerce Website | [Code](https://github.com/pradipchaudhary/100-javascript-projects/e-commerce-website) | | 23 | Real-time Chat Room | [Code](https://github.com/pradipchaudhary/100-javascript-projects/real-time-chat-room) | | 24 | Photo Editing Tool | [Code](https://github.com/pradipchaudhary/100-javascript-projects/photo-editing-tool) | | 25 | Cryptocurrency Tracker | [Code](https://github.com/pradipchaudhary/100-javascript-projects/cryptocurrency-tracker) | | 26 | Fitness Tracker | [Code](https://github.com/pradipchaudhary/100-javascript-projects/fitness-tracker) | | 27 | Job Board Platform | [Code](https://github.com/pradipchaudhary/100-javascript-projects/job-board-platform) | | 28 | AI-powered Recommendation System | [Code](https://github.com/pradipchaudhary/100-javascript-projects/ai-powered-recommendation-system) | | 29 | Augmented Reality Game | [Code](https://github.com/pradipchaudhary/100-javascript-projects/augmented-reality-game) | | 30 | Video Streaming Platform | [Code](https://github.com/pradipchaudhary/100-javascript-projects/video-streaming-platform) | | 31 | Google Maps Integration | [Code](https://github.com/pradipchaudhary/100-javascript-projects/google-maps-integration) | | 32 | Twitter/Facebook API Integration | [Code](https://github.com/pradipchaudhary/100-javascript-projects/twitter-facebook-api-integration) | | 33 | YouTube Video Player | [Code](https://github.com/pradipchaudhary/100-javascript-projects/youtube-video-player) | | 34 | GitHub Profile Viewer | [Code](https://github.com/pradipchaudhary/100-javascript-projects/github-profile-viewer) | | 35 | Weather Forecast using OpenWeatherMap API | [Code](https://github.com/pradipchaudhary/100-javascript-projects/weather-forecast) | | 36 | News Aggregator | [Code](https://github.com/pradipchaudhary/100-javascript-projects/news-aggregator) | | 37 | Currency Exchange Rates using API | [Code](https://github.com/pradipchaudhary/100-javascript-projects/currency-exchange-rates) | | 38 | NASA API for Astronomy Data | [Code](https://github.com/pradipchaudhary/100-javascript-projects/nasa-api-astronomy-data) | | 39 | Random Joke Generator using Joke API | [Code](https://github.com/pradipchaudhary/100-javascript-projects/random-joke-generator) | | 40 | Recipe Finder using Food API | [Code](https://github.com/pradipchaudhary/100-javascript-projects/recipe-finder) | | 41 | Drawing App | [Code](https://github.com/pradipchaudhary/100-javascript-projects/drawing-app) | | 42 | Virtual Piano | [Code](https://github.com/pradipchaudhary/100-javascript-projects/virtual-piano) | | 43 | Interactive Storytelling | [Code](https://github.com/pradipchaudhary/100-javascript-projects/interactive-storytelling) | | 44 | 3D Cube Puzzle | [Code](https://github.com/pradipchaudhary/100-javascript-projects/3d-cube-puzzle) | | 45 | Text-based Adventure Game | [Code](https://github.com/pradipchaudhary/100-javascript-projects/text-adventure-game) | | 46 | Music Visualizer | [Code](https://github.com/pradipchaudhary/100-javascript-projects/music-visualizer) | | 47 | Meme Generator | [Code](https://github.com/pradipchaudhary/100-javascript-projects/meme-generator) | | 48 | Virtual Pet | [Code](https://github.com/pradipchaudhary/100-javascript-projects/virtual-pet) | | 49 | Color Palette Generator | [Code](https://github.com/pradipchaudhary/100-javascript-projects/color-palette-generator) | | 50 | Emoji Translator | [Code](https://github.com/pradipchaudhary/100-javascript-projects/emoji-translator) | | 51 | File Uploader | [Code](https://github.com/pradipchaudhary/100-javascript-projects/file-uploader) | | 52 | Password Generator | [Code](https://github.com/pradipchaudhary/100-javascript-projects/password-generator) | | 53 | QR Code Generator/Scanner | [Code](https://github.com/pradipchaudhary/100-javascript-projects/qr-code-generator) | | 54 | Unit Converter | [Code](https://github.com/pradipchaudhary/100-javascript-projects/unit-converter) | | 55 | Markdown Editor | [Code](https://github.com/pradipchaudhary/100-javascript-projects/markdown-editor) | | 56 | Voice Assistant | [Code](https://github.com/pradipchaudhary/100-javascript-projects/voice-assistant) | | 57 | Note-taking App | [Code](https://github.com/pradipchaudhary/100-javascript-projects/note-taking-app) | | 58 | Browser Extension | [Code](https://github.com/pradipchaudhary/100-javascript-projects/browser-extension) | | 59 | Calendar/Planner | [Code](https://github.com/pradipchaudhary/100-javascript-projects/calendar-planner) | | 60 | Clipboard Manager | [Code](https://github.com/pradipchaudhary/100-javascript-projects/clipboard-manager) | | 61 | Interactive Charts (using D3.js) | [Code](https://github.com/pradipchaudhary/100-javascript-projects/interactive-charts) | | 62 | Heatmap Generator | [Code](https://github.com/pradipchaudhary/100-javascript-projects/heatmap-generator) | | 63 | Dashboard with Graphs and Metrics | [Code](https://github.com/pradipchaudhary/100-javascript-projects/dashboard-graphs-metrics) | | 64 | Geographical Data Visualization | [Code](https://github.com/pradipchaudhary/100-javascript-projects/geographical-data-viz) | | 65 | Network Traffic Analyzer | [Code](https://github.com/pradipchaudhary/100-javascript-projects/network-traffic-analyzer) | | 66 | Stock Market Tracker with Graphs | [Code](https://github.com/pradipchaudhary/100-javascript-projects/stock-market-tracker) | | 67 | Polls and Survey Data Visualization | [Code](https://github.com/pradipchaudhary/100-javascript-projects/polls-survey-data-viz) | | 68 | Visualizing COVID-19 Data | [Code](https://github.com/pradipchaudhary/100-javascript-projects/covid19-data-viz) | | 69 | Population Density Map | [Code](https://github.com/pradipchaudhary/100-javascript-projects/population-density-map) | | 70 | Social Media Analytics Dashboard | [Code](https://github.com/pradipchaudhary/100-javascript-projects/social-media-analytics) | | 71 | Tic Tac Toe | [Code](https://github.com/pradipchaudhary/100-javascript-projects/tic-tac-toe) | | 72 | Snake Game | [Code](https://github.com/pradipchaudhary/100-javascript-projects/snake-game) | | 73 | 2048 | [Code](https://github.com/pradipchaudhary/100-javascript-projects/2048) | | 74 | Sudoku Solver | [Code](https://github.com/pradipchaudhary/100-javascript-projects/sudoku-solver) | | 75 | Chess Game | [Code](https://github.com/pradipchaudhary/100-javascript-projects/chess-game) | | 76 | Hangman | [Code](https://github.com/pradipchaudhary/100-javascript-projects/hangman) | | 77 | Memory Puzzle Game | [Code](https://github.com/pradipchaudhary/100-javascript-projects/memory-puzzle-game) | | 78 | Battleship | [Code](https://github.com/pradipchaudhary/100-javascript-projects/battleship) | | 79 | Crossword Puzzle | [Code](https://github.com/pradipchaudhary/100-javascript-projects/crossword-puzzle) | | 80 | Text-Based RPG | [Code](https://github.com/pradipchaudhary/100-javascript-projects/text-based-rpg) | | 81 | Multiplayer Online Game | [Code](https://github.com/pradipchaudhary/100-javascript-projects/multiplayer-online-game) | | 82 | Virtual Reality Experience | [Code](https://github.com/pradipchaudhary/100-javascript-projects/virtual-reality-experience) | | 83 | Augmented Reality App | [Code](https://github.com/pradipchaudhary/100-javascript-projects/augmented-reality-app) | | 84 | Web Scraping Tool | [Code](https://github.com/pradipchaudhary/100-javascript-projects/web-scraping-tool) | | 85 | Chatbot | [Code](https://github.com/pradipchaudhary/100-javascript-projects/chatbot) | | 86 | Voice Recognition | [Code](https://github.com/pradipchaudhary/100-javascript-projects/voice-recognition) | | 87 | Text-to-Speech | [Code](https://github.com/pradipchaudhary/100-javascript-projects/text-to-speech) | | 88 | Speech-to-Text | [Code](https://github.com/pradipchaudhary/100-javascript-projects/speech-to-text) | | 89 | Image Recognition | [Code](https://github.com/pradipchaudhary/100-javascript-projects/image-recognition) | | 90 | Face Detection | [Code](https://github.com/pradipchaudhary/100-javascript-projects/face-detection) | | 91 | Object Detection | [Code](https://github.com/pradipchaudhary/100-javascript-projects/object-detection) | | 92 | Gesture Recognition | [Code](https://github.com/pradipchaudhary/100-javascript-projects/gesture-recognition) | | 93 | Emotion Detection | [Code](https://github.com/pradipchaudhary/100-javascript-projects/emotion-detection) | | 94 | Handwriting Recognition | [Code](https://github.com/pradipchaudhary/100-javascript-projects/handwriting-recognition) | | 95 | Barcode/QR Code Scanner | [Code](https://github.com/pradipchaudhary/100-javascript-projects/barcode-qr-code-scanner) | | 96 | Color Picker | [Code](https://github.com/pradipchaudhary/100-javascript-projects/color-picker) | | 97 | Image Editor | [Code](https://github.com/pradipchaudhary/100-javascript-projects/image-editor) | | 98 | Video Editor | [Code](https://github.com/pradipchaudhary/100-javascript-projects/video-editor) | | 99 | Audio Editor | [Code](https://github.com/pradipchaudhary/100-javascript-projects/audio-editor) | | 100 | Virtual Machine Emulator | [Code](https://github.com/pradipchaudhary/100-javascript-projects/virtual-machine-emulator) | Feel free to explore and use these projects for learning and practice! If you have any questions or need further assistance, don't hesitate to ask. --- ## Contribution Contributions to this collection of Vanilla JavaScript projects are welcome. If you have a new project or an improvement to an existing one, feel free to submit a pull request. Please follow the guidelines provided in the repository for contributing. ## License This project is licensed under the [MIT License](LICENSE). You are free to use, modify, and distribute the code as per the terms of the license. Happy coding!
Explore a diverse range of 100 JavaScript projects
html5,javascript,projects,javascript-project,vanilla-js,100-javascript-projects
2023-04-20T11:10:32Z
2024-04-15T19:10:11Z
2024-02-15T15:30:22Z
3
140
537
1
3
11
null
MIT
JavaScript
prettyirrelevant/waakye
main
<h1 align="center"> <br> <a href="http://waakye.prettyirrelevant.wtf"><img src="https://res.cloudinary.com/dybhjquqy/image/upload/v1684839435/waakye_xva44d.png" alt="waakye"></a> <br> waakye <br> </h1> <h4 align="center">Convert your favorite playlists effortlessly between music streaming platforms.</h4> <p align="center"> <img alt="GitHub Workflow Status" src="https://img.shields.io/github/actions/workflow/status/prettyirrelevant/waakye/lint.yml?branch=main&style=for-the-badge&logo=github"> <img src="https://img.shields.io/badge/Go-1.19+-00ADD8?style=for-the-badge&logo=go" alt="License"> <img src="https://img.shields.io/badge/Python-3.9+-1f425f.svg?style=for-the-badge&logo=python" alt="Python version"> <img src="https://img.shields.io/badge/Javascript-F7DF1E.svg?style=for-the-badge&logo=JavaScript&logoColor=white" alt="Javascript version"> <img src="https://img.shields.io/github/license/prettyirrelevant/waakye?style=for-the-badge" alt="License"> </p> <p align="center"> <a href="#-features">Features</a> • <a href="#-usage">Usage</a> • <a href="#-folder-structure">Folder Structure</a> • <a href="#-api-documentation">API Documentation</a> • <a href="#-contributing">Contributing</a> • <a href="#-license">License</a> </p> ## 🎯 Features <sup>[(Back to top)](#--------waakye--)</sup> - Supports multiple music streaming platforms such as Spotify, Deezer, YTMusic & Apple Music(coming soon). - Intuitive web application that is *favourite adjective goes here* to use(coming soon). - CLI application for terminal lovers. - Can convert playlists with large number of tracks. - Free to use. ## 🤹 Usage <sup>[(Back to top)](#--------waakye--)</sup> ### CLI #### Installation - From the [Releases](https://github.com/prettyirrelevant/waakye/releases/latest) tab, download the appropriate release archive for your OS and architecture. - Extract the archive and move it to your system's PATH - Run `waakye --version` and ensure the version returned matches the one downloaded. #### Demo [![asciicast](https://asciinema.org/a/TGtOlT3aGj7TMtaW1e03CfV8n.svg)](https://asciinema.org/a/TGtOlT3aGj7TMtaW1e03CfV8n) ### UI Coming soon. ## 🌵 Folder Structure <sup>[(Back to top)](#--------waakye--)</sup> ```sh . ├── asaro (Ytmusicapi Wrapper API) ├── kilishi (Golang API) ├── masa (Puppeteer Authentication Server) └── shaki (CLI Application) ``` > **Note** <br> > To run any of the services above, build the Docker image using the Dockerfile provided in their respective directories. ## 📜 API Documentation <sup>[(Back to top)](#--------waakye--)</sup> All necessary documentation regarding the APIs can be found [here](https://documenter.getpostman.com/view/18767512/2s93m8z1Dd). ## 👍 Contributing <sup>[(Back to top)](#--------waakye--)</sup> Contributions of all kinds are welcome! Whether you want to report a bug, fix documentation, make feature requests, or submit pull requests(to support your music streaming platform), your contributions are highly appreciated. Let's collaborate and make this project even better together! ## ⚠️ License <sup>[(Back to top)](#--------waakye--)</sup> `waakye` is free and open-source software licensed under the [MIT License](https://github.com/prettyirrelevant/waakye/blob/main/LICENSE.md). Logo is from [Icons8](https://icons8.com/icon/d2CXqaKsX8S8/playlist).
Convert your favorite playlists effortlessly between music streaming platforms.
golang,python,spotify,ytmusic,javascript,playlist-conversion,puppeteer
2023-04-21T11:05:41Z
2023-07-23T14:07:04Z
2023-07-23T14:07:57Z
1
113
52
0
0
11
null
MIT
Go
XRRCA/CreativeCoding
main
# CreativeCoding Online guide and resources for creative coding. Compiled by and maintained by [@mngyuan](https://github.com/mngyuan) [Wiki](https://github.com/XRRCA/CreativeCoding/wiki) | [Github Repo](https://github.com/XRRCA/CreativeCoding/) | [Site](https://xrrca.github.io/CreativeCoding/) # How to use this repository [Download the whole repository as `.zip`](https://github.com/XRRCA/CreativeCoding/archive/refs/heads/main.zip) and open the files in the folder corresponding to the example you want to try. You can submit requests for new examples or corrections using [issues](issues) or [pull requests](pulls) respectively. ## [Javascript Examples](js) Examples and links to live demos with p5js, vanilla js, and more. ## [Puredata Examples](puredata) Example files for various functions in PureData/PlugData. ## [Python Examples](py) Example files for various tasks in Python with OpenCV and more. ## [TouchDesigner Examples](touchdesigner) Example files for various tasks in TouchDesigner.
Online guide and resources for creative coding.
creative-coding,javascript,p5js,touchdesigner
2023-04-20T13:49:58Z
2024-03-21T11:46:51Z
null
3
1
141
0
2
11
null
MIT
JavaScript
UbdaNam/TV-Show
dev
# TV Show <a name="readme-top"></a> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) <!-- PROJECT DESCRIPTION --> # 📖 [TV Show] <a name="about-project"> Hi there! Welcome to our TV show project</a> This is a TV show list web app that fetches real time data from the server to show you TV shows list with number of likes. This project also includes a details page for the TV shows and comments added to each TV show. ## 🛠 Built With ### Tech Stack - HTML - CSS - JAVASCRIPT ### Key Features - **[Layout]** - **[List of TV shows]** - **[Like TV show]** - **[TV show detail Page]** - **[Comment on a TV show]** <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link](https://ubdanam.github.io/TV-Show/) <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 Web browser and code editor (recommended: Visual studio). ### Setup Clone this repository to your desired folder: ``` snippet git clone https://github.com/UbdaNam/TV-Show.git ``` ### Install ``` snippet npm install ``` Install this project with: Any code editor which you are comfortable with ### Usage To run the project, execute the following command: On your computer's keyboard press f5 or run it with live server <!-- AUTHORS --> ## 👥 Author <a name="authors"></a> 👤 **Ubda Nam** - GitHub: [@UbdaNam](https://github.com/UbdaNam) 👤 **Hasnat Ali** - GitHub: [@hasnatali1947](https://github.com/hasnatali1947) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## Future Features - [ ] **[Add TV show recommandation]** - [ ] **[search TV show feature]** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- CONTRIBUTING --> ## 🤝 Contributions Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](https://github.com/UbdaNam/TV-Show/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 please give it a star. If you have any recommandations for future improvments, I would be happy to hear them. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank microverse and Hasnat ali in advance. This is the first draft of this project. It works on my machine. If you try it and run into problems, please create an issue; I'll get back to it as soon as possible. ## 📝 License This project is [MIT](./LICENSE) licensed.
This is a web application that displays a list of TV shows with real-time data fetched from the server, including the number of likes for each show. Additionally, the app includes a details page for each TV show, where users can view and add comments.
css3,html5,javascript,jest-tests,webpack
2023-04-17T11:23:57Z
2023-05-14T20:43:38Z
null
2
10
25
0
0
10
null
MIT
JavaScript
NihatQuliyev/my-portfolio
master
![Screenshot (115)](https://user-images.githubusercontent.com/116736363/232349850-486f4295-c401-4c87-a73b-f03a0e2fc815.png)
Personal my portfolio
css,html,javascript
2023-04-16T23:40:57Z
2023-04-16T23:42:24Z
null
1
0
2
0
0
10
null
null
HTML
Krishnabot/Portfolio-React
dev
<a name="readme-top"></a> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [📝 License](#license) # 📖 Portfolio <a name="about-project"></a> **Porfolio** is my personal portfolio project where I introduce myself and get a chance to show what interesting stuffs I have been building. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://reactjs.org/"><img src="https://img.shields.io/badge/React-316192?style=for-the-badge&logo=react&logoColor=white"/></a></li> </ul> </details> ### Key Features <a name="key-features"></a> - **[Single Page Application with an easy to use nav dock]** - **[EmailJs is used as mail server]** - **[Responsive for all devices]** <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link](https://krishnabot.github.io/Portfolio-React/) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 💻 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: - Nodejs installed in your computer. ([install guide](https://nodejs.org/en/download)) - Git installed and configured in your computer. ( [Install Guide](https://git-scm.com/downloads)) - Code editor preferably [Vscode](https://code.visualstudio.com/). ### Setup Clone this repo with git. Run the following command in your terminal: ```sh git clone https://github.com/Krishnabot/Portfolio-React.git ``` ### Install Install this project with: ```sh cd Portfolio-React npm install ``` ### Usage To run the project, execute the following command: ```sh npm start ``` ### Run tests No Unit or Integration Tests available for this Project ### Deployment Before deploy add the following in you package.json file - "homepage": "https://[Your github username].github.io/Portfolio-React", In scripts: - "predeploy": "npm run build", - "deploy": "gh-pages -d build", And Run the follwing Command ```sh npm run deploy ``` <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Krishna Prasad Acharya** - GitHub: [@krishnabot](https://github.com/Krishnabot) - Twitter: [@last_matrix](https://twitter.com/last_matrix) - LinkedIn: [@Krishnabot](https://www.linkedin.com/in/krishnabot/) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🔭 Future Features <a name="future-features"></a> - [ ] **[Animation in Header Section Usinf 3js]** - [ ] **[Multiple Break Points ]** - [ ] **[serverside Form Validation]** <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🤝 Contributing <a name="contributing"></a> Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](https://github.com/Krishnabot/Portfolio-React/issues). <p align="right">(<a href="#readme-top">back to top</a>)</p> ## ⭐️ Show your support <a name="support"></a> If you like this project Please give a ⭐️ <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🙏 Acknowledgments <a name="acknowledgements"></a> - Original design idea by [Alien_pixels](https://dribbble.com/Alien_pixels) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
Portfolio is my personal portfolio project where I introduce myself and get a chance to show what interesting stuffs I have been building
gh-pages,javascript,react,responsive-design,responsive-layout
2023-04-16T11:27:11Z
2023-09-13T16:38:04Z
null
1
1
49
0
0
10
null
MIT
JavaScript
GMH-Code/RPCEmu
main
RPCEmu-WASM =========== This is a WebAssembly port of the RPCEmu Risc PC Emulator. It can run the following operating systems in your web browser: - RISC OS 3.5, 3.6 and 3.7 - RISC OS 4 - RISC OS 5 -- actively developed for systems like the Raspberry Pi - RISC OS Six Try It! ------- You can try RPCEmu in your browser [here](https://gmh-code.github.io/rpcemu/). Please note that: - The original mouse had three buttons. Pressing the mouse wheel should act as the middle (menu) button. - It is possible to manually sync your files, settings, the guest CMOS, and a custom ROM with your browser's database, so long as you do this before you leave the page. Screenshot ---------- Here is RPCEmu-WASM running RISC OS 5 and a variety of applications in a web browser: ![RPCEmu in a Web Browser](./wasm/screenshot.jpg) What's Working -------------- - RPCEmu's core, including ARM610, ARM710, ARM7500, ARM7500FE and StrongARM SA-110 CPUs - Video - Audio - Keyboard - Mouse (uncaptured mode) - Floppy/hard disk/CD-ROM images - GUI Networking may also partially work, but this is untested and switched off by default. Minimum Browsers Supported -------------------------- - Firefox 79 - Chrome 68 - Edge 79 - Safari 15.2 - Opera 64 Any other browsers that support multi-threaded WebAssembly should work. Many modern mobile browsers based on these will also run the emulator, but the video may not be sized properly unless desktop mode is used. A hardware keyboard and mouse/trackpad is also recommended. Multi-Thread Information ------------------------ Note that the CPU, sound, video and RPCEmu's GUI are run in multiple threads to improve performance, but they share access to system RAM. In multi-threaded WASM, this shared memory is emulated using a JavaScript `SharedArrayBuffer`, so a single browser tab can run more than one thread in parallel. This JavaScript feature is a RPCEmu-WASM requirement, and using it can result in high CPU usage. Features Unique to this Version ------------------------------- - RPCEmu-WASM runs entirely in WebAssembly, but the build process can still construct native apps in Linux and Windows. - The Qt version has been upgraded from the version 5 range to 6.5. - You can transfer files to and from HostFS. This offers a quick way to load modules, upload archives, and export files. - You can 'upload' ADF floppy disk and ISO CD-ROM images to the emulator as it runs. - The screenshot feature can 'download' the screenshot to your local storage. - HostFS, CMOS, RPCEmu configuration, IDE disc images, and a custom ROM can be attached to the browser's IndexedDB instead of just using the in-memory filesystem. This offers a limited way to keep data between sessions, but for Emscripten performance reasons, you must manually sync to save changes. - Reintroduced mouse wheel support for PS/2-based systems. Boot Sequence ------------- This emulator boots from ROM images like many others, but to save on download size, the standard !Boot sequence is *not* installed by default. If you like, you can remove the default contents of HostFS, replace the !Boot sequence, and then sync your changes so the system starts in your preferred way the next time. ROM Support ----------- Due to licence restrictions, I only recommend using RISC OS 5 with RPCEmu-WASM. RISC OS 5 is the same version used on the Raspberry Pi, and the Risc PC version is freely available from [RISC OS Open Limited](https://www.riscosopen.org). Other versions (such as those based on RISC OS 3.x) can still be purchased, so I would not recommend using them on a public server. In any case, you should obtain your own legal advice. To run RISC OS 3.x applications, use the following tools: - Aemulor - Allows you to run 26-bit applications on 32-bit systems. This compatibility layer can also emulate RISC OS 3.1 behaviour. - ADFFS - Mounts non-standard (e.g. protected) floppy disks inside the emulator by imaging the disk and replaying I/O calls as though it was a proper disk controller. Known Issues ------------ These are problems which are specific to RISC OS 5, but *not* RISC OS 3.7. They also occur on the desktop version of RPCEmu: - Clicking a floppy drive icon without a disk in the drive results in the misleading message `Disc not formatted` instead of `Drive empty`. - Clicking the CD-ROM drive results in `CD-ROM drive not found` even if an ISO file is selected. - IDE discs (native hard disks) are untested, however these are unnecessary if the HostFS filesystem is used. - Only the instruction interpreter is supported, not the recompiler. However, should a suitable *ARM-to-WASM* recompiler ever be built, it should be extremely fast! Building from Source -- Desktop ------------------------------- If you want to build the Windows, Linux or FreeBSD desktop versions of RPCEmu, this version will do that, but you will need Qt 6.5 instead of Qt 5. See [https://www.marutan.net/rpcemu/](https://www.marutan.net/rpcemu/) for instructions on how to build the desktop version of RPCEmu. Building from Source -- WebAssembly ----------------------------------- This version of RPCEmu has been designed to build WebAssembly code in a similar way to native desktop apps: - Download, install and activate Emscripten 3.1.25, and set the environment variables as per the on-screen instructions. - Download and install Qt 6.5. In the Qt Setup ('Maintenance Tool') program, ensure you tick *WebAssembly (multi-threaded)*. Follow the desktop build instructions, noting: - Ensure `qmake`'s binary is the version from the `wasm_multithread` folder instead of `gcc_64`. - After running `qmake`, run `make` to build the *Release* version. The HTML/JS/WASM/data files and worker script will be output into the main source folder.
WebAssembly Multi-Threaded Risc PC Emulator
arm,emulator,risc,risc-os,riscos,c,cpp,multi-threading,multithreading,qt
2023-04-17T09:40:36Z
2023-06-21T17:38:03Z
null
1
0
47
0
0
10
null
GPL-2.0
C
Bestbynature/CineScope
dev
<a name="readme-top"></a> <div align="center"> <br/> <h3><b></b></h3> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📗 Table of Contents](#-table-of-contents) - [📖 \[CineScope\] ](#-cinescope-) - [🛠 Built With ](#-built-with-) - [Tech Stack ](#tech-stack-) - [Key Features ](#key-features-) - [🚀 Live Demo ](#-live-demo-) - [You can find the live version of this web application in this link =\>**CineScope**](#you-can-find-the-live-version-of-this-web-application-in-this-link-cinescope) - [💻 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 --> # 📖 [CineScope] <a name="about-project"></a> **[CineScope](https://bestbynature.github.io/CineScope/)** is a web application that displays movies collection with thier details and allows users to like or comment on a particular movie. Upon clicking a particular movie, a pop-up is displayed that gives more information. The Project is achieved by using APIs. The project also implemented features that dynamically modify the DOM and add basic events and listeners. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li>HTML</li> <li>CSS</li> <li>JAVASCRIPT</li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **[Linter checks]** - **[Webpack]** - **[API]** - **[CSS grid and flexbox]** - **[Jest testing library]** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> ### You can find the live version of this web application in this link =>**[CineScope](https://bestbynature.github.io/CineScope/)** <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. <p align="right">(<a href="#readme-top">back to top</a>)</p> ### Prerequisites In order to run this project you need: <ul> <li>The current version of node</li> <li>To have Git installed on your local machine</li> <li>Node Package manager (npm) </li> <li>An editor such as Visual Studio Code</li> </ul> <p align="right">(<a href="#readme-top">back to top</a>)</p> ### Setup Clone this repository to your desired folder: <ul> <li>Create your classic access token from github.com</li> <li>run "git clone https://{access_token}@github.com/username/{repo_name}.git"</li> <li>Update your git identity by running "git config --global user.email "your_email@gmail.com""</li> <li>Update your name on git by running "git config --global user.name "your_name"</li> </ul> <p align="right">(<a href="#readme-top">back to top</a>)</p> ### Install Install this project with: ```sh - In the first commit of your feature branch create a .github/workflows folder and add a copy of [.github/workflows/linters.yml](https://github.com/microverseinc/linters-config/blob/master/html-css-js/.github/workflows/linters.yml) to that folder. - create a .gitignore file and add 'node_modules' to it - run 'npm init -y' - run 'npm install --save-dev hint@7.x' - Copy [hintrc](https://github.com/microverseinc/linters-config/blob/master/html-css-js/.hintrc) to the root directory of your project. - run 'npx hint .' - Fix validation errors. - run 'npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x' - Copy [stylelintrc.json](https://github.com/microverseinc/linters-config/blob/master/html-css-js/.stylelintrc.json) to the root directory of your project. - Run 'npx stylelint "\*_/_.{css,scss}"' - fix linter errors - run "npm install --save-dev eslint@7.x eslint-config-airbnb-base@14.x eslint-plugin-import@2.x babel-eslint@10.x" - Copy [eslintrc.json](https://github.com/microverseinc/linters-config/tree/master/html-css-js) - Run npx eslint . on the root of your directory of your project - Fix linter error. ### To Install Jest - run npm install --save-dev jest - add " "test": "jest", "watch": "jest --watch *.js" to the scripts section of package.json" - run npm install --save-dev @babel/plugin-transform-modules-commonjs - create a file at the root called .babelrc - copy `{ "env": { "test": { "plugins": ["@babel/plugin-transform-modules-commonjs"] } } }` inside the file ``` <p align="right">(<a href="#readme-top">back to top</a>)</p> ### Usage <a name="usage"></a> To run the project, execute the following command: ```sh use git bash to open in Vs code use npm start to run web dev server npm run build to get the production version ``` <p align="right">(<a href="#readme-top">back to top</a>)</p> ### Run tests <a name="run-tests"></a> To run tests, run the following command: ```sh Run "npx hint ." Run "npx stylelint "**/*.{css,scss} --fix " to fix linters Run "npx eslint . --fix to fix linters" ``` <p align="right">(<a href="#readme-top">back to top</a>)</p> ### Deployment <a name="triangular_flag_on_post-deployment"></a> You can deploy this project using: - github pages ```sh - npm run deploy ``` <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Damilare Ismaila** - GitHub: [@githubhandle](https://github.com/Bestbynature) - Twitter: [@twitterhandle](https://twitter.com/Dammybest) - LinkedIn: [LinkedIn](https://www.linkedin.com/in/damilare-ismaila-4a5a8b30/) 👤 **Harriet Oteng** - GitHub: [@githubhandle](https://github.com/newhoteng) - Twitter: [@twitterhandle](https://twitter.com/HarrietOteng1) - LinkedIn: [LinkedIn](https://www.linkedin.com/in/harriet-oteng-75554666/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **[contact form page for customers]** - [ ] **[A feature for alternative list of movies]** - [ ] **[A feature for voting the best movie on the list]** <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, kindly drop a star for me. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to use this medium to appreciate [Microverse](https://microverse.org) for giving me this type of opportunity. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
CineScope is a web application that displays movies collection with their details and allows users to like or comment on a particular movie. Upon clicking the comment button, a pop-up is displayed that gives more information. The Project is achieved by consuming TV MAZE API for the actual movies and Involvement API for the interactions..
css,eslint,ghpages,html5,javascript,jest,stylelint,webpack5
2023-04-13T16:36:31Z
2023-04-29T13:35:48Z
null
2
9
49
36
0
10
null
NOASSERTION
JavaScript
Salimer/RLCS-event-template
main
<a name="readme-top"></a> <div align="center"> <img src="murple_logo.png" alt="logo" width="140" height="auto" /> <br/> <h1><b>Welcome to my project 😃</b></h1> </div> <div align="center"> <img width="923" alt="Screenshot 2023-04-19 at 14 28 05" src="https://user-images.githubusercontent.com/52242629/233061307-554e3548-80de-4f58-8b55-7eab0b6bf1ef.png"> <br/> <h1 align="center">Rocket League Championship Series 22-23 event webpage</h1> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🤯 Walk through video ](#walk-through) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [❓ FAQ (OPTIONAL)](#faq) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 [RLCS event webpage] <a name="about-project"></a> **RLCS event webpage** is a project to market, sell tickets and more about a hypotetical event of Rocket League. This project is adaptable for other topics, [check out this loom recording.](https://www.loom.com/share/0d02cb2c31d24d74adf57b188ad122bd) ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://www.w3.org/TR/2011/WD-html5-20110405/">HTML5</a></li> <li><a href="https://www.w3.org/Style/CSS/specs.en.html">CSS</a></li> <li><a href="https://www.ecma-international.org/publications-and-standards/standards/ecma-262/">JavaScript</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **Landing Page for activities** - **Mobile first development** - **Responsiveness and flexibility for any screen size** - **Fast access to social media and other ways of contact** - **Easy to the eyes and cultivating at the same time** - **Dynamic creation of content** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🤯 Walk through video <a name="walk-through"></a> - [here](https://www.loom.com/share/0d02cb2c31d24d74adf57b188ad122bd) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link](https://salimer.github.io/RLCS-event-template/) <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: - Clone this repo as described in the setup section. - Make modifications as peferred ### Prerequisites In order to run this project you need: To clone or fork and run it in a browser ### Setup Clone this repository to your desired folder: Example commands: ```sh cd my-folder git clone https://github.com/Salimer/RLCS-event-template.git cd Portfolio ``` using Ubuntu: ```sh cd my-desired-folder git clone https://github.com/Salimer/RLCS-event-template.git ``` For more information on how to clone or fork a repository: - <a href="https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository">How to clone a repo</a> - <a href="https://docs.github.com/en/get-started/quickstart/fork-a-repo">How to fork a repo</a> ### Install There is no installation required. ### Usage To run the project, open with **index.html** with any web browser. For example, for Google Chrome with Ubuntu: ```sh cd RLCS-event-template google-chrome index.html ``` ### Run tests There are no test available for this project. ### Deployment To deploy this project, use any web hosting service. This project is deployed using [GitHub Pages](https://pages.github.com/). Go to [🚀 Live Demo](#live-demo) to check it out. <p align="right">(<a href="#readme-top">back to top</a>)</p> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Author <a name="authors"></a> 👤 **Salim Bamahfoodh** - GitHub: [@Salimer](https://github.com/Salimer) - LinkedIn: [Salim Bamahfoodh](https://www.linkedin.com/in/salim-bamahfoodh-707b74200/) - Youtube: [Salim Bamahfoodh](https://www.youtube.com/channel/UCGKq9eJQY2qTKRfDDbMOUyA) <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> Future changes: - improve slider responsiveness - Add more webpages such as Tickets Page and Schedule Page. <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> Give a ⭐️ if you like this project! <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> - Templete used in project provided by (Microverse). - Original design idea by [Cindy Shin in Behance](https://www.behance.net/adagio07). - A special thanks to my dear friend [Rakman Anaam](https://ig.me/m/rakmananaam) for the preview design <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FAQ (optional) ## ❓ FAQ (OPTIONAL) <a name="faq"></a> > Add at least 2 questions new developers would ask when they decide to use your project. - **[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](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
RLCS event webpage is a project to market, sell tickets and more about a hypotetical event of Rocket League. This project is adaptable for other topics! Built with HTML, CSS and JavaScript.
css,html,javascript
2023-04-20T08:40:36Z
2023-05-08T12:13:31Z
null
1
0
3
0
0
10
null
MIT
HTML
jojo987N/first-capstone
main
<p align="center" > <a href="https://jojo987n.github.io/first-capstone/"><img src="img/capstone-1.gif" alt="Portfolio Scrolling" /></a> </p> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Deployment](#deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [📝 License](#license) # 📖 First Capstone : HTML/CSS & JavaScript project <a name="about-project"></a> **First Capstone: HTML/CSS & JavaScript** is website for IT meeting project build with HTML, CSS, Javascript , using design guidelines , a mobile first approach, with best practices, Github flow and a descriptive and easy to understand README file. ## 🛠 Built With <a name="built-with"></a> - HTML - CSS - Linters ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML">HTML</a></li> </ul> <ul> <li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS</a></li> </ul> </details> ### Key Features <a name="key-features"></a> - Desktop Version - Mobile Version - Home Page - About Page ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link](https://jojo987n.github.io/first-capstone/) ## 💻 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: - Web browser. - Code editor. - Git scm. ### Setup Clone this repository to your desired folder: Run this command: ```sh cd my-folder git clone git@github.com:jojo987N/first-capstone.git ``` ### Install Install this project with: Run this command: ```sh cd my-folder npm install ``` ### Usage To run the project, execute the following command: Open index.html using live server extension. ### Deployment - [Live Demo Link](https://jojo987n.github.io/first-capstone/) ## 👥 Authors <a name="getting-started"></a> - 👤 Narcisse Jemba - GitHub: [@githubhandle](https://github.com/jojo987N) - Twitter: [@JembaNarcisse](https://twitter.com/JembaNarcisse) - LinkedIn: [LinkedIn](https://www.linkedin.com/in/narcisse-jemba-aa9488252/) - 👤 [Cindy Shin](https://www.behance.net/adagio07) ## 🔭 Future Features <a name="future-features"></a> - [ ] add the "More" button on the home page, - [ ] implement additional pages, like the tickets page and the schedule page ## 🤝 Contributing <a name="contributing"></a> Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](../../issues/). ## ⭐️ Show your support <a name="support"></a> If you like this project just give it a star ⭐️ . Everybody is welcome to suggest changes in Hello portfolio files. In order to do it, fork this repository, create a new branch and open a Pull Request from your branch ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank [Cindy Shin](https://www.behance.net/adagio07) for the Original design ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE.md) licensed.
This project is based on an online website for a conference. The pages look almost identical to the original design. Each pages have versions for 2 different screen sizes, include transitions and animations
css,css3,html,html5,javascript
2023-04-19T11:28:33Z
2023-05-06T21:10:31Z
null
1
3
16
0
0
9
null
MIT
CSS
andrianarivo/Genshin-Summit
main
<a name="readme-top"></a> <div align="center"> <!-- You are encouraged to replace this logo with your own! Otherwise you can also remove it. --> <img src="images/andrianarivo.png" alt="javascript" width="40" height="40"/> <br/> <h3><b>Hi 👋, I'm Andrianarivo David</b></h3> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📗 Table of Contents](#-table-of-contents) - [📖 Genshin summit](#-genshin-summit) - [🛠 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) - [Deployment](#deployment) - [👥 Authors ](#-authors-) - [🔭 Future Features ](#-future-features-) - [🤝 Contributing ](#-contributing-) - [⭐️ Show your support](#️-show-your-support) - [🙏 Acknowledgments ](#-acknowledgments-) - [📝 License ](#-license-) <!-- PROJECT DESCRIPTION --> # 📖 Genshin summit<a name="about-project"></a> **The Genshin Impact Summit** is a virtual event that provides a gathering place for fans of the popular video game, Genshin Impact, to engage in a variety of community activities, such as keynote speeches, interactive workshops, live gameplay sessions, panel discussions, and community-driven events. The Summit offers attendees a chance to connect with fellow fans from around the world, gain insights into the game's development, and participate in exciting events and activities. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML">HTML</a></li> <li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS</a></li> <li><a href="https://sass-lang.com/">SASS</a></li> <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank" rel="noreferrer">Javascript</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **Mobile first** - **Dynamic page with JS** - **Mobile menu** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> - Take a look at the video introduction of the project [here](https://www.loom.com/share/fb8cd525d1fe43d5a40df414e0e34277). - [Live Demo Link](https://andrianarivo.github.io/Genshin-Summit/) <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'll need: - `NodeJS` - `VSCode` ### Setup Clone this repository to your desired folder: ```sh cd my-folder git clone git@github.com:andrianarivo/capstone-1.git ``` ### Install Install this project with: ```sh cd my-project npm install ``` ### Usage To run the project start [live server](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer). To use lints, run following commands: ```sh npx hint . npx stylelint "**/*.{css,scss}" npx eslint . ``` ### Deployment You can deploy this project by pushing to your own `github page` <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Author1** - GitHub: [@andrianarivo](https://github.com/andrianarivo) - LinkedIn: [David Andrianarivo](https://www.linkedin.com/in/david-andrianarivo-3692101b6/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **popup window on click to past summit** - [ ] **page to tickets and lunch** - [ ] **page to schedule** <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](https://github.com/andrianarivo/capstone-1/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, consider giving it a ⭐️ <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> Original design idea by [Cindy Shin in Behance](https://www.behance.net/adagio07). The design is used under the [creative common license](https://creativecommons.org/licenses/by-nc/4.0/). No changes were made to the original design. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
A Creative Common website that features Genshin impact summit where users can look at the program, the featured speakers and past summits. We used SCSS and vanilla JS in this project.
css,html,javascript
2023-04-15T18:23:23Z
2023-07-02T16:04:54Z
null
1
3
20
0
0
9
null
MIT
SCSS
taisiat/Caro
main
# caro _Rails React fullstack clone of Turo_ ### Background Caro is a fullstack clone of <a href="https://turo.com/">Turo</a>, which is a peer-to-peer car rental service ('Airbnb for cars'). Caro features Google's autosuggest `Places Search Box` and `Google Maps`, with dynamic functionality to search the cars index based on the `Google Map` `viewport` and other `URL search parameters`. Users have CRUD functionalities for: - booking (fake) cars (full CRUD) - writing car reviews (full CRUD) - favoriting cars (create/read/delete) Caro also has full user auth. Explore it <a href="https://caro.herokuapp.com/?utm_source=caro&utm_medium=readme">🚘 here!</a> <br> Or, watch the quick <a href="https://youtu.be/8bXo3bS2eqk">▶️ video walkthrough.</a> <a href="https://github.com/taisiat">Github</a> <br> <a href="https://www.linkedin.com/in/taisiakaraseva/">Linkedin</a> <br> <a href="https://www.taisiat.com/?utm_source=caro&utm_medium=readme">Portfolio</a> --- ### Functionality & MVPs In Caro, users are able to: - Search for cars with filters for dates available, car owner's 'Superhost' status, car experience type (ex: electric), daily rate, and location - See a `Google Map` with plotted car search results, and narrow down search results by: - changing the `Google Map`'s `viewport` - searching locations in a Google autosuggest `Places Search Box` - Book cars, with validations that include prevention of overlap in each car's booked-out dates - View their trips, with ability to edit/delete future trips and add/edit/delete reviews of past trips; reviews flow through to update star ratings for cars and car hosts - View a grid of their liked cars, and favorite/unfavorite cars from several app locations - View reviews others left for their cars and reviews they wrote for their past trips - Sign up/log in to an account or explore as demo user Dom Torreto --- ### Technologies, Libraries, APIs This project is implemented with the following technologies: - `React` and `JavaScript` frontend with `CSS` styling, `AJAX` techniques, and `Redux state` - `Ruby on Rails` backend with `JBuilder` to sculpt backend responses - Google `Maps JavaScript API`, `Places API`, and `Geocoding API` to enable the map and locations search - `AWS` for hosting car and user images and `Active Storage` for using images in app - `Flatpickr` for trip date selection - `Heroku` for app hosting - `Webpack` to bundle and transpile the source code - `npm` to manage project dependencies - `bcrypt` and `has_secure_password` Active Record macro method for user auth --- ### Implementation Highlights ### Car search A user can dynamically search cars and narrow down results using filters and `Google Map` `viewport` area. Example search starting with the Google autosuggest `Places Search Box`: ![Search via places searchbox](https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExZTIwNzc1NTU2MWQxNDc0ODk2NDQxNGNhZDc1YzgwYTE2MDgwM2JmMCZlcD12MV9pbnRlcm5hbF9naWZzX2dpZklkJmN0PWc/64f21jDwQyBMo81CRE/giphy.gif) Example search starting with the city/experience tiles: ![Search via city and experience selectors](https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExZjk5MDY1MGNjZTZjYjg2YzI1ZmFhOWI4MTFjOGZlNWNlMzNkZDk3NCZlcD12MV9pbnRlcm5hbF9naWZzX2dpZklkJmN0PWc/7x94T1MrvpzVltTtPg/giphy.gif) The `CarsSearchIndex` listens to changes in filters (shared as `URL search params` and stored as `state variables`) and triggers a backend call to fetch cars based on those filters. Before dispatching the fetch request, it also normalizes dates to UTC. <h5 a><strong><code>CarsSearchIndex/index.js</code></strong></h5> ```JavaScript useEffect(() => { if ( minPricing !== undefined && maxPricing !== undefined && bounds && experienceType && (superhostFilter === false || superhostFilter === true) && searchPageFromDate && searchPageUntilDate ) { dispatch( fetchCars({ minPricing, maxPricing, bounds, superhostFilter: superhostFilter, experienceType, tripStart: handleDateChange(searchPageFromDate), tripEnd: handleDateChange(searchPageUntilDate), }) ); } }, [ minPricing, maxPricing, bounds, superhostFilter, experienceType, searchPageFromDate, searchPageUntilDate, dispatch, ]); ``` Notably, dragging or zooming the Google Map triggers dispatching a cars fetch request by changing the value of `bounds`, which is a set of lat/lng values representing the `Google Map`'s `viewport`. If a user opts to search via the `Places Search Box`, the search action feeds a location and Google-suggested `viewport` coordinates to the map, which also results in a change to `bounds`. Using `viewport` coordinates enables dynamic zoom level - specific addresses ('Ferry Building') will zoom in closer on the `Google Map` than less specific ones ('San Francisco'). <h5 a><strong><code>CarsSearchIndex/index.js</code></strong></h5> ```JavaScript const mapEventHandlers = useMemo( () => ({ click: (event) => { const search = new URLSearchParams(event.latLng.toJSON()).toString(); }, idle: (map) => { const newBounds = map.getBounds().toUrlValue(); if (newBounds !== bounds) { setBounds(newBounds); } }, }), [history] ); ``` The backend then filters down the list of cars that meet criteria. An interesting filter to note is the last one that picks only cars that aren't booked out during the requested trip dates. It checks the trips associated with each car and only selects the car if the possible overlap scenarios aren't happening between any of the car's trips and the requested trip dates. <h5 a><strong><code>cars_controller.rb</code></strong></h5> ```Ruby def index @cars = Car.includes(:host).includes(:reviews).includes(:trips) @cars = @cars.in_bounds(bounds) if bounds @cars = @cars.where(daily_rate: price_range) if price_range if superhost_filter === 'true' @cars = @cars.where(host_id: User.where(is_superhost: true).pluck(:id)) else @cars end if experience_filter === 'all' @cars else @cars = @cars.where(category: experience_filter) end if !date_range @cars elsif date_range === ["",""] || date_range === ["Invalid Date", "Invalid Date"] @cars else @cars = @cars.where.not(id: Trip.where("(start_date <= ? AND end_date >= ?) OR (start_date <= ? AND end_date >= ?) OR (start_date >= ? AND end_date <= ?)", Date.parse(date_range[0]),Date.parse(date_range[0]) , Date.parse(date_range[1]), Date.parse(date_range[1]), Date.parse(date_range[0]), Date.parse(date_range[1])) .select(:car_id)) end end ``` The resultant cars list gets passed to the `Google Map` for placement of markers, and to the `CarList` component which maps each to a `CarSearchIndexItem`. --- ### An interesting search challenge Caro allows users to start a `Places Search Box` search from any page via a navbar searchline and the splash page's searchbar. The search action triggers a jump over to the cars search index, which dispatches a cars fetch using the search inputs. The challenge came with how to force a cars fetch when initiating a search when ALREADY on the cars search index page. Unlike other cases, here the page and map are already rendered. #### My v0 solution My initial solution was to utilize a custom `handleSearchClick` on the `SearchLine` search component that checked current URL location and pushed `URL search params` if it detected it was already on the search page. In other cases, `localStorage` was used to pass along search criteria. <h5 a><strong><code>SearchLine/index.js</code></strong></h5> ```JavaScript const handleSearchClick = () => { if (location.pathname.match(/^\/cars\/?$|^(?!\/cars\/\d)\/cars\/\?.*/)) { setSearchPageFromDate(from); setSearchPageUntilDate(until); setSearchPageWhere(where); history.push(`/cars?coords=${coords.lat},${coords.lng}`); } else { localStorage.setItem("fromDate", from); localStorage.setItem("untilDate", until); localStorage.setItem("where", where); localStorage.setItem("coords", JSON.stringify(coords)); history.push("/cars/"); } }; ``` Meanwhile the `CarMap` listened to changes in the URL, parsed the value if it found the appropriate key, and changed the `Google Map`'s center and zoom level. <h5 a><strong><code>CarMap/index.js</code></strong></h5> ```JavaScript const location = useLocation(); useEffect(() => { if (map) { const urlParams = new URLSearchParams(location.search); if (urlParams.get("coords")) { const coords = urlParams .get("coords") .split(",") .map((coord) => parseFloat(coord)); const newLatLng = new window.google.maps.LatLng(coords[0], coords[1]); map.setCenter(newLatLng); map.setZoom(14); } } }, [location]); ``` The change in the `Google Map`'s viewport triggered a change to `bounds` as described above, which caused a new dispatch to fetch cars, refreshing the search results. #### My v1 solution I refactored my frontend search code to use `URL search params` in all cases instead of `localStorage`. Storing the search query in the URL has benefits such as ability to share the search parameters easily with friends and press backspace to return to the same search query. This is what my code looks like now. This reflects a few refactors: `localStorage`-> `URL search params`, static zoom level -> `viewport` coordinates, and 'click to search' -> 'exit input box to search'. <h5 a><strong><code>SearchLine/index.js, location input box example</code></strong></h5> ```JavaScript const existingSearchParams = new URLSearchParams(location.search); const handlePlaceOnSelect = (address) => { setWhere(address); geocodeByAddress(address) .then((results) => { if (results && results.length > 0) { getLatLng(results[0]).then((latLng) => { setCoords(latLng); existingSearchParams.set("coords", `${latLng.lat},${latLng.lng}`); existingSearchParams.delete("zoom"); //only update date params if they are different from the ones already in URL let paramsDatesArr = []; if (existingSearchParams.get("dates")) { paramsDatesArr = existingSearchParams .get("dates") .split(",") .map((dateStr) => new Date(dateStr).toLocaleDateString("en-US") ); } const dateRangeArr = dateRange.map((date) => date.toLocaleDateString("en-US") ); if ( paramsDatesArr[0] !== dateRangeArr[0] || paramsDatesArr[1] !== dateRangeArr[1] ) { existingSearchParams.set("dates", dateRange); } //set viewport from Google Place's API callback if (results[0].geometry.viewport) { const viewportCoords = results[0].geometry.viewport.toJSON(); existingSearchParams.set( "viewport", `${viewportCoords.east},${viewportCoords.west}, ${viewportCoords.north}, ${viewportCoords.south}` ); } existingSearchParams.set("location", address); history.push({ pathname: "/cars", search: existingSearchParams.toString(), }); }); } else { console.error("No results found for the address:", address); } }) .catch((error) => console.error("Geocoding error:", error)); setValidPlace(true); }; ``` To accomodate the refactor, the `Google Map` now pulls the needed info from `URL search params` and parses `viewport` coordinates to determine what area to show on the map. <h5 a><strong><code>CarMap/index.js</code></strong></h5> ```JavaScript const urlParams = new URLSearchParams(location.search); const coordsParams = urlParams.get("coords"); const zoomParams = urlParams.get("zoom"); const viewportParams = urlParams.get("viewport"); useEffect(() => { if (map) { if (coordsParams) { const coords = coordsParams .split(",") .map((coord) => parseFloat(coord)); const newLatLng = new window.google.maps.LatLng(coords[0], coords[1]); map.setCenter(newLatLng); if (viewportParams) { const bounds = new window.google.maps.LatLngBounds(); const coords = viewportParams .split(",") .map((coord) => parseFloat(coord.trim())); const west = coords[0]; const east = coords[1]; const north = coords[2]; const south = coords[3]; bounds.extend(new window.google.maps.LatLng(north, west)); bounds.extend(new window.google.maps.LatLng(south, east)); map.fitBounds(bounds); } else if (zoomParams) { map.setZoom(parseInt(zoomParams)); } else { map.setZoom(15); } } } }, [coordsParams, zoomParams, viewportParams, map]); ``` --- ### Backend-call optimization Caro stores user, car, and other data across several tables and joins tables. Frontend pages have components that combine data from across several tables. Backend `model associations` and `JBuilder` help send the right info to each component while minimizing backend calls. ![Favorites and car show pages](https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExNmNhZjAxZDNmMjMwOGVkOTExMWZkZGEzMTU2OGU0MjMzNjhiM2RiZiZlcD12MV9pbnRlcm5hbF9naWZzX2dpZklkJmN0PWc/lv2XIQcOUJdqFMNcoT/giphy.gif) As an example, the favorites page pulls all favorites for only the current user and eagerly loads associated data. <h5 a><strong><code>favorites_controller.rb</code></strong></h5> ```Ruby def index if current_user @favorites = Favorite.includes(:driver).includes(:car).where(driver_id: current_user.id).order(updated_at: :desc) else head :no_content end end ``` `JBuilder` then constructs a response that includes info for each favorite and for the car that is attached to the favorite, along with the car's photos and host info. <h5 a><strong><code>_favorite.json.jbuilder</code></strong></h5> ```Ruby json.extract! favorite, :id, :driver_id, :car_id, :created_at json.car do json.extract! favorite.car, :id, :make, :model, :year, :mpg, :doors_count, :seats_count, :category, :automatic, :description, :guidelines, :daily_rate, :location, :active, :host_id, :created_at, :avg_cleanliness_rating, :avg_maintenance_rating, :avg_communication_rating, :avg_convenience_rating, :avg_accuracy_rating, :trips_count, :reviews_count, :city if favorite.car.photos.attached? photos = [] favorite.car.photos.each do |photo| photos << url_for(photo) end json.photos_url photos end json.host do json.extract! favorite.car.host, :id, :first_name, :last_name, :approved_to_drive, :is_superhost, :is_clean_certified, :email, :phone_number, :created_at, :updated_at, :trips_count, :user_rating, :hosted_cars_count end end ``` Because each favorite's info includes associated car and car's host detail, the `FavoriteIndexItem` component that renders each favorited car tile doesn't need to fetch its own data, but rather gets the required information via props as `favorite` from its parent `FavoritesPage`. <h5 a><strong><code>FavoritesPage/index.js</code></strong></h5> ```JavaScript ... <div id="favs-index-container"> {favorites && favorites.map((favorite, idx) => ( <FavoriteIndexItem key={idx} favorite={favorite} /> ))} </div> ... ``` As a result, `Redux state` looks like this: ![Redux state](https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExNGU2ODM4YTBlNDU3ZjI3ODc0MGI0N2UyYzgwYjcyOWZjN2M3NDVhMiZlcD12MV9pbnRlcm5hbF9naWZzX2dpZklkJmN0PWc/rGhoOU7i9Zo64YIafC/giphy.gif) --- #### Other Features Take a look at the source files for implementation of other notable features: - User auth - Sign up and log in modals - Date handling between UTC backend and local timezone frontend - Frontend and backend input validation + messaging throughout - Loading page spinner --- ### Future Features Upcoming improvements include: - Additional CRUD for listing new cars - Ability to change user profile picture --- ### Asset Attribution - Seed content by <a href="https://chat.openai.com/chat">ChatGPT</a> - Images: - Splash image by <a href="https://unsplash.com/@itookthose?">Sid Balachandran on Unsplash</a> - Other images from <a href="https://turo.com/">Turo</a>
Rails React fullstack clone of Turo (‘Airbnb for cars’) with search, Google Maps+Places integration, 3 CRUD features, and full user auth
activestorage,aws,css,css-flexbox,css-grid,flatpickr,google-geocoding-api,google-maps-api,google-places-api,heroku
2023-04-13T03:44:45Z
2023-08-22T22:49:47Z
null
2
19
152
0
3
9
null
null
JavaScript
suchoX/react-native-typewriter
main
# React Native Typewriter React Native text component with animated typewriter effect. <p align="center"><img src="https://github.com/suchoX/react-native-typewriter/blob/main/assets/demo.gif"></p> # Installation ```bash yarn add @sucho/react-native-typewriter ``` OR ```bash npm install --save @sucho/react-native-typewriter ``` # Usage Add the `Typewriter` component to your app ```javascript import React from 'react' import { StyleSheet, View } from 'react-native' import TypeWriter from '@sucho/react-native-typewriter' const BACKGROUND = '#263238' const WHITE = '#ffffff' const PINK = '#c2185b' const styles = StyleSheet.create({ container: { flex: 1, padding: 24, backgroundColor: BACKGROUND, justifyContent: 'center', }, typeWriterText: { color: WHITE, fontSize: 24, }, typeWriterCursorText: { color: PINK, fontSize: 24, }, }) const App = () => { return ( <View style={styles.container}> <TypeWriter textArray={['Hello', 'How', 'Are', 'You', 'Doing?']} loop speed={200} delay={500} textStyle={styles.typeWriterText} cursorStyle={styles.typeWriterCursorText} /> </View> ) } ``` # Documentation The Typewriter has the following props ## text (Mandatory) type: `Array of Strings` The Typerwriter component will animate each string one by one. If there's only one string, just pass a single string as a single item of the array ## loop type: `boolean` default: `false` After all the strings have been types out, the Text will start looping from the beginning if loop=true. Else, the string will be left visible ## speed type: `number` default: `300` The speed of the typing animation. Lower value is higher speed ## delay type: `number` default: `40` Delay between two strings in the text array ## textStyle type: `TextStyle` Style of the Text being typed ## cursorStyle type: `TextStyle` Style of the blinking cursor ## License Released under the MIT license. See [LICENSE](https://github.com/suchoX/react-native-type-writer/blob/main/LICENSE) for details
React Native text component with animated typewriter effect
android,animation,ios,javascript,react-native,typescript
2023-04-19T13:58:04Z
2023-06-14T10:14:10Z
null
1
0
10
0
2
9
null
MIT
Kotlin
alohe/maker-tag
master
null
Maker tag is a customizable HTML and CSS based widget that displays a text tag on a web page. The widget is designed to be added to any website with minimal configuration.
css3,javascript,madebyme,maker,makers,widget
2023-04-15T12:49:16Z
2023-07-12T11:52:19Z
2023-07-12T11:52:19Z
1
0
9
0
0
9
null
Apache-2.0
HTML
Coderboy2008/C.S.C-deface
master
# C.S.C-deface And again a site template, but this time much more attractive! For special people, with special work! A very attractive and powerful template, written with html, css, js You can use this template in a situation where you have hacked the target site and you are doing this to announce your achievement. ![C.S.C](https://s8.uupload.ir/files/screenshot_(135)_sigq.png) ## Among the important features of the template: * Completely dynamic and attractive! * Light and fast * Responsive in all sizes * Low volume * user friendly --- You can see the example of this format through this link: (https://coderboy2008.github.io/C.S.C-deface/) ### How to get this template? You can download the complete project file by entering the following command: ``` git clone https://github.com/Coderboy2008/C.S.C-deface.git ``` --- Please support us by giving stars and publishing this page C.S.C security team # C.S.C-deface و دوباره یک قالب سایت اما این بار بسیار جذاب تر! مخصوص اشخاصی خاص ، با کاری خاص! یک قالب بسیار جذاب و قوی ، نوشته شده با html , Css ,Js این قالب را میتوانید در موقعتی استفاده کنید ، که سایت هدف را هک کرده اید و برای اعلام دستاورد خود ، این کار را انجام میدهید ![C .S .C ](https://s8.uupload.ir/files/screenshot_(135)_sigq.png) ## از خصوصیات مهم قالب: * کاملا پویا و جذاب! * سبک وسریع * ریسپانسیو در همه سایز ها * کم حجم * کاربر پسند --- شما میتوانید نمونه این قالب را از طریق این لینک مشاهده کنید : (https://coderboy2008.github.io/C.S.C-deface/) ### چگونه این قالب را دریافت کنیم؟ شما میتوانید با وارد کردن دستور زیر ، فایل کامل پروژه را دانلود کنید: ``` git clone https://github.com/Coderboy2008/C.S.C-deface.git ``` --- لطفا با ستاره دادن ، از ما حمایت کنید و این صفحه را منتشر کنید تیم امنیتی C .S .C
a beautiful deface for all hackers :)
javascript,css,css3,front-end,front-end-development,frontend,html,html-css-javascript,html5,js
2023-04-21T17:05:25Z
2023-04-21T17:57:55Z
null
1
0
3
0
0
9
null
null
CSS
mardavsj/Leetcode-JavaScript
main
# Leetcode javascript solutions ! It consists the solutions of both easy as well as medium level javascript questions. I hope you will find this helpful ! # How to contribute? 1. Fork the repository 2. Do the desired changes (add/delete/modify) 3. Make a pull request # When should you contribute? 1. If your solution's time complexity is better than the solution already present. 2. If your solution's space complexity is better than the solution already present. 3. If your solution is of the same time and space complexity but is more concise. In this case, comment out the original solution & make a pull request with your solution. 4. If your solution is of the same time and space complexity but is easier/more readable to understand. ## Don't forget to show your love by ⭐ing this repository.
This repo contains the solutions of the javascript problems available on leetcode.
javascript,leetcode-javascript,leetcode-solutions,interview-preparation,easy-problems,medium-problems
2023-04-12T10:39:55Z
2024-03-07T16:41:54Z
null
1
0
169
0
5
9
null
MIT
JavaScript
Shehab1110/natours-project
main
<h1 align="center">Natours</h1> <p align="center"> <img src="https://img.shields.io/badge/Node.js-339933?style=for-the-badge&logo=nodedotjs&logoColor=white" alt="Node.js badge"> <img src="https://img.shields.io/badge/Express-000000?style=for-the-badge&logo=express&logoColor=white" alt="Express badge"> <img src="https://img.shields.io/badge/MongoDB-47A248?style=for-the-badge&logo=mongodb&logoColor=white" alt="MongoDB badge"> </p> Natours is a tour booking web app that I created as part of the [Node.js course on Udemy by Jonas Schmedtmann](https://www.udemy.com/course/nodejs-express-mongodb-bootcamp/). The app uses Node.js, Express and MongoDB to create a RESTful API and a dynamic website. The app also implements authentication, authorization, security, payments and email features. ## :rocket: Getting Started To run this project locally, you need to have Node.js and MongoDB installed on your machine. ### Prerequisites - Node.js - MongoDB - NPM or Yarn ### Installation 1. Clone this repo to your local machine using `git clone https://github.com/<your-username>/natours.git`. 2. Go to the project directory using `cd natours`. 3. Install the dependencies using `npm install` or `yarn install`. 4. Create a `.env` file in the root folder and add the following environment variables: ` NODE_ENV=development PORT=3000 DATABASE=<your-mongodb-connection-string> DATABASE_PASSWORD=<your-mongodb-password> JWT_SECRET=<your-jwt-secret> JWT_EXPIRES_IN=90d JWT_COOKIE_EXPIRES_IN=90 EMAIL_USERNAME=<your-email-username> EMAIL_PASSWORD=<your-email-password> EMAIL_HOST=<your-email-host> EMAIL_PORT=<your-email-port> EMAIL_FROM=<your-email-address> STRIPE_SECRET_KEY=<your-stripe-secret-key>` Run the app using npm start or yarn start.<br> Open your browser and go to http://localhost:3000.<br> ### :sparkles: Features User registration and login with JWT authentication<br> Password reset with email verification<br> User profile update and deletion<br> User roles and permissions<br> Tour creation, update, deletion and filtering<br> Tour image upload and processing<br> Tour ratings and reviews<br> Tour booking with Stripe integration<br> Booking confirmation and invoice email<br> Error handling and logging<br> ### :hammer_and_wrench: Technologies Node.js<br> Express<br> MongoDB<br> Mongoose<br> Pug<br> Sass<br> Stripe<br> Nodemailer<br> Multer<br> Sharp<br> Helmet<br> Morgan<br> Bcrypt<br> Jsonwebtoken<br> Validator<br> ### :clap: Acknowledgements This project is based on the Node.js course on Udemy by Jonas Schmedtmann. I would like to thank him for creating this awesome course and teaching me how to build a full-stack web app with Node.js.<br>
This repo contains my version of the Natours project, a tour booking web app that I learned to build by taking the Node.js course on Udemy by Jonas Schmedtmann. The app uses Node.js, Express and MongoDB to create a RESTful API and a dynamic website. The app also implements authentication, authorization, security, payments and email features.
express,express-rate-limit,helmet,hpp,javascript,jwt-authentication,mongodb,mongoose,morgan,nodejs
2023-04-12T15:06:22Z
2023-05-08T21:40:15Z
null
1
2
24
0
2
9
null
null
JavaScript
ikennarichard/Leaderboard
dev
<a name="readme-top"></a> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#triangular_flag_on_post-deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 <a name="about-project">Leaderboard</a> A leaderboard list app that allow users to create and manage list of names and recent scores. The app provides an interface to add and refresh items on the leaderboard. Built using HTML, CSS, JavaScript and webpack module bundler. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://www.w3schools.com/html/">HTML</a></li> <li><a href="https://www.w3schools.com/js/">JavaScript</a></li> <li><a href="https://www.w3schools.com/css/">CSS</a></li> </ul> </details> <details> <summary>Server</summary> <ul> <li><a href="https://webpack.js.org/guides/development/#using-webpack-dev-server">Webpack Development Server</a></li> </ul> </details> <details> <summary>Database</summary> <ul> <li><a href="#/">Not applicable for this project</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - Section for displaying scores - Section for adding scores - Manage game with the Leaderboard API <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> [Live Demo](https://micro-leaderboard.netlify.app/) <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: - You need a VS code text editor. - [Node](https://nodejs.org/en/download) ### Setup Clone this repository to your desired folder: ```sh cd my-folder git clone git@github.com:ikennarichard/Leaderboard.git ``` ### Install Install this project with: ```sh cd my-project npm install ``` ### Usage To run the project, execute the following command: ```sh npm run build npm start ``` ### Run tests To run tests, run the following command: - Stylint (CSS) ```sh npx stylelint "**/*.{css,scss}" ``` - ES lint (Javascript) ```sh npx eslint . ``` ### Deployment Not available <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Author1** - GitHub: [Richard](https://github.com/ikennarichard) - LinkedIn: [LinkedIn](https://linkedin.com/in/ikenna-oguejiofor-38076a237) <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - Update user interface be more user friendly - Remove and edit scores <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](https://github.com/ikennarichard/Leaderboard/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 please drop a ⭐️ or give feedback on areas that can be improved. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> - Everyone whose code was an inspiration - The code reviewers <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](https://github.com/ikennarichard/Leaderboard/blob/dev/LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
A leaderboard list app that allow users to create and manage list of names and recent scores. The app provides an interface to add and refresh items on the leaderboard. Built using HTML, CSS, JavaScript and webpack module bundler.
front-end-development,javascript,microverse,webpack,api
2023-04-09T07:23:04Z
2023-04-12T12:03:50Z
null
1
3
91
0
0
9
null
MIT
JavaScript
CesarHerr/CapstoneModule1
main
<a name="readme-top"></a> <div align="center"> <h3><b>Capstone 1</b></h3> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#triangular_flag_on_post-deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [❓ FAQ (OPTIONAL)](#faq) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 [Hiking and Adventure Sports] <a name="about-project"></a> **[Hiking and Adventure Sports]** In this Capstone, you can find the work that I have been developing throughout my learning experience. Is a simple web about Adventure Sports experiences. This project is inspired on the <a href="https://developer.mozilla.org/en-US/docs/Web/HTML">original design idea by Cindy Shin in Behance.</a> ## 🛠 Built With <a name="built-with"></a> ``` 1.- HTML. 2.- CSS. 3.- SASS. 3.- JavaScript. 4.- Linters. ``` ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML">HTML</a></li> <li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS</a></li> <li><a href="https://developer.mozilla.org/es/docs/Web/JavaScript">JavaScript</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> ``` - **[Responsive Design]** - **[Mobile first Design]** - **[Dom Manipulation]** - **[application Deploy ]** ``` <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"><a href="https://www.loom.com/share/f32174e0840445a19c3f60cb60269dda"> <p>Brave - Capstone Module 1 - Brave - 20 April 2023 - Watch Video</p> <img style="max-width:300px;" src="https://cdn.loom.com/sessions/thumbnails/f32174e0840445a19c3f60cb60269dda-with-play.gif"> </a></a> - https://cesarherr.github.io/CapstoneModule1/ <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: ``` - Code Editor. - Git and Github account. - Web browser. ``` ### Setup Clone this repository to your desired folder: ``` cd my-folder git clone https://github.com/CesarHerr/CapstoneModule1.git ``` ### Install Install this project with: ``` You Don't need install this project ``` ### Usage To run the project, execute the following command: ``` Double click on the HTML file, open it in your browser. ``` ### Run tests To run tests, run the following command: ``` Not need it ``` ### Deployment You can deploy this project using: [Implementation](https://github.com/microverseinc/curriculum-html-css/blob/main/capstone/html_capstone.md) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **César Herrera** - GitHub: [@CesarHerr](https://github.com/CesarHerr) - Twitter: [@Cesarherr2](https://twitter.com/Cesarherr2) - LinkedIn: [LinkedIn](https://www.linkedin.com/in/cesarherr/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - Accessibility improvements. - Subscription Form. <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 and you think is useful to someone please share it <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank team of microverse and the micronauts for hitting me up with new knowledge. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FAQ (optional) --> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
In this Capstone, you can find the work that I have been developing throughout my learning experience. Is a simple web about Adventure Sports experiences.
html5,javascript,linters,sass-framework
2023-04-17T00:37:38Z
2023-06-11T06:22:35Z
null
1
4
34
0
0
9
null
MIT
CSS
alvaroiporre/Metal-Concert
main
<a name="readme-top"></a> <div align="center"> <h3><b>Rock & Roll Festival Project</b></h3> </div> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#triangular_flag_on_post-deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [📝 License](#license) # 📖 [My Portfolio] <a name="about-project"></a> **Rock and Roll Festival** is a is a brief sample of the work done in my career as a software developer. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> Html, Css and JavaScript. ### Key Features <a name="key-features"></a> - **Responsive** - **Flex** - **Hover Reactions** <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link](https://alvaroiporre.github.io/Metal-Concert/) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 💻 Getting Started <a name="getting-started"></a> ### Prerequisites In order to run this project you need: Install Git ### Setup Clone this repository to your desired folder: ```git clone https://github.com/alvaroiporre/Metal-Concert.git``` ### Install ```cd Metal-Concert``` ### Usage Ready for use it. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 👥 Authors <a name="authors"></a> 👤 **Alvaro Iporre** - GitHub: [@alvaroiporre](https://github.com/alvaroiporre) - Twitter: [@alvaro.iporre](https://twitter.com/twitterhandle) - LinkedIn: [LinkedIn](https://www.linkedin.com/in/alvaro-iporre-martiez-501533124/) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🔭 Future Features <a name="future-features"></a> - [ ] **Finish all the sections** - [ ] **Add video background** <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🤝 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> ## ⭐️ Show your support <a name="support"></a> If you like this please ⭐️ <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank to my family and Microverse. Original design by [Cindy Shin](https://www.behance.net/gallery/29845175/CC-Global-Summit-2015) in bhance. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 📝 License <a name="license"></a> This project is [MIT](./MIT-license.txt) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
This is the web page used to show information about a Metal Concert, with information about the rock stars and the Event. This project is built in Html, Css and JavaScript.
css,html,javascript
2023-04-17T13:44:16Z
2023-06-17T20:57:50Z
null
1
5
19
0
0
8
null
MIT
CSS
CodeSystem2022/Binary-Brains_Tercer-Semestre
main
<h1 align= "center" >Binary-Brains_Tercer-Semestre [![Binari-Brains-Logo1.png](https://i.postimg.cc/9MSmTfNR/Binari-Brains-Logo1.png)](https://postimg.cc/TLVvvTxf) ## `Lenguages:` [![Javagif1.gif](https://i.postimg.cc/cJjHcJHT/Javagif1.gif)](https://postimg.cc/2qQrkrnB) [![python1.gif](https://i.postimg.cc/yNC1BG2q/python1.gif)](https://postimg.cc/K1QSD0ZQ) [![JS.gif](https://i.postimg.cc/SsbNmx1f/JS.gif)](https://postimg.cc/VS4cRm8J) ## 📆 `Organización Semanal` | SEMANA | SCRUM MASTER | |-------------- | ------------- | | :pencil: semana 1 | Tamara Piccinni | | :pencil: semana 2 | Liscio Natalia | | :pencil: semana 3 | Riddick Carolina | | :pencil: semana 4 | Molina Guillermo | | :pencil: semana 5 | Sandrea Mauricio | | :pencil: semana 6 | Serezo Luciana | | :pencil: semana 7 | Tamara Piccinni | | :pencil: semana 8 | Sandrea Mauricio | | :pencil: semana 9 | Serezo Luciana | | :pencil: semana 10 | Liscio Natalia | | :pencil: semana 11 | Riddick Carolina | | :pencil: semana 12 | Molina Guillermo | ## `Integrantes` :point_down: #### :brain: Liscio, Natalia. #### :brain: Molina, Luís Guillermo. #### :brain: Piccinni, Tamara. #### :brain: Riddick, Carolina. #### :brain: Sandrea, Mauricio. #### :brain: Serezo, Luciana.
Universidad Tecnologica Nacional (UTN)
java,javascript,python
2023-04-12T19:42:43Z
2023-07-04T03:05:18Z
2023-07-04T03:05:18Z
9
41
214
0
2
8
null
null
Java
Pushkarm029/insta-clone-app
master
![Insta-Clone-App](https://drive.google.com/uc?export=view&id=1z6BjGrL8-iiryYssnh1qSzKV4ODgVg7T) ## **🔥 Introduction** **Insta-Clone-App** is a web app which can be used to upload posts, explore posts, check your friend's posts etc. It is built using React.js for frontend, Go for backend and Firebase for database. Frontend is deployed using Github Pages -> <a href="https://pushkarm029.github.io/insta-clone-app" target="_blank">pushkarm029.github.io/insta-clone-app</a> Full Stack Application Will be ***Deployed soon***. ## **💥 Features** - It enables users to log in and create an account. - User can upload their images in the application. - User can visit explore page where user can see the new post of other users. - User can visit home page where user can see the all posts of other users whom the current users follow. - User can interact with posts by liking & commenting. - The User can enjoy Reels. - User can deep dive into chill-zone to play some mini-games created by me. ## **🛠️ Local Development** : 1. Open your terminal and then type ```shell $ git clone https://github.com/Pushkarm029/insta-clone-app ``` 2. cd into the folder ```shell $ cd insta-clone-app/ ``` 3. cd into the frontend folder ```shell $ cd frontend ``` 4. install the required dependencies for frontend ```shell $ npm install ``` 5. To start the application on localhost ```shell $ npm start ``` 6. To Deploy the frontend application on Github Pages ```shell $ npm run deploy ``` 7. To Run Tests on Frontend Locally ```shell $ npm run test ``` 8. cd into backend folder ```shell cd ../backend ``` 9. install the required dependencies for backend ```shell go get -u ./... ``` 10. Start the server on :8080 ```shell go run main.go ``` **Note : You need to restart backend server after every change in any .go file.** ## **❤️ Learnings** : - I have learned how to use components, props, and state to create interactive user interfaces. - I have also gained a better understanding of how to structure a React project, including the use of ES6 syntax and styling with CSS. - I have learned how to implement React Redux to make a global state and then use it anywhere. - I have also become familiar with the React Router library for creating dynamic routes in my web applications. - I have also gained experience in deploying React applications to production. - I have also gained a better understanding of Firebase Authentication, Storage and Firestore. - Got Better Understanding of GO while implementing this as backend in this app. - I learned how to iterate over data present in Firestore, converging it into JSON, and making HTTP requests using the Go-Gin Framework. - Created REST API's using GO to perform CRU (CREATE, READ and UPDATE) operation. - I learned how to build Unity games for the web and then implement them in a full-stack application. ## **⛑️ Maintenance** : Feel free to open issue to add a feature request or report any BUG. It will be appreciated from the depth of my heart❤️. ## **📅 Future** - Add infinite scroll and Lazy Loading. - Implement the delete operation in the REST API. - Lots of Bugs and css needs to be fixed. - Jest Framework will be used for testing. - Firebase will be used for Real Time Messaging Options. - More Creativity will be added from my side. - Make it more responsive. - Migrate to TypeScript. - Implement VideoCall Feature using WebRTC. - Docker will be used for containerization.
INSTA-CLONE-APP is an social media application that I created using React.js, Go and Firestore. In this app, you can explore posts, upload post, interact with posts,check your friend's posts etc.
css,html,instagram,instagram-clone,javascript,reactjs,firebase,firebase-auth,firestore,go
2023-04-19T05:03:06Z
2024-02-16T10:07:13Z
null
1
4
102
16
2
8
null
MIT
JavaScript
Yordinia/A-To-Do-yo
main
<a name="readme-top"></a> <img src='https://img.shields.io/badge/Microverse-blueviolet'> </br> # 📖 To Do List App <a name="about-project"></a> <div align="center"> <b> <i> <u> PREVIEW </u> </i></b> </br> </br> <img src='https://github.com/Yordinia/A-To-Do-yo/blob/main/src/gif/simplicity.gif'> </div> ![](https://img.shields.io/badge/Microverse-blueviolet) <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Deployment] (#deployment) - [👥 Authors](#authors) - [Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [❓ FAQ](#faq) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 To-Do List App <a name="about-project"></a> <p align="center"> <b> To-Do List </b> is a website that allow users to create a note or a task and add to it to their list on the page. <br>I have used as much modules as possible! </p> ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Languages</summary> <ul> <li>HTML</li> <li>CSS</li> <li>Javascript</li> </ul> </details> <details> <summary>Server</summary> <ul> <li><a href="https://github.com/">Github</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **Add Notes to a note's list** - **Delete notes from the notes list** - **Edit, check and clear completed notes** - **Activate and order notes bydragging** <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. ### Setup Clone this repository to your desired folder: ```sh git clone https://github.com/yordinia/A-To-Do-yo.git ``` <p align="right">(<a href="#readme-top">back to top</a>)</p> # Deployment <a name="deployment"></a> ### [Live Click](https://yordinia.github.io/A-To-Do-yo/) <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Yordanos Temesgen** __Yordanos Temesgen__ - GitHub: [@yordinia](https://github.com/yordinia) - Twitter: [@yordinia](https://twitter.com/yordinia) - LinkedIn: [Yordanos-Temesgen](https://linkedin.com/in/yordanos-temesgen-251b6a202) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🔭 Future Features <a name="future-features"></a> - [ ] **Java script only, to do a simple CRUD** <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](https://github.com/Yordinia/A-To-Do-yo/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 give me a star. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> We would like to thank all our fellow micronauts. <p align="right">(<a href="#readme-top">back to top</a>)</p> - **What is this project?** - It's a project of micoverse curriculum entitled To-Do-List. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](https://github.com/Yordinia/yordinia/blob/main/LICENCE.md) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
To-Do List is a website that allow users to create, store, edit and reorder their notes on the page. Technologies: [HTML, CSS, JavaSript, Webpack]
css,html,javascript
2023-04-11T12:46:43Z
2023-06-16T11:26:23Z
null
1
5
88
3
0
8
null
MIT
JavaScript
ITurres/project_media_TOP
main
## Project Media TOP #### YouTube's style 'clone' as of April 2023 (dark-mode) --- #### **\*Previews at the end of this file.** #### or have a look at <https://iturres.github.io/project_media_TOP/> --- ## Built With - HTML - HTML5 - CSS - CSS3 - JavaScript - Bootstrap - Youtube API (Removed - due to quota limit) #### [![My Skills](https://skillicons.dev/icons?i=html,css,js,bootstrap)](https://skillicons.dev) --- #### Note: Buttons such as => menu - search - video - notifications - account - subscribe - like - dislike - share = are not functional. --- ##### Mobile preview: <div align="center"> <a href="https://iturres.github.io/project_media_TOP/" target="_blank"> <img alt="project mobile preview" src="readme-src/media/project-mobile-preview.PNG" width="40%"> </a> </div> --- ##### Tablet preview: <div align="center"> <a href="https://iturres.github.io/project_media_TOP/" target="_blank"> <img alt="project tablet preview" src="readme-src/media/project-tablet-preview.PNG" width="60%"> </a> </div> --- ##### Desktop preview: <div align="center"> <a href="https://iturres.github.io/project_media_TOP/" target="_blank"> <img alt="project desktop preview" src="readme-src/media/project-desktop-preview.PNG" width="90%"> </a> </div> ---
a YouTube 'clone' (regarding -markup and styles-) ---- https://github.com/TheOdinProject/curriculum/blob/b5b6fc5cfedbcc28005eb92aca8ba79e0e81bdc8/html_css/project_media.md
javascript,theodinproject,youtubeclone,css3,html5
2023-04-18T15:53:01Z
2023-04-21T02:04:32Z
null
1
0
29
0
0
8
null
null
JavaScript
GMH-Code/Asylum
main
SDL2 Asylum =========== This is a modern port of the platform game *Asylum*. It runs under: - Windows -- portable, so no installation necessary - Linux - WebAssembly - Other Unix-based systems like Mac OS X -- untested, but should work Play the Game in your Browser ----------------------------- [Play Asylum!](https://gmh-code.github.io/asylum/) Look out for the teleporters, otherwise you may get stuck! They look like this in the *Ego*, *Psyche* and *Id* levels respectively: ![Ego Teleporter](./images/t-ego.gif) ![Psyche Teleporter](./images/t-psyche.gif) ![Id Teleporter](./images/t-id.gif) Stand in the centre and press `Down` to use them. I recommend trying *Psyche* first, simply because I found it the most fun. If you find that too difficult, *Ego* is technically the first, and easiest level. Screenshots ----------- ![Asylum Screenshot 1](./images/asy-1.jpg) ![Asylum Screenshot 2](./images/asy-2.jpg) ![Asylum Screenshot 3](./images/asy-3.jpg) ![Asylum Screenshot 4](./images/asy-4.jpg) Default Keys ------------ The keys can be redefined in the menu. These are the defaults: Z - Left X - Right ; - Up (Jump) . - Down (Teleport) Return - Fire Esc - Menu Tips ---- - Hold `Fire` to angle a rocket launcher, or to rapid-fire a minigun. - The `Megablam 5000 Minigun` is the second most powerful weapon in the game, and whilst it can fire endlessly, it can also clear nearly half the screen in a single shot. - The `Megablam 5000 Rocket Launcher` only has 6 shots. However, it is so powerful that it can blast through some of the stronger parts of the level. This includes vaporising teleporter bases, breaking the link. - The `Weird One!` minigun is quite rare. It has a special ability, so be careful just endlessly firing it. - Try blasting enemies at point blank range with a powerful gun to get more bonuses. - You get a bonus life for every 100,000 points in this version of the game. - Occasionally it's better to *not* pick up items. - There aren't always arrows showing you the way. Original Authors ---------------- The original versions of this game were written by: - Andy Southgate - The original Archimedes version. - Hugh Robinson - The C / SDL port, which this version is based upon. List of Improvements -------------------- #### Play - The game plays at the original speed, as per Acorn computers, but with lag compensation to cater for modern pre-emptive CPUs. - Restoring games doesn't result in an injury effect if you have under 100% health. - If you have a weapon when saving a game, it will refrain from firing when you resume. - Rocket launchers with starburst now have projectiles emitted at the proper time. - In this version, an extra life is awarded for every 100,000 points, which gives an incentive to get the bonuses in sequence. - If you are playing online and save your progress, you should be able to restore the game even after closing the browser. #### Build - The latest version of GCC can now be used to build and link the project to the latest version of *SDL2* and *SDL2_mixer*. - Runs like the original on current versions of Windows. - Fixed C compiler warnings when using `-Wall -Wextra` as arguments. - Many redundant parts of the code have been removed. Some have been temporarily removed if the feature is incompatible or not working on modern systems. - Builds in WebAssembly and plays at full speed even on older systems. - If playing in a browser, user data is saved in IDBFS (the browser's database). #### Display - Upgraded the rendering system to SDL2. - Fixed text such as 'Snuffed It!' causing crashes. - Removed OpenGL rendering mode (I may reinstate this later). SDL2 rendering is fast enough, supports all the necessary features, and is much less work to manage. - Added the ability to play in different resolutions when using SDL2 mode. - Reinstated the 25Hz low CPU power mode and added a toggle item in the *Video Options* menu. This is very handy for slow systems when using WebAssembly. #### Half-Scale (Double-Size) Mode - Using this mode is considered cheating, because it exposes routes to areas not obvious in the original game! - This mode now works with regular SDL2. Sigmund, the map, sprites, bonus counter, onscreen text, health bar, score/lives counter, border and more now all resize using a different method. - Enemies and lifts/elevators will spawn and move at double-range. - Projectiles, such as bullets, embers and bonuses, travel twice the distance. - There is a potential for objects to not spawn properly in this mode, since there are limits on sprites and the visual playfield is much larger than the original game is designed to handle. #### Sound - Fixed missing effects when using any of the minigun variants. - Fixed missing effects when collecting lots of bonuses. - Changed sample quality from 22.05KHz from 44.1KHz. - Fixed incorrect sound and music playback rates. #### Menus - Pause menu (Esc) now animates in properly. - Removed joystick option (for now). - Removed OpenGL and modified other menu options. #### Keyboard - Scancodes are now used. This is because key symbols are very limited in SDL2, and Unicode input is no longer supported. This means almost all keys can now be defined, including *Shift* and *Ctrl*. #### I/O - Saving/loading now works for games, high scores and options on Windows. WebAssembly Notes ----------------- If you use GZ compression (or better, Brotli, pre-compressed files, and good caching headers) on a web server, the entire game can be sent to the client in under 700KB. This results in an almost immediate load, and includes: - All the game code - 27 levels - 21 sound effects - 6 music tracks - All the sprites and images for all the levels - The GUI and its graphics The CPU should sleep between frames and compensate for delays on the next frame, so usage should be fairly low. Other Points ------------ - The game still contains regular C, and compiles using GCC. It will compile in C++ mode too, but only C features are used. - When a level disintegrates upon pressing the 'Shut Down' button, the shrinking sprites are not the same as the ARM version. Game play is unaffected. - Some enemies may not appear until you get close to them, especially if there are lots of sprites on-screen. - Bypassing the scale limit can result in enemies not spawning, or spawning with an `X` and blocking access to routes. - This version of the game is based on an unmodified copy of 0.3.2 from Hugh Robinson (*blotwell*). - The original README is now named README.original to avoid conflicts. Building from Source -------------------- The method for this depends on your target architecture: - For Windows, install a modern version of the *MinGW GNU Compiler Collection*. You will also need to make sure MinGW's `bin` folder is in the path so the build tools can be found. - For Linux or other Unix-based systems, ensure you have a modern version of the `gcc` compiler installed. - For WebAssembly, you'll need to have `emcc` (Emscripten's GCC-compatible WebAssembly compiler) installed and working. Building with 3.1.34 was successful, and later versions should also be okay. In many cases you will need to separately install the *SDL2* and *SDL2_mixer* libraries and includes, however Emscripten should do this for you if WebAssembly is your build target. The `Makefile` is configured to use the `emcc` WebAssembly compiler by default. You can change the target to `mingw` (to build a native Windows app) or `generic` (for Linux/Unix) at the top of the file. To build the game: cd <directory> make This will produce the executable file which can be run the standard way; by double-clicking the file on Windows, or running `./asylum` on Linux. If you're using Linux and want to install the game, add: sudo make install Note that the installation code is untested and mostly remains the same as the original version!
Platform game written in C and SDL2 for Windows, Linux and WebAssembly
sdl,sdl2,platformer,wasm,webassembly,browser-game,browser-games,c,free,platform-game
2023-04-17T08:58:01Z
2023-11-16T12:59:32Z
null
1
0
23
0
1
8
null
GPL-3.0
C
Aadv1k/DracoQL
main
# DracoQL ![TypeScript](https://img.shields.io/badge/TypeScript-007ACC?style=&logo=typescript&logoColor=white) [![NPM](https://badge.fury.io/js/dracoql.svg)](https://npm.im/dracoql) DracoQL is a query language that tries to **aggresively simplify JavaScript networking calls to expressive human-readable statements** here is a crude demonstration ```CQL FETCH data FROM "http://api.kanye.rest/" AS JSON OR DIE ``` and the JavaScript code equivalent ```js try { const res = await fetch("http://api.kanye.rest/"); const data = await res.json() } catch { /* do something * / } ``` ## Why? At the time I was building [propelr](https://github.com/aadv1k/propelr) and needed to store a customizable "network" workflow, eg > Fetch resource A from B, extract "X" from A and post x to C I decided not to use an object or class because they are inflexible and result in many unused fields. Instead, I chose DracoQL which allows me to store queries as text in a database and interpret at runtime. This approach is a lot more elegant and portable ## Documentation - [Install](#install) - [Usage](#usage) - [Tutorial](#syntax) - [Variables](#variables) - [Networking](#networking) - [Fetch](#fetch-response) - [Fetch HTML](#fetch-html) - [Fetch JSON](#fetch-json) - [Caching response](#caching-html) - [Headless mode](#headless-html-mode) - [Piping](#piping) - [Extraction](#extraction) - [Examples](#examples) - [API reference](#api) ## Install ```shell npm install dracoql ``` ## Usage ```typescript import * as draco from "dracoql"; draco.eval(`PIPE "Hello world!" TO STDOUT`); ``` Additionally, you can get runtime variables from the caller ```typescript import * as draco from "dracoql"; draco.eval(`VAR data = FETCH https://jsonplaceholder.typicode.com/todos/ AS JSON`, (ctx) => { console.log(ctx.getVar("data")) }); ``` ## Syntax ### Variables A variable can hold either an `INT_LITERAL`, `STRING_LITERAL` or an expression. Draco does not support string escaping, you can instead use `''` for that. ```cql VAR foo = 1 VAR bar = "hello world!" VAR baz = FETCH "https://example.org" ``` ### Networking Draco provides `FETCH` as the primary method for interacting with a url #### Fetch Response ```cql VAR data = FETCH "https://example.org" HEADER "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/112.0" HEADER "Content-type: application/json" METHOD "GET" ``` Here the `data` variable will hold a request object, which looks like so ```typescript { headers: any, status: number, redirected: boolean url: string } ``` Additionaly, you can also make POST requests ```cql VAR data = FETCH "https://reqres.in/api/users" METHOD "POST" HEADER "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/112.0" HEADER "Content-type: application/json" BODY JSON '{"name": "morpheus", "job": "leader"}' ``` #### Fetch JSON ```cql VAR data = FETCH "https://reqres.in/api/users" HEADER "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/112.0" AS JSON ``` here `data` will be stored as the parsed JSON object #### Fetch HTML ```cql VAR data = FETCH "https://reqres.in" HEADER "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/112.0" AS HTML ``` here `data` will be stored as the parsed HTML object, which looks like so ```typescript { tag: string, attributes: any, children: [...] } ``` #### Caching HTML Addtionally draco also has a `CACHE` keyword which requires an time in milliseconds and optional path for `html-cache` directory Here is example usage. NOTE Caching only works with HTML data type ```cql VAR data = FETCH "https://example.org" CACHE 10000 AS HTML ``` #### Headless HTML mode To scrap HTML from SPAs Draco offers an optinal `HEADLESS` flag, which when enabled will use puppeteer to load and fetch the html page. ```cql VAR data = FETCH "https://bloomberg.com" CACHE 6e5 AS HTML HEADLESS ``` ### Piping To extract data out of the evaluater, you can use the `PIPE` keyword ``` PIPE "hello world" TO STDOUT ``` you can also output data to a file ``` PIPE "Draco was here" TO FILE "draco.txt" ``` ### Extraction Draco provides in-built support for parsing HTML selectors and JSON queries ```cql VAR res = FETCH "https://reqres.in/api/users" AS JSON VAR data = EXTRACT "data.0.id" FROM res PIPE data TO STDOUT ``` ```cql VAR res = FETCH "https://reqres.in" AS HTML VAR headline = EXTRACT "h2.tagline:nth-child(1)" FROM res PIPE headline TO STDOUT ``` ## Examples ### Fetch data and log it to the console ```cql VAR data = FETCH "https://www.cs.cmu.edu/afs/cs/project/ai-repository/ai/areas/nlp/corpora/names/male.txt" PIPE title TO STDOUT ``` ### Fetch data, handle error and put it to file ```cql VAR data = FETCH "https://jsonplaceholder.typicode.com/users/1" AS JSON OR DIE PIPE data TO FILE "user.json" ``` ### Scrape data from a website and cache it ```cql VAR data = FETCH "https://www.cnet.com/" HEADER "User-Agent: My user agent" CACHE 6e5 AS HTML VAR headline = EXTRACT ".c-pageHomeHightlights>div:nth-child(1)>div:nth-child(2)>div:nth-child(1)>a:nth-child(1)>div:nth-child(1)>div:nth-child(2)>div:nth-child(1)>h3:nth-child(1)>span:nth-child(1)" FROM data VAR txt = EXTRACT "children.0.text" FROM headline AS JSON PIPE txt TO STDOUT ``` ## API module draco, exports the lexer, interpreter and an parser. ```typescript import * as draco from "dracoql"; const lexer = new draco.lexer(`PIPE "hello world" TO STDOUT`); const parser = new draco.parser(lexer.lex()); const interpreter = new draco.interpreter(parser.parse()); (async () => { await interpreter.run(); })() ``` ## Support If you liked the project, give it a star! it's good to see feedback and appreciation from strangers. If you would like to suggest a feature then raise an issue. Image is taken from Dall-E
DracoQL is an embeddable query language for processing and transforming data from the web resources and writing it to files and databases.
query-language,typescript,interpreter,language,javascript,web
2023-04-14T18:49:32Z
2023-08-18T10:31:12Z
null
2
1
64
0
2
8
null
MIT
TypeScript
mhdi-nzari/dashboard-portfolio
main
# React Responsive Gym Website with React js | Framer Motion | React-scroll | Emailjs ## 💪 Preview Version ![eact Responsive Gym Website , mahdi nazari](https://github.com/mhdi-nzari/dashboard-portfolio/blob/main/lightmode.png?raw=true)
😍 Creative Admin Dashaboard Panel - Dark | Light Theme
admin-dashboard,css3,html5,javascript,dark
2023-04-09T07:25:45Z
2023-04-11T09:55:24Z
null
1
0
15
0
0
8
null
null
HTML
SoarinSkySagar/FunSite
main
# FunSite ## Live at: https://soarinskysagar.github.io/FunSite/ ## User Experience: 1. Click on "Show a Meme" button on right side of the page to display a meme on the left side of page under 'Memes' heading. Similarly, clicking on other buttons will allow you to see a joke, a quote and its author, and a riddle. 2. After clicking a button, if the user had previously clicked a button, then the previous output will be deleted and only the current output will be shown. 3. On clicking the "Riddle me" button, a new button wil appear below it saying "Reveal riddle answer". As the name suggests, the answer to the given riffle question will be displayed. 4. On clicking the "Reveal riddle answer" multiple times, an alert will be displayed saying that the answer has already been revealed. 5. On clicking some other option apart from "riddle me" and "Reveal riddle answer", the "Reveal ridddle answer" button wil disappear.
FunSite can generate memes, jokes, riddles and quotes.
frontend,javascript
2023-04-20T13:31:17Z
2023-05-30T12:45:06Z
null
2
1
7
0
2
8
null
null
JavaScript
sysmaya/artdraw
main
# ArtDraw ## SVG editor online - Vector drawing and graphics editor ![artdraw-svg-editor-online](https://user-images.githubusercontent.com/18316343/231035998-cbb07387-a6f7-4c38-9eed-c6a6248db99b.png) This project uses javascript, HTML, to create a graphical editor for designing vector images in SVG format. This project was not intended for use in NodeJS. The central idea of the project is to create a simple editor that has a large number of tools that allow creating functional designs, like those made with commercial programs. The project is in a continuous phase of development, this can be considered the initial version. There are still many tools to be developed, surely bugs to be corrected. This editor works on an SVG object, not Canvas. So the performance is not so perfect, but that doesn't mean it's not usable, or it's not capable of generating complex files. Still try not to abuse the nodes in the SVG paths. <p vidth="100%" style="text-align: center;"><a href="https://artdraw.org/svg/app.html" target="blank"><img src="https://user-images.githubusercontent.com/18316343/233189401-efef757c-5138-4797-b655-63a46b93b954.png"></a></p> ## SVG Editor Tools <table id='tb1'> <tr><td><b>Left Bar Tools</b></td><td><b>Top Bar Tools</b></td></tr> <tr> <td valign='top'> <ul> <li>Freehand pencil tool</li> <li>Polygon pencil tool</li> <li>Ovals Tool</li> <li>Rectangles Tool</li> <li>Text Tool</li> <li>Cliparts</li> </ul> </td> <td> <ul> <li>File Menu Options</li> <li>Setttings</li> <li>Size Document</li> <li>Z.Order Shapes</li> <li>Mirror Tool</li> <li>Group Shapes</li> <li>Combine Shapes</li> <li>Grid align tool</li> </ul> </td> </tr></table> <table> <tr><td><b>Right Bar Tools and </b></td><td><b>Panels Assistants</b></td></tr> <tr> <td valign='top'> <ul> <li>Arrays panel</li> <li>Edit nodes bezier</li> <li>Border Round</li> <li>Align Tool</li> <li>Boolean operations Tool</li> <li>Offset Tool</li> </ul> </td> <td valign='top'> <ul> <li>Trace image to vectors</li> <li>Color and gradients panel</li> <li>Clip mask panel</li> <li>Rough style panel</li> <li>Backgrounds panel</li> <li>Filter effects panel</li> </ul> </td> </tr></table> xxxxxxx <table> <tr> <td><b>Freehand Pencil Tool</b></td> <td><b>Polygon Pencil Tool</b></td></tr> <tr> <td valign='top'> <img src='https://user-images.githubusercontent.com/18316343/231052382-411e6228-3099-437f-ba84-49832043d8be.gif' alt='Frehand tool'> </td> <td valign='top'> <img src='https://user-images.githubusercontent.com/18316343/231053893-8b13d122-6c9b-4ebe-a044-66a08754c53e.gif' alt='Polygon tool'> </td> <tr> <td>This is your typical freehand pencil tool. The smoothing factor is adjustable from configuration.</td> <td>This Tool draws a polygon with straight segments. By clicking on the red starting point, it closes automatically.</tr> <tr> </tr></table> xxxx <table> <tr> <td><b>Ovals Pencil Tool</b></td> <td><b>Rectangle Pencil Tool</b></td></tr> <tr> <td valign='top'> <img src='https://user-images.githubusercontent.com/18316343/231055225-21fa3eb7-0f10-481f-ab94-2086b8e7d4e3.gif' alt='Oval tool'> </td> <td valign='top'> <img src='https://user-images.githubusercontent.com/18316343/231054796-6dbbdd9a-daf3-45ba-97e6-b35087d730b0.gif' alt='Rectangle tool'> </td> <tr> <td>Simple and essential tool. Just draw circles starting from the center..</td> <td>This tool makes rectangles, just rectangles and squares, and rectangles.</tr> <tr> </tr></table> xxx <table> <tr> <td><b>Text Tool</b></td> <td><b>Clipparts Tool</b></td></tr> <tr> <td valign='top'> <img src='https://user-images.githubusercontent.com/18316343/231058186-1ec39380-6dbf-4a5c-9d1d-2f0b9daab66d.gif' alt='Text tool'> </td> <td valign='top'> <img src='https://user-images.githubusercontent.com/18316343/231063618-67a40122-4e9c-46c3-ba0c-ad189dbb1813.gif' alt='Clipparts tool'> </td> <tr> <td>The Text tool allows you to create 2 types. Simple <text> and vector text with the OpenType library. Artdraw includes more than 500 GoogleFonts.</td> <td>Enter the clipparts gallery and select the design of your liking. Insert it to the document. Then you can modify size, colors, etc.</tr> <tr> </tr></table>
SVG editor online - Vector drawing and graphics editor
design,drawing,html5,javascript,svg,vector-graphics,svg-editor
2023-04-11T01:19:07Z
2023-07-18T04:08:36Z
null
1
1
10
0
2
8
null
Apache-2.0
JavaScript
SyncedTogether/GameLabJS
main
# 🎮 GameLabsJS - A Welcoming 2D Game Engine for JavaScript Enthusiasts 🌟 Welcome to GameLabsJS, an open-source JavaScript game engine designed to make your game development journey as smooth and enjoyable as possible! Our primary focus is on 2D games, and we are committed to delivering a powerful, easy-to-use toolset for creating amazing experiences. ![GameLabsJS Banner](assets/banner.png) (WIP) Please keep in mind that this README is a WIP and a lot of the links and instructions will not work!\ ## 📙 Features - **Easy Scene Setup:** Set up scenes with minimal effort using our intuitive API. - **Drag & Drop Assets:** Import your assets effortlessly and integrate them into your game. - **Asset Properties:** Assign properties to your assets and manipulate them with ease. - **Custom Vector Class:** Utilize our built-in vector class for simplified game logic and physics. - **Future-Proof:** Our engine is designed to grow, with plans for physics, advanced input handling, and more! ## 🎓 Getting Started 1. Clone this repository: git clone https://github.com/SyncedTogether/GameLabJS 2. Install the prerequisite: Node.js 3. Run the example project: node app.js (will be changed to npm start in future versions) For a more detailed guide on how to use GameLabsJS, check out our [Getting Started](docs/getting-started.md) (WIP) guide and the [Wiki](https://github.com/SyncedTogether/GameLabJS/wiki) (WIP). ## 💖 Contributing We believe that great things happen when a community comes together! Whether you're a developer, a designer, or just an enthusiast, your contribution is welcome and appreciated. ### 🤝 Contribution Protocol 1. Fork the repository. 2. Create a new branch with a descriptive name, such as `feature-my-awesome-feature` or `fix-this-annoying-bug`. 3. Commit your changes to the new branch. Be sure to write clear and concise commit messages. 4. Open a pull request with a detailed description of your changes. Include any relevant screenshots, gifs, or code snippets. 5. Wait for your pull request to be reviewed and approved by a maintainer. They may ask for additional changes or clarification. 6. Once approved, your changes will be merged into the main branch! For more information, please read our [Contribution Guide](docs/contributing.md) and [Code of Conduct](docs/code-of-conduct.md). ## 🚀 Roadmap Our journey has just begun, and we have so much more planned for GameLabsJS! Here's a sneak peek at some upcoming features: - Physics Engine - Advanced Input Handling - Animation System - UI and Menu System - Asset Management To see our full roadmap, check out our [Roadmap](docs/roadmap.md) (WIP) document. ## 📄 License GameLabsJS is [MIT licensed](LICENSE). ## 💬 Community Join our [Discord](https://discord.gg/MbVE9ujcFt) server to connect with other GameLabsJS enthusiasts, ask questions, share your creations, and stay updated on the latest news and updates!
JS Game Engine
2d-game-engine,gamedevelopment,javascript
2023-04-14T04:48:41Z
2023-04-26T17:23:33Z
null
2
3
63
0
0
8
null
MIT
JavaScript
ConnectAI-E/Feishu-OpenAI-Amazing
main
# Feishu-OpenAI-Amazing 🙉 探究飞书与OpenAI结合的创意设计,让你一窥未来办公的可能性! 最佳设计,源自你的灵感 Amz是一个具有多种功能和应用场景的小助手,为用户带来更高效、更有趣、更舒适的体验。包括但不限于内置prompt的细分应用场景,人生导师的角色设计,集成化快捷处理。 中期任务 设计和实现内置prompt功能,主要应用于职场工具和娱乐工具等新奇玩法。 需求:会使用OpenAI的API和Feishu的接口,同时也需要了解基本的前端和后端技术。 任务拆分如下: 1.设计并实现内置prompt模板,需要熟悉OpenAI API和Feishu的接口,熟悉前端和后端开发技术。 2.与前端进行对接,实现应用场景为核心入口的用户界面,需要熟悉前端开发技术。 后期考虑设计集成功能 比如可以调用其他接口,文档,表格中的内容进行处理,并加入其他有趣的功能。 1.调用其他接口的功能,需要熟悉API的使用和后端开发技术。 2.文档和表格的处理,需要懂得数据处理和前端开发技术。 3.其他有趣的功能:需要发散思维和创意,能够创造有趣的idea,视情况而定。 以下是开发流程图: 1.设计内置prompt模板 →与 前端进行对接,实现用户界面 → 中期测试 2.调用其他接口的功能→文档和表格的处理 → 其他有趣的功能 → 后期测试 3.项目验收 大家如果有对于这方面有好的提示词可以在群内交流,有时间的画我都会给大家加入进去 ## 赞助感谢 友情感谢 'Find My AI' 提供的部分经费赞助!
🎒 探究飞书与OpenAI结合的创意设计,让你一窥未来办公的可能性!
chatgpt,chatgpt-api,connect-ai,javascript,openai,typescript,vue
2023-04-14T04:13:01Z
2023-05-28T02:38:59Z
null
6
0
8
1
3
8
null
GPL-3.0
Vue
nitzanto/VoicePal
main
<!-- PROJECT LOGO --> <br /> <div align="center"> <img src="https://i.imgur.com/3zPaqAJ.png" alt="Logo" width="300" height="300"> </a> <h3 align="center">VoicePal</h3> <p align="center"> VoicePal is an AI-powered chatbot project that leverages a lot of technologies to provide users with an engaging and interactive conversational experience. With VoicePal, users can choose to chat with a friend, an interviewer, or an AI voice assistant, depending on their needs and preferences. <br /> <a href="https://beta.elevenlabs.io/"><strong>Explore Eleven Labs »</strong></a> <br /> <br /> <h2><a>Demonstration</a></h2> <br /> <br /> </p> https://user-images.githubusercontent.com/120420731/235327840-239f4c2f-043b-4b46-9450-9f68cb15355c.mp4 https://user-images.githubusercontent.com/120420731/235424715-9927b439-0566-491b-a0f6-436698d976ba.mp4 <h2 align="center"><a>Overview</a></h2> <p align="center"> VoicePal is an innovative AI-powered chatbot project that utilizes cutting-edge technologies such as TypeScript, React, FAST API, Python, Eleven Labs, and Open AI to deliver a highly engaging and interactive conversational experience. With VoicePal, users can select from a range of options, such as chatting with a friend, conducting a job interview, or interacting with an AI voice assistant, depending on their specific needs and preferences. The platform is designed to provide a seamless and enjoyable user experience, while also leveraging the latest in AI technology to create more natural and lifelike conversations. <br /> <br /> </p> <h2 align="center"><a>Built With</a></h2> <p align="center"> <a href="https://www.python.org/" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/danielcranney/readme-generator/main/public/icons/skills/python-colored.svg" width="36" height="36" alt="Python" /></a> <a href="https://developer.mozilla.org/en-US/docs/Glossary/HTML5" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/danielcranney/readme-generator/main/public/icons/skills/html5-colored.svg" width="36" height="36" alt="HTML5" /></a> <a href="https://reactjs.org/" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/danielcranney/readme-generator/main/public/icons/skills/react-colored.svg" width="36" height="36" alt="React" /></a> <a href="https://vitejs.dev/" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/danielcranney/readme-generator/main/public/icons/skills/vite-colored.svg" width="36" height="36" alt="Vite" /></a> <a href="https://tailwindcss.com/" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/danielcranney/readme-generator/main/public/icons/skills/tailwindcss-colored.svg" width="36" height="36" alt="TailwindCSS" /></a> <a href="https://fastapi.tiangolo.com/" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/danielcranney/readme-generator/main/public/icons/skills/fastapi-colored.svg" width="36" height="36" alt="Fast API" /></a> <br /> </p> </div> <h2 align="center"><a>RoadMap</a></h2> - [x] Backend part - 27th of April - [x] Finished UI Design with Frontend - 28th of April - [x] Connected frontend and backend with axios - 29th of April - [x] Released a fully functional and stable version - 1.0 </div>
an AI-powered chatbot app
chatbot,elevenlabs-api,javascript,openai-api,react,tailwindcss,typescript
2023-04-21T23:55:17Z
2023-08-14T21:18:43Z
null
1
0
27
0
0
8
null
null
TypeScript
ahtaum/career-management-app
master
## About Career Management Application is a tool for customizing careers in companies, which can be used as a management tool in the field of human resources. ## Install - Clone this repository by typing it in the console or terminal - First is **Important** copy or rename file **.env.example** to **.env** and configuration your database - type in console or terminal `composer install` - type in console or terminal `npm i` or `npm install` - type `php artisan migrate --seed` or `php artisan migrage:fresh --seed` type `--seed` is required because it comes with default data. - type in console or terminal `php artisan storage:link` for storage link - and type in console or terminal `php artisan key:generate` for security. - run this command at same time in your console or terminal `npm run dev` and `php artisan serve` . - `npm run dev` for running all asset in frontend with **Vite**. - `php artisan serve` run local server. - go in your local url in your browser to open web type **[http://127.0.0.1:8000](http://127.0.0.1:8000/)** - if you want clear all assets(image and files) use this costum command `php artisan clear:unused-files` to clear all assets ## Api (Still Develop) you cant use api data postman, export the file data to your postsman in folder **postman** ## Stack - Laravel 10 (Main Core) - InertiaJS with ReactJs (Typescript) for frontend - Mysql (Database) - Tailwindcss with DaisyUI
Career Management Application for customizing careers jobs
inertiajs,javascript,laravel,mangement-system,mysql,php,reactjs,tailwindcss,typescript
2023-04-16T13:14:42Z
2023-05-07T10:22:11Z
null
1
4
54
0
8
7
null
null
PHP
ayezabashir/Vanilla-Javascript-Projects
main
### JS-Mini-Projects <a href="https://codepen.io/ayezabashir/full/oNQBNVZ" target="_blank">Account Verification</a> <br/> [Animated Loading Screen](https://codepen.io/ayezabashir/full/MWPNgdx)<br/> [Background Slider](https://backgroundslider--ayezabashir.repl.co/) <br/> [Blurry Loading](https://codepen.io/ayezabashir442/full/rNqzBNK) <br/> [CSS Scroll](https://codepen.io/ayezabashir/full/oNmyBxd)<br/> [Clock](https://codepen.io/ayezabashir/full/qBJGRVx)<br/> [Dad Jokes](https://codepen.io/ayezabashir442/full/qBJVmWo) <br/> [Dictionary](https://codepen.io/ayezabashir/full/RwEbPZL) <br/> [Drink Water](https://codepen.io/ayezabashir/full/MWPPyaE)<br/> [Drawing App](https://codepen.io/ayezabashir/full/MWPNYjJ)<br/> [Drag & Drop](https://codepen.io/ayezabashir/full/jOeoXmm)<br/> [Event Keycode](https://codepen.io/ayezabashir/full/GRYyvZM)<br/> [Expanding Cards](https://codepen.io/ayezabashir442/full/eYPpKrX)<br/> [FAQ](https://codepen.io/ayezabashir/full/wvYpqER)<br/> [Feedback UI](https://codepen.io/ayezabashir/full/vYQWXZq)<br/> [Form Wave Animation](https://codepen.io/ayezabashir442/full/ZEqXbeN)<br/> [GitHub Profiles](https://codepen.io/ayezabashir/pen/Poxovaq)<br/> [Hidden Search](https://codepen.io/ayezabashir442/full/jOewrBj)<br/> [Hover Board](https://codepen.io/ayezabashir/full/zYMNYwg)<br/> [Image Search Gallery](https://codepen.io/ayezabashir/full/gOZRozq)<br/> [Image Carousel](https://codepen.io/ayezabashir/full/qBQNwXM) <br/> [Increment Counter](https://codepen.io/ayezabashir/full/MWPQNgB)<br/> [Live User Filter](https://codepen.io/ayezabashir/full/oNQGgvm).<br/> [Movie Info](https://codepen.io/ayezabashir/full/poxxGoR)<br/> [Navigation Animation](https://codepen.io/ayezabashir/full/bGmLrwL) <br/> [Netflix Nav Menu](https://codepen.io/ayezabashir/full/OJagPxO)<br/> [Notes App](https://codepen.io/ayezabashir/full/ExOPyxX)<br/> [Number Trivia](https://codepen.io/ayezabashir/full/ZEVGNPM)<br/> [Password Generator](https://codepen.io/ayezabashir/full/BaGNxzm)<br/> [Pokedex](https://codepen.io/ayezabashir/full/JjeWdLa)<br/> [Progress Bar](https://codepen.io/ayezabashir442/full/eYPJwyO) <br/> [Quiz App](https://codepen.io/ayezabashir/full/LYXzVOb)<br/> [Quote Generator](https://codepen.io/ayezabashir/pen/ZEVEGwz) <br/> [Random Choice Picker](https://codepen.io/ayezabashir/full/QWZQbBy) <br/> [Random Image Feed](https://codepen.io/ayezabashir/full/BaGGWEp)<br/> [Rotating Navigation](https://codepen.io/ayezabashir442/full/NWOgNXY) <br/> [Recipes Generator](https://codepen.io/ayezabashir/full/BabbdXo)<br/> [Scientific Calculator](https://codepen.io/ayezabashir/pen/GRYJKOO)<br/> [Split Landing Page](https://split-landing-page.ayezabashir.repl.co/)<br/> [Scrolling Animation](https://codepen.io/ayezabashir442/full/YzJxpaw) <br/> [Sticky Navbar](https://codepen.io/ayezabashir/full/BaqXYyz) <br/> [Sound Board](https://soundboard.ayezabashir.repl.co/) <br/> [Synonym Search](https://codepen.io/ayezabashir/full/yLGJVKO)<br/> [Testimonials](https://codepen.io/ayezabashir/full/VwVORdw) <br/> [To Do List](https://codepen.io/ayezabashir/full/abROoLv) <br/> [Toaster](https://codepen.io/ayezabashir/full/ZEqgNKo)<br/> [Text Effect](https://codepen.io/ayezabashir/full/YzRKjmE) <br/> [Vertical Slider](https://codepen.io/ayezabashir/full/KKrMawL) <br/>
This repository contains mini web projects made using HTML, CSS and Vanilla Javascript.
javascript,miniprojects,javascriptchallenge,jsdom,await-async,fetch-api
2023-04-12T10:44:16Z
2024-02-18T17:53:58Z
null
1
59
213
0
0
7
null
null
CSS
NotAn127/SM64-PC-Port-WebGL
gh-pages
# SM64 (PC Port) Web Enjoy this super cool port I guess <img src="images/SuperMario64.png" alt="Alt text" title="Optional title" width="250" height="100"> PC Port in the Web, this took a while to get, Nintendo please don't sue me😬 Enjoy it while you can, probably lmao This one has more features than the dodo websites you see from other people, I got the source from this guy https://augustberchelmann.com/mario/ I changed it a bit <img src="screenshots/1.png" alt="Alt text" title="Menu"> <img src="screenshots/2.png" alt="Alt text" title="OtherMenu"> <img src="screenshots/3.png" alt="Alt text" title="Gameplay"> <img src="screenshots/4.png" alt="Alt text" title="OptionsPcPort">
Here is the link ig, took a while to do this, believe me
sm64,sm64js,game,js,mario,n64,nintendo64,pc-port,port,supermario64
2023-04-11T04:19:52Z
2023-12-06T16:34:52Z
2023-05-22T18:22:16Z
1
3
297
0
8
7
null
null
JavaScript
otmaneechchafyky/Portfolio
main
<a name="readme-top"></a> <div align="center"> <img src="./Assets/logoE.png" alt="logo" width="140" height="auto" /> <br/> <h3><b>Welcome to my project</b></h3> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 [Portfolio] <a name="about-project"></a> > Describe your project in 1 or 2 sentences. **[Portfolio]** is a... ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="#">HTML</a></li> <li><a href="#">CSS</a></li> <li><a href="#">Jvascript</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **[The bubble]** - **[Scroll Animation]** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link](https://otmaneechchafyky.github.io/Portfolio/) <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: - Live server ### Setup Clone this repository to your desired folder: <!-- Example commands: ```sh cd my-folder git clone https://github.com/otmaneechchafyky/Portfolio.git ``` ---> ### Install Install this project with: - n/a ### Usage - n/a ### Run tests - n/a ### Deployment - DEPLOYED <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Author1** - GitHub: [@otmaneechchafyky](https://github.com/otmaneechchafyky) - Twitter: [@EchchafykyO](https://twitter.com/EchchafykyO) - LinkedIn: [otmaneechchafyky](https://www.linkedin.com/in/otmane-echchafyky-125801248/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> > Describe 1 - 3 features you will add to the project. - [ ] **[Animate Work section]** <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](https://github.com/otmaneechchafyky/Portfolio/issues). <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- SUPPORT --> ## ⭐️ Show your support <a name="support"></a> If you like My Portfolio show your support by giving it a ⭐️ <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> > Give credit to everyone who inspired your codebase. I would like to thank @YasiOnFire. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
A simple Portfolio animated to show my projects and some information about me
css3,html5,javascript,portfolio
2023-04-14T23:46:44Z
2024-03-04T06:08:18Z
null
1
0
46
1
1
7
null
MIT
HTML
Brenda-A-S/Pokedex-HTML-CSS-JS
main
# 📁 Projeto Pokedex Desafio DIO Projeto de uma Pokedex, utilizando de recursos da API [`pokeapi.co`](https://pokeapi.co/) com requisições feitas através de `fetch API`. Esse projeto foi desenvolvido e evoluído por mim, durante a Formação JavaScript Developer da DIO. # Alterações feitas por mim * Página com detalhamento individual do Pokemon * Formatação do número no modelo #000 * Estilização diferente da sugerida no curso * Adição de header com menu nav e footer fixo * Animações e estilos ao :hover * Alteração na paleta de cores dos tipos de Pokemon # :open_file_folder: O resultado ![Imagem do WhatsApp de 2023-08-24 à(s) 19 14 42](https://github.com/Brenda-A-S/Pokedex-HTML-CSS-JS/assets/69852246/c435c1f4-f27c-4e60-ae8a-a95c8fac443e) ![Imagem do WhatsApp de 2023-08-24 à(s) 19 14 50](https://github.com/Brenda-A-S/Pokedex-HTML-CSS-JS/assets/69852246/bce9e26b-bdd8-47e8-be89-7323da619a12) https://github.com/Brenda-A-S/Pokedex-HTML-CSS-JS/assets/69852246/b856f29a-4f6f-4f09-9226-f25684599781 # :link: Links úteis * Comece o curso Formação JavaScript Developer com [DIO Pro](https://dio.me/curso-javascript/AFXQ1Y3OR88A) * Me siga no [Instagram](https://www.instagram.com/brenda_a_s_dev/) * Se conecte comigo no [LinkedIn](https://www.linkedin.com/in/brenda-antunes-silva/) * Veja meu [Portfólio](https://portfolio-brenda-a-s.web.app/) * Meu [LinkTree](https://linktr.ee/brenda_a_s_dev)
Projeto da criação de uma Pokedex, utilizando HTML, CSS e JS.
css,html,javascript
2023-04-10T01:56:36Z
2023-09-14T21:47:33Z
null
1
0
38
0
0
7
null
null
CSS
RichKMLS/ziprecruiter-1-click-filter
main
<br><h1 align="center">ZipRecruiter 1-Click Filter:sparkles:</h1> #### <p align="center">An efficient tool to optimize your job search on ZipRecruiter by only displaying 1-Click Apply jobs. </p> This is a JavaScript program that eliminates jobs that redirect you to external websites. It adds a button on the search results page that enables you to conceal these jobs and concentrate on the most suitable and convenient opportunities for your career objectives. Please read the Disclaimer and License below carefully! 😊 <p align="center"><img src="https://user-images.githubusercontent.com/105183376/233206431-08e4c647-565a-4688-81fb-eb9ccb8a5dbf.png?raw=true" alt="'additional features - search by minimum qualification grade and exclude key words from job titles" width="50%"></p> ## How to use it - To use this script, you need to install a browser extension that allows you to run custom JavaScript code on any website. Some examples are Tampermonkey, Greasemonkey, or Violentmonkey. - After installing the extension, create a new script and copy the code from this repository into it. Save and activate the script. - Now, when you go to a ZipRecruiter job search results page, you will see a new button that says "1-Click Filter". - Enjoy applying for jobs faster and easier! You can further customize your job search by utilizing the InputBox by adding keywords that you want to filter out based on your job title preferences. For example, if you are looking for a developer job and you don't want to see sales or telesales jobs, you can type those words in the InputBox and they will be excluded from your search after you click enter! <p align="center"><img src="https://user-images.githubusercontent.com/105183376/233176312-e2211387-45a9-45e0-a7eb-c197bc255ffe.png?raw=true" alt="'type Sales, Telesales' in the input box to exclude those words" width="60%"></p> ## Known Issues/Limitations - Some jobs that appear to be '1-Click Apply' may require you to answer additional questions before your application is submitted. This script does not exclude these jobs from the results. - To avoid jobs that ask questions, you could use ublock to block the following element: `www.ziprecruiter.com##.ScreenModalOverlay` - Some employers may send you an email after you have clicked '1-Click Apply' asking you to visit an external website to 'complete your application'. This script is unable to identify these employers in advance. ## Contributing Thank you for your interest in this project. I welcome any suggestions, feedback, or bug reports from the community. You can reach me by email at github_user@tuta.io or simply open an issue or a pull request. ## Disclaimer This script is provided "as is" and with no warranty or guarantee of any kind, either express or implied, including but not limited to the accuracy, completeness, reliability, suitability, or availability of the script. This script is intended for personal learning and research purposes only and should not be used for any other purpose that may violate ZipRecruiter's terms of service, privacy policy, or other policies. I am not affiliated with or endorsed by ZipRecruiter in any way and I do not assume any responsibility or liability for any consequences or damages that may arise from using this script. Please refer to the attached GNU General Public License v3.0 documentation for more details on the license and permissions of this script. ## License ``` This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. ```
A convenient tool that filters out jobs that require external websites or have low qualification grades. It adds a button on the search results page that lets you hide these jobs and focus on the most relevant and convenient opportunities for your career goals. Because sometimes you just don't want to visit 100's of external sites to apply for jobs
filtering,tampermonkey-userscript,ziprecruiter,career,javascript,job,job-search,jobsearch,hiring,jobs
2023-04-18T21:36:03Z
2023-04-21T17:03:45Z
null
1
0
37
0
0
7
null
GPL-3.0
JavaScript
jaenfigueroa/cifrador-de-textos
main
<div align="center" > # Text Encryptor Herramienta para cifrar y decrifrar textos </div> <div align="center" > <img src="https://img.shields.io/github/stars/jaenfigueroa/text-encriptor"> <img src="https://img.shields.io/github/forks/jaenfigueroa/text-encriptor"> <img src="https://img.shields.io/github/issues-pr/jaenfigueroa/text-encriptor"> <img src="https://img.shields.io/github/issues/jaenfigueroa/text-encriptor"> </div> ## 📷 Capturas de pantalla - ### 💻 Desktop <img src="./assets/enc-desktop.png" style="width: 100%" /> <img src="./assets/enc-desktop-2.png" style="width: 100%" /> - ### 📱 Mobile <div> <img src="./assets/enc-mobile.png" style="width: 30%" /> <img src="./assets/enc-mobile-3.png" style="width: 30%" /> <img src="./assets/enc-mobile-2.png" style="width: 30%" /> </div> ## 🛠️ Lenguages utilizados <img src="https://skillicons.dev/icons?i=javascript,html,css"></img> ## 📝 Elementos principales y caracteristicas de la página <img src="https://octodex.github.com/images/inspectocat.jpg" style="width: 25%" align="right"> - Título de su sitio web - Campo para el texto que va a ser encriptado/desencriptado - Un botón para encriptar - Un botón para desencriptar - Área para mostrar el texto encriptado/desencriptado - Boton para copiar el texto resultante de la encriptacion/desencriptacion - Pagina web responsiva ## 🔠 Fuente de texto - Lato - https://fonts.google.com/specimen/Lato?vfquery=lato&query=lato ## 🎨 Paleta de colores <div> <img src="https://via.placeholder.com/200x50/20232A/FFF/?text=20232A" style="width: 120px"> <img src="https://via.placeholder.com/200x50/282C34/FFF/?text=282C34" style="width: 120px"> <img src="https://via.placeholder.com/200x50/D1D1D1/000000/?text=D1D1D1" style="width: 120px"> <img src="https://via.placeholder.com/200x50/FFFFFF/000000/?text=FFFFFF" style="width: 120px"> <img src="https://via.placeholder.com/200x50/61DAFB/000000/?text=61DAFB" style="width: 120px"> </div> ## 📖 Diccionario de encriptacion | Clave | Valor | | :------------: | :------------: | | a | ai | | e | enter | | i | imes | | o | ober | | u | ufat | ## 🌐 Sitio web Puedes ver el resultado [aqui](https://jaenfigueroa.github.io/text-encriptor/). <img src="https://octodex.github.com/images/welcometocat.png" style="width: 25%">
Herramienta para cifrar y decrifrar textos
challengeonecodificador5,alura,challenge,css,html,javascript,one-oracle
2023-04-12T16:35:43Z
2023-06-02T00:16:17Z
null
1
2
21
0
1
7
null
null
CSS
VikasSpawar/contact_management_app
main
# Contact Management App with Charts and Maps This is a contact management app built using ReactJS, JavaScript, TailwindCSS, React Router v6, and Redux. The app includes a dashboard with charts and maps that display COVID-19 data for different countries. # Deployed Link : - https://contact-management-app-teal.vercel.app/ # Pages and Functionality ## The app has two main pages: # Contacts This page allows you to manage your contacts. You can add a new contact by filling out the form, and the contact will be added to the list. You can also edit or delete an existing contact. Clicking on a contact's name will take you to the contact details page. # Charts and Maps This page displays COVID-19 data for different countries. It includes a line graph showing the cases fluctuations over time and a map with markers that indicate the country name, total number of active, recovered cases, and deaths in that particular country as a popup. # APIs Used The app uses the following APIs to fetch data: - World wide data of cases: https://disease.sh/v3/covid-19/all - Country Specific data of cases: https://disease.sh/v3/covid-19/countries - Graph data for cases with date: https://disease.sh/v3/covid-19/historical/all?lastdays=all # Technologies Used ## The following technologies were used to build this app: - ReactJS - JavaScript - TailwindCSS - React Router v6 - React Query - Redux # Installation and Setup ## To run this app, follow these steps: - Clone this repository: git clone https://github.com/your-username/contact-management-app.git - Install the dependencies: npm install - Start the app: npm start - The app should open in your default browser at http://localhost:3000/. # Screenshots ## Contact Page :- <img src="./contact_management_app/ScreenShots/Contact_Page.PNG"/> </br> <img src="./contact_management_app/ScreenShots/Contact_Page_2.PNG"/> </br> <img src="./contact_management_app/ScreenShots/Contact_Details.PNG"/> </br> <img src="./contact_management_app/ScreenShots/Contact_form.PNG"/> </br> ## Charts And Maps Page :- <img src="./contact_management_app/ScreenShots/Chart_And_Maps_1.PNG"/> </br> <img src="./contact_management_app/ScreenShots/Charts_and_Map_2.PNG"/> </br>
This is a contact management app built using ReactJS, JavaScript, TailwindCSS, React Router v6, and Redux. The app includes a dashboard with charts and maps that display COVID-19 data for different countries.
axios,javascript,reactjs,redux,tailwindcss
2023-04-13T17:11:46Z
2024-05-21T15:53:08Z
null
2
1
30
0
8
7
null
null
JavaScript
SUHAIL-K/Royal_Brothers_Clone
main
# Royal Brothers Bike Rental Platform 🏍️✨🌏 https://symphonious-cupcake-6a58b9.netlify.app/ Experience the thrill of Royal Brothers' ReactJS bike rental platform! Explore mobility solutions in 14 states, 43 cities, and 3 international hotspots. Rent scooters, motorcycles, and superbikes via web and mobile app! ## Table of Contents - [Features](#features) - [Installation](#installation) - [Usage](#usage) - [Contributing](#contributing) - [Support](#support) ## Features 🚀 - 🌍 Wide variety of locations: 14 states, 43 cities, and 3 international destinations. - 🏍️ Extensive vehicle selection: Scooters, motorcycles, and superbikes. - 📱 Seamless experience: Responsive web and mobile app. - 🔒 Secure and trusted platform: Encrypted transactions and user privacy protection. - 🎯 Last-mile connectivity: Mobility partner for Jaipur metro. ## Installation 🛠️ To get started with the project, follow these steps: 1. Clone the repository: ```git clone https://github.com/yourusername/royal-brothers.git``` 2. Install dependencies: ```cd royal-brothers``` ```npm install``` 3. Start the development server: ```npm start``` ## Usage 🎮 1. Browse available vehicles by location. 2. Select your desired rental period. 3. Complete the booking process. 4. Pick up your ride and start exploring! ## Contributing 🤝 We welcome contributions to Royal Brothers! Here's how you can help: - Report bugs or request features by opening an [issue](https://github.com/saintlypioneer/RoyalBrothersReact/issues). - Submit bug fixes or new features by creating a [pull request](https://github.com/saintlypioneer/RoyalBrothersReact/pulls). ## Support 🙌 If you have any questions or need assistance, please reach out to our support team at support@example.com. **Enjoy your ride with Royal Brothers! 🏍️✨**
ReactJS clone of Royal Brothers bike rental platform, providing mobility solutions across 14 states, 43 cities, and 3 international locations. Rent scooters, motorcycles, and superbikes on web and mobile app.
chakra-ui,css,expressjs,html,javascript,mongodb,mongoose,nodejs,reactjs,redux
2023-04-13T06:26:09Z
2023-04-13T06:32:36Z
null
1
0
8
0
4
7
null
null
JavaScript
futzumi/Big-Ideas-Math-Hack
main
## Credits - This code was made all by me so fuck off and dont issue saying give credits. - If a new feature comes out and if it's referenced from someone ill say ## Tutorial - don't go to secureVariables or experiment. They wont help YOU use this hack. They are simply there to make it harder for BIM to patch - Have fun - You can contact me on discord: futzumi#8150 ## Note - This respitory and other forks of this project would like to make it clear that we do not support or condone the use of our exploit for cheating or manipulating BIM assesments. Our exploit was developed for educational purposes only, as a proof of concept to demonstrate the potential vulnerabilities in the BIM system. - I am not responsible for the actions of the people who use this to boost themselves economically, as i don't even use them in that way
The Best Big Ideas Math Hack
hack,learnosity,nullify,big-ideas-math,big-ideas-math-hack,bookmarklet,iready,javascript,math,script
2023-04-11T18:04:54Z
2023-04-14T19:17:58Z
null
1
0
19
0
1
7
null
null
JavaScript
exslym/AI-Summarizer
main
## [AI-Summarizer](https://exslym.github.io/AI-Summarizer/) [![preview](https://github.com/exslym/AI-Summarizer/blob/main/public/preview.jpg)](https://github.com/exslym/AI-Summarizer/) ### This minimalistic cozy color app is an open-source article summarizer that transforms lengthy articles into clear and concise summaries, powered by RapidAPI (limited requests per day). --- ### Installation ``` npm install ``` ### Start Dev Server ``` npm start ``` ### Build Production Version ``` npm run build ``` ### Deployment on GitHub Pages ``` npm run deploy ``` --- ### Features: `React` `Redux Toolkit` `Vite` `TailwindCSS` `Rapid API`
An Article Summarizer Application using OpenAI's GPT-4 model (via Rapid API)
javascript,rapidapi,react,tailwindcss,vite,vitejs,redux-toolkit
2023-04-21T15:40:07Z
2023-04-26T10:58:49Z
null
1
0
39
0
4
7
null
null
JavaScript
Luiscarlosvd/capstone-project-cookiemasters
main
# Capstone Project - Cookie Masters 🍪 This is my first Capstone Project! take a look at this Table of contents to know more about this or go watch [my video describing this project.](https://www.loom.com/share/643bec6a36794927b56d6931f3dfa5ed)😄 <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 Cookie Masters 2023 <a name="about-project"></a> > In this first capstone project, I had the challenge of designing a web page and I decided to make it about one of the things that I like the most, cookies, and specifically create Cookie Masters International Course 2023. 🍪🙌 ## 🛠 Built With <a name="built-with"></a> 1- HTML. 2- CSS. 3- JavaScript ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="#">HTML</a></li> <li><a href="#">CSS</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **Added Popup widow for menu button** - **Added About section** - **Responsive Web Design** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> > Go to see the live Demo [here!](https://luiscarlosvd.github.io/capstone-project-cookiemasters/) 🙌 <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: 1. Web Browser (Google Chrome, Microsoft Edge, etc). 2. Code Editor (Visual Studio Code or similar). 3. Git. ### Setup Clone this repository to your desired folder: Run this command: ```sh cd my-desired-folder git clone https://github.com/Luiscarlosvd/capstone-project-cookiemasters.git cd capstone-project-cookiemasters ``` ### Install Install this project with: You have to install linters locally and here is a [documentation](https://github.com/microverseinc/linters-config/tree/master/html-css-js) to do it, just check it out and follow step by step the instrutions. ### Usage To run the project, execute the following command: Open *index.html* using live server extension in Visual Studio Code. ### Run tests > Coming Soon... ### Deployment > Coming Soon... <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Author <a name="authors"></a> 👤 Luis Valera - GitHub: [@Luiscarlosvd](https://github.com/Luiscarlosvd) - Twitter: [@Luiscarlosvd29](https://twitter.com/Luiscarlosvd29) - LinkedIn: [Luis Valera](https://www.linkedin.com/in/luis-valera-6a5749267/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] Add Program Page. 😁 - [ ] Add JavaScript functionalities. 💪 - [ ] Add nice backgrounds and more styling. 👏 <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 Cookie Master's Project just give me a star! ⭐️. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank Microverse Team, my friends, my family and my girlfriend, they are all my support and inspiration. ✨ >Original design idea by [Cindy Shin in Behance](https://www.behance.net/adagio07). <br> >[Image of the background in Main Program by vector_corp on Freepik](https://www.freepik.com/free-vector/abstract-dark-low-poly-background_25861887.htm#query=website%20background%20black&position=14&from_view=search&track=ais). <br> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> >This project is [MIT](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
Web page project designed around an international cookie course. Contains content from the main show, about and guests sections and more information. Built with Html, CSS and JavaScript
css,html5,javascript
2023-04-15T14:27:17Z
2023-04-18T19:07:47Z
null
1
1
21
0
0
7
null
MIT
HTML
empli-org/empli-www
main
![GitHub contributors](https://img.shields.io/github/contributors/empli-org/empli-www?style=for-the-badge) ![GitHub Repo stars](https://img.shields.io/github/stars/empli-org/empli-www?style=for-the-badge) ![GitHub forks](https://img.shields.io/github/forks/empli-org/empli-www?style=for-the-badge) # Empli monorepo website Work in progress. ### Built With * [![HTMLl5][html5]][html-url][![CSS3][css3]][css-url][![Javascript][javascript]][js-url][![Typescript][typescript]][typescript-url] * [![Express][Express.js]][express-url][![Webpack][Webpack.js]][Webpack-url][![Node][Node.js]][Node-url][![NPM][npm]][npm-url] * [![React][React.js]][React-url][![Redux][Redux-query]][Redux-url][![Tailwind][Tailwind-css]][Tailwind-url] * [![Postgresql][pgsql]][pgsql-url][![Prisma][Prisma-orm]][Prisma-url] * [![Railway][Railway]][Railway-url] * [![Figma][Figma-des]][Figma-url][![Trello][trello]][trello-url] * [![Git][git]][git-url][![Github][github]][github-url] <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- CONTRIBUTING --> ## Contributing * Ronald J Echeverry - [![Linkedin]](https://www.linkedin.com/in/ronaldjdev/) [![Github]](https://github.com/ronaldjdev) * Francisco A. Myers - [![Linkedin]](https://www.linkedin.com/in/francisco-myers-148a7919a/) [![Github]](https://github.com/Solideomyers) * Santiago T. Jurado Pastrana - [![Linkedin]](https://www.linkedin.com/in/santiago-jurado-288200249/) [![Github]](https://github.com/santij25) Project Link: [https://github.com/empli-org/empli-www](https://github.com/empli-org/empli-www) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- MARKDOWN LINKS & IMAGES --> <!-- https://www.markdownguide.org/basic-syntax/#reference-style-links --> [React.js]: https://img.shields.io/badge/React-20232A?style=for-the-badge&logo=react&logoColor=61DAFB [React-url]: https://reactjs.org/ [Express.js]: https://img.shields.io/badge/express.js-%23404d59.svg?style=for-the-badge&logo=express&logoColor=%2361DAFB [Express-url]: https://expressjs.com [Figma-des]: https://img.shields.io/badge/figma-%23F24E1E.svg?style=for-the-badge&logo=figma&logoColor=white [Figma-url]: https://www.figma.com/ [Prisma-orm]: https://img.shields.io/badge/Prisma-3982CE?style=for-the-badge&logo=Prisma&logoColor=white [Prisma-url]: https://www.prisma.io/ [Mongo-db]: https://img.shields.io/badge/MongoDB-%234ea94b.svg?style=for-the-badge&logo=mongodb&logoColor=white [Mongo-url]: https://www.mongodb.com/en/ [npm]: https://img.shields.io/badge/NPM-%23000000.svg?style=for-the-badge&logo=npm&logoColor=white [npm-url]: https://www.npmjs.com/ [Node.js]: https://img.shields.io/badge/node.js-6DA55F?style=for-the-badge&logo=node.js&logoColor=white [Node-url]: https://nodejs.org/ [Redux-query]: https://img.shields.io/badge/redux-%23593d88.svg?style=for-the-badge&logo=redux&logoColor=white [Redux-url]: https://en.redux.js.org/ [Tailwind-css]: https://img.shields.io/badge/tailwindcss-%2338B2AC.svg?style=for-the-badge&logo=tailwind-css&logoColor=white [Tailwind-url]: https://tailwindcss.com/ [Webpack.js]: https://img.shields.io/badge/webpack-%238DD6F9.svg?style=for-the-badge&logo=webpack&logoColor=black [Webpack-url]: https://webpack.js.org/ [Render]: https://img.shields.io/badge/Render-%46E3B7.svg?style=for-the-badge&logo=render&logoColor=white [Render-url]: https://render.com/ [Railway]: https://img.shields.io/badge/railway-0B0D0E?style=for-the-badge&logo=railway&logoColor=white [Railway-url]: https://railway.app/ [html5]: https://img.shields.io/badge/html5-%23E34F26.svg?style=for-the-badge&logo=html5&logoColor=white [html-url]: https://es.wikipedia.org/wiki/HTML5 [css3]: https://img.shields.io/badge/css3-%231572B6.svg?style=for-the-badge&logo=css3&logoColor=white [css-url]: https://developer.mozilla.org/es/docs/Web/CSS [javascript]: https://img.shields.io/badge/javascript-%23323330.svg?style=for-the-badge&logo=javascript&logoColor=%23F7DF1E [js-url]: https://www.javascript.com/ [typescript]: https://img.shields.io/badge/typescript-%23007ACC.svg?style=for-the-badge&logo=typescript&logoColor=white [typescript-url]: https://www.typescriptlang.org/ [trello]: https://img.shields.io/badge/Trello-%23026AA7.svg?style=for-the-badge&logo=Trello&logoColor=white [trello-url]: https://trello.com/ [git]: https://img.shields.io/badge/git-%23F05033.svg?style=for-the-badge&logo=git&logoColor=white [git-url]: https://git-scm.com/ [github]: https://img.shields.io/badge/github-%23121011.svg?style=for-the-badge&logo=github&logoColor=white [github-url]: https://github.com/ [pgsql]: https://img.shields.io/badge/Postgresql-4169E1?style=for-the-badge&logo=Postgresql&logoColor=white [pgsql-url]: http://postgresql.org/ [Linkedin]: https://img.shields.io/badge/linkedin-0A66C2?style=for-the-badge&logo=linkedin&logoColor=white
Empli Community App
website,javascript,nodejs,prisma,react,reactjs,tailwindcss,typescript
2023-04-13T20:42:28Z
2023-05-22T16:51:57Z
null
9
153
268
0
2
6
null
null
JavaScript
ankitt26/First-Capstone-project
main
<a name="readme-top"></a> <!-- HOW TO USE: This is an example of how you may give instructions on setting up your project locally. Modify this file to match your project and remove sections that don't apply. REQUIRED SECTIONS: - Table of Contents - About the Project - Built With - Live Demo - Getting Started - Authors - Future Features - Contributing - Show your support - Acknowledgements - License OPTIONAL SECTIONS: - FAQ After you're finished please remove all the comments and instructions! --> <div align="center"> <!-- You are encouraged to replace this logo with your own! Otherwise you can also remove it. --> <img src="./images/personal/quill-pen.png" alt="logo" width="140" height="auto" /> <h2>quill pen</h2> <br/> <h3><b> First-capstone-project</b></h3> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#triangular_flag_on_post-deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [❓ FAQ (OPTIONAL)](#faq) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 [First-capstone-project] <a name="about-project"></a> **[First-capstone-project]** is a Html , Css & javascript based project ## 🛠 Built With <a name="built-with"></a> 1- HTML. 2- CSS. 3- Javascript. ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://reactjs.org/">HTML</a></li> <li><a href="https://reactjs.org/">CSS</a></li> <li><a href="https://reactjs.org/">Javascript</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - Home page - About page - popup menu - speakers content render dynamically <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> > https://ankitt26.github.io/First-Capstone-project/ <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 1. Web browser 2. Code editor. 3. git-smc. ### Setup Clone this repository to your desired folder: Run this command ```sh cd my-project git clone https://github.com/ankitt26/First-Capstone-project.git ``` ---> ### Install Install this project with: <!-- Example command: ```sh cd my-project npm install ``` ---> ### Usage To run the project, execute the following command: Open index.html using live server extension ### Run tests coming soon ### Deployment https://ankitt26.github.io/First-Capstone-project/ <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Ankit** - GitHub: [@githubhandle](https://github.com/ankitt26) - Twitter: [@twitterhandle](https://twitter.com/ankit26k) - LinkedIn: [LinkedIn](https://www.linkedin.com/in/ankit26k/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - contact page - feedback form - chatbox <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 give it a star <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> This web development project is a dynamic and responsive website that utilizes HTML, CSS, JavaScript To see the brief description of the project see this [loom video](https://www.loom.com/share/0be353dcd83e4e788719e7deea830ab2). <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> - This project is [MIT](./LICENSE) licensed. - Templete used in project provided by (Microverse). - Original design idea by [Cindy Shin in Behance](https://www.behance.net/adagio07). <p align="right">(<a href="#readme-top">back to top</a>)</p>
This project is based on a Web development bootcame web-page , Created two pages a "Home page" & "About page" .
css,html,javascript
2023-04-17T19:05:48Z
2023-05-26T06:25:26Z
null
1
11
36
1
0
6
null
MIT
CSS
lobcare/Real-Chatting-app-socket.io
main
# MERN: Full-stack Chat Application #### Introduction The MERN stack which consists of **Mongo DB**, **Express.js**, **Node.js**, and **React.js** is a popular stack for building full-stack web-based applications because of its simplicity and ease of use. In recent years, with the explosive popularity and the growing maturity of the JavaScript ecosystem, the MERN stack has been the goto stack for a large number of web applications. This stack is also highly popular among newcomers to the JS field because of how easy it is to get started with this stack. <br/><br/> This repo consists of a **Chat Application** built with the MERN stack. I built this sometime back when I was trying to learn the stack and I have left it here for anyone new to the stack so that they can use this repo as a guide. <br/><br/> This is a full-stack chat application that can be up and running with just a few steps. Its frontend is built with [Material UI](https://material-ui.com/) running on top of React. The backend is built with Express.js and Node.js. Real-time message broadcasting is developed using [Socket.IO](https://socket.io/). ### Features This application provides users with the following features <br/> * Authentication using **JWT Tokens** * A **Global Chat** which can be used by anyone using the application to broadcast messages to everyone else. * A **Private Chat** functionality where users can chat with other users privately. * Real-time updates to the user list, conversation list, and conversation messages #### Screenshots ##### Global Chat ![Global Chat](https://i.imgur.com/VkdwAme.png) <br/><br/> ##### Private Chat ![Private Chat](https://i.imgur.com/jdCBYu4.png) <br/><br/> ##### Login ![Login](https://i.imgur.com/6iobucn.png) <br/><br/> ##### Register ![Register](https://i.imgur.com/AMkpl9C.png) ### How to use You can have this application up and running with just a few steps because it has both the frontend and the backend in a single repository. Follow the steps below to do so. 1. Clone this repo 2. Once you have the repo, you need to install its dependencies. So using a terminal, move into the root directory of the project and execute `npm install` to install the dependencies of the Node.js server and then run `npm run client-install` to install the dependencies of the frontend. The second command is a custom command that I wrote to simplify the installation process. 3. This application uses MongoDB as its Database. So make sure you have it installed. You can find detailed guides on how to do so [here](https://docs.mongodb.com/manual/administration/install-community/). Once installed, make sure that your local MongoDB server is not protected by any kind of authentication. If there is authentication involved, make sure you edit the `mongoURI` in the `config/keys.js` file. 4. Finally, all you have to do is simply run `npm run dev`. If this command fails, try installing the package [concurrently](https://www.npmjs.com/package/concurrently) globally by running `npm install -g concurrently` and then running the `dev` command. 5. The frontend of the application will be automatically opened in your web browser and you can test it away. ### Things to note * The frontend is created using [create-react-app](https://github.com/facebook/create-react-app) * Database connections in the backend are handled using the [Mongoose ORM](https://mongoosejs.com/) * Code quality is ensured using (ESLint)[https://eslint.org/] ### Disclaimer This repository contains beginner level code and might contain some things I wish to change or remove. I have not maintained this for quite some time, but now I am trying to slowly fix these issues. You are welcome to open issues if you find any and I will accept PR's as well. <br/><br/> Cheers 💻 🍺 🔥 🙌
It's the best smart chatting app. Open source and Easy to use and upgrade.
angular,django,nestjs,nodejs,python,react,socket-io,vue,angularjs,vuejs
2023-04-21T03:26:05Z
2021-01-24T03:36:20Z
null
1
0
55
1
1
6
null
null
JavaScript
piyush-agrawal6/Javascript-Interview-Questions
master
![maxresdefault](https://user-images.githubusercontent.com/100460788/235359553-2a4bae94-5565-4d74-82ff-42e73f7995e2.jpg) # JavaScript Interview Questions & Answers - Click :star: if you like the project and follow [@PiyushAgrawal](https://www.linkedin.com/in/piyush-agrawal-me/) for more updates. - From basic to advanced: Test how well you know JavaScript, refresh your knowledge a bit, or prepare for your coding interview. I update this repo regularly with new questions. - A complete JavaScript interview handbook/series containing all the topics from basic level to advance. This Series consists of 45+ important topics with related questions and answers. --- ### Topics covered in the series | No. | Topic | | --- | -------------------------------- | | 1 | Introduction to Javascript | | 2 | Advantages of JS | | 3 | Disadvantages of JS | | 4 | Client and Server Javascript | | 5 | Strict mode in JS | | 6 | DOM and BOM | | 7 | Window and Document Object | | 8 | JS Engine | | 9 | Code Execution in JS | | 10 | Event Loop | | 11 | Data Types | | 12 | Operators | | 13 | Coercion and Type conversion | | 14 | Types of Errors | | 15 | Scope | | 16 | Shadowing | | 17 | Hoisting | | 18 | VAR vs LET vs CONST | | 19 | Functions | | 20 | Parameters vs Arguments | | 21 | Spread vs Rest Operator | | 22 | Higher order functions | | 23 | IIFE | | 24 | Closure | | 25 | Currying | | 26 | Infinite Currying | | 27 | Callbacks | | 28 | This Keyword | | 29 | Objects | | 30 | Delete Keyword | | 31 | Constructor Function | | 32 | Getter Setter | | 33 | Prototype | | 34 | Prototype Chaining | | 35 | Classes | | 36 | Inheritance | | 37 | Static Keyword | | 38 | Private Methods | | 39 | OOPS | | 41 | Encapsulation | | 42 | Abstraction | | 43 | Polymorphism | | 44 | Polyfills | | 45 | Deep copy and shallow copy | | 46 | Promises | | 47 | Async Await | | 48 | Event Propagation | | 49 | SetTimeout and SetInterval | | 50 | SetTimeout and SetInterval | | 51 | Cookies and Local storage | | 52 | Debouncing | | 53 | Throttling | | 54 | Set , Map , weakSet , weakMap | | 55 | Debugger | | 56 | Debugger | | 57 | Important output based questions | | 58 | Important theory questions | --- **[⬆ Back to Top](#topics-covered-in-the-series)** ## Disclaimer | Note : The topics and questions provided in this repository are the summary of all the frequently asked questions across numerous companies. We cannot guarantee that these questions will actually be asked during your interview process, nor should you focus on memorizing all of them. Good luck with your interview 😊 ---
A complete JavaScript interview handbook/series containing all the topics from basic level to advance. This Series consists of 45+ important topics with related questions and answers.
interview,interview-questions,javascript,javascript-interview-questions,javascript-questions,questions,series,interview-practice,interview-prep,interview-preparation
2023-04-21T09:27:29Z
2023-05-19T15:46:31Z
null
1
1
269
0
2
6
null
null
null
mwilber/zeta-comic-generator
master
# Zeta Comic Generator An experiment in AI and art to create dynamic comic strips. [![Introductory Comic Strip](http://greenzeta.com/wp-content/uploads/2024/03/Alien_Repo__The_Open-Source_Cosmos.png)](https://comicgenerator.greenzeta.com/detail/8e6b42f1644ecb1327dc03ab345e618b) [Live Site](https://comicgenerator.greenzeta.com) ## The Process Write a sentence or two describing a premise for the comic strip. GPT, and variaous other AI models, take the premise and write a three panel comic strip describing: dialog, background scenery, and character action. The text description of the background scenery is sent to an image generator to produce background images. The character action is selected from a list of pre-drawn character art featuring [Alpha Zeta](https://greenzeta.com/project/illustrations/), the alien mascot of [GreenZeta.com](https://greenzeta.com). All of these assets are merged together into a comic strip! For a more detailed description, check out [Zeta Comics: Blending AI & Art in Digital Stories](https://greenzeta.com/zeta-comics-blending-ai-art-in-digital-stories/). ## This Project The code in this rep is meant to be an example of interacting with various public AI APIs, as well as rendering a comic strip with JavaScript. It is provided for review purposes only and does not include instructions for setting up the required PHP/MySQL server. Feel free to dig in and adapt any of this to your own project. The Alpha Zeta character art located in the `assets/character_art` directory is (c) Matthew Wilber. Feel free to use the images without modification. Attribution is appriciated but not required. ### ComicRenderer The `ComicRenderer`, `DialogBalloon` and `CharacterAction` classes are designed to be used independently of this project. The CharacterAction class is designed to work with the character art included in the `assets/character_art` folder of this project. If you create your own character art, you will need to update the dialog balloon coordinates in `CharacterActions` to the appropriate locations in your images. To use in your own project, simply copy the `scripts/modules/ComicRenderer` folder into your project and import the `ComicRenderer` from `ComicRenderer.js`. ``` import { ComicRenderer } from "./ComicRenderer/ComicRenderer.js"; ``` To use the ComicRenderer, instantiate the class and pass it a DOM element. ``` const comicRenderer = new ComicRenderer(document.getElementById("#comic-strip")); ``` Then pass a valid JSON script object to the `comicRenderer.LoadScript()` method. ``` let script = { "title": "A Simulated Comic", "panels": [ { "scene": "Panel 1 Scene.", "dialog": [ { "character": "alpha", "text": "I'm saying something." } ], "panelEl": {}, "background": "A simulated background.", "images": [ { "url": "https://comicgenerator.greenzeta.com/backgrounds/6648d7d1475af.png", "type": "background" }, { "url": "https://comicgenerator.greenzeta.com/assets/character_art/standing.png", "type": "character", "character": "alpha", "action": "standing" } ], "action": "standing" }, { "scene": "Panel 2 Scene.", "dialog": [ { "character": "alpha", "text": "I'm saying something else." } ], "panelEl": {}, "background": "A simulated background.", "images": [ { "url": "https://comicgenerator.greenzeta.com/backgrounds/6648d7d213f01.png", "type": "background" }, { "url": "https://comicgenerator.greenzeta.com/assets/character_art/typing.png", "type": "character", "character": "alpha", "action": "typing" } ], "action": "typing", "altAction": "hopeful" }, { "scene": "Panel 3 Scene.", "dialog": [ { "character": "alpha", "text": "I'm saying a punch line." } ], "panelEl": {}, "background": "A simulated background.", "images": [ { "url": "https://comicgenerator.greenzeta.com/backgrounds/6648d7d361767.png", "type": "background" }, { "url": "https://comicgenerator.greenzeta.com/assets/character_art/joyous.png", "type": "character", "character": "alpha", "action": "joyous" } ], "action": "joyous" } ], "prompt": "" }; comicRenderer.LoadScript(script); ``` [GreenZeta.com](https://greenzeta.com)
An experiment in AI and art to create dynamic comic strips.
ai,aiart,javascript
2023-04-15T20:29:24Z
2024-05-19T21:30:37Z
null
1
9
225
0
0
6
null
GPL-3.0
PHP
Exact-Realty/ts-multipart-parser
master
# Multipart Message Parser [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=Exact-Realty_ts-multipart-parser&metric=reliability_rating)](https://sonarcloud.io/summary/new_code?id=Exact-Realty_ts-multipart-parser) [![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=Exact-Realty_ts-multipart-parser&metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=Exact-Realty_ts-multipart-parser) [![Bugs](https://sonarcloud.io/api/project_badges/measure?project=Exact-Realty_ts-multipart-parser&metric=bugs)](https://sonarcloud.io/summary/new_code?id=Exact-Realty_ts-multipart-parser) [![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=Exact-Realty_ts-multipart-parser&metric=security_rating)](https://sonarcloud.io/summary/new_code?id=Exact-Realty_ts-multipart-parser) [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=Exact-Realty_ts-multipart-parser&metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=Exact-Realty_ts-multipart-parser) ![NPM Downloads](https://img.shields.io/npm/dw/@exact-realty/multipart-parser?style=flat-square) This is a library for parsing MIME multipart messages, such as those used in HTTP requests and email messages, written in TypeScript. It provides an easy-to-use async generator that returns the parsed headers and body of each part in a multipart message. Nested multipart messages are supported. ## Features * Parses multipart messages according to the [specification](https://www.ietf.org/rfc/rfc2046.html#section-5.1) * Supports nested multipart messages * Lightweight and fast * Written in TypeScript, but can be used with plain JavaScript as well * Well-tested ## 🚀 Installation You can install the library using either `npm` or `yarn`: ```sh npm install @exact-realty/multipart-parser ``` ```sh yarn add @exact-realty/multipart-parser ``` ## 🎬 Usage The library exports the function `parseMultipartMessage`, which returns an async generator that yields objects with the headers and body (as a `Uint8Array`) of each part in the multipart message. ### 📚 API #### `parseMultipartMessage(stream: ReadableStream, boundary: string): AsyncGenerator` This function takes a `ReadableStream` and a boundary string as arguments, and returns an asynchronous generator that yields objects with the following properties: * `headers`: a `Headers` object containing the headers of the current part * `body`: a `Uint8Array` containing the body of the current part, or `null` if the part is empty. * `parts`: a nested iterator of the same structure for any parts within the current part, if the part's `Content-Type` header indicates that it is a multipart message. #### `boundaryRegex: RegExp` A regular expression that can be used to validate a boundary string. #### `boundaryMatchRegex: RegExp` A regular expression that can be used to extract a boundary string from a `Content-Type` header. #### `encodeMultipartMessage(boundary: string, msg: AsyncIterable<TDecodedMultipartMessage>): ReadableStream<ArrayBuffer>` This function takes a boundary string and an array of messages as arguments and returns a `ReadableStream` that can be read to obtain a multipart message. `TDecodedMultipartMessage` is defined as an object with the following fields: * `headers`: a `Headers` object containing the headers of the current part * `body` (optional): The body of the current part, or `null` if the part is empty. It can be any of the following types: `ArrayBuffer`, `Blob`, `ReadableStream` or any typed array, such as `Uint8Array`. * `parts` (optional): An async or sync iterable of one element or more of the same type (`TDecodedMultipartMessage`), for nested messages. If both `body` and `parts` are specified, `body` takes precedence. ### Example ```js import { parseMultipartMessage } from '@exact-realty/multipart-message-parser'; const decoder = new TextDecoder(); const stream = ... // a ReadableStream containing the multipart message const boundary = 'my-boundary'; // the boundary of the multipart message for await (const part of parseMultipartMessage(stream, boundary)) { console.log(part.headers.get('content-type')); console.log(decoder.decode(part.body)); } ``` ## 🤝 Contributing We welcome contributions to this project! Feel free to submit a pull request or open an issue if you find a bug or have a feature request. ## 📄 License This library is licensed under the ISC License, see LICENSE for more information.
TypeScript streaming parser for MIME multipart messages
javascript,mime,mime-parser,multipart,typescript,encoder,encoder-decoder,parser
2023-04-14T22:12:14Z
2024-05-22T23:03:34Z
2024-05-22T23:03:34Z
2
10
22
1
1
6
null
ISC
TypeScript
CharanReddy404/React-Movies
main
# React-Movies
null
api,javascript,react,reactjs,redux,redux-toolkit,rest-api,tailwindcss
2023-04-19T14:55:32Z
2023-04-22T07:15:41Z
null
1
0
11
0
1
6
null
null
JavaScript
hajnaloltyan/garden-and-flower-show
main
<a name="readme-top"></a> <div align="center"> <img src="./docs/images/hajnalkaoltyan.png" alt="logo" width="140" height="auto" /> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [� Table of Contents](#-table-of-contents) - [📖 Garden and Flower Show ](#-garden-and-flower-show-) - [🛠 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 --> # 📖 Garden and Flower Show <a name="about-project"></a> This is my Microverse **Garden and Flower Show** site, created with HTML, Tailwind CSS, Javascript and mobile first approach. As my fist Capstone Project ending Module 1, I created a site to showcase all that I have learnt while completing the Portal. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>HTML</summary> </details> <details> <summary>Tailwind CSS</summary> </details> <details> <summary>Javascript</summary> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **Responsive** - **GitHub WorkFlow** - **Grid and Flexbox** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link](https://hajnaloltyan.github.io/garden-and-flower-show/) - In this [video](https://www.loom.com/share/42d8a19fda604a3fa6c75314e6e76101) I share a live view of my project while also talking about the creation <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: - Code editor - Node ### Setup Clone this repository to your desired folder by opening the terminal and running the following command: ```sh git clone `git@github.com:hajnaloltyan/garden-and-flower-show.git` ``` ### Install Install this project with: ```sh npm install ``` Then follow instructions from here to [install Tailwind CSS](https://tailwindcss.com/docs/installation) ### Usage To run the project: Open the Project in your code editor and start Live Server inside the index.html file. ### Run tests To run tests, run the following commands: For HTML linter errors: ```sh npx hint . ``` For CSS linter errors: ```sh npx stylelint "**/*.{css,scss}" ``` For Javascript linter errors: ```sh npx eslint . ``` ### Deployment Deployed by GitHub Pages. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Hajnalka Oltyan** - GitHub: [@hajnaloltyan](https://github.com/hajnaloltyan) - LinkedIn: [LinkedIn](https://www.linkedin.com/in/hajnalka-oltyan/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - Creating all the remaining sites - Adding more functionality <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! <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 please leave a star and a comment. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank Microverse to have this opportunity, and also thank you the code review team. I would also like to thank [Cindy Shin in Behance](https://www.behance.net/adagio07) for the Original design idea. And for the images from Unsplash thanks to the following artists: * [Dean Lewis](https://unsplash.com/photos/yRW1i2g80Ec?utm_source=unsplash&utm_medium=referral&utm_content=creditShareLink) * [Elin Gann](https://unsplash.com/photos/b96nUqrd5-Q) * [Connor Moyle](https://unsplash.com/photos/Fp2WRKyNWDI) * [Andreas Haslinger](https://unsplash.com/photos/3UPun-zafgQ) * [Thom Milkovic](https://unsplash.com/photos/cBS0qKJM-P4) * [Zoe Schaeffer](https://unsplash.com/photos/xmpC7N_e2HI) * [Edgar Castrejon](https://unsplash.com/photos/Se5cwIoUbzE) * [Daniel Mirlea](https://unsplash.com/photos/fxiAxNLpoqI) * [Man Chung](https://unsplash.com/photos/eML9gnJya6Q) * [Veronica Reverse](https://unsplash.com/photos/qYwyRF9u-uo) * [Jan Canty](https://unsplash.com/photos/KcQuXaHCSPE) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
This is the Capstone project for the Microverse Portal Module - Garden and Flower Show website, created with HTML, Tailwind CSS, Javascript and mobile first approach. Created to showcase all that I have learnt while completing the Portal.
css,html,javascript,tailwindcss
2023-04-17T20:29:00Z
2024-03-04T21:08:35Z
null
1
1
42
0
0
6
null
MIT
JavaScript