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
Axnjr/Radha-Programming-Language
main
# Radha Programming Language A basic programming language that includes features of both Python and JavaScript created by Axnjr (Yakshit Chhipa) as a personal project to include in my resume . # Small Docs / A few rules before starting . 1) Variable declartion and assignment inside square brackets -> ex: ```ruby [ x = 90 ] ``` 2) List's / array's are defined inside double square brackets -> ex: ```ruby [ arr = [[1,2,3,4,5]] ] ``` 3) Dictionarie's / object's are defined inside double curly brackets -> ex: ```ruby [ dict = {{"name":"Krishna","age":19}} ] ``` 4) Functions are called inside single curly brackets -> ex: ```ruby { print("Hello World") } { print( {..some_function()..} ) } ``` 5) Functions are defined using "def" keyword and must end with ";" ( identation not neccesary but new line is neccesary ) ex: ```ruby def Sum(a,b) ret: a+b ; ``` 6) For loops must end with ":" else same as for-in loop's in python ( identation not neccesary but new line is neccesary ) ex: ```ruby for [i] in (10) {print(i)} : for [i] in [[1,2,3,4,5]] {print(i)} : for [i] in (0,50,5) {print(i)} : ``` 7) if statement's same as python but they end with "?" ( identation not neccesary but new line is neccesary ) ex: ```ruby if 8 + 2 is 10 {print("YES")} ? if 4 > 3 if 3 > 2 if 3 > 1 if 1 > 0 {print("4_biggest")} ? ? ? ? ``` 8) Conditional's are defined inside double parenthesis -> ex: ```ruby [ condition = ((1>0)) ] ``` # Example 1) ```ruby [num = 90 ] # integer [str = "krishna" ] # string [cap_str = {capitalize(str)} ] # function [con = ((1>0)) ] # conditional / boolean -> True [list = [[1,2,3,4]] ] # list [dict = {{"num":23,"age":19}} ] # dictionary [age = dict[age] ] # dictionary property / item [arr_ele = list[2] ] # list item {print("num","=",num)} # num = 19 {print("str","=",str)} # str = krishna {print("cap_str","=",cap_str)} # cap_str = KRISHNA {print(con)} # true {print("list","=",list)} # list = 1 2 3 4 {print(dict)} # {num: 23, age: 19} {print(age)} # 19 {print(arr_ele)} # 3 {print("Hello","World",str)} # Hello World krishna {print(num+age+arr_ele)} # 41 ``` 2) ```ruby def FizzBuzz(num) if num % 3 is 0 and num % 5 is 0 [ans = "FizzBuzz"] ? if num % 3 is 0 and num % 5 != 0 [ans = "Fizz"] ? if num % 3 != 0 and num % 5 is 0 [ans = "Buzz"] ? if num % 3 != 0 and num % 5 != 0 [ans = "NoFizzNoBuzz"] ? ret: ans: # ("ret:" mean's "return") ; [fn = {FizzBuzz(15)} ] {print(fn)} # FizzBuzz {print( {FizzBuzz(3)}) } # Fizz {print( {FizzBuzz(5)}) } # Buzz {print( {FizzBuzz(19)}) } # NoFizzNoBuzz ``` # CDN https://cdn.jsdelivr.net/gh/Axnjr/Radha-Programming-Language@main/Language.js
A basic programming language that includes features of both Python and JavaScript.
core,core-dev-work,javascript,language,python
2023-01-17T15:36:31Z
2023-01-24T15:46:44Z
null
1
0
10
0
0
2
null
null
JavaScript
sha256/Mongur
main
null
Define MongoDB models and query data using Typescript classes.
javascript,mongodb,mongoose,odm,orm,typegoose,typescript
2023-01-19T12:22:49Z
2023-12-24T15:08:17Z
null
1
0
21
0
0
2
null
MIT
TypeScript
joydey100/quizmasterjs
main
null
QuizMasterJS is an application designed for individuals to assess their knowledge of JavaScript through a series of tests.
javascript,javascript-quiz-app
2023-01-25T13:51:48Z
2023-02-10T07:06:16Z
null
1
0
7
0
0
2
null
null
JavaScript
AntaripChat/Express-register-api-0.1
master
null
node js for beginner
express,javascript,node,nodejs
2023-01-24T07:04:29Z
2023-04-24T04:32:12Z
null
1
0
3
0
1
2
null
null
JavaScript
CoruJa1m/nlw-setup
main
<h1 align="center"> habits </h1> <p align="center"> NLW e um evento exclusivo e gratuito, promovido pela Rocketseat para ensino de tecnologias WEB. <br/> </p> <p align="center"> <a href="#-tecnologias">Tecnologias</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-projeto">Projeto</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-layout">Layout</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#memo-licença">Licença</a> </p> <p align="center"> <img alt="License" src="https://img.shields.io/static/v1?label=license&message=MIT&color=49AA26&labelColor=000000"> </p> <br> <p align="center"> <img alt="projeto habits" src=".github/preview.jpg" width="100%"> </p> ## 🚀 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML e CSS - JavaScript - Git e Github - Figma ## 💻 Projeto - [visite o projeto online](https://coruja1m.github.io/nlw-setup/) O habits e um appp para ajudar a rastrear os habitos . ## 🔖 Layout Você pode visualizar o layout do projeto através [DESSE LINK](https://www.figma.com/community/file/1187422022288947321). É necessário ter conta no [Figma](https://figma.com) para acessá-lo. ## :memo: Licença Esse projeto está sob a licença MIT. --- Feito com ♥ by Rocketseat :wave: [Participe da nossa comunidade!](https://discord.gg/rocketseat)
projeto habits by nlw rocketseat
css3,figma,git,github,html5,javascript
2023-01-22T23:29:16Z
2023-01-23T02:11:51Z
null
1
0
5
0
0
2
null
null
CSS
shaqayq/MIS-clinic
main
# MIS-clinic Management information system for a dental clinic. ## Built With - HTML - CSS - Bootstrap - Laravel - PHP - Js ## Authors 👤 **Shaqayq Darwazi** - GitHub: [@shaqayq](https://github.com/shaqayq) - LinkedIn [Shaqayq Darwazi](https://www.linkedin.com/in/shaqayq-darwazi-0a7487233//) ## Getting Started To get a local copy up and running follow these simple example steps. - Clone this repository with git clone `https://github.com/shaqayq/MIS-clinic.git` using your terminal or command line. - Change to the project directory by entering: <br> `cd MIS_Clinic` in the terminal. - Turn on Xammp for use locally. ### Prerequisites You need to make sure to have installed the latest version of Composer and PHP on your computer. ### Setup You can clone this repository or simply download the files as a .zip If you want to set up a personal repository based on this one, you can as well fork it. ## 🤝 Contributing Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](../../issues/). ## Show your support Give a ⭐️ if you like this project!
Management information system for a dental clinic. Build with HTML , CSS , JS , PHP, Laravel frame work.
css,html,javascript,laravel-framework,php
2023-01-25T11:48:16Z
2023-06-25T17:56:48Z
null
1
3
90
0
1
2
null
null
HTML
allabovehassan/Flash-Deal.in
main
# Flash Deal ![Flash_Deal_Logo](https://user-images.githubusercontent.com/112754393/229727752-9707ed31-4473-43e4-a760-c554ff655349.png) Our aim is to empower every person in the country to independently connect with buyers and sellers online. ## Features - Admin / User Login - Authentication - Post / Edit / Delete Adds - Track Adds - Paymnet Page ## Tech Stack **Client:** HTML, CSS, JavaScript and Bootstrap **Server:** Node.js, Express.js **Database:** MongoDB,Redis ## Run Locally Clone the project ```bash git clone https://github.com/allabovehassan/Flash-Deal.in.git ``` Go to the project directory ```bash cd Flash-Deal.in ``` Install dependencies ```bash npm install ``` Start the server ```bash npm run server ``` ## Environment Variables To run this project, you will need to add the following environment variables to your .env file `port` `mongoURL` `key` `saltround` ## API Reference #### Welcome ```http GET / ``` #### Get | Post | Update | Delete User's ```http GET /user ``` #### Get | Post | Update | Delete Appointment's ```http GET /mobile ``` #### Get | Post | Update | Delete Doctor's ```http GET /car ``` ## Demo https://wonderful-alfajores-4d5172.netlify.app/ ## Screenshots ![flashdeal](https://user-images.githubusercontent.com/112754393/229730622-70f7874f-3e1b-4211-8f8c-ad1bcd3ee078.png) ![image](https://user-images.githubusercontent.com/112754393/229730852-f18dbe4c-2ff0-4db1-a680-d2bdf47aceaf.png) ## Workflow Diagram ![image](https://user-images.githubusercontent.com/112754393/229732971-3e4ce8d5-d766-4606-8647-fbf0080d1d7b.png) ## Authors - [Hassan Khan](https://github.com/allabovehassan)
This project is built using HTML, CSS, JavaScript, and Node.js with a MongoDB database. Its backend was built on Express.js Framework and uses Bootstrap for styling.
css3,express-js,html5,javascript,jsonwebtoken,mongodb-atlas,nodejs,redis
2023-01-17T16:06:50Z
2023-04-04T08:25:53Z
null
2
5
14
0
0
2
null
null
HTML
lawrahkonwea/math-magician
develop
# 📗 Table of Contents - [📖 math-magician](#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) # 📖 [Math-app] <a name="about-project"></a> Mathapp The JavaScript project is a calculator app. ## 🛠 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/">React.js</a></li> </ul> </details> ### Key Features <a name="key-features"></a> - **[Math Calculations]** - **[Read Math quote]** <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link](https://singlemathapp.onrender.com) <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: ### Setup If you installed git you can clone the code to your machine, or download a ZIP of all the files directly. Download the ZIP from this location, or run the following git command to clone the files to your machine: git clone: ```sh https://github.com/lawrahkonwea/math-magician ``` ### Installation and Setup install the dependencies with: ```sh cd math-magician npm install ``` ### Usage To run the project, execute the following command: ```sh npm start ``` ### Run tests To run tests, run the following command: ```sh npm run test ``` ### Deployment You can deploy this project using: ```sh npm run build ``` <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 👥 Authors <a name="authors"></a> 👤 **Author** - GitHub: (https://github.com/lawrahkonwea) - Twitter: (https://twitter.com/lawrah_xo) - LinkedIn: [LinkedIn](https://linkedin.com/in/amakalaurakonwea) ## 🔭 Future Features <a name="future-features"></a> - [Implement events] - [Refractor code with hooks] - [ ] **[Implement events]** - [ ] **[Refractor code with hooks]** <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 project... <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank... <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. _NOTE: we recommend using the [MIT license](https://choosealicense.com/licenses/mit/) - you can set it up quickly by [using templates available on GitHub](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). You can also use [any other license](https://choosealicense.com/licenses/) if you wish._ <p align="right">(<a href="#readme-top">back to top</a>)</p>
A Single Page App (SPA) that allows users to make simple calculations, and read a random math-related quote.
css3,html5,javascript,reactjs
2023-01-17T12:20:47Z
2023-04-11T12:47:38Z
null
2
8
42
0
0
2
null
null
JavaScript
EtoMisha/SmartCalc
develop
# SmartCalc ![calcScreen0.jpg](images%2FcalcScreen0.jpg) Задача - сделать веб калькулятор со следующим функционалом: - Вычисление должно производится после полного ввода вычисляемого выражения и нажатия на символ `=` - Вычисление произвольных скобочных арифметических выражений в инфиксной нотации с подстановкой значения переменной _x_ в виде числа - Построение графика функции, заданной с помощью выражения в инфиксной нотации с переменной _x_ (с координатными осями, отметкой используемого масштаба и сеткой с адаптивным шагом) - Не требуется предоставлять пользователю возможность менять масштаб - Область определения и область значения функций ограничиваются по крайней мере числами от -1000000 до 1000000 - Для построения графиков функции необходимо дополнительно указывать отображаемые область определения и область значения - Проверяемая точность дробной части - минимум 7 знаков после запятой - У пользователя должна быть возможность ввода до 255 символов - Скобочные арифметические выражения в инфиксной нотации должны поддерживать следующие арифметические операции и математические функции: - **Арифметические операторы**: | Название оператора | Инфиксная нотация <br /> (Классическая) | Префиксная нотация <br /> (Польская нотация) | Постфиксная нотация <br /> (Обратная польская нотация) | | ------ | ------ | ------ | ------ | | Скобки | (a + b) | (+ a b) | a b + | | Сложение | a + b | + a b | a b + | | Вычитание | a - b | - a b | a b - | | Умножение | a * b | * a b | a b * | | Деление | a / b | / a b | a b \ | | Возведение в степень | a ^ b | ^ a b | a b ^ | | Остаток от деления | a mod b | mod a b | a b mod | | Унарный плюс | +a | +a | a+ | | Унарный минус | -a | -a | a- | >Оператор умножения содержит обязательный знак `*`. Обработка выражения с опущенным знаком `*` не производится - **Функции**: | Описание функции | Функция | | ---------------- | ------- | | Вычисляет косинус | cos(x) | | Вычисляет синус | sin(x) | | Вычисляет тангенс | tan(x) | | Вычисляет арккосинус | acos(x) | | Вычисляет арксинус | asin(x) | | Вычисляет арктангенс | atan(x) | | Вычисляет квадратный корень | sqrt(x) | | Вычисляет натуральный логарифм | ln(x) | | Вычисляет десятичный логарифм | log(x) | Предусмотреть специальный режим "кредитный калькулятор": - Вход: общая сумма кредита, срок, процентная ставка, тип (аннуитетный, дифференцированный) - Выход: ежемесячный платеж, переплата по кредиту, общая выплата Предусмотреть специальный режим "калькулятор доходности вкладов": - Вход: сумма вклада, срок размещения, процентная ставка, налоговая ставка, периодичность выплат, капитализация процентов, список пополнений, список частичных снятий - Выход: начисленные проценты, сумма налога, сумма на вкладе к концу срока Добавить в приложение настройки: - Добавить считывание настроек из файла конфигурации при запуске программы - Добавить описание редактируемых параметров в справку Добавить в приложение логирование: - В логах хранить историю операций - Логи сохранять в папку logs, по одному файлу на период ротации - Должна быть возможность настройки периода ротации логов (час/день/месяц) - Файлы должны быть названы в соответствии со следующим шаблоном: `logs_dd-MM-yy-hh-mm-ss` (указывается время создания файла) ![calcScreen1.jpg](images%2FcalcScreen1.jpg) График функции строится с помощью библиотеки Chart.js https://github.com/chartjs/Chart.js
Умный веб-калькулятор + калькулятор кредита / депозита
css,html,java,javascript,junit,spring
2023-01-17T17:40:50Z
2023-06-07T19:30:47Z
null
1
0
18
0
0
2
null
null
Java
asifaminisonline/React-todo
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) - [❓ FAQ](#faq) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 [REACT-TODO-APP] <a name="about-project"></a> > This is a todo app created in react. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> > Following technologies have been used in this project. <details> <summary>Client</summary> <ul> <li><a href="https://react.org/">React JS</a></li> <li><a href="https://www.jsx.com/">JSX</a></li> <li><a href="https://www.w3.org/Style/CSS/current-work.en.html">CSS</a></li> <li><a href="https://www.ecma-international.org/publications-and-standards/standards/ecma-262/">JavaScript5</a></li> </ul> </details> <details> <summary>Server</summary> <ul> <li><a href="https://pages.github.com/">Github Pages</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> > This project is a React Single Page App. > This is a todo app created in react. > This project is using best practices with React and JavaScript. > This project follows the gitflow convention. > This is using eslint and stylelint to check errors. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> > Soon you will find a live demo link here: <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> > This is how a new developer could make use this project. To get a local copy up and running, follow these steps. ### Prerequisites In order to run this project you need: - [ ] A PC or Mac. - [ ] An active internet connection. - [ ] Some knowledge of git and github. ### Setup Clone this repository by using the command line : git clone https://github.com/asifaminisonline/React-todo.git ### Install Install this project with: Use npm install after cloning this project ### Usage - [ ] First you need to download this repo or clone this repo. - [ ] Open this project in your local machine. - [ ] Open Terminal in your machine. - [ ] run npm install in your terninal to install necessary required dependencies for this project. - [ ] Copy index.html file path and paste it in your browser url. - [ ] now the project will be running. ### Deployment You can deploy this project using: Github Pages. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> > Mention all of the collaborators of this project. 👤 **Author1** - GitHub: [@asifaminisonline](https://github.com/asifaminisonline) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> > Following are a few features i will add to the project in future. - [ ] I will add a database to this project in future where i can save todos. - [ ] I will add more functionality to this project like searching,editing etc. - [ ] I will update the interface and design of the project in future. <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're committed to making the world a better place, please support our project. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to give credit to the following people who have inspired my codebase: - [ ] The Whole Microverse Team - thank you so much for this great learning platform. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FAQ (optional) --> ## ❓ FAQ <a name="faq"></a> - **[Question_1]** What technologies i have used in this project ? - [Answer_1]:Thanks for the question you can find the answer at the top section of this readme.md file where i have explained everything. - **[Question_2]** Have you used webpack in this project ? - [Answer_2] Yes i have used webpack 5 in this project. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./MIT-LICENSE.txt) licensed. \_NOTE: we recommend using the [MIT license](https://choosealicense.com/licenses/mit/) - you can set it up quickly by [using templates available on GitHub](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). You can also use [any other license](https://choosealicense.com/licenses/) if you wish. <p align="right">(<a href="#readme-top">back to top</a>)</p>
This project is a React Single Page App. This is a todo app created in react. This project is using best practices with React and JavaScript. This project follows the gitflow convention. This is using eslint and stylelint to check errors.
eslint,javascript,reactjs,stylelint
2023-01-20T06:42:46Z
2023-01-21T11:55:36Z
null
2
1
5
0
0
2
null
null
JavaScript
devlower/nlw-setup-explorer
main
<h1 align="center"> Habits </h1> <p align="center"> NLW é um evento exclusivo e gratuito, promovido pela Rocketseat para ensino de tecnologias WEB. <br/> </p> <p align="center"> Projeto desenvolvido na semana NLW-SETUP da <a href="https://www.rocketseat.com.br">Rocketseat 🚀</a> de 16 a 22/01/2023. </p> <br> <p align="center"> <a href="#-tecnologias">Tecnologias</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-projeto">Projeto</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-layout">Layout</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#memo-licença">Licença</a> </p> <br> <p align="center"> <img alt="project Habits" src="./assets/cover.jpg" width="100%"> </p> ## 🚀 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML e CSS - JavaScript - Git e Github - Figma ## 💻 Projeto O Habits é um app para ajudar a rastrear os hábitos. - [Visite a minha versão do projeto online](https://devlower.github.io/nlw-setup-explorer) ## 🔖 Layout Visualize o [layout do projeto](https://www.figma.com/community/file/1195327109778210238). É necessário ter conta no [Figma](https://figma.com) para acessá-lo. ## :memo: Licença Esse projeto está sob a licença MIT. --- [Participe da comunidade do Discord da Rocketseat!](https://discord.gg/rocketseat)
Habit Tracker by NLW's Rocketseat
html,css,figma,git,github,javascript
2023-01-19T14:13:40Z
2023-01-24T00:27:24Z
null
1
0
6
0
0
2
null
null
HTML
AlekseiUsov/react-burger
main
## Stellar burgers ### Описание: Сайт межгалактической бургерной. Содержит главную страницу, ленту заказов и личный кабинет. - здесь вы можете собрать бургер на ваш вкус. Ленту заказов - общая лента сделанных бургеров, в ней можете отследить ваш заказ по номеру. Страница личного кабинета - содержит данные о пользователи и историю заказов. ### Авторизация пользователя: Для того чтобы пользователь мог зайти в личный кабинет, он обязательно должен быть зарегистрирован в системе. Если данное условие не выполнено, то пользователь не сможет авторизироваться и получить доступ к странице личного кабинета. Для успешной авторизации необходимо пройти идентификацию (ввести email, ранее зарегистированный) и аутентификацию - ввести корректный пароль. Вводимые данные сверяется, с теми, которые хранится на сервере. Если всё совпадёт, выполнится авторизация. ### Главная страница: Здесь вы можете собрать бургер на ваш вкус. Страница состоит из двух частей: слева - раздел с ингридиентами, справо - собранный бургер. Чтобы собрать бургер, необходимо перенести из левой части страницы игридиенты в правую часть. В разделе ингридиентов, при успешном переносе, в крайнем правом углу перетаскиваемого игридиента срабатывает счетчик. Он отражает сколько раз вы добавляли конкретный ингридиент в ваш бургер. Ингридиенты разбиты на три группы: булки, начинки и соусы. Для удобной навигации с правой стороны есть скрол, а так же над игридиентами есть табы навигации. Нажимая на таб, происходит скрол на соответствующий раздел. При нажатии на игридиент появляется поп-ап с подробной информацией о ингридиенте. Собранный бургер отражает все ингридиенты, которые вы добавили. Первый и нижний ингридиент - всегда булка. Последовательность ингридиентов между булками можно менять. Для этого достаточно потянуть выбранный элемент и переместить туда, куда хочется. Так же есть возможность удалить ингидиенты между булками. После того, как вы собрали ваш бургер, можно оформить заказ, однако есть два условия. Необходимо выбрать булки и как минимум один ингридиент. ### Страница заказов: Как и главная, эта страница состоит из двух частей. Слева - список заказов, справо - счетчик заказов. Список содержит информацию о 50-ти последних заказах, сделанных пользователями. Справо от списка есть скрол, который позволит удобно перемещаться по истории заказов. При нажатии на конкретный заказ появляется поп-ап с подробной информацией о заказе. Счетчик заказов содержит: номера готовых заказов, заказов находящихся в работе, количество бургеров сделанных за все время и бургеров выполненных сегодня. В режиме реально времени происходит обновление списка заказов, номеров выполенных заказов и заказов, находящихся в работе, т.к. соединение с сервером открыто при помощи WebSockets. ### Личный кабинет: В личном кабинете храниться история заказов пользователя, так же как и на странице заказов, соединение c сервером выполненно при помощи WebSokets. В режиме реально времени, происходит изменение в истории заказов конкретного пользователя. При нажатии на заказ появляется поп-ап с подробной информацией о заказе. В личном кабинете есть возможность изменить данные: восстановить или сменить пароль, изменить email имя. И последнее - на странице есть кнопка выхода, при нажатии на которую происходит выход из учетной записи и редирект на страницу с логином. ### Модальные окна В проекте выполнен роутинг с помощью библиотеки react routing dom. При открытии модального окна в браузерной строке появится уникальная ссылка. Если скопировать эту ссылку из браузерной строки и вставить ее в браузерную строку, но в новой вкладке, откроется отдельная страница с информацией из модального окна, которая будет немного по-другому оформлена. #### Технологический стек: - HTML - CSS - React (FC, custom hooks, HOC) - React-router-dom - Redux(Thunk) - TypeScript - WebSocket - Drag and Drop - React-scroll - JWT Tokens (login, logout, register, reset password) - Tests (Jest, Cypress)
Stellar burger
css,drag-and-drop,html,javascript,typescript,cypress,jest,react,redux,websocket
2023-01-19T14:01:18Z
2023-09-25T11:05:19Z
null
1
8
88
0
0
2
null
null
TypeScript
ftaskoski123/recipes-app
master
# Forkify Recipe Application 🍽️ Welcome to the Forkify Recipe Application, where you can discover, search, bookmark, and add your favorite recipes! Whether you're a seasoned chef or a cooking enthusiast, this app is designed to simplify your culinary journey. ## What the App Does - **Search Recipes:** Find a wide variety of recipes from appetizers to desserts. - **Bookmark Favorites:** Save your favorite recipes for quick access in the future. - **Add Your Own Recipes:** Contribute your unique culinary creations to the community. - **View Detailed Instructions:** Access step-by-step cooking instructions and ingredient lists. - **Smart Ingredient Shopping:** Automatically generate shopping lists based on your selected recipes. ## Getting Started To get started with Forkify on your local machine, follow these simple steps: 1. **Clone the Repository:** - Clone this repository to your local machine using the following command: ```bash git clone https://github.com/ftaskoski123e/forkify.git 2.**Navigate to the Project Directory:** Open a terminal or command prompt and navigate to the project directory 3.**Install Dependencies:** Install the project dependencies by running the following command: ```npm install``` This command will download and install the necessary packages. 4.**Start the Application:** Start the Forkify application on your local machine with this command: ``` npm start ``` The app will be accessible in your web browser at http://localhost:1234 (or another port if specified). ## Explore and Enjoy: Open your web browser and go to http://localhost:1234 (or another port if specified) to start using Forkify. Search for recipes, bookmark your favorites, and even add your own recipes to the app! Contributing If you'd like to contribute to the development of this app, feel free to fork the repository, make your changes, and create a pull request. I welcome contributions from the community!
Search for recipes, add your own creations, and bookmark your favorites—all in one place.
css,html,javascript,recipe-website
2023-01-22T18:31:19Z
2023-09-11T21:32:58Z
null
1
0
4
0
1
2
null
null
JavaScript
imranasif87/EmployeeTrackerApp
main
# EmployeeTrackerApp This project depicts Mobile application development. The aim is to provide an online platform for uploading product images serial-wise and perform an employee attendance system. This system can manage and send product images over the network within authenticated access. This project was made for a company that wants to track its employees. When the employee login the app, it takes the attendance and current location of the employee and sends this information to the online centralized database. After 10 minutes, it fetches the auto location and sends it to the live database server. Then the admin/manager of the company sees the current location of the employee. Other modules and features are given below. ## Project Scope There will be two major sides of the website. ### 1. Upload/Send product images This application's main feature is that an employee whose information is integrated with the system and the within authenticated access employee can upload product images and send them to the server placed in the head office. The required number of images (6 to 10) can then be accessed on the web interface against that specific employee information integrated with CRM. Snap option will be integrated directly with the application with which the mobile cam will be integrated with the application. However, there will also be an option to upload images from media. ### 2. Employee Attendance System As the mobile application is integrated with the CRM of the company’s database, the mobile application also provides a feature for employee attendance. When he gets logged in, his coordinates are fetched automatically, and the attendance should be marked randomly. However, the employee should be warned that the attendance has been marked. Based on GPRS coordinates, the administrator analyses whether or not the employee is on its required position. Random attendance time would be noted thrice a day, and its database should be managed to analyze the monthly salary. ### 3. CRM Integration The CRM database of the company is developed in MySQL, which should be integrated with the mobile and web applications to get the employee's and product information. However, this information should be fetched only in “read-only” mode so that the already populated information cannot be altered. ### 4. Quick Search The web application interface can access the images against a specific employee with a quick search form. The Ajax approach is implemented to get the results immediately, and the auto-complete functionality is also embedded. ## Programming and Implementation The web application interface is implemented using PHP programming language. HTML, CSS, and Javascript are used for Android interface development to manage layouts and client-side scripting. The database is handled using MySQL. The purpose of choosing this implementation strategy is to integrate with the existing hosting platform. There are following technologies used in this project * Backend * PHP * Frontend * HTML * CSS * JavaScript * Databases: * MySQL Administration * MS SQL * Mobile App Development Frameworks: * PhoneGap * Firebase * App Features: * Map Integration * Location * User Profile Creation * User Authentication * Mobile Platforms: * Windows * Android * iOS * Devices: * Laptops * Tablets * Mobile ## Screenshots ### Mobile Application <img src="https://user-images.githubusercontent.com/56230659/217922282-d7b56e74-6287-4822-a210-75d8dadb8a7c.png" width="300" height="300" /> <img src="https://user-images.githubusercontent.com/56230659/217922349-103ce4dc-a518-4009-bb1e-6f39eb243cef.png" width="300" height="500" /> <img src="https://user-images.githubusercontent.com/56230659/217922411-66c06413-19a5-40c5-99fc-ff03dd30e383.png" width="300" height="500" /> <img src="https://user-images.githubusercontent.com/56230659/217922470-d35e2a5b-f2a0-4376-b401-b26d15e6091d.png" width="300" height="500" /> ### Admin Panel ![image](https://user-images.githubusercontent.com/56230659/217925344-db1dd338-0b2e-4405-b937-06c5fa228923.png)
Employee Tracker and Attendance App
android,authentication,css,database-management,google-maps-api,html,html-css-javascript,ios,javascript,management-system
2023-01-25T16:09:37Z
2023-02-09T20:09:16Z
null
1
0
3
0
0
2
null
MIT
HTML
Abhi0049k/Everyday-Needs
main
![Logo](https://raw.githubusercontent.com/Abhi0049k/Everyday-Needs/main/frontend/icon/Everyday%20needs-logos.jpeg) # Everyday Needs Clone of an e-commerce website which basically focuses on selling mobile covers, backpacks and watchbands ## Contributing This is an individual project built within a span of five days. ## Demo [demo](https://vimeo.com/912994748?share=copy) ## Deployment Backend is deployed on Cyclic: [Deployed Link](https://shy-red-rabbit-sari.cyclic.app/) Frontend[HTML, CSS and JS] is deployed on Netlify: [Deployed Link](https://inquisitive-froyo-761ed8.netlify.app/) Frontend[React.js and TypeScript] is deployed on Vercel: [Deployed Link](https://everyday-needs-abhi0049k.vercel.app/) ## Features - User Sign In - User Sign Up - User Logout - Add to Cart - Place an order - Razor Payment Gateway - Search Product - Update User Details - Increase/Decrease quantity for a particular order - Search Product - User Dashboard ## Tech Stack ![CSS3](https://img.shields.io/badge/css3-%231572B6.svg?style=for-the-badge&logo=css3&logoColor=white) ![HTML5](https://img.shields.io/badge/html5-%23E34F26.svg?style=for-the-badge&logo=html5&logoColor=white) ![JavaScript](https://img.shields.io/badge/javascript-%23323330.svg?style=for-the-badge&logo=javascript&logoColor=%23F7DF1E) ![Netlify](https://img.shields.io/badge/netlify-%23000000.svg?style=for-the-badge&logo=netlify&logoColor=#00C7B7) ![Express.js](https://img.shields.io/badge/express.js-%23404d59.svg?style=for-the-badge&logo=express&logoColor=%2361DAFB) ![NPM](https://img.shields.io/badge/NPM-%23000000.svg?style=for-the-badge&logo=npm&logoColor=white) ![JWT](https://img.shields.io/badge/JWT-black?style=for-the-badge&logo=JSON%20web%20tokens) ![NodeJS](https://img.shields.io/badge/node.js-6DA55F?style=for-the-badge&logo=node.js&logoColor=white) ![MongoDB](https://img.shields.io/badge/MongoDB-%234ea94b.svg?style=for-the-badge&logo=mongodb&logoColor=white) ![TypeScript](https://img.shields.io/badge/TypeScript-%233178C6.svg?style=for-the-badge&logo=typescript&logoColor=white) ![React.js](https://img.shields.io/badge/React.js-%2361DAFB.svg?style=for-the-badge&logo=react&logoColor=white) ![Tailwind CSS](https://img.shields.io/badge/Tailwind_CSS-%231a202c.svg?style=for-the-badge&logo=tailwind-css&logoColor=38B2AC) ![Redux](https://img.shields.io/badge/Redux-%23764ABC.svg?style=for-the-badge&logo=redux&logoColor=white) [![Electron](https://img.shields.io/badge/Electron-9B59B6?style=for-the-badge&logo=electron&logoColor=white)](https://www.electronjs.org/) ## Screenshots Landing Page ![landin](https://github.com/Abhi0049k/stark-business-7502/assets/112062354/78f0f3e0-c464-4420-9e7f-bd5206a8345f) ### Product Listing Page ![productList](https://github.com/Abhi0049k/stark-business-7502/assets/112062354/835f3e2e-3a17-4dd5-b379-d1dcb2136c64) ### Product Page ![productPage](https://github.com/Abhi0049k/stark-business-7502/assets/112062354/f7e7f873-541b-438e-907f-828837a2e2f7) ### Cart Page ![cart](https://github.com/Abhi0049k/stark-business-7502/assets/112062354/edb5a2fd-88ef-4e8a-b1d0-a01e86eb644e) ### User Dashboard ![userdash](https://github.com/Abhi0049k/stark-business-7502/assets/112062354/5e61e501-b72a-4cb0-bbad-5599b7858010) ### Running Locally with npm: 1. Clone the project: ```bash git clone git@github.com:Abhi0049k/Everyday-Needs.git ``` 2. Copy the `.env.example` to `.env` for both the backend and react-frontend. 3. Navigate to the `backend` folder and the `react-frontend` folder separately and install dependencies: ```bash cd backend npm install ``` ```bash cd react-frontend npm install ``` 4. Run both the backend and react-frontend: ```bash npm run dev ``` ### Running Locally with Docker: 1. Clone the project: ```bash git clone git@github.com:Abhi0049k/Everyday-Needs.git ``` 2. Navigate to the project's root directory. 3. Use Docker Compose to create an image and run a container: ```bash docker-compose up ```
Clone of an e-commerce website which basically focuses on selling mobile covers, backpacks and watchbands
css3,html5,javascript,bcrypt,dotenv,jsonwebtoken,mongodb-atlas,mongoose,nodejs,reactjs
2023-01-17T05:17:54Z
2024-02-14T16:13:22Z
null
2
9
73
0
0
2
null
null
TypeScript
Mdabdullah3/Blood-donation-website
main
null
null
blood-donation-app,css3,firebase,html5,javascript,react-icons,react-js,react-router,tailwindcss,react-revel
2023-01-21T11:46:01Z
2024-03-06T08:18:26Z
null
1
0
6
0
0
2
null
null
JavaScript
mishranikhil15/Purplle-Clone
main
# -abiding-bell-8807 Frontend link:-[frontend](https://startling-babka-330672.netlify.app/)<br> Backend link:-[backend](https://relieved-outerwear-fish.cyclic.app/)<br> About:<br> Purple.com website sells cosmetic products online. I have cloned this website using Technologies HTML,CSS and Javascript, Nodejs, NPM packages, Mongodb Atlas, Mongoose.<br> <hr> Description: This website's objective is to sell beauty cosmetic products online. I cloned this website in five days. You can access this cloned-website by visiting the link https://github.com/mishranikhil15/-abiding-bell-8807 <hr> Technologies Used:<br> HTML<br> CSS<br> JavaScript<br> Node Js<br> <hr> Packages Used:<br> Npm<br> bcrypt<br> jsonwebtoken<br> Mongoose<br> Express<br> Nodemon<br> <img src="https://media6.ppl-media.com/tr:w-1280,c-at_max,pr-true,dpr-2,f-gif/mediafiles/ecomm/misc/1674047074_1298x418-5.gif"> <img src="">
Purplle E-Commerce Website clone is a project built using HTML,CSS,JavaScript,MongoDB,Express,Mongoose,and Node.js aiming to replicate the features and design of the popular Company Purplle.com which specializes in selling beauty and personal care products online.The website offers features such as registration,login,filtering,searching,sorting.
css,html,javascript,nodejs,bcrypt,cors,express,jsonwebtoken,mongodb,mongoose
2023-01-17T07:47:03Z
2023-01-23T08:45:21Z
null
2
13
41
12
0
2
null
null
JavaScript
kputhanangadi/SpotifyGo
main
# SpotifyGo ![HomepageSpotifyGo](https://user-images.githubusercontent.com/117777515/215364482-2ce7db08-9206-425e-8586-5601ceab8c51.png) ## Inspiration The inspiration for this project came from the realization that our commutes to UBC have been a tedious and unenjoyable part of their day. Listening to music to pass the time during our commute was a saving grace; however, we found it tedious to have to constantly switch between songs or playlists because they don't fit the exact duration of their drive and songs were getting repetitive. We wanted to create a solution that would make the commute more enjoyable by providing a custom playlist tailored to the exact length of any commute to deliver a fresh stream of music. Introducing - **Spotify Go**. ## What it does We have created a website that creates a personalized Spotify playlist depending on the origin and destination of the user's commute and adds it to their Spotify account. Initially, the website prompts a user to log in with their Spotify account. The next step would to be indicate the origin and destination of the commute on the new page which has appeared. Lastly, the user would indicate some music preferences, through the selection of their own playlists. The generated playlist will now appear in the user's Spotify account which can be accessed on any Spotify platform. ## How we built it We simultaneously developed the frontend and the backend for this project. The frontend was fully constructed with the application of **HTML/CSS**. We used a material UI theme, where we implemented, a grid, buttons, text fields, and various other elements to make a minimalistic website. The backend was developed in **JavaScript**, with the assistance of **node.js** as well as **react**. We installed a **react-router-dom** package and implemented routing. **ExpressJS** was used to handle all of the communication between the frontend and backend within our project. We then reviewed the documentation for the Spotify and Google Distance Matrix APIs' respectively and wrote requests to endpoints to integrate them into our code. We then had to set up all of the variables required to create an algorithm to calculate the number of songs needed to create a playlist within the given time interval that it takes for the user to reach their destination. After satisfying all of the prerequisites for the algorithm, we were able to generate a playlist for the user and add it to their Spotify account titled "**SpotifyGo**". ## Challenges we ran into With Hackrithmitic 2 being our first hackathon it was definitely a challenging experience for all of us. With minimal coding experience, encountering an endless amount of challenges was inevitable. Our first struggle was understanding how to use **react**, as we had to learn it for the first time during this hackathon. Initially, we wanted to develop our backend in **python**; however, we ran into problems trying to implement **Google's Distance Matrix API** halfway through the hack. We then pivoted our backend development into **javascript** as it was suitable to interact with **Spotify and Google API** comfortably. Furthermore, we had to develop an algorithm that was capable of creating a playlist that matched the length of a given commute. We found out that setting up all of the elements for the first time when short of staff was difficult with our beginner-level programming skills. Yet the most difficult task was linking the frontend to the backend, since it was our first time using a lot of these languages and frameworks, there was a lot of trial and error involved. ## Accomplishments that we're proud of - This is our first hackathon! - Learning and implementing react and javascript. - Creating a friendly and interactive UI. - Successfully generate a playlist depending on the origin and destination of a given commute. ## What we learned - How to develop and host a website. - Using node.js to construct a real-time application. - Working with APIs from Google and Spotify. - Creating an algorithm that adapts playlist length depending on a varying time. ## What's next for SpotifyGo - Allow users to add multiple trips to generate multiple playlists at a single instance. - Building features within the website to allow users to view/download/share their created playlist. - Integration of other music service providers such as Apple Music. ![SpotifyPage](https://user-images.githubusercontent.com/117777515/215363977-8f9e3c5f-fb11-4c7d-9dfe-3790585d2c8b.png) ![DestinationPage](https://user-images.githubusercontent.com/117777515/215364016-47b89f90-c755-4429-8071-3f71809d9693.png) ![EnterAdress](https://user-images.githubusercontent.com/117777515/215363993-89997616-4b90-4a8a-b311-3ec2639cba76.png) ![Music Selection](https://user-images.githubusercontent.com/117777515/215364037-a53f8847-f3a8-43b3-bdbe-2b616bd96a33.png) ![Final_Page](https://user-images.githubusercontent.com/117777515/215364045-596ad643-157e-4b04-bd45-a66b781c6369.png)
Generates a personalized Spotify playlist depending on the length of your commute.
javascript,reactjs,spotify,webdevelopment,api
2023-01-23T05:41:16Z
2023-01-30T00:17:02Z
null
4
0
99
1
0
2
null
null
JavaScript
prititi/tense-wool-1620
main
<h1 align="center">CLONE OF ABOF E-COMMERCE WEBSITE</h1> <img src="https://user-images.githubusercontent.com/115465871/213980137-578b8b38-f647-4c02-886f-133bbbcbea4e.jpeg" width="100%" ><br> <h1 align="center" >FASHION FUSION</h1> <img align="right" alt="coding" width="400" src="https://thumbs.gfycat.com/ContentHeftyGuillemot-size_restricted.gif"> <br> <p align="left"> <img src="https://komarev.com/ghpvc/?username=prititi&label=Profile%20views&color=0e75b6&style=flat" alt="prititi" /> </p> <h1 align="center" >TEAM DESCRIPTION</h1> <ul> <li> <h4 >Priti Tiwari - [ Landing page, Checkout page, Payment page ]</h4></li> <li> <h4 >Dhanush - [ Login/Registration, Man page ,Women page ]</h4></li> <li> <h4 >Deepak - [ Product page ,Cart page ]</h4></li> <li> <h4 >Shivbhushan - [ Cart is empty page ]</h4></li> <li> <h4 >Ashish - [ Admin page ]</h4></li> <li><h4 align="left" > Netlify-link- https://admirable-pavlova-852094.netlify.app/ </h4></li> </ul> <!-- men page --> <h1 align="center">MEN PAGE</h1> <img src="https://user-images.githubusercontent.com/115465871/214014740-b1b565d9-0426-49df-9bff-402f2ca50885.jpeg" width="100%"><br> <!-- womon page --> <h1 align="center">WOMEN PAGE</h1> <img src="https://user-images.githubusercontent.com/115465871/214015020-bc013696-f198-4f41-8247-fb08fef543e4.jpeg" width="100%"><br> <!-- cart2 --> <h1 align="center">CART IS EMPTY</h1> <img src="https://user-images.githubusercontent.com/115465871/214015278-09b1b39f-bd54-4075-949d-f0ca758b9896.jpeg" width="100%"><br> <!-- cart page --> <h1 align="center" > CART PAGE </h1> <img src="https://user-images.githubusercontent.com/115465871/213983050-aa3a6f27-8474-43f7-9c2f-a0610941b0f0.jpeg" width="100%" ><br> <!-- check out --> <h1 align="center">CHECKOUT PAGE</h1> <img src="https://user-images.githubusercontent.com/115465871/214016260-498c2f10-4ad9-4ded-a3f1-31e665f863f5.jpeg" width="100%"><br> <!-- payment --> <h1 align="center">PAYMENT PAGE</h1> <img src="https://user-images.githubusercontent.com/115465871/214016749-5aecc73c-309f-48da-97d0-025ac7825c58.jpeg" width="100%"><br> <!-- admin page --> <h1 align="center">ADMIN PAGE</h1> <img src="https://user-images.githubusercontent.com/115465871/213983223-b26bdf4d-ac11-4921-bd20-043166b12bb5.jpeg" width="100%"><br> <h3 align="left">Connect with me:</h3> <p align="left"> <a href="https://linkedin.com/in/priti tiwari" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/linked-in-alt.svg" alt="priti tiwari" height="30" width="40" /></a> </p> <p align="left"> <a href="https://github.com/ryo-ma/github-profile-trophy"><img src="https://github-profile-trophy.vercel.app/?username=prititi" alt="prititi" /></a> </p> <h1 align="left">Languages and Tools:</h1> <h4 align="left">HTML, CSS, JavaScript, Bootstrap</h4> <p><img align="center" src="https://github-readme-streak-stats.herokuapp.com/?user=prititi&" alt="prititi" /></p>
ABOF is a pure-play fashion e-commerce space. It provides your daily needs products. Collaborative project with 5 members built in 5 days.
bootstrap,css,html5,javascript
2023-01-17T05:54:23Z
2023-01-23T10:39:31Z
null
6
26
77
0
4
2
null
null
HTML
Alimacamila/nlw-setup
main
<h1 align="center">Habits</h1> <p align="center">Projeto desenvolvido por Camila Francatti a partir do evento NLW Setup, promovido pela Rocketseat para ensino de tecnologias WEB. <br/> </p> <p align="center"> <img alt="projeto Habits" src=".github/preview.jpg" width="70%"> </p> ## 🚀 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML e CSS - JavaScript - Git e Github - Figma ## 💻 Projeto Habits é um aplicativo de rastreamento de hábitos diário. - [Visite o projeto online](https://alimacamila.github.io/nlw-setup)
Habit Tracker by Camila Francatti e Rocketseat
css,git,html,javascript,figma,github
2023-01-22T15:09:25Z
2023-01-24T14:22:19Z
null
1
0
6
0
0
2
null
null
CSS
CaioLima10/desafio-Imagens
master
## meu primeiro projetinho Um projeto basico, onde a imagem troca decorrer do horário de brasilia. tem três imagens diferenciando os horários das 00:00 as 12:00 / 13:00 as 18:00 e horário nortuno. ## 💻 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML e CSS - JavaScript - Git e Github feito por 🙋‍♂️ Caio lima
Meu primeiro projeto. Mudar o horário decorrer do dia
html,css,javascript,git,github
2023-01-21T01:56:41Z
2023-01-22T06:12:15Z
null
1
0
4
0
0
2
null
null
CSS
devashishp1999/utils-deva
main
<a name="readme-top"></a> <!-- PROJECT LOGO --> <br /> <div align="center"> <h3 align="center">Instant Classes & Functions to use</h3> <p align="center"> Vanilla JavaScript classes on your finger-tips. so you can focus on your project. <br /> <span><strong>Relaxx! </strong>I got you!</span> <br /> <br /> <a href="https://github.com/devashishp1999/funkyfunctions/issues">Request a Feature</a> </p> </div> <!-- TABLE OF CONTENTS <details open> <summary>List of FunkyFunctions 👇</summary> <ul> <li><a href="#about-the-project">About The Project</a></li> <li><a href="#getting-started">Getting Started</a></li> <li><a href="#usage">Usage</a></li> <li><a href="#contact">Contact</a></li> <li><a href="#acknowledgments">Acknowledgments</a></li> </ul> </details> --> <!-- ABOUT THE PROJECT --> ## About The Project <details close> <summary><strong>last update</strong> : Oct 09, 2023 Evening</summary> <ul> <li><code>Fixed CDN links</code> : now usable</li> <li>Added new class and functions<code>function px()</code> : now usable</li> </ul> </details> <br/> Every website need some common elements to be implemented for a consistent UI/UX. Here are some simple UI components and funtionalities just a function call away. These all classes & functions are a solution to the problems that I faced while developing various websites, I bundled them together here. Use these functionalities because: - Your time should be focused on creating something amazing. A project that solves a problem and helps others - You shouldn't be writing the same code over and over again. - You should implement DRY principles to the rest of your life :smile: ### Built With [![JavaScript][javascript.com]][javascript-url] &nbsp; [![HTML][html.com]][html-url] &nbsp; [![CSS][css.com]][css-url] ## Installation • Include the `main.js` file in your project and create a new instance of a class. ```js <script src="path/to/main.js"></script> <!-- OR --> <script src="https://cdn.jsdelivr.net/gh/devashishp1999/utils-deva@main/main.min.js"></script> <script> const toast = new Toast(); toast.show(); // Show default toast </script> ``` <br /> Or install with NPM: ```sh npm i utils-deva ``` <br /> Or include one of the following CDN link in your project. ```sh https://devashishp1999.github.io/utils-deva/main.min.js ``` or ```sh https://cdn.jsdelivr.net/gh/devashishp1999/utils-deva@main/main.min.js ``` <!-- USAGE EXAMPLES --> ## List of Classes : <details close> <summary><strong>👇</strong></summary> <ol> <li><a href="#toast"><code>new Toast()</code></a></li> <li><a href="#swiper"><code>new SwipeCarousal()</code></a></li> </ol> </details> <ol> <li id="toast"><h2>Toast</h2></li> The Toast class provides a simple and flexible way to create and manage toast notifications in your web application. It allows you to easily customize the look, position and behavior of the toasts, and provides methods for showing, hiding and removing toasts. ### Showing a Toast To show a toast, call the `show()` method on the Toast instance and pass in an options object. ```js toast.show({ text: "Hello World", position: "top", duration: 3, styles: { backgroundColor: "red", color: "white", fontSize: "20px", }, animations: { slideIn: "1s", }, fonts: { fontFamily: "Arial", }, }); ``` ### Removing a Toast To remove a specific toast, call the `remove()` method on the Toast instance and pass in the toast element as an argument. ```js toast.remove(toastElement); ``` ### Removing All Toasts To remove all toasts, call the `removeAll()` method on the Toast instance. ```js toast.removeAll(); ``` ### Configuration The options object passed to the `show()` method can include the following properties: <ul><li><code>text</code> (string): The text to display in the toast (default: "Toast text").</li><li><code>position</code> (string): The position of the toast. Available options are "top", "bottom", "center", "left" and "right" (default: "bottom").</li><li><code>duration</code> (number): The duration in seconds for which the toast should be displayed (default: 3).</li><li><code>onClose</code> (function): A callback function that is invoked when the toast is closed (default: null).</li><li><code>styles</code> (object): An object containing custom CSS styles to be applied to the toast (default: {}).</li><li><code>animations</code> (object): An object containing custom CSS animations to be applied to the toast (default: {}).</li><li><code>fonts</code> (object): An object containing custom fonts to be applied to the toast (default: {}).</li></ul> ### Example ```js const toast = new Toast(); toast.show({ text: "Hello World", position: "top", duration: 2.5, styles: { backgroundColor: "red", color: "white", fontSize: "20px", }, animations: { slideIn: "1s", }, fonts: { fontFamily: "Arial", }, }); ``` This will create a new toast with the text "Hello World" and position it on the top of the screen and it will be removed after 3000ms. Also the toast will slide in from 1s with custom background color, color and font size and font family. ### Browser Support This library uses `querySelector` and `appendChild` which are supported by all modern browsers. <li id="swiper"><h2>SwipeCarousal</h2></li> <li id="swiper"><h2>px()</h2></li> <li id="swiper"><h2>$()</h2></li> Docs are not updated : <br/> <code>Contact <a href="mailto:devashishp1999@gmail.com">devashishp1999@gmail.com</a></code> </ol> ### License <p>This library is released under the <a href="https://opensource.org/licenses/MIT" target="_new">MIT license</a></p> Hope this library will be helpful for you. <!-- MARKDOWN LINKS & IMAGES --> <!-- https://www.markdownguide.org/basic-syntax/#reference-style-links --> [stars-shield]: https://img.shields.io/github/stars/github_username/repo_name.svg?style=for-the-badge [stars-url]: https://github.com/github_username/repo_name/stargazers [issues-shield]: https://img.shields.io/github/issues/github_username/repo_name.svg?style=for-the-badge [issues-url]: https://github.com/github_username/repo_name/issues [license-shield]: https://img.shields.io/github/license/github_username/repo_name.svg?style=for-the-badge [license-url]: https://github.com/github_username/repo_name/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/devashishpujari [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/ [laravel.com]: https://img.shields.io/badge/Laravel-FF2D20?style=for-the-badge&logo=laravel&logoColor=white [laravel-url]: https://laravel.com [bootstrap.com]: https://img.shields.io/badge/Bootstrap-563D7C?style=for-the-badge&logo=bootstrap&logoColor=white [bootstrap-url]: https://getbootstrap.com [jquery.com]: https://img.shields.io/badge/jQuery-0769AD?style=for-the-badge&logo=jquery&logoColor=white [jquery-url]: https://jquery.com [javascript.com]: https://img.shields.io/badge/JavaScript-F7DF1E?style=for-the-badge&logo&logoColor=black [javascript-url]: https://developer.mozilla.org/en-US/docs/Web/JavaScript [html.com]: https://img.shields.io/badge/HTML-E96228?style=for-the-badge&logo=html [html-url]: https://developer.mozilla.org/en-US/docs/Web/HTML [css.com]: https://img.shields.io/badge/CSS-2965F1?style=for-the-badge&logo=CSS&logoColor=black [css-url]: https://developer.mozilla.org/en-US/docs/Web/CSS
Library of Utility classes
css,html,javascript,utility-library
2023-01-17T17:10:09Z
2023-10-09T17:28:31Z
null
1
0
20
0
0
2
null
null
null
serengia/webpack-todo-app
main
null
Todo List App project build using webpack. You can add, update, delete, check off a task or delete all checked off tasks.
javascript,webpack
2023-01-18T05:40:56Z
2023-01-20T06:38:48Z
null
1
4
11
3
0
2
null
null
JavaScript
SalmanAjani/react-contextapi-cart
main
# Introduction This is an e-commerce cart application built with React. Context API has been used for state management. You can sort items according to price in ascending or descending manner. You can also filter out of stock items or same day delivery items. Search functionality allows searching of items. Cart is completely dynamic with ability to increment/decrement/remove items from cart. Also cart total changes with respect to items in cart. ## Tech Stack - **CSS** - **Javascript** - **React** - **ContextAPI** ## 🔗 Link https://react-contextapi-cart.netlify.app/ ## Features - Sort in ascending or descending according to Price - Toggle out of stock products - Toggle same day delivery - Search products - Dynamic cart ## Screenshots - Home Page <br/> <br/> <img src="https://i.ibb.co/pyrFWnc/img1.png" alt="img1" border="0"> - Cart Page <br/> <br/> <img src="https://i.ibb.co/L9ngQJy/img2.png" alt="img2" border="0">
React cart application that uses Context API to manage state. Also has filters and search functionality.
context-api,css,react,javascript
2023-01-17T02:15:54Z
2023-01-24T05:50:16Z
null
1
0
6
0
0
2
null
null
JavaScript
ankitraju123/secretive-form-5947
master
<h1 align="center">Nykaa.com Clone</h1> <br /> <strong>Nykaa.com Clone is NextJS e-commerce web application that allows you to buy cosmetics products online with effortable prices. It has a variety of categories, just visit the product listing page and you will see all the products, apply filters as per your need and in just a few clicks you can buy any products from the website. This project is just for educational purpose.</strong> <h2 align="center">🖥️ Tech Stack</h2> <h4 align="center">Frontend:</h4> <p align="center"> <img src="https://img.shields.io/badge/Nextjs-20232A?style=for-the-badge&logo=react&logoColor=61DAFB" alt="Nextjs" /> <img src="https://img.shields.io/badge/Chakra%20UI-3bc7bd?style=for-the-badge&logo=chakraui&logoColor=white" alt="chakra-ui" /> <img src="https://img.shields.io/badge/JavaScript-323330?style=for-the-badge&logo=javascript&logoColor=F7DF1E" alt="javascript" /> <img src="https://img.shields.io/badge/Rest_API-02303A?style=for-the-badge&logo=react-router&logoColor=white" alt="restAPI" /> <img src="https://img.shields.io/badge/CSS3-1572B6?style=for-the-badge&logo=css3&logoColor=white" alt="css3" /> <img src="https://img.shields.io/badge/HTML5-E34F26?style=for-the-badge&logo=html5&logoColor=white" alt="html5" /> </p> <h4 align="center">Deployed On:</h4> <p align="center"> <img src="https://img.shields.io/badge/vercel-430098?style=for-the-badge&logo=vercel&logoColor=white" alt="heroku" /> </p> <h3 align="center"><a href="https://secretive-form-5947-brar21-varinderbrar.vercel.app/"><strong>Want to see live preview »</strong></a></h3> <br /> <p align="center"> <br />&#10023; <a href="#Demo">View Demo</a> &#10023; <a href="#Getting-Started">Getting Started</a> &#10023; <a href="#Install">Installing</a> &#10023; <a href="#Contact Us">Author</a> &#10023; </p> ## Duration We made this project within the 5 days <br /> ## Screens - Homepage / Landing Page - Product Listing Page with all categories - Product Description Page - Cart Management Page - Login / Logout Page - Payment Page - Admin Dashboard ## 🚀 Features - Login and Signup User Account - Product Sorting Based on Price, Rating and Name - My Orders Section for details of all ordered item - Cart Add and Remove Items - Cart Update Quantities - Payment Page - Add Products, Update and Delete on Admin Pannel <br /> ## Admin Account Credentials ***Email- varinder@gmail.com*** ***password- 123*** ## Glimpses of Nykaa-Clone : <table> <tr> <td><img src="https://raw.githubusercontent.com/ankitraju123/secretive-form-5947/master/public/Homepage.png" alt="home" /></td> </tr> <br/> <tr> <td><img src="https://i.ibb.co/JCPsB54/nykaa2.png" alt="" /></td> </tr> <br/> <tr> <td><img src="https://i.ibb.co/fNTNsNJ/nykaa3.png" alt="" /></td> </tr> <br/> <tr> <td><img src="https://i.ibb.co/JChmGKf/nykaa4.png" alt="" /></td> </tr> <br/> <tr> <td><img src="https://i.ibb.co/WK7FsMF/nykaa7.png" alt="" /></td> </tr> <tr> <td><img src="https://raw.githubusercontent.com/ankitraju123/secretive-form-5947/master/public/Paymentpage.png" alt="" /></td> </tr> <tr> <td><img src="https://raw.githubusercontent.com/ankitraju123/secretive-form-5947/master/public/Adminlogin.png" alt="" /></td> </tr> <tr> <td><img src="https://raw.githubusercontent.com/ankitraju123/secretive-form-5947/master/public/ADmindashboard.png" alt="" /></td> </tr> <br/> </table> <br /> ## Getting Started This project was built using Nextjs, Chakra UI, HTML, CSS, JavaScript, Rest API,Redux,tailwind . It is an e-commerce web application and for running on your local environment you should follow these guidelines. <br /> ## Contact Us If you want to contact us, you can reach me through below handles. <br /> [![linkedin](https://img.shields.io/badge/Ankit_Chauhan-0077B5?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/ankit-chauhan-8a1b13232/) [![GitHub](https://img.shields.io/badge/Ankit_Chauhan-0077B5?style=for-the-badge&logo=Github&logoColor=white)](https://github.com/ankitraju123) [![linkedin](https://img.shields.io/badge/Giri_Reddy-0077B5?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/giri-reddy-geralt/) [![GitHub](https://img.shields.io/badge/Giri_Reddy-0077B5?style=for-the-badge&logo=Github&logoColor=white)](https://github.com/geraltyen) [![linkedin](https://img.shields.io/badge/Pujarini_Sahu-0077B5?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/pujarini-sahoo/) [![GitHub](https://img.shields.io/badge/Pujarini_Sahu-0077B5?style=for-the-badge&logo=Github&logoColor=white)](https://github.com/puja2795) [![linkedin](https://img.shields.io/badge/varinder-brar-0077B5?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/varinder-brar/) [![GitHub](https://img.shields.io/badge/varinder-brar-0077B5?style=for-the-badge&logo=Github&logoColor=white)](https://github.com/Brar21) [![linkedin](https://img.shields.io/badge/Muhammed-Sadique-0077B5?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/muhammed-sadique-064385230/) [![GitHub](https://img.shields.io/badge/Muhammed-Sadique-0077B5?style=for-the-badge&logo=Github&logoColor=white)](https://github.com/mhdsadique) ## Show your support Give a ⭐️ if you like this project!
Nykaa.com Clone is NextJS e-commerce web application that allows you to buy cosmetics products online with effortable prices
chakra-ui,javascript,nextjs,reactjs,rest-api
2023-01-18T08:40:23Z
2023-03-07T12:31:44Z
null
5
36
174
2
0
2
null
null
JavaScript
kalebzaki4/Alura-Books
main
# Alura-Books 📚 Bem-vindo ao repositório Alura-Books! Este espaço foi criado com o objetivo de aprimorar as habilidades de manipulação de arrays no JavaScript. ## Descrição 📖 O Alura-Books é um projeto desenvolvido para aprimorar as habilidades de manipulação de arrays utilizando JavaScript. O repositório contém uma série de exercícios e desafios que abordam diferentes métodos de array, como `map`, `filter`, `reduce`, entre outros. ## Funcionalidades 🚀 - Exploração de métodos de array em JavaScript. - Prática de conceitos de manipulação de dados. - Desenvolvimento de lógica de programação aplicada a arrays. ## Como utilizar 🛠️ 1. Clone este repositório em sua máquina local. 2. Navegue até o diretório do projeto: `cd Alura-Books`. 3. Abra o arquivo `index.html` em seu navegador de preferência. 4. Explore o código-fonte para entender os exercícios propostos e os métodos de array utilizados. 5. Experimente fazer alterações e testar novos cenários para aprimorar seus conhecimentos. ## Contribuição 🤝 Contribuições são bem-vindas! Sinta-se à vontade para enviar sugestões de exercícios, melhorias no código ou correções de bugs. Basta abrir uma *issue* ou enviar um *pull request*. ## Recursos úteis 🔗 - Documentação oficial do JavaScript: [MDN Web Docs](https://developer.mozilla.org/pt-BR/docs/Web/JavaScript) - Tutoriais e cursos sobre JavaScript: [Alura](https://www.alura.com.br/cursos-online-front-end/javascript) ## Licença 📜 Este projeto está licenciado sob a licença MIT. Consulte o arquivo [LICENSE](LICENSE) para obter mais informações. Divirta-se explorando os métodos de array no JavaScript com o Alura-Books! ## Criador 👨‍💻 Este projeto foi criado por kalebzaki4.
O Alura-Books é um projeto desenvolvido para aprimorar as habilidades de manipulação de arrays utilizando JavaScript. O repositório contém uma série de exercícios e desafios que abordam diferentes métodos de array, como map, filter, reduce, entre outros.
alura,code,css,curso,html,javascript
2023-01-18T19:03:56Z
2023-08-07T01:17:23Z
null
1
0
84
0
0
2
null
MIT
HTML
Ynck-Hng/O-shop
main
# <p align="center"> :tada: O'Shop :tada: </p> Le README de ce projet contient une version [française](#french) et une version [anglaise](#english). Cliquez sur la version que vous souhaitez lire ! This project's README presentation contains a [french](#french) and [english](#english) version. Click on the version you would like to read ! ## <a id="french"></a> :wave: Bienvenue sur ce projet-portfolio e-commerce ! L'objectif de ce projet était de pratiquer l'implémentation de fonctionnalités classiques d'un site d'e-commerce, telles que : - Mettre en place la page principale :white_check_mark: - L'accès à une page produit :white_check_mark: - Filtrer les produits par catégories :white_check_mark: - Gérer l'authentification et l'inscription :white_check_mark: - Routes sécurisées à accès limités :white_check_mark: - Intéractions sécurisées avec la base de données :white_check_mark: - Un panier totalement fonctionnel (hormis l'étape de paiement/achat) :white_check_mark: - Rendu dynamique (Back-end au Front-end + DOM) :white_check_mark: - Responsive CSS (utilisation de CSS et SCSS) :white_check_mark: - Pratiquer Regex :white_check_mark: Ce projet a été réalisé en utilisant NodeJS, Express, PostgresSQL et Sequelize côté Back-end, EJS (templating), HTML5, CSS, et SCSS côté Front-end. ## :rocket: Si vous êtes intéressé.e.s, vous pouvez mettre en place ce projet localement sur votre machine en suivant ces étapes : 1) Après avoir cloné le répertoire, assurez-vous d'installer les dépendances avec la commande `npm install`. 2) Créez la base de donnée PostgreSQL : &nbsp; &nbsp; &nbsp; &nbsp; a) Connectez vous en tant que `postgres` en tapant la commande : `sudo -u -i postgres psql`. &nbsp; &nbsp; &nbsp; &nbsp; b) Créez le propriétaire de la base de donnée du projet : `CREATE ROLE "username" WITH LOGIN PASSWORD 'password';` &nbsp; &nbsp; &nbsp; &nbsp; c) Créez la base de donnée : `CREATE DATABASE "dbname" OWNER "username";` &nbsp; &nbsp; &nbsp; &nbsp; d) Tapez `exit` pour vous déconnecter du superutilisateur `postgres`. &nbsp; &nbsp; &nbsp; &nbsp; e) Importez la base de donnée : `psql -U "username" -d "dbname" -f ./data/create_db.sql`, puis tapez le MDP de l'étape B. &nbsp; &nbsp; &nbsp; &nbsp; f) Connectez-vous à la base de donnée : `psql -U "username" -d "dbname"`, retapez votre MDP. &nbsp; &nbsp; &nbsp; &nbsp; g) Voilà la base de donnée est créée et importée ! :tada: 3) Remplissez votre fichier .env en vous appuyant sur le fichier `env_example` fourni. (Attention à bien mettre votre "username", "password" et "dbname" définis à l'étape **2)b) et 2)c)**. 4) Et voilà tout est prêt ! Vous pouvez désormais lancer ce projet localement en entrant la commande `nodemon index.js` ou `node-dev index.js` dans votre terminal. ---------------------------------- # :notebook: Extras Cette section comporte la structure de la base de donnée et les identifiants de connexions. ### :computer: Base de donnée Ci-dessous une représentation Mocodo de la base de donnée utilisée : ![image](https://user-images.githubusercontent.com/115977341/214824902-b2841cd4-4cff-47bb-abef-68872ecc063c.png) Et voici le code Mocodo : ``` users: code_users, firstname, lastname, email, password, role_id, created_at, updated_at write, 1N users, 11 review review: code_review, code_users, code_figurine, note, title, message have, 11 review, 1N figurine figurine: code_figurine, name, description, size, category belong, 11 users, 1N roles roles: code_roles, name ``` ### :lock: Connexion Il existe deux types de comptes pour se connecter en fonction de leur rôle : `Admin` et `Client`. Par défaut, les nouveaux comptes créés auront le rôle `Client`. ### :information_source: Identifiants de connexion Si vous souhaitez vous connecter en tant que `Admin`, entrez ces informations : email : `admin@admin.com`, mot de passe : `admin`. Si vous souhaitez vous connecter en tant que `Client`, entrez ces informations : email : `johndoe@client.com`, mot de passe : `client`. Pour chaque compte stocké dans la base de donnée, vous pouvez également vous connecter en suivant ce pattern : email : `prénomnom@client.com`, mot de passe : `prénomnom`. Ou alors, vous pouvez créer votre propre compte et essayer au passage la fonctionnalité d'inscription et de connexion en même temps ! :warning::warning: Bien que les emails ne sont pas sensibles à la casse, les mots de passe le sont pour des raisons de sécurité. Vérifiez que vous avez bien entré votre mot de passe. :warning::warning: Vous pouvez également réinitialiser votre base de donnée en important le fichier `create_db.sql` à nouveau. --------------------------------- ### <p align="center"> :wave: Merci pour l'intérêt que vous avez porté pour ce projet ! A bientôt ! :wave: </p> <br/> <br/> <br/> <br/> # <p align="center"> :tada: O'Shop :tada: </p> ## <a id="english"></a> :wave: Welcome to this E-Shop portfolio project ! The point of this project was to practice implementing common e-shop features such as : - Setting up the main page :white_check_mark: - Open an article page :white_check_mark: - Sorting by categories :white_check_mark: - Managing authentications and user sign-ins :white_check_mark: - Secured routes and limited access :white_check_mark: - Secured interactions with the database :white_check_mark: - A fully functional cart (excluding the purchasing step) :white_check_mark: - Dynamic rendering (From Back-end to Front-end + DOM) :white_check_mark: - Responsive css (using CSS and SCSS) :white_check_mark: - Practice Regex :white_check_mark: This project was made using NodeJS, Express, PostgresSQL and Sequelize on the Back-end side, EJS (for templating), HTML5, CSS, and SCSS for the Front-end. ## :rocket: If you are interested, you can set this project up locally on your device by following the detailed guide below. 1) After cloning this repository, make sure to install the required dependencies with `npm install`. 2) Create the PostgreSQL database : &nbsp; &nbsp; &nbsp; &nbsp; a) Login as the superuser `postgres` by typing : `sudo -u -i postgres psql`. &nbsp; &nbsp; &nbsp; &nbsp; b) Create the owner of the soon to be created database : `CREATE ROLE "username" WITH LOGIN PASSWORD 'password';` &nbsp; &nbsp; &nbsp; &nbsp; c) Create the database : `CREATE DATABASE "dbname" OWNER "username";` &nbsp; &nbsp; &nbsp; &nbsp; d) Type `exit` to disconnect from the superuser `postgres`. &nbsp; &nbsp; &nbsp; &nbsp; e) Import the database : `psql -U "username" -d "dbname" -f ./data/create_db.sql`, then type the password defined in step B. &nbsp; &nbsp; &nbsp; &nbsp; f) Login to the project's database : `psql -U "username" -d "dbname"`, type your password once more. &nbsp; &nbsp; &nbsp; &nbsp; g) Congratulations the database has been created ! :tada: 3) Fill in your `.env` file based on the `even_example` file provided. (Be careful to replace the "username", "password" and "dbname" by the ones defined in step **2)b) and 2)c)**. 4) And voilà everything is ready ! You can now launch this project locally by typing `nodemon index.js` or `node-dev index.js` in the terminal. ---------------------------------- # :notebook: Extras This section will provide you with the database structure and the login credentials. ### :computer: Database Here is Mocodo representation of the database we are using : ![image](https://user-images.githubusercontent.com/115977341/214824902-b2841cd4-4cff-47bb-abef-68872ecc063c.png) And the Mocodo code itself : ``` users: code_users, firstname, lastname, email, password, role_id, created_at, updated_at write, 1N users, 11 review review: code_review, code_users, code_figurine, note, title, message have, 11 review, 1N figurine figurine: code_figurine, name, description, size, category belong, 11 users, 1N roles roles: code_roles, name ``` ### :lock: Login informations For logins, there are 2 types of accounts based on their roles : `Admin` and `Client`. By default, all newly created accounts will be `Client` accounts. ### :information_source: Login credentials If you would like to use the `Admin` account, enter in the form : email : `admin@admin.com`, passsword : `admin`. If you would like to use the `Client` account, enter in the form : email : `johndoe@client.com`, password : `client`. All other accounts stored in the database will follow this pattern : email : `firstnamelastname@client.com`, password : `firstnamelastname` Or, you can create your own account and try out the sign-in and login form at the same time ! :thumbsup: :warning::warning: While emails are not case-sensitive, passwords are for safety measures. Make sure to double-check that your password is typed correctly. :warning::warning: You can also reset your database by importing the `create_db.sql` file again. --------------------------------- ### <p align="center"> :wave: Thank you for showing interest to this project ! See you next time ! :wave: </p>
O'Shop Portfolio est un projet e-commerce mettant en place une interface d'achats/consultations de figurines, de connexion, d'inscription et de mise en panier des produits.
authentication,clean-code,database-management,dom-manipulation,e-commerce-project,ejs-templates,env,express,express-session,html-css-javascript
2023-01-22T11:43:54Z
2023-02-25T08:18:09Z
null
1
0
70
0
0
2
null
null
JavaScript
roodjinocherilus/todolist
main
# Todo List <a name="readme-top"></a> <div align="center"> <h3><Todo List</h3> <p> This Project iss Web App for a Todo List is a tool that helps you organize your day. It simply lists the things that you need to do and allows you to mark them as complete. You can also edit the items in your list if you need to. </p> </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](#faq) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 [Todo List] <a name="about-project"></a> This Project iss Web App for a Todo List is a tool that helps you organize your day. It simply lists the things that you need to do and allows you to mark them as complete. You can also edit the items in your list if you need to. ## 🛠 Built With <a name="built-with"></a> - HTML - CSS - JavaScript ### Tech Stack <a name="tech-stack"></a> <!-- Features --> ### Key Features <a name="key-features"></a> - This project is using an array of objects to save the values - This project preserved and read data in the local storage - This project is using an array of objects to save the values <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link](Pending...) <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 browser that supports html5 - Git - A GitHub account ### Setup Clone this repository to your desired folder: - Go to this repo and copy the project link https://github.com/roodjinocherilus/todolist.git - Open your terminal and clone the repo with this command "git clone https://github.com/roodjinocherilus/todolist.git" - Now, you have a copy on your pc. ### Install Install this project with: - You don't need install this project. ### Usage To run the project, execute the following command: To open it, make double-click on the HTML file. Run it in your browser. ### Run tests To run tests, run the following command: ### Deployment You can deploy this project using: Github Pages <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Roodjino Cherilus** - GitHub: [@roodjinocherilus](https://github.com/roodjinocherilus) - Twitter: [@roodjinocherilus](https://twitter.com/roodjinocherilus) - LinkedIn: [LinkedIn](https://github.com/roodjinocherilus) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **[The project will be stylized]** - [ ] **[A navigator bar will be added]** <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/roodjinocherilus/Awesome/issues). <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- SUPPORT --> ## ⭐️ Show your support <a name="support"></a> > Write a message to encourage readers to support your project If you like this project give a ⭐️ or send us a message. We will apreciate <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank to Microverse for the inspiration to be better every day. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FAQ (optional) --> ## ❓ FAQ <a name="faq"></a> - **[Can this project be used in any browser?]** - [This project was created and proved in firefox v107. You can try run it in older version but this project couldn't work well] - **[Can I use the code of this project]** - [Sure. We will be happy to colaborate with this project. This project has MIT license] <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. _NOTE: we recommend using the [MIT license](https://choosealicense.com/licenses/mit/) - you can set it up quickly by [using templates available on GitHub](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). You can also use [any other license](https://choosealicense.com/licenses/) if you wish._ <p align="right">(<a href="#readme-top">back to top</a>)</p>
This Project iss Web App for a Todo List is a tool that helps you organize your day. It simply lists the things that you need to do and allows you to mark them as complete. You can also edit the items in your list if you need to.
css,html,javascript,webpack
2023-01-20T16:12:00Z
2023-02-10T21:31:09Z
null
1
3
31
2
0
2
null
MIT
JavaScript
Tekhlay/react-bookstore
dev
<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! --> <!-- 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 --> # 📖 [Book Store] <a name="about-project"></a> **[Book Store]** is a Single page application. It is developed using React Library. It allows users to add new book, edit book, remove book and to manage their statuse on the book reading progress. ## 🛠 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/">React.js</a></li> </ul> </details> <details> <summary>Server</summary> <ul> <li><a href="https://nodejs.com/">Node.js</a></li> </ul> </details> <details> <summary>Database</summary> <ul> <li><a href="https://www.postgresql.org/">No DB</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **[Display book items]** - **[Add new Book item]** - **[Delete Book item]** <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://book-store-8g76.onrender.com/) <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 node js installed Git VSCODE editor Installed Web browser ``` ### Setup Clone this repository to your desired folder: ```sh cd my-folder git clone https://github.com/Tekhlay/react-bookstore.git ``` ### Install Install this project with: ```sh cd my-project npm install ``` ### Usage To run the project, execute the following command: ```sh nppm start ``` ### Run tests To run tests, run the following command: ```sh npm test ``` ### Deployment You can deploy this project using Github pages or renders. <!-- Example: ```sh ``` --> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Tekhlay** - GitHub: [@Tekhlay](https://github.com/Tekhlay) - Twitter: [@TekhlatB12](https://twitter.com/TekhlayB12) - LinkedIn: [Teklay](https://www.linkedin.com/in/teklay-birhane-20b64a18a/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **[Add Book reading proress bar]** - [ ] **[FUll website development]** - [ ] **[Test and Deploy]** <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/Tekhlay/react-bookstore/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 a⭐️ and share with your friends. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank @Microverse. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## ❓ FAQ (OPTIONAL) <a name="faq"></a> - **How to install redux toolkit?** - `npm i react-redux @reduxjs/toolkit` <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/Tekhlay/react-bookstore/blob/dev/LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
[Book Store] is a Single page application. It is developed using React Library. It allows users to add new book, edit book, remove book and to manage their statuse on the book reading progress.
javascript,react,reactjs,redux
2023-01-19T20:17:16Z
2023-01-26T08:00:22Z
null
1
6
33
0
1
2
null
MIT
JavaScript
Anurag8305/Co-Commerce
main
# -subdued-trip-4276 A group project that is made during the time span of 5 days. <b> Team Members-</b> <ul> <li><a href="https://www.linkedin.com/in/prince-singh-a35963199/">Prince</a></li> <li><a href="https://www.w3schools.com">Pardeep</a></li> <li><a href="https://www.linkedin.com/in/anurag-raj-809a82137/">Anurag</a></li> <li><a href="https://www.w3schools.com">Pramod</a></li> <li><a href="https://www.w3schools.com">Vinay</a></li> </ul> About Project- Our project Co-Commerce is a fully functional clone website of LimeRoad.com -one of India's most trusted and best website for online shopping. LimeRoad is a revolutionary Online Shopping Website and Discovery Platform for Fashionable Men and Women · India's Most Stylish Online Shopping Site, Limeroad. <br> <hr> <b>Tech-Stack=></b> HTML | CSS | JavaScript | React | Redux | ChakraUI | Json-server(Deployed on render) <br> <hr> # Deployed Link-https://cocommerse-ten.vercel.app/ <br> <hr> # Landing Page- <img src="https://user-images.githubusercontent.com/106643486/213976631-79e17d8e-9c93-4ee6-9ea5-6604d8515ca8.png" alt="Girl in a jacket" width="100%" height="500"> # HomePage- <img src="https://user-images.githubusercontent.com/106643486/213976709-709135fd-51ed-486a-934d-dc2a6fe2e2a9.png" alt="Girl in a jacket" width="100%" height="500"> # MensPage- <img src="https://user-images.githubusercontent.com/106643486/213976765-ffca0ef4-8707-469c-98b2-4b00eae7d4ed.png" alt="Girl in a jacket" width="100%" height="500"> # SingleProduct Page-<img src="https://user-images.githubusercontent.com/106643486/213976816-57db616a-2e4b-400e-bbde-d231882907fd.png" alt="Girl in a jacket" width="100%" height="500"> # CartPage- <img src="https://user-images.githubusercontent.com/106643486/213976890-ff20dbf1-c234-460c-9072-6cf3c83e366f.png" alt="Girl in a jacket" width="100%" height="500"> # Payments Page- <img src="https://user-images.githubusercontent.com/106643486/213976940-d88228a1-0197-4e41-9919-e7f073bb35a7.png" alt="Girl in a jacket" width="100%" height="500"> # Admin Page- <img src="https://user-images.githubusercontent.com/106643486/213976980-a101d460-8874-4d54-8c3a-a52d87e21ec7.png" alt="Girl in a jacket" width="100%" height="500">
A group project that is made during the time span of 5 days.LimeRoad is a revolutionary Online Shopping Website and Discovery Platform for Fashionable Men and Women · India's Most Stylish Online Shopping Site, Limeroad. Tech-Stack=> React, Chakra UI, CSS, JSON-Server
chakra,css,html,react,ui,javascript,json,reactjs,render,api
2023-01-17T06:26:49Z
2023-03-03T13:54:36Z
null
7
25
73
0
1
2
null
null
JavaScript
juniorvilas/nlw-setup
main
null
Projeto desenvolvido durante as aulas do Ignite NLW-SETUP Habits
axios,html5,javascript,nodejs,react-native,reactjs,typescript,expo,fastify,figma
2023-01-23T16:54:14Z
2023-01-23T20:53:15Z
null
1
0
9
0
0
2
null
MIT
TypeScript
ssschneider/projeto-mario
main
# Super Mario Bros | O Filme Projeto desenvolvido durante a Semana do Programador do Zero ao Contratado do <a href="https://github.com/devemdobro">Dev em Dobro</a>, onde a proposta era a criação de uma landing page do filme. Esse projeto segue fielmente o projeto proposto pelos gêmeos, o meu personalizado está disponível <a href="https://projeto-wchampions-league.vercel.app/">aqui</a>! ## 🔧 Tecnologias - HTML - CSS - JS - Git - Github ## 🔗 Acesso Para acessar o projeto, basta <a href="https://github.com/ssschneider/projeto-mario">clicar aqui </a>! ## 💻 Demo | Versão Desktop | Versão Mobile | | -------------- |-------------- | |![Versão Desktop](src/assets/images/desktop.gif) | ![Versão Mobile](src/assets/images/mobile.gif) |
Projeto desenvolvido durante a Semana do Programador do Zero ao Contratado do Dev em Dobro
css,html,javascript,js
2023-01-23T22:37:06Z
2023-01-24T22:05:42Z
null
1
0
3
0
0
2
null
null
CSS
TajwarSaiyeed/TypeScript
main
<p align="center"> <a href="" rel="noopener"> <img width=200px height=200px src="https://raw.githubusercontent.com/TajwarSaiyeed/TypeScript/main/typescript.png" alt="Project logo"></a> </p> <h3 align="center">TypeScript</h3> <div align="center"> [![Status](https://img.shields.io/badge/status-active-success.svg)]() [![GitHub Issues](https://img.shields.io/github/issues/kylelobo/The-Documentation-Compendium.svg)](https://github.com/TajwarSaiyeed/TypeScript/issues) [![GitHub Pull Requests](https://img.shields.io/github/issues-pr/kylelobo/The-Documentation-Compendium.svg)](https://github.com/TajwarSaiyeed/TypeScript/pulls) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](/LICENSE) </div> ![homeImage](https://github.com/TajwarSaiyeed/TypeScript/blob/main/home.png) <p align="center"> Few lines describing your project. <br> </p> ## 📝 Table of Contents - [About](#about) - [Getting Started](#getting_started) - [Deployment](#deployment) - [Usage](#usage) - [Built Using](#built_using) - [TODO](../TODO.md) - [Contributing](../CONTRIBUTING.md) - [Authors](#authors) - [Acknowledgments](#acknowledgement) ## 🧐 About <a name = "about"></a> Write about 1-2 paragraphs describing the purpose of your project. ## 🏁 Getting Started <a name = "getting_started"></a> These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See [deployment](#deployment) for notes on how to deploy the project on a live system. ### Prerequisites What things you need to install the software and how to install them. ``` Give examples ``` ### Installing A step by step series of examples that tell you how to get a development env running. Say what the step will be ``` Give the example ``` And repeat ``` until finished ``` End with an example of getting some data out of the system or using it for a little demo. ## 🔧 Running the tests <a name = "tests"></a> Explain how to run the automated tests for this system. ### Break down into end to end tests Explain what these tests test and why ``` Give an example ``` ### And coding style tests Explain what these tests test and why ``` Give an example ``` ## 🎈 Usage <a name="usage"></a> Add notes about how to use the system. ## 🚀 Deployment <a name = "deployment"></a> Add additional notes about how to deploy this on a live system. ## ⛏️ Built Using <a name = "built_using"></a> - [MongoDB](https://www.mongodb.com/) - Database - [Express](https://expressjs.com/) - Server Framework - [ReactJS](https://reactjs.org/) - Web Framework - [TypeScript](https://www.typescriptlang.org/) - JavaScript with syntax for types - [NodeJs](https://nodejs.org/en/) - Server Environment ## ✍️ Authors <a name = "authors"></a> - [@tajwarsaiyeed](https://github.com/TajwarSaiyeed) - Idea & Initial work See also the list of [contributors](https://github.com/TajwarSaiyeed/TypeScript) who participated in this project. ## 🎉 Acknowledgements <a name = "acknowledgement"></a> - Hat tip to anyone whose code was used - Inspiration - References ``` TypeScript ├─ home.png ├─ index.html ├─ Lesson-1 │ ├─ index.html │ ├─ output │ │ ├─ script.js │ │ └─ script2.js │ ├─ src │ │ ├─ script.ts │ │ └─ script2.ts │ └─ tsconfig.json ├─ Lesson-10 │ ├─ index.html │ ├─ output │ │ ├─ classes │ │ │ └─ Player.js │ │ └─ script.js │ ├─ src │ │ ├─ classes │ │ │ └─ Player.ts │ │ └─ script.ts │ └─ tsconfig.json ├─ Lesson-11 │ ├─ index.html │ ├─ output │ │ ├─ classes │ │ │ └─ Player.js │ │ ├─ interfaces │ │ │ └─ isPlayer.js │ │ └─ script.js │ ├─ src │ │ ├─ classes │ │ │ └─ Player.ts │ │ ├─ interfaces │ │ │ └─ isPlayer.ts │ │ └─ script.ts │ └─ tsconfig.json ├─ Lesson-12 │ ├─ index.html │ ├─ output │ │ └─ script.js │ ├─ src │ │ └─ script.ts │ └─ tsconfig.json ├─ Lesson-13 │ ├─ index.html │ ├─ output │ │ └─ script.js │ ├─ src │ │ └─ script.ts │ └─ tsconfig.json ├─ Lesson-14 │ ├─ index.html │ ├─ output │ │ └─ script.js │ ├─ src │ │ └─ script.ts │ └─ tsconfig.json ├─ Lesson-2 │ ├─ index.html │ ├─ output │ │ └─ script.js │ ├─ src │ │ └─ script.ts │ └─ tsconfig.json ├─ Lesson-3 │ ├─ index.html │ ├─ output │ │ └─ script.js │ ├─ src │ │ └─ script.ts │ └─ tsconfig.json ├─ Lesson-4 │ ├─ index.html │ ├─ output │ │ └─ script.js │ ├─ src │ │ └─ script.ts │ └─ tsconfig.json ├─ Lesson-5 │ ├─ index.html │ ├─ output │ │ └─ script.js │ ├─ src │ │ └─ script.ts │ └─ tsconfig.json ├─ Lesson-6 │ ├─ index.html │ ├─ output │ │ └─ script.js │ ├─ src │ │ └─ script.ts │ └─ tsconfig.json ├─ Lesson-7 │ ├─ index.html │ ├─ output │ │ └─ script.js │ ├─ src │ │ └─ script.ts │ └─ tsconfig.json ├─ Lesson-8 │ ├─ index.html │ ├─ output │ │ └─ script.js │ ├─ src │ │ └─ script.ts │ └─ tsconfig.json ├─ Lesson-9 │ ├─ index.html │ ├─ output │ │ └─ script.js │ ├─ src │ │ └─ script.ts │ └─ tsconfig.json ├─ README.md └─ typescript.png ```
null
es6-javascript,html,javascript,js,typescript
2023-01-20T01:46:20Z
2023-01-21T16:15:26Z
null
1
0
28
0
0
2
null
null
HTML
LeslieAine/todoList-webpack
main
# todoList-webpack <a name="readme-top"></a> <!-- TABLE OF CONTENTS --> <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) - [Deployment](#triangular_flag_on_post-deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [❓ FAQ](#faq) - [📝 License](#license) # 📖 [About the Project] <a name="about-project"></a> **[todo List]** is a project that allows a user to create a collection of tasks they want to do with control over adding and removing tasks on completion. ## 🛠 Built With <a name="built-with"></a> ### Html and Javascript <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://www.w3schools.com/html/">HTML</a></li> </ul> </details> <!-- <details> <summary>Styling</summary> <ul> <li><a href="https://www.w3schools.com/css/">CSS</a></a></li> </ul> </details> --> <details> <summary>Interactivity</summary> <ul> <li><a href="https://www.w3schools.com/html/">JavaScript</a></a></li> </ul> </details> ### Key Features <a name="key-features"></a> - **[Landing_page]** - Landing page of the website - **[add task]** - allows user to enter a new task - **[delete task]** - allows user to delete a completed task <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🚀 Live Demo <a name="live-demo"></a> - Click [here](https://leslieaine.github.io/todoList-webpack/dist/) to see the live demo of the project. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 💻 Getting Started <a name="getting-started"></a> Go to live page - enter a new task - Click add to add to your list - Click remove to remove task from your list ## 👥 Authors <a name="authors"></a> 👤 **Leslie Aine** - GitHub: [@LeslieAine](https://github.com/LeslieAine) - Twitter: [@LeslieAine](https://twitter.com/LeslieAine) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🔭 Future Features <a name="future-features"></a> > Describe 1 - 3 features you will add to the project. - [ ] **[Add CRUD methods for functionality]** - [ ] **[Make list interactive]** <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> ## 🙏 Acknowledgments <a name="acknowledgements"></a> we would like to thank microverse inc for the awesome challenge. - <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FAQ (optional) --> <!-- ## ❓ FAQ <a name="faq"></a> > Add at least 2 questions new developers would ask when they decide to use your project. --> <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 📝 License <a name="license"></a> This project is [MIT](LICENSE.md) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
This is a project that allows a user to create a collection of tasks they want to do with control over adding and removing tasks on completion.
html-css,javascript,webpack
2023-01-24T12:29:44Z
2023-01-27T12:00:17Z
null
2
3
34
2
0
2
null
MIT
JavaScript
Lucassocorrosilva7/Guia-de-configuracao-com-gulp-less
main
<h1 style="text-align: center;">Guia de configuração completo do Gulp para iniciantes com LESS.</h1> ## O que é o Gulp O Gulp é uma ferramenta de automação de tarefas para desenvolvedores web. Ele permite que você automatize tarefas repetitivas, como compilação de arquivos LESS em CSS, minificação de arquivos, entre outros. ## Pré-requisitos Antes de começar a configurar o Gulp, você precisa ter o Node.js instalado em seu computador. Caso não tenha, você pode baixá-lo em [Nodejs](https://nodejs.org/). Inicialização do Node.js Abra o terminal e execute o seguinte comando para inicializar o Node.js em seu projeto: ``` npm init -y ``` ## Instalação do Gulp global Agora, você precisa instalar o Gulp globalmente em seu computador para poder executá-lo a partir do terminal. Execute o seguinte comando: ``` npm install -g gulp ``` ## Instalação de plug-ins Agora, você precisa instalar os seguintes plug-ins para o seu projeto: ``` npm install --save-dev gulp-less gulp-postcss autoprefixer sourcemaps ``` - gulp-less é um plug-in para compilar arquivos LESS em CSS. - gulp-postcss é um plug-in para usar plugins PostCSS com o Gulp. - autoprefixer é um plug-in PostCSS para adicionar prefixos automáticos ao seu CSS para garantir a compatibilidade com diferentes navegadores. - sourcemaps é um plug-in para gerar mapas de origem para seu CSS compilado, o que facilita a depuração do código. ## Criação e configuração do arquivo gulpfile.js Agora, você precisa criar um arquivo gulpfile.js na raiz do seu projeto e adicionar a seguinte configuração: ``` const { src, dest, watch, series } = require("gulp"); ``` ## Esta é a sintaxe para importar módulos do Gulp para o seu arquivo de configuração. Aqui, estamos importando quatro módulos: - src: É uma função que especifica o local dos arquivos de origem. Você pode usá-lo para selecionar todos os arquivos LESS que deseja compilar. - dest: É uma função que especifica o local onde você deseja salvar os arquivos compilados. - watch: É uma função que monitora as alterações em seus arquivos de origem e executa uma tarefa específica sempre que algum arquivo for alterado. - series: É uma função que permite executar várias tarefas em série, ou seja, uma tarefa após a outra. Ao importar esses módulos, você está disponibilizando as funcionalidades do Gulp para o seu arquivo de configuração, permitindo automatizar várias tarefas em seu fluxo de trabalho. ``` const less = require("gulp-less"); const postcss = require("gulp-postcss"); const autoprefixer = require("autoprefixer"); const sourcemaps = require("gulp-sourcemaps"); ``` ## Esta é a sintaxe para importar os plugins necessários para o seu processo de compilação de LESS. Aqui, estamos importando quatro plugins: - gulp-less: Este plugin permite compilar o seu código LESS em CSS. - gulp-postcss: Este plugin permite aplicar vários plugins PostCSS em seus arquivos CSS, como o autoprefixer. - autoprefixer: Este plugin permite adicionar prefixos automaticamente aos seus estilos CSS para garantir a compatibilidade com vários navegadores. - gulp-sourcemaps: Este plugin permite gerar mapas de origem para seus arquivos CSS, permitindo depurar seus estilos mais facilmente. Ao importar esses plugins, você está disponibilizando suas funcionalidades para o seu processo de compilação de LESS, o que torna o processo mais eficiente e personalizável. ``` function css(done) { src("src/less/app.less") .pipe(sourcemaps.init()) .pipe(less()) .pipe(postcss([autoprefixer()])) .pipe(sourcemaps.write(".")) .pipe(dest("build/css")); done(); } function dev(done) { watch("src/less/**/*.less", css); done(); } ``` ## Esta é uma função Gulp que define as tarefas para compilar seus arquivos LESS em CSS e monitorar as alterações nos arquivos LESS. A função css realiza as seguintes etapas: - src("src/less/app.less"): Este é o arquivo de entrada para o processo de compilação, ou seja, o arquivo LESS que você deseja compilar em CSS. - .pipe(sourcemaps.init()): Inicia a geração de mapas de origem para o seu arquivo CSS. - .pipe(less()): Compila o arquivo LESS em CSS. - .pipe(postcss([autoprefixer()])): Aplica o autoprefixer ao seu arquivo CSS. - .pipe(sourcemaps.write(".")): Escreve os mapas de origem para o seu arquivo CSS. - .pipe(dest("build/css")): Especifica o diretório de destino para o arquivo CSS compilado. A função dev é responsável por monitorar as alterações nos arquivos LESS. Quando houver uma alteração, a função css é executada automaticamente. Essas funções são as tarefas básicas para compilar seu arquivo LESS em CSS e monitorar as alterações. Você pode expandir essas funções e adicionar outras tarefas adicionais para personalizar seu processo de compilação. ``` exports.css = css; exports.dev = dev; exports.default = series(css); ``` ## Este trecho de código exporta as tarefas que você definiu anteriormente como css e dev. Isso significa que elas podem ser acessadas em outros arquivos e scripts. - A exportação exports.css = css; significa que a tarefa css pode ser acessada como gulp css. - A exportação exports.dev = dev; significa que a tarefa dev pode ser acessada como gulp dev. - A exportação exports.default = series(css); significa que a tarefa padrão será a tarefa css e que será executada quando você digitar gulp sem especificar nenhuma tarefa. ## Execução do Gulp Por fim, você pode executar o Gulp para compilar seus arquivos LESS em CSS usando o seguinte comando: ``` gulp dev ``` Este comando irá compilar seus arquivos LESS e gerar um arquivo CSS compilado, além de gerar um mapa de origem para ajudar na depuração do código. ## Referências adicionais Para obter mais informações sobre o Gulp e seus plug-ins, você pode consultar a documentação oficial em [Gulpjs](https://gulpjs.com/).
Seja bem-vindo ao meu projeto! Estou usando o gerenciador de tarefas Gulp para automatizar meu fluxo de trabalho de desenvolvimento web.
css,gulp,javascript,less
2023-01-17T05:21:38Z
2023-02-14T01:05:56Z
null
1
0
10
0
0
2
null
null
JavaScript
AmikerB/JavaScript-Quiz
master
# JavaScript Quiz This [webpage](https://amikerb.github.io/JavaScript-Quiz/index.html) allows the user to test their JavaScript knowledge with a JavaScript quiz. When the "Start Quiz" button in clicked the timer begins and the user is presented with the first question. The questions will appear in a random order, with the answer choices also appearing in a random order. When the correct answer is clicked the next question appears. If the user clicks the wrong answer "wrong" appears underneath the choices and the time decreases by 10 seconds. The game is over once all the questions are answered or the timer reaches 0. Then a game over page appears showing the users quiz score and an input box for the user to type their initials and submit them. On the main webpage there is a button which takes the user to the Highscores, this page shows the top 5 highest scores with the users corresponding initials. There is a button to clear the scores which also clears the scores in the local storage. ## Usage ### Screenshots of wepage on a desktop: #### Screenshot of question: ![alt text](./assets/images/js-quiz-questions.png) #### Screenshot of end page: ![alt text](./assets/images/js-quiz-end-screen.png) #### Screenshot of highscore page: ![alt text](./assets/images/js-quiz-highscore.png) ## Credits - [w3schools Quiz JavaScript](https://www.w3schools.com/quiztest/quiztest.asp?qtest=JS) for quiz questions - [stackoverflow](https://stackoverflow.com/questions/1933969/sound-effects-in-javascript-html5) forum for how to play sfx - [Fisher-Yates Shuffle](https://stackoverflow.com/questions/2450954/how-to-randomize-shuffle-a-javascript-array) on stackoverflow - [.this](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/this) on mdn web docs - [.remove()](https://developer.mozilla.org/en-US/docs/Web/API/Element/remove) on mdn web docs - [setTimeout()](https://www.w3schools.com/jsref/met_win_settimeout.asp) on w3school - [JavaScript Quiz ending before all questions asked](https://stackoverflow.com/questions/70730474/javascript-quiz-ending-before-all-questions-asked) on stackoverflow
bootcamp module 6 project
javascript,localstorage
2023-01-20T13:59:04Z
2023-01-24T21:00:19Z
null
1
14
31
0
1
2
null
null
JavaScript
CaioLima10/Desafio-de-Cores
master
## Desafio 🔵🔴🟢🟣⚪ Nesse desafio, tem um circulo "Pai" no centro. que recebe as cores dos circulos menores. <img alt="projeto/ desafio de cores" src=".github/desafio circulo 1.PNG"></img> - [Visite o projeto online](https://caiolima10.github.io/Desafio-de-Cores/) 1. Ao clicar em algum circulo menor, o circulo grande deve receber a cor. 2. A borda so deve aparecer no circulo clicado. 3. O usuario poderá retirar a cor colocada,ao apertar o botão "reiniciar" ## 💻 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML e CSS - JavaScript - Git e Github - Figma feito por 🙋‍♂️ Caio lima
Desafio de Cores 🔻 "mudando a cor circulo pai com as cores dos círculos filhos."
html,css,figma,git,github,javascript
2023-01-21T01:07:04Z
2023-01-23T02:01:05Z
null
1
0
6
0
0
2
null
null
CSS
ak-hu/activebox-php
main
# Activebox ActiveBox.com is a modern and responsive website template built using HTML, CSS, and JavaScript. It provides a sleek and professional design that can be used for various purposes such as portfolios, businesses, or personal projects. ## Features - Responsive design: The website adapts to different screen sizes and devices, ensuring a seamless user experience. - Modern layout: The template features a clean and modern layout with sections for showcasing content, services, portfolio, and contact information. - Customizable: You can easily customize the template to fit your specific needs by modifying the HTML and CSS files. ## Usage 1. Clone the repository: `git clone https://github.com/ak-hu/activebox.com.git` 2. Open the `index.html` file in your web browser. 3. Customize the template by modifying the HTML and CSS files to add your own content, branding, and styling. 4. Deploy the website to your preferred hosting platform or web server. ## Contributing Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request. ## License This project does not have a specific license
ActiveBox.com is a modern and responsive website template built using HTML, CSS, and JavaScript. It provides a sleek and professional design that can be used for various purposes such as portfolios, businesses, or personal projects.
css,hack,html-css-javascript,html5,javascript,php
2023-01-21T14:18:33Z
2023-08-15T23:34:47Z
null
1
0
13
0
0
2
null
null
Hack
FahimFBA/linktree-customizable-clone
main
# LinkTree Customizable Clone On January 2023, I was thinking about creating a very simplified website for my [main domain](https://www.fahimbinamin.com/), and I was thinking creating of something like my [LinkTree](https://linktr.ee/FahimFBA) profile. There is no other way other than creating something like that on my own, right? Luckily, I have got amazing content from Ania recently for a LinkTree Clone, and that can't make me more than happier. So, I decided to make one of my own using her help. Guess what? I did it within 2 hours or so starting from making the site and customizing the nameservers and everything regarding that. Phew! 🤗 What an amazing time it was! ## Website Preview ### Live Demo: [https://www.fahimbinamin.com/](https://www.fahimbinamin.com/) <br> ![Website Preview](preview.png) --- #### Resources * [Ania Kubów](https://youtu.be/GRgt5efpmdM) * [SVG Icons](https://fontawesomeicons.com/svg/icons) * A little bit of usage from my brain 😄
LinkTree Clone for my personal domain!
css,html,javascript,linktree,linktree-alternative,linktree-clone,linktree-custom,personal-site
2023-01-20T09:56:42Z
2023-02-25T12:16:29Z
2023-02-25T12:16:29Z
1
0
19
0
0
2
null
MIT
HTML
Cyril1743/GPS-Satellite
main
# Project 1: GPS Satellite ## Project Description Air Pollution API concept: - This project was designed as a homework assignment for KU coding bootcamp in Module 8 Challenge. The purpose of this project was to build a gps satellite map for air pollution levels using our knowledge of HTML, CSS and JavaScript. Air Pollution API provides current, forecast and historical air pollution data for any coordinates on the globe. ## User Story & Acceptance Criteria ```md - User Story: As a user I want to input an address So that I can see the most recent air pollution data for any coordinates on the globe. - Acceptance Criteria: Given a polish website/ui/application When I view the website Then there is an input box for map image and 8 small boxes for air pollution levels When an address is submitted Then the most recent air pollution data shows on the screen. ``` ## Below is a snapshot of various dynamically generated HTML/CSS and JavaScript sections: ![Deployed_application](https://user-images.githubusercontent.com/118854114/215657788-fff9bb0f-11dc-44a2-bf4d-73ff7e4c0b04.png) ## APIs to be Used Google Maps API and Weather API. ## Decomposition and Rough Breakdown of Tasks Alan and David: JavaScript Andrei, Emmanuel, and Danielle : HTML and CSS ## Here is a link to the deployed application: https://cyril1743.github.io/GPS-Satellite/ ## Here is the URL of the GitHub repository with a unique name and includes a README file: https://github.com/Cyril1743/GPS-Satellite # Authors - Alan, David, Andrei, Emmanuel, and Danielle. - Air Pollution API concept.
This is a website that takes a user-inputted address and outputs a map location and air pollution data
css,html5,javascript
2023-01-19T01:43:52Z
2023-01-31T03:45:29Z
null
5
47
135
0
0
2
null
null
HTML
Satyam0700/Bitcoin
main
# Modern ui/ux Crypto price Tracker ![bitcoin](https://user-images.githubusercontent.com/114215415/215313580-742ea1dc-afa1-4955-a945-8cc8b90deac3.PNG)
A modern Crypto price tracking website
javascript,react,typescript,tailwindcss
2023-01-25T11:52:14Z
2023-01-29T12:11:02Z
null
1
0
3
0
0
2
null
null
TypeScript
Abhi11sep/ambiguous-heat-2587
master
# Welcome to Crystal & Gold --- **Introduction** --- This is our Construct Week Project at Masai School's Full Stack Web Development Course. We are currently at the end of Sixth unit where we need to make projects as per mastery based progression environment of Masai School after learnig certain tech-tools and in Sixth unit we have learnt React and Nodejs for Front-end and state management respectively. Crystal & Gold is India’s leading jewellery destination for the latest trends & fashion. where user can select jewellery and wishlist or add to cart and buy easily. ## Tech-stack used ``` Frontend : React JS, Chakra-UI, Material UI Backend : NodeJS, MongoDB, Express.js DataBase : MongoDB Atlas ``` ## Team members and contribution | Team Member | Contribution | | ----------------- | ------------------------------------------------------------------ | | Abhishek Singh | Home Page with Header And Footer | | Deepkamal yadav | single product page, user signup, user login & Admin login frontend | | Omchand kanu | Wishlist Page, Cart Page, Payment Page | | Pankaj Singh | All Backend data managemnet with MongoDB Atlas | | Shalini | All Products Page | ## Features | Serial No | Feature | | ----------------- | ------------------------------------------------------------------ | | 1 | User signup and Login | | 2 | Products Page with Filter and Sort Functionalities | | 3 | Dynamic add to cart and Wishlist feature | | 4 | Dynamic cart page and wishlist page using userId | | 5 | Admin Login & Page | | 6 | Dummy payment using UPI-Paytm | **Sample Page Images** --- **1) Home Page** --- <a href="https://ibb.co/pXrvSWs"><img src="https://github.com/Abhi11sep/ambiguous-heat-2587/blob/master/home.png" alt="Screenshot-20221219-014333" border="0"></a> **2) User Login Page** --- <img src="https://github.com/Abhi11sep/ambiguous-heat-2587/blob/master/account.png"></img> **3) Products Page** --- <img src="https://github.com/Abhi11sep/ambiguous-heat-2587/blob/master/product.png"></img> **4) Product Display Page** --- <img src="https://github.com/Abhi11sep/ambiguous-heat-2587/blob/master/sinfgleProduct.png"></img> **7) Wishlist Page** --- <img src="https://github.com/Abhi11sep/ambiguous-heat-2587/blob/master/wishlist.png"></img> **5) Cart Page** --- <img src="https://github.com/Abhi11sep/ambiguous-heat-2587/blob/master/cart.png"></img> **6) Payment Page** --- <img src="https://github.com/Abhi11sep/ambiguous-heat-2587/blob/master/payment.png"></img>
Online Jewellery Store ( Clone of Cartalane.com ), where user can visits various jewellery, Wishlist them cart them and able to buy them also.
chakra-ui,css3,expressjs,html5,javascript,material-ui,mongodb,mongodb-atlas,nodejs,reactjs
2023-01-17T07:33:33Z
2023-02-05T07:39:12Z
null
5
21
74
0
1
2
null
null
JavaScript
oxc-project/oxc
main
<p align="center"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/Boshen/oxc-assets/main/preview-dark-transparent.png" width="600"> <img alt="OXC Logo" src="https://raw.githubusercontent.com/Boshen/oxc-assets/main/preview-white.png" width="600"> </picture> </p> <div align="center"> [![MIT licensed][license-badge]][license-url] [![Build Status][ci-badge]][ci-url] [![Code Coverage][code-coverage-badge]][code-coverage-url] [![CodSpeed Badge](https://img.shields.io/endpoint?url=https://codspeed.io/badge.json)](https://codspeed.io/oxc-project/oxc) [![Sponsors][sponsors-badge]][sponsors-url] [![Discord chat][discord-badge]][discord-url] [![Playground][playground-badge]][playground-url] [![Website][website-badge]][website-url] </div> ## ⚓ Oxc The Oxidation Compiler is creating a collection of high-performance tools for JavaScript and TypeScript. Oxc is building a parser, linter, formatter, transpiler, minifier, resolver ... all written in Rust. ## 🙋Who's using Oxc? - [Rolldown] uses the [oxc][docs-oxc-url] crate for parsing. - [Rspack][rspack], [Rolldown][rolldown], and [Biome][biome] uses the [oxc_resolver][docs-resolver-url] crate for module resolution. ## ⚡️ Linter Quick Start The linter is ready to catch mistakes for you. It comes with 91 rules turned on by default (out of 300 in total) and no configuration is required. To get started, run [oxlint][npm-oxlint] or via `npx`: ```bash npx oxlint@latest ``` To give you an idea of its capabilities, here is an example from the [vscode] repository, which finishes linting 4800+ files in 0.7 seconds. <p float="left" align="left"> <img src="https://raw.githubusercontent.com/Boshen/oxc-assets/main/linter-screenshot.png" width="60%"> </p> ## ⚡️ Performance - The parser aim to be the fastest Rust-based ready-for-production parser. - The linter is more than 50 times faster than [ESLint], and scales with the number of CPU cores. <p float="left" align="middle"> <img src="https://raw.githubusercontent.com/Boshen/bench-javascript-parser-written-in-rust/main/bar-graph.svg" width="49%"> <img src="https://raw.githubusercontent.com/Boshen/bench-javascript-linter/main/bar-graph.svg" width="49%"> </p> ## ⌨️ Programming Usage ### Rust Individual crates are published, you may use them to build your own JavaScript tools. - The umbrella crate [oxc][docs-oxc-url] exports all public crates from this repository. - The AST and parser crates [oxc_ast][docs-ast-url] and [oxc_parser][docs-parser-url] are production ready. - The resolver crate [oxc_resolver][docs-resolver-url] for module resolution is also production ready. - Example usages of these crates can be found in their respective `crates/*/examples` directory. While Rust has gained a reputation for its comparatively slower compilation speed, we have dedicated significant effort to fine-tune the Rust compilation speed. Our aim is to minimize any impact on your development workflow, ensuring that developing your own Oxc based tools remains a smooth and efficient experience. This is demonstrated by our [CI runs](https://github.com/oxc-project/oxc/actions/workflows/ci.yml?query=branch%3Amain), where warm runs complete in 3 minutes. ### Node.js - via napi: [oxc-parser][npm-napi] ### Wasm - [@oxc-parser/wasm](https://www.npmjs.com/package/@oxc-parser/wasm) --- ## 🎯 Tools - [AST and Parser](#-ast-and-parser) - [Linter](#-linter) - [Resolver](#-resolver) - [Minifier](#-minifier) - [Formatter](#-formatter) - [Transpiler](#-transpiler) ### 🔸 AST and Parser Oxc maintains its own AST and parser, which is by far the fastest and most conformant JavaScript and TypeScript (including JSX and TSX) parser written in Rust. As the parser often represents a key performance bottleneck in JavaScript tooling, any minor improvements can have a cascading effect on our downstream tools. By developing our parser, we have the opportunity to explore and implement well-researched performance techniques. While many existing JavaScript tools rely on [estree] as their AST specification, a notable drawback is its abundance of ambiguous nodes. This ambiguity often leads to confusion during development with [estree]. The Oxc AST differs slightly from the [estree] AST by removing ambiguous nodes and introducing distinct types. For example, instead of using a generic [estree] `Identifier`, the Oxc AST provides specific types such as `BindingIdentifier`, `IdentifierReference`, and `IdentifierName`. This clear distinction greatly enhances the development experience by aligning more closely with the ECMAScript specification. #### 🏆 Parser Performance Our [benchmark][parser-benchmark] reveals that the Oxc parser surpasses the speed of the [swc] parser by approximately 3 times and the [Biome][biome] parser by 5 times. <details> <summary>How is it so fast?</summary> <ul> <li>AST is allocated in a memory arena (<a href="https://crates.io/crates/bumpalo">bumpalo</a>) for fast AST memory allocation and deallocation.</li> <li>Short strings are inlined by <a href="https://crates.io/crates/compact_str">CompactString</a>.</li> <li>No other heap allocations are done except the above two.</li> <li>Scope binding, symbol resolution and some syntax errors are not done in the parser, they are delegated to the semantic analyzer.</li> </ul> </details> ### 🔸 Linter The linter embraces convention over configuration, eliminating the need for extensive configuration and plugin setup. Unlike other linters like [ESLint], which often require intricate configurations and plugin installations (e.g. [@typescript-eslint]), our linter only requires a single command that you can immediately run on your codebase: ```bash npx oxlint@latest ``` #### 🏆 Linter Performance The linter is 50 - 100 times faster than [ESLint] depending on the number of rules and number of CPU cores used. It completes in less than a second for most codebases with a few hundred files and completes in a few seconds for larger monorepos. See [bench-javascript-linter](https://github.com/Boshen/bench-javascript-linter) for details. As an upside, the binary is approximately 5MB, whereas [ESLint] and its associated plugin dependencies can easily exceed 100. You may also download the linter binary from the [latest release tag](https://github.com/oxc-project/oxc/releases/latest) as a standalone binary, this lets you run the linter without a Node.js installation in your CI. <details> <summary>How is it so fast?</summary> <ul> <li>Oxc parser is used.</li> <li>AST visit is a fast operation due to linear memory scan from the memory arena.</li> <li>Files are linted in a multi-threaded environment, so scales with the total number of CPU cores.</li> <li>Every single lint rule is tuned for performance.</li> </ul> </details> ### 🔸 Resolver Module resolution plays a crucial role in JavaScript tooling, especially for tasks like multi-file analysis or bundling. However, it can often become a performance bottleneck. To address this, we developed [oxc_resolver][docs-resolver-url]. The resolver is production-ready and is currently being used in [Rspack][rspack] and [Rolldown][rolldown]. Usage and examples can be found in its own [repository](https://github.com/oxc-project/oxc_resolver). ### 🔸 Transformer (Transpiler) A transformer is responsible for turning higher versions of ECMAScript to a lower version that can be used in older browsers. We are currently focusing on the architecture. See [Milestone 1](https://github.com/oxc-project/oxc/issues/2859) for details. ### 🔸 Minifier JavaScript minification plays a crucial role in optimizing website performance as it reduces the amount of data sent to users, resulting in faster page loads. This holds tremendous economic value, particularly for e-commerce websites, where every second can equate to millions of dollars. However, existing minifiers typically require a trade-off between compression quality and speed. You have to choose between the slowest for the best compression or the fastest for less compression. But what if we could develop a faster minifier without compromising on compression? We are actively working on a prototype that aims to achieve this goal, by porting all test cases from well-known minifiers such as [google-closure-compiler], [terser], [esbuild], and [tdewolff-minify]. Preliminary results indicate that we are on track to achieve our objectives. With the Oxc minifier, you can expect faster minification times without sacrificing compression quality. ### 🔸 Formatter While [prettier] has established itself as the de facto code formatter for JavaScript, there is a significant demand in the developer community for a less opinionated alternative. Recognizing this need, our ambition is to undertake research and development to create a new JavaScript formatter that offers increased flexibility and customization options. The [prototype](https://github.com/oxc-project/oxc/tree/main/crates/oxc_prettier) is currently work in progress. --- ## ✍️ Contribute See [CONTRIBUTING.md](./CONTRIBUTING.md) for guidance. Check out some of the [good first issues](https://github.com/oxc-project/oxc/contribute) or ask us on [Discord][discord-url]. If you are unable to contribute by code, you can still participate by: - Add a [GitHub Star](https://github.com/oxc-project/oxc/stargazers) to the project. - Join us on [Discord][discord-url]. - [Follow me on twitter](https://twitter.com/boshen_c) and tweet about this project. ## 📚 Learning Resources - My small tutorial on [how to write a JavaScript Parser in Rust](https://oxc-project.github.io/docs/learn/parser_in_rust/intro.html) - My small article [Pursuit of Performance on Building a JavaScript Compiler](https://oxc-project.github.io/docs/learn/performance.html) - [And more](https://oxc-project.github.io/docs/learn/references.html) ## 🤝 Credits This project was incubated with the assistance of these exceptional mentors and their projects: - [Biome][biome] - [@ematipico](https://github.com/ematipico) - [Ruff][ruff] - [@charliermarsh](https://github.com/charliermarsh), [@MichaReiser](https://github.com/MichaReiser) - [quick-lint-js](https://quick-lint-js.com) - [@strager](https://github.com/strager) - [elm-review](https://package.elm-lang.org/packages/jfmengels/elm-review/latest) - [@jfmengels](https://github.com/jfmengels) ## ❤️ Sponsors <p align="center"> <a href="https://github.com/sponsors/Boshen"> <img src="https://cdn.jsdelivr.net/gh/boshen/sponsors/sponsors.svg" alt="My sponsors" /> </a> </p> ## 📖 License Oxc is free and open-source software licensed under the [MIT License](./LICENSE). Oxc ports or copies code from other open source projects, their licenses are listed in [**Third-party library licenses**](./THIRD-PARTY-LICENSE). [discord-badge]: https://img.shields.io/discord/1079625926024900739?logo=discord&label=Discord [discord-url]: https://discord.gg/9uXCAwqQZW [license-badge]: https://img.shields.io/badge/license-MIT-blue.svg [license-url]: https://github.com/oxc-project/oxc/blob/main/LICENSE [ci-badge]: https://github.com/oxc-project/oxc/actions/workflows/ci.yml/badge.svg?event=push&branch=main [ci-url]: https://github.com/oxc-project/oxc/actions/workflows/ci.yml?query=event%3Apush+branch%3Amain [npm-badge]: https://img.shields.io/npm/v/oxlint/latest?color=brightgreen [npm-url]: https://www.npmjs.com/package/oxlint/v/latest [code-size-badge]: https://img.shields.io/github/languages/code-size/oxc-project/oxc [code-size-url]: https://github.com/oxc-project/oxc [code-coverage-badge]: https://codecov.io/github/oxc-project/oxc/branch/main/graph/badge.svg [code-coverage-url]: https://codecov.io/gh/oxc-project/oxc [sponsors-badge]: https://img.shields.io/github/sponsors/Boshen [sponsors-url]: https://github.com/sponsors/Boshen [playground-badge]: https://img.shields.io/badge/Playground-blue?color=9BE4E0 [playground-url]: https://oxc-project.github.io/oxc/playground [website-badge]: https://img.shields.io/badge/Website-blue [website-url]: https://oxc-project.github.io [crate-oxc-url]: https://crates.io/crates/oxc [crate-ast-url]: https://crates.io/crates/oxc_ast [crate-parser-url]: https://crates.io/crates/oxc_parser [docs-oxc-url]: https://docs.rs/oxc [docs-ast-url]: https://docs.rs/oxc_ast [docs-parser-url]: https://docs.rs/oxc_parser [docs-resolver-url]: https://docs.rs/oxc_resolver [Boshen]: https://github.com/boshen [CompactString]: https://github.com/ParkMyCar/compact_str [ESLint]: https://eslint.org/ [acorn]: https://github.com/acornjs/acorn [babel]: https://babel.dev [bumpalo]: https://docs.rs/bumpalo [contributors]: https://github.com/oxc-project/oxc/graphs/contributors [enhanced-resolve]: https://github.com/webpack/enhanced-resolve [esbuild]: https://esbuild.github.io/ [eslint-plugin-import]: https://www.npmjs.com/package/eslint-plugin-import [eslint-plugin-jest]: https://www.npmjs.com/package/eslint-plugin-jest [estree]: https://github.com/estree/estree [google-closure-compiler]: https://github.com/google/closure-compiler [minification-benchmarks]: https://github.com/privatenumber/minification-benchmarks [npm-napi]: https://www.npmjs.com/package/oxc-parser [npm-oxlint]: https://www.npmjs.com/package/oxlint [parser-benchmark]: https://github.com/Boshen/bench-javascript-parser-written-in-rust [prettier]: https://prettier.io [biome]: https://biomejs.dev/ [ruff]: https://beta.ruff.rs [swc]: https://swc.rs [tdewolff-minify]: https://github.com/tdewolff/minify [terser]: https://terser.org [vscode]: https://github.com/microsoft/vscode [@typescript-eslint]: https://typescript-eslint.io [rspack]: https://www.rspack.dev [rolldown]: https://rolldown.rs
⚓ A collection of JavaScript tools written in Rust.
compiler,javascript,linter,minifier,parser,rust,typescript
2023-02-09T05:46:51Z
2024-05-23T14:08:33Z
2024-05-15T14:20:29Z
118
2,669
3,569
74
337
9,168
null
MIT
Rust
kaleidawave/ezno
main
A JavaScript compiler and TypeScript checker written in Rust with a focus on static analysis and runtime performance. > [!IMPORTANT] > Ezno is in active development and **currently does not support enough features to check existing projects**. Check out the [getting started guide](./checker/docs/getting-started.md) for experimenting with what it [currently supports](./checker/specification/specification.md). <!-- ![project lines of code](https://projects.kaleidawave.workers.dev/project/ezno/badge) --> What Ezno is - A type checker for JavaScript usable through a CLI ([with a LSP also in the works](https://github.com/kaleidawave/ezno/issues/22)) - Checks programs with guaranteed type safety (no runtime [`TypeError`s](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError)) (**as long as definitions are sound**) - Types aimed at soundness and tracing for better static analysis - A *imperative* type system that tracks and evaluates the side effects of functions and control flow structures. It is similar to an interpreter, but acts with types instead of *values* and does not run IO side effects etc - A collection of experiments of types. Many are being worked out and are in the prototype stage. Some of the new behaviors benefit JavaScript specifically and others could be applied to other languages - Written in Rust - [Fast](https://github.com/kaleidawave/ezno/actions/workflows/performance-and-size.yml) and [Small](https://github.com/kaleidawave/ezno/actions/workflows/lines-of-code.yml) - Open source! [You can help build Ezno!](https://github.com/kaleidawave/ezno/issues?q=is%3Aopen+label%3Agood-first-issue%2Cfeedback-needed) - A challenge to the status quo of type checking, optimisations and compilation through deeper static analysis beyond syntax analysis What Ezno is not - **eNZo, the Z is in front of the N** (pronounce as 'Fresno' without the 'fr') 😀 - Be on parity with TSC or 1:1, it has some different behaviors **but** should work in existing projects using TSC <!--(check out [stc](https://github.com/dudykr/stc) that is written in Rust and is aimed at replicating TSC) --> - Faster as a means to serve large codebases. Cut out bloat and complex code first! - Smarter as a means to allow more *dynamic patterns*. Keep things simple! - A binary executable compiler. It takes in JavaScript (or a TypeScript or Ezno superset) and does similar processes to traditional compilers, but at the end emits JavaScript. However in the future it could generate a lower level format using its event (side-effect) representation Read more about Ezno - [Introducing Ezno](https://kaleidawave.github.io/posts/introducing-ezno/) - [Ezno in '23](https://kaleidawave.github.io/posts/ezno-23/) - [A preview of the checker](https://kaleidawave.github.io/posts/a-preview-of-the-checker/) --- This project is a workspace consisting of a few crates: | Crate | Lines Of Code | Contains | |---|---|---| | checker | ![checker lines of code](https://projects.kaleidawave.workers.dev/project/ezno-checker/badge) | Stores for types and contexts, type checking logic and optional synthesis over the parser AST | | parser | ![parser lines of code](https://projects.kaleidawave.workers.dev/project/ezno-parser/badge) | AST definitions, logic for parsing, AST to string and visiting | <!-- | ezno-web-framework | ![](https://projects.kaleidawave.workers.dev/project/framework/badge) | Visitors and code generation for JSX and reactive expression transformations. | --> <!-- | ezno-lsp | ![](https://projects.kaleidawave.workers.dev/project/framework/badge) | Visitors and code generation for JSX and reactive expression transformations. | --> <!-- Also checkout [oxc_type_synthesis](https://github.com/web-infra-dev/oxc/tree/main/crates/oxc_type_synthesis), a crate which allows using the type checker inside [oxc](https://github.com/web-infra-dev/oxc/tree/main)! --> ## Help contribute Check out [good first issues and comment on discussions]((https://github.com/kaleidawave/ezno/issues?q=is%3Aopen+label%3Agood-first-issue%2Cfeedback-needed))! Feel free to ask questions on parts of the code of the checking implementation. Read [CONTRIBUTING.md](https://github.com/kaleidawave/ezno/blob/main/CONTRIBUTING.md) for information about building and testing.
A JavaScript compiler and TypeScript checker written in Rust with a focus on static analysis and runtime performance
compiler,javascript,types,typescript,typechecker
2023-02-03T19:27:20Z
2024-05-20T14:04:27Z
2024-04-10T21:07:13Z
14
71
163
31
40
2,219
null
MIT
Rust
Thinkmill/keystatic
main
<a href="https://keystatic.thinkmill.com.au/"> <img src=".github/keystatic-banner.svg" alt="Keystatic"> </br> </br> </a> <p> <a aria-label="NPM version" href="https://www.npmjs.com/package/@keystatic/core"> <img alt="" src="https://img.shields.io/npm/v/@keystatic/core.svg?style=for-the-badge&labelColor=0869B8"> </a> <a aria-label="Twitter Logo" href="https://twitter.com/thekeystatic"> <img src="https://img.shields.io/badge/Twitter-1DA1F2?style=for-the-badge&logo=twitter&logoColor=white&labelColor=007BCE"> </a> <a aria-label="Website" href="https://keystatic.thinkmill.com.au/"> <img src="https://img.shields.io/badge/Website-2F6BFF.svg?style=for-the-badge&logo=data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWdsb2JlIj48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCI+PC9jaXJjbGU+PGxpbmUgeDE9IjIiIHkxPSIxMiIgeDI9IjIyIiB5Mj0iMTIiPjwvbGluZT48cGF0aCBkPSJNMTIgMmExNS4zIDE1LjMgMCAwIDEgNCAxMCAxNS4zIDE1LjMgMCAwIDEtNCAxMCAxNS4zIDE1LjMgMCAwIDEtNC0xMCAxNS4zIDE1LjMgMCAwIDEgNC0xMHoiPjwvcGF0aD48L3N2Zz4=&labelColor=0737ad&locoColor=white&logoWidth=0"> </a> <a aria-label="Thinkmill Logo" href="https://www.thinkmill.com.au/open-source?utm_campaign=github-keystatic"> <img src="https://img.shields.io/badge/A%20Thinkmill%20Project-ed0000.svg?style=for-the-badge&logo=data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTg2IiBoZWlnaHQ9IjU4NiIgdmlld0JveD0iMCAwIDU4NiA1ODYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF8xOTk2XzQwNikiPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTU4NiAyOTNDNTg2IDQ1NC44MTkgNDU0LjgxOSA1ODYgMjkzIDU4NkMxMzEuMTgxIDU4NiAwIDQ1NC44MTkgMCAyOTNDMCAxMzEuMTgxIDEzMS4xODEgMCAyOTMgMEM0NTQuODE5IDAgNTg2IDEzMS4xODEgNTg2IDI5M1pNMjA1Ljc3NiAzNTguOTQ0QzE5MS4zNzYgMzU4Ljk0NCAxODUuOTA0IDM1Mi4zMiAxODUuOTA0IDMzNS45MDRWMjYyLjc1MkgyMTQuNDE2VjIzNy42OTZIMTg1LjkwNFYyMDEuMTJIMTUzLjA3MlYyMzcuNjk2SDEyOC41OTJWMjYyLjc1MkgxNTMuMDcyVjM0MC44QzE1My4wNzIgMzcyLjc2OCAxNjYuNjA4IDM4NS43MjggMTk3LjQyNCAzODUuNzI4QzIwMy40NzIgMzg1LjcyOCAyMTAuOTYgMzg0LjU3NiAyMTUuODU2IDM4My4xMzZWMzU3LjUwNEMyMTMuNTUyIDM1OC4zNjggMjA5LjUyIDM1OC45NDQgMjA1Ljc3NiAzNTguOTQ0Wk00MDcuMzc2IDIzNC4yNEMzODUuMiAyMzQuMjQgMzcxLjA4OCAyNDQuMDMyIDM2MC40MzIgMjYwLjczNkMzNTIuOTQ0IDI0My40NTYgMzM3LjM5MiAyMzQuMjQgMzE3LjIzMiAyMzQuMjRDMjk5Ljk1MiAyMzQuMjQgMjg2Ljk5MiAyNDEuMTUyIDI3Ni42MjQgMjU1LjI2NEgyNzYuMDQ4VjIzNy42OTZIMjQ0LjY1NlYzODRIMjc3LjQ4OFYzMDUuNjY0QzI3Ny40ODggMjc3LjQ0IDI4OC43MiAyNjAuNzM2IDMwOC4zMDQgMjYwLjczNkMzMjUuMjk2IDI2MC43MzYgMzM0LjUxMiAyNzIuODMyIDMzNC41MTIgMjkzLjU2OFYzODRIMzY3LjM0NFYzMDUuMDg4QzM2Ny4zNDQgMjc3LjE1MiAzNzguODY0IDI2MC43MzYgMzk4LjE2IDI2MC43MzZDNDE0LjU3NiAyNjAuNzM2IDQyNC42NTYgMjcxLjEwNCA0MjQuNjU2IDI5Ny4wMjRWMzg0SDQ1Ny40ODhWMjkzLjg1NkM0NTcuNDg4IDI1NC40IDQzOC40OCAyMzQuMjQgNDA3LjM3NiAyMzQuMjRaIiBmaWxsPSJ3aGl0ZSIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzE5OTZfNDA2Ij4KPHJlY3Qgd2lkdGg9IjU4NiIgaGVpZ2h0PSI1ODYiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==&labelColor=C60200&locoColor=white&logoWidth=0"> </a> </p> --- First-class CMS experience, TypeScript API, Markdown & YAML/JSON based, no DB. Built with DNA from Keystone, connects directly to GitHub and doesn’t mess with your source code. Conceived for modern front-end frameworks like Next.js, Remix and Astro, designed to fit into your workflow. ## Status We're working on it! Things are experimental at the moment. But if you're curious and brave, check out [keystatic.com](https://keystatic.com) to try it out (and check out our growing collection of templates). Follow [@thekeystatic](https://twitter.com/thekeystatic) on Twitter, and [subscribe to our mailing list](https://keystatic.com/#mailing-list) for updates. Feedback on how we're going, what you're looking for, and what you'd like to see next is super helpful as we progress! [Join the discussion on GitHub](https://github.com/Thinkmill/keystatic/discussions) --- ## Developing Keystatic If you want to try Keystatic, we recommend following our [guides](https://keystatic.com/docs/introduction) or using the CLI rather than running the dev projects in this repo. They're intended for testing and developing features, and aren't great examples of actual Keystatic projects. However, if you want to spin up Keystatic for local development in the monorepo, you can! Run the following: ```sh pnpm install cd dev-projects/{example} pnpm run dev ``` ### Requirements - node.js v18 - pnpm Note: if you are getting an error with `pnpm`, make sure you're using [corepack](https://nodejs.org/api/corepack.html), uninstall pnpm, and then run `corepack enable pnpm`. --- ## License Copyright (c) 2023 [Thinkmill Labs](https://www.thinkmill.com.au/labs?utm_campaign=github-keystatic) Pty Ltd. Licensed under the MIT License.
First class CMS experience, TypeScript API, Markdown & YAML/JSON based, no DB
cms,json,markdoc,markdown,yaml,content-management-system,javascript,static-content,typescript
2023-02-09T02:53:50Z
2024-05-23T05:31:43Z
null
59
822
945
70
66
961
null
MIT
TypeScript
zahidkhawaja/langchain-chat-nextjs
main
## LangChain Chat - Next.js ## Getting started 🚀 1. Clone this repo! 2. Install dependencies: `npm install` 3. Run the development server: `npm run dev` Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file. [API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/chat](http://localhost:3000/api/chat). This endpoint can be edited in `pages/api/chat.js`. The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages. ## Learn More To learn more about Next.js, take a look at the following resources: - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. ## 🦜🔗 Powered by LangChain - [LangChain](https://github.com/hwchase17/langchain/) backend implementation can be found [here](https://github.com/hwchase17/chat-langchain). - Read more on the [LangChain blog](https://blog.langchain.dev/langchain-chat/). - Deployed at [chat.langchain.dev](https://chat.langchain.dev/). Feel free to reach out to [Zahid](https://twitter.com/chillzaza_) if you need anything!
Next.js frontend for LangChain Chat.
langchain,openai,javascript,nextjs
2023-01-27T21:45:27Z
2023-01-27T22:08:24Z
2023-01-27T22:08:24Z
1
1
3
4
270
961
null
MIT
JavaScript
Sandpack/nodebox-runtime
main
# Nodebox Nodebox is a runtime for executing Node.js modules in the browser. ## Why we built Nodebox With `sandpack-bundler`, we allowed any developer anywhere to instantly create a fast, local, shareable playground inside their browser, without having to wait forever to install dependencies and fight with devtools. This improves the learning, experimentation and sharing experience of client-side JavaScript code. However, server-side JavaScript remained a challenge. At CodeSandbox we have solved this by using [Firecracker VMs](https://codesandbox.io/blog/how-we-clone-a-running-vm-in-2-seconds), allowing us to bring your entire development environment to the cloud regardless of the programming language or tooling you might be using. Unfortunately, as VMs live in the cloud, they require infrastructure and a network connection, resulting in a higher cost compared to our client-side sandboxes. To solve this problem, we built Nodebox, a runtime that runs entirely in the browser, eliminating the need for a network connection and infrastructure. Nodebox gives you the same user experience you have come to expect from Sandpack, which means a near-instant server-side JavaScript environment at the click of a button—built for experimentation, examples and documentation. ## The differences between a VM and Nodebox As mentioned in the previous section, we solved server-side sandboxes in CodeSandbox by using Firecracker VMs. In this section, we'll explain the advantages and disadvantages of each approach. ### Advantages of VMs over Nodebox - You get dedicated resources, with no resource limits enforced by the browser - You have an entire Unix OS available - You can run any language, database, command - You can use network sockets - You can run large and complex projects - A perfect 1:1 environment as compared to your local setup (at least, if you're using a Unix-based system) - No emulation, so Node.js would run exactly the same way as locally ### Advantages of Nodebox - No need for any infrastructure - No need for a network connection - Instant feedback to any change - Easy to get started - Easy and instant reset - simply refresh the page/iframe - Every page visitor gets their own Nodebox instance automatically ## What makes it different Nodebox is currently the only cross-browser Node.js runtime supporting all the latest browsers: - Chrome; - Firefox; - Safari \* > - Support for iOS Safari is in beta Nodebox does not emulate Node.js but is, instead, a Node.js-compatible runtime. This means that it implements as much of the Node.js API as possible while keeping a minimal performance imprint, using browser API where applicable and, in some cases, leaving out certain parts of Node.js due to browser [limitations](#Limitations) or complexity. Nodebox uses an internal dependency manager that is fine-tuned to deliver optimal initial load time by utilizing dependency caching via [Sandpack CDN](https://github.com/codesandbox/sandpack-cdn). That CDN is an open-source Rust package manager that runs in the cloud and can be self-hosted pretty easily as well. While there are alternatives to Nodebox, they are closer to mimicking a container-based environment, running commands step-by-step, or even the entire Linux distributive in your browser. That makes them slower and harder to use compared to Nodebox, which is optimized to run sandboxes fast and with as little friction as possible. ## Limitations Unfortunately, any type of runtime that does not have access to operating system-level APIs will come with certain limitations. For Nodebox, those are the following: - N-API modules - net#Sockets pointing to external IPs - Synchronous exec/spawn - async_hooks (planned for implementation) - Automatic process exiting - users now need to manually call `process.exit` before the process is exited (planned for implementation) As we implement every module manually one by one, it is possible that some will not behave correctly. If this happens, feel free to open an issue here on GitHub and we'll make sure to fix it. ## Documentation - [**Getting started**](#getting-started) - [API documentation](https://github.com/codesandbox/nodebox-runtime/blob/main/packages/nodebox/api.md) --- ## Getting started Nodebox is meant for usage in your client-side applications, granting them the capability of running actual Node.js code directly in the browser. Here are a couple of examples of when Nodebox can be used: - Building interactive examples for server-side code in your documentation; - Showcasing a UI component library in the actual framework it's built for; - Generally any evaluation of Node.js code and previewing it in the browser. In the context of this tutorial, we will be working on a documentation website that illustrates different examples of using a Next.js application. Bear in mind that our documentation itself can be written in any framework of our choosing. ### Install Nodebox can be installed from NPM just like any other dependency: ```sh npm install @codesandbox/nodebox ``` ### Setup Nodebox consists of two main parts: - A runtime environment evaluating the code; - A preview environment serving the result of the evaluation. Corresponding to these two parts, let's create two iframes in our application: ```html <!-- The "nodebox" iframe will mount the Nodebox runtime, allowing it to communicate with the rest of the application. --> <iframe id="nodebox-iframe"></iframe> <!-- The "preview" iframe will contain the result of running the Next.js example we will configure in a moment. --> <iframe id="preview-iframe"></iframe> ``` Although the runtime environment can be self-hosted, we will use the default one pointing to the deployed Nodebox instance on CodeSandbox servers. We do need, however, to specify an `iframe` reference in our application where Nodebox should render its preview. ```js import { Nodebox } from '@codesandbox/nodebox'; const runtime = new Nodebox({ // Provide a reference to the <iframe> element in the DOM // where Nodebox should render the preview. iframe: document.getElementById('nodebox-iframe'), }); // Establish a connection with the runtime environment. await runtime.connect(); ``` > Learn more about the [Nodebox API](https://github.com/codesandbox/nodebox-runtime/blob/main/packages/nodebox/api.md). You want to establish **a single Nodebox instance** across your entire application. Bear that in mind during the setup phase and consult your framework's documentation and best practices regarding the most efficient way of achieving this. Previews correspond to _commands_ executed in Nodebox, meaning that at this stage there will be no previews mounted at the given iframe because we haven't run any commands yet. Let's change that. ### Initialize file system Much like your own project, the project you create in Nodebox needs files to work with. It can be a single JavaScript file or the entire project, like Astro or Next.js. Let's describe a Next.js project that we need. ```js // Populate the in-memory file system of Nodebox // with a Next.js project files. await runtime.fs.init({ 'package.json': JSON.stringify({ name: 'nextjs-preview', dependencies: { '@next/swc-wasm-nodejs': '12.1.6', next: '12.1.6', react: '18.2.0', 'react-dom': '18.2.0', }, }), // On the index page, let's illustrate how server-side props // propagate to your page component in Next.js. 'pages/index.jsx': ` export default function Homepage({ name }) { return ( <div> <h1>Hello, {name}</h1> <p>The name "{name}" has been received from server-side props.</p> </div> ) } export function getServerSideProps() { return { props: { name: 'John' } } } `, }); ``` > You can reference standard Node.js modules, as well as external dependencies while writing your project files. Note that you **don't have to install** those dependencies as Nodebox will manage dependency installation, caching, and resolution automatically. What we did above was outline a file system state of an actual Next.js project for Nodebox to run. The last step remaining is to run Next.js. ### Run project To run the project, we will run the `npm dev` command using the Shell API provided by Nodebox. ```js // First, create a new shell instance. // You can use the same instance to spawn commands, // observe stdio, restart and kill the process. const shell = runtime.shell.create(); // Then, let's run the "dev" script that we've defined // in "package.json" during the previous step. const nextProcess = await shell.runCommand('npm', ['dev']); // Find the preview by the process and mount it // on the preview iframe on the page. const previewInfo = await runtime.preview.getByShellId(nextProcess.id); const previewIframe = document.getElementById('preview-iframe'); previewIframe.setAttribute('src', previewInfo.url); ``` > Note that you can treat `shell.runCommand` similar to `spawn` in Node.js. Learn more about the Shell API in the [documentation](https://github.com/codesandbox/nodebox-runtime/blob/main/packages/nodebox/api.md). Once this command runs, it will return a shell reference we can use to retrieve the preview URL. By mounting that preview URL on our preview iframe from the setup, we can see the Next.js project running: ![](https://github.com/codesandbox/nodebox-runtime/blob/main/packages/nodebox/nextjs-preview.png) That's it! 🎉 **Not a single server was spawned while running this Next.js application**. Everything was managed by Nodebox directly in your browser. 👉 Check out the [Sandbox for this tutorial](https://codesandbox.io/p/sandbox/nodebox-next-js-example-ji27x8).
Nodebox is a runtime for executing Node.js modules in the browser.
browser,nodejs,runtime,sandbox,javascript
2023-02-01T13:22:59Z
2023-11-29T19:49:26Z
null
6
7
14
20
35
681
null
NOASSERTION
TypeScript
iFargle/headscale-webui
main
<p align="center"> <a href="https://github.com/juanfont/headscale"> <img src="static/img/headscale3-dots.png" width="250"> </a> </p> <h2 align="center">Headscale-WebUI</h3> <p align="center"> A simple Headscale web UI for small-scale deployments. </p> <p align="center"> <a href="#Screenshots">Screenshots</a> | <a href="SETUP.md">Installation</a> | <a href="https://github.com/iFargle/headscale-webui/issues">Issues</a> </p> --- # Features 1. Enable/Disable routes and exit nodes * Manage failover routes as well 2. Add, move, rename, and remove machines 3. Add and remove users/namespaces 4. Add and expire PreAuth keys 5. Add and remove machine tags 6. View machine details * Hostname * User associated with the machine * IP addresses in the Tailnet * Last seen by the control server * Last update with the control server * Creation date * Expiration date (will also display a badge when nearing expiration) * PreAuth key associated with the machine * Enable / disable routes and exit nodes * Add and delete machine tags 7. Basic and OIDC Authentication * OIDC Authentication tested with Authelia and Keycloak 8. Change your color theme! See MaterializeCSS Documentation for Colors for examples. 9. Search your machines and users. * Machines have tags you can use to filter search: * `tag:tagname` Searches only for specific tags * `machine:machine-name` Searches only for specific machines * `user:user-name` Searches only for specific users --- # Installation * See [SETUP.md](SETUP.md) for installation and configuration instructions. --- # Screenshots: ![Overview](screenshots/overview.png) ![Routes](screenshots/routes.png) ![Machines](screenshots/machines.png) ![Users](screenshots/users.png) ![Settings](screenshots/settings.png) --- # Tech used: * Python - [Link](https://www.python.org/) * Poetry - [Link](https://python-poetry.org/) * MaterializeCSS - [Link](https://github.com/Dogfalo/materialize) * jQuery - [Link](https://jquery.com/) For Python libraries, see [pyproject.toml](pyproject.toml) If you use this project, please reach out! It keeps me motivated! Thank you!
A simple Headscale web UI for small-scale deployments.
flask,headscale,jquery,python,tailscale,webui,javascript,docker,docker-compose,docker-container
2023-02-09T00:46:29Z
2023-05-08T05:30:56Z
2023-05-08T03:42:53Z
11
41
1,093
33
53
601
null
NOASSERTION
Python
j4k0xb/webcrack
master
[![Test](https://github.com/j4k0xb/webcrack/actions/workflows/ci.yml/badge.svg)](https://github.com/j4k0xb/webcrack/actions/workflows/test.yml) [![npm](https://img.shields.io/npm/v/webcrack)](https://www.npmjs.com/package/webcrack) [![license](https://img.shields.io/github/license/j4k0xb/webcrack)](https://github.com/j4k0xb/webcrack/blob/master/LICENSE) [![Netlify Status](https://api.netlify.com/api/v1/badges/ba64bf80-7053-4ed8-a282-d3762742c0dd/deploy-status)](https://app.netlify.com/sites/webcrack/deploys) <p align="center"> <img src="https://user-images.githubusercontent.com/55899582/231488871-e83fb827-1b25-4ec9-a326-b14244677e87.png" width="200"> </p> <h1 align="center">webcrack</h1> webcrack is a tool for reverse engineering javascript. It can deobfuscate [obfuscator.io](https://github.com/javascript-obfuscator/javascript-obfuscator), unminify, transpile, and unpack [webpack](https://webpack.js.org/)/[browserify](https://browserify.org/), to resemble the original source code as much as possible. Try it in the [online playground](https://webcrack.netlify.app/) or view the [documentation](https://webcrack.netlify.app/docs). - 🚀 **Performance** - Various optimizations to make it fast - 🛡️ **Safety** - Considers variable references and scope - 🔬 **Auto-detection** - Finds code patterns without needing a config - ✍🏻 **Readability** - Removes obfuscator/bundler artifacts - ⌨️ **TypeScript** - All code is written in TypeScript - 🧪 **Tests** - To make sure nothing breaks ## Command Line Interface ```bash npm install -g webcrack ``` Examples: ```bash webcrack input.js webcrack input.js > output.js webcrack bundle.js -o output-dir ``` ## API ```bash npm install webcrack ``` Examples: ```js import fs from 'fs'; import { webcrack } from 'webcrack'; const input = fs.readFileSync('bundle.js', 'utf8'); const result = await webcrack(input); console.log(result.code); console.log(result.bundle); await result.save('output-dir'); ```
Deobfuscate obfuscator.io, unminify and unpack bundled javascript
ast,bundle,debundle,extract,reverse-engineering,unminify,unpack,webpack,deobfuscation,deobfuscator
2023-01-30T22:04:53Z
2024-05-20T12:05:09Z
2024-01-31T15:56:47Z
4
22
437
26
65
544
null
MIT
TypeScript
excalith/excalith-start-page
main
<div align="center"> <h1 align="center">Excalith Start Page</h1> <img src=".github/startpage.gif" /> This is an interactive start page for browsers, inspired from my terminal setup. [![Vercel Status](https://therealsujitk-vercel-badge.vercel.app/?app=excalith-start-page)](https://excalith-start-page.vercel.app) [![Demo Version (latest semver)](https://img.shields.io/github/package-json/v/excalith/excalith-start-page?label=preview)](https://github.com/excalith/excalith-start-page) [![GHCR Version (latest semver)](https://img.shields.io/github/v/tag/excalith/excalith-start-page?sort=semver&label=ghcr)](https://github.com/excalith/excalith-start-page/pkgs/container/excalith-start-page) [![Docker Version (latest semver)](https://img.shields.io/docker/v/excalith/start-page?sort=semver&label=docker)](https://hub.docker.com/r/excalith/start-page) </div> ## Demo You can explore the working version [here](https://excalith-start-page.vercel.app). To get inspired by community members' configurations, visit the [Showcase](https://github.com/excalith/excalith-start-page/discussions/categories/showcase) in discussions! > [!IMPORTANT] > This is a demo version and will be updated regularly, which might break your configurations. It is not recommended for daily browsing. Please refer to the [wiki page](https://github.com/excalith/excalith-start-page/wiki/Getting-Started) for more information. ## Features - Filter links by typing in the prompt - Quickly filter links by typing in the prompt. Hitting <kbd>Enter</kbd> will open all filtered links at once - If nothing filtered, the text in prompt will use the default search engine for searching your input - Launch websites directly from the prompt. Just type the URL (ie. `github.com`) - Search websites with custom commands. For example, type `s some weird bug` to search StackOverflow for `some weird bug` - Wallpaper support through URL with blur and fade effects - Terminal window opacity and translucency effects - Customizable Fetch UI for fetching browser and system data, including custom image support - Autosuggest and Autocomplete support just like `zsh` and `fish` - Cycle through filtered links back and forth - Multiple theme support (check all [available themes](./data/themes/)) - Built-in configuration editor to easily edit and save your configuration Please refer to [configuration](https://github.com/excalith/excalith-start-page/wiki/Configuration) page for more information. ### Built-In Commands - Show usage with `help` command (shows basic usage and your configured search shortcuts) - Show info with `fetch` command (time, date, system and browser data) - Update your configuration with `config` command - `config help` - Displays config command usage - `config import <url>` - Imports a configuration from URL - `config theme` - Lists all [available themes](./data/themes/) - `config theme <theme-name>` - Switches between themes and sets your local configuration - `config edit` - Edit local configuration within editor - `config reset` - Reset your configuration to default ### Key Bindings - Use <kbd>→</kbd> to auto-complete the suggestion - Search without auto-complete with <kbd>CTRL</kbd> + <kbd>ENTER</kbd> - Cycle through filtered links using <kbd>TAB</kbd> and <kbd>SHIFT</kbd> + <kbd>TAB</kbd> - Clear the prompt quickly with <kbd>CTRL</kbd> + <kbd>C</kbd> - Close windows with <kbd>ESC</kbd> ## Using There are multiple ways of using this app explained in details on [getting started](https://github.com/excalith/excalith-start-page/wiki/Getting-Started) wiki page. Here is a TLDR: ### Fork You can fork this repository and have direct control over the source code. This is the best way to customize the start page to your liking. Then you can create *Docker images*, *deploy on your server* or *serve it locally*. Check out the [Fork Wiki Page](https://github.com/excalith/excalith-start-page/wiki/Fork) for more information. ### Docker Image Using a Docker image is another convenient way to use the start page. You can either use the image from Docker Hub or Github Registry. Currently supports both **amd64** and **arm64** images. Check out the [Docker Wiki Page](https://github.com/excalith/excalith-start-page/wiki/Docker) for more information. ### Online Version You can use the Online Version (aka. preview version) as well. However, since this is the preview of the project with constant updates, it might break your configurations. I would recommend building your own fork instead. Check out the [Online Version Wiki Page](https://github.com/excalith/excalith-start-page/wiki/Online) for more information. ## Customization This project, at its heart, supports customization to better suit your desktop environment. There are three methods to personalize the project according to your preferences: You can either - **Method 1:** Configure your **fork** by editing [settings.json](./data/settings.json) file - **Method 2:** Use `config edit` command to edit on the fly, by built-in json editor - **Method 3:** Use `config import <url>` command to import your remote config file from your dotfiles repository Check out the [Configuration](https://github.com/excalith/excalith-start-page/wiki/Configuration) and [Themes](https://github.com/excalith/excalith-start-page/wiki/Themes) wiki pages for more information regarding themes and configuration options. ## How To Contribute Please feel free to contribute any way you can. Just keep in mind that you should pay attention to [contributing guideline](.github/CONTRIBUTING.md) before contributing. ## License The code is available under the [MIT license](LICENSE). Feel free to copy, modify, and distribute the code as you wish, but please keep the original license in the files. Attribution is appreciated and will definetely help improving this project.
Terminal-inspired, clean, feature-rich and customizable browser start page for geeks. Has built-in editor for customizing.
browser,next,react,start-page,terminal-like,javascript,tailwind,docker,browser-start-page,customizable
2023-02-01T12:19:59Z
2024-03-24T11:25:27Z
2024-03-24T11:36:40Z
4
31
102
5
146
517
null
MIT
JavaScript
MrEmpy/mantra
main
<h1 align="center">「🔑」 About Mantra</h1> <p align="center"><img src="assets/banner.png"></p> The tool in question was created in Go and its main objective is to search for API keys in JavaScript files and HTML pages. It works by checking the source code of web pages and script files for strings that are identical or similar to API keys. These keys are often used for authentication to online services such as third-party APIs and are confidential and should not be shared publicly. By using this tool, developers can quickly identify if their API keys are leaking and take steps to fix the problem before they are compromised. Furthermore, the tool can be useful for security officers, who can use it to verify that applications and websites that use external APIs are adequately protecting their keys. In summary, this tool is an efficient and accurate solution to help secure your API keys and prevent sensitive information leaks. ## Help ![](assets/help.png) ## Usage ![](assets/usage1.png) ## Install From go: ``` go install github.com/MrEmpy/mantra@latest ``` From source code: ``` git clone https://github.com/MrEmpy/mantra cd mantra make ./build/mantra-amd64-linux -h ``` ## Buy me a coffee? <a href="https://pixgg.com/MrEmpy" target="_blank"> <img src="https://pixgg.com/img/logo-darkmode.046d3b61.svg" height="30" widght="30"> </a> </br> </br> <a href="https://www.buymeacoffee.com/mrempy" target="_blank"> <img src="https://play-lh.googleusercontent.com/aMb_Qiolzkq8OxtQZ3Af2j8Zsp-ZZcNetR9O4xSjxH94gMA5c5gpRVbpg-3f_0L7vlo" height="50" widght="50"> </a>
「🔑」A tool used to hunt down API key leaks in JS files and pages
api,bugbounty,files,hacking,javascript,js,key,leak,leaked-secrets,pentest
2023-01-31T01:47:53Z
2024-04-15T14:53:05Z
2024-04-01T17:55:03Z
2
6
32
0
48
495
null
GPL-3.0
Go
mostafizurhimself/admintoolkit-html
main
<div align="center"> <img src="./src/images/logo.png" height="50px"> <p align="center"> TailwindCSS Based Admin Dashboard Template </p> </div> ## 📌 Introduction **AdminToolkit -** is a modern admin dashboard template that comes with a variety of useful features and functionalities. It is built using TailwindCSS, a popular CSS framework that provides a simple and intuitive approach to building responsive UIs. The template includes over 50 pre-built pages, each designed with a focus on usability and user experience. These pages cover a wide range of use cases, including dashboards, analytics, products management, user management, invoice management and more. In addition to its pre-built pages, **AdminToolkit** comes with a wide range of UI components and utility classes. These include icons, buttons, tables, forms, and charts, among others. These components and utility classes are carefully designed to provide a seamless user experience, while also being highly customizable. This allows developers to create unique designs that match their brand identity and project requirements. Overall, **AdminToolkit** is an excellent choice for developers who are looking for a developer-friendly and highly customizable admin dashboard template. It’s intuitive design, wide range of pre-built pages, useful UI components and utility classes make it the best choice for creating modern and responsive admin dashboards. ## 📌 Features - Based on Tailwindcss 3.x+ - Light & Dark theme support - Auto-detect theme from user device preference - Pre-built UI components - Pre-built apps layout - 50+ Pages - Responsive layout - Easily Customizable - Developer friendly - Organized codebase ## 📌 Installation **1. Clone the repository** ```bash git clone git@github.com:mostafizurhimself/admintoolkit-html.git ``` **2. Install dependencies** ```bash yarn install ``` **3. Start development server** ```bash yarn dev ``` **4. Build for production** ```bash yarn build ``` **5. Preview production build** ```bash yarn start ``` ## 📌 Contribution If you're interested in contributing to Admin Toolkit, Please read our [contributing docs](CONTRIBUTING.md) before submitting a pull request. ## 📌 License [MIT](./LICENSE) ## 📌 Todo - [ ] RTL support - [ ] Language Support - [ ] React version - [ ] Vue version - [ ] Angular version - [ ] Laravel version <a href="https://www.buymeacoffee.com/mostafizur" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-violet.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>
Admin template based on TailwindCSS and Vanilla JavaScript
tailwindcss,vite,javascript,admin-dashboard,admin-panel,admin-template
2023-01-27T13:31:54Z
2024-03-09T06:11:08Z
2024-03-09T06:11:08Z
7
113
880
0
78
306
null
MIT
HTML
cs-au-dk/jelly
master
# Jelly [![MIT License](https://img.shields.io/github/license/cs-au-dk/jelly)](LICENSE) [![npm version](https://img.shields.io/npm/v/@cs-au-dk/jelly)](https://www.npmjs.com/package/@cs-au-dk/jelly) #### Copyright © 2023-2024 Anders Møller & Oskar Haarklou Veileborg Jelly is a static analyzer for performing * *call graphs construction*, * *library usage pattern matching*, and * *vulnerability exposure analysis* for JavaScript (and TypeScript) programs that use the Node.js platform. The analyzer design is based on ideas from JAM [1], TAPIR [2] and ACG [3] with support for approximate interpretation [4]. Its core is a flow-insensitive control-flow and points-to analysis, together with access paths for tracking library usage. It models the main parts of the ECMAScript language and standard library (intentionally not fully soundly!), and not (yet) the Node.js standard library. [1] Benjamin Barslev Nielsen, Martin Toldam Torp, Anders Møller: [Modular call graph construction for security scanning of Node.js applications](https://dl.acm.org/doi/10.1145/3460319.3464836). Proc. ISSTA 2021: 29-41 [2] Anders Møller, Benjamin Barslev Nielsen, Martin Toldam Torp: [Detecting locations in JavaScript programs affected by breaking library changes](https://dl.acm.org/doi/10.1145/3428255). Proc. ACM Program. Lang. 4(OOPSLA): 187:1-187:25 (2020) [3] Asger Feldthaus, Max Schäfer, Manu Sridharan, Julian Dolby, Frank Tip: [Efficient construction of approximate call graphs for JavaScript IDE services](https://ieeexplore.ieee.org/document/6606621/). Proc. ICSE 2013: 752-761 [4] Mathias Rud Laursen, Wenyuan Xu, Anders Møller: [Reducing Static Analysis Unsoundness with Approximate Interpretation](https://dl.acm.org/doi/10.1145/3656424). Proc. ACM Program. Lang. 8(PLDI): 194:1-194:24 (2024) ## Installing ```bash npm install -g @cs-au-dk/jelly ``` Other options are described below at [How to build](#how-to-build). ## Usage See the full usage: ```bash jelly --help ``` When running the Jelly static analyzer, one or more entry files are given as input. Directories are expanded (using heuristics to skip certain files and directories, see [files.ts](src/misc/files.ts)). All files reachable from entry files are analyzed, except if option `--ignore-dependencies` is used, in which case only entry files are analyzed, and only files within the base directory (auto-detected or specified using option `--basedir` or `-b`) are included. As an example, generate a call graph for the `winston` package and all its dependencies, both in JSON format and for HTML visualization: ```bash jelly -j cg.json -m cg.html node_modules/winston ``` Viewing `cg.html` in a browser: ![call graph visualization](misc/winston-cg.png) To set the heap limit, prefix commands by, for example: ```bash NODE_OPTIONS=--max-old-space-size=8192 ``` Note that analyzing with all dependencies (i.e., not using `--ignore-dependencies`) can take a long time. The options `--max-rounds` or `--timeout` can be used to terminate the analysis early to provide partial (unsound) results. Specific packages can also be included or excluded using `--include-packages` or `--exclude-packages`. ## How to build Install dependencies: ```bash npm install ``` Compile TypeScript code: ```bash npm run build ``` After compilation, Jelly can be run like this: ```bash node lib/main.js ``` Build binary executables (optional), placed in `dist/`: ```bash sudo npm install -g pkg npm run pkg ``` Note that the binary executables do not support dynamic call graph construction. ## Docker Build Docker image (including support for dynamic call graph construction): ```bash npm run build-docker ``` Run Jelly in Docker with the directory specified as first argument as current working directory: ```bash ./bin/jelly-docker . tests/helloworld/app.js --callgraph-html cg.html ``` ## Server-mode Jelly can be run in server-mode as an alternative to the command-line interface: ```bash jelly-server ``` or ```bash node lib/server.js ``` See also the instructions above for how to build binary executables. Requests to the server are sent on stdin using the JSON format described in `src/typings/ipc.ts`. Responses are returned (asynchronously) on stdout with the two-line header (including the empty line) ``` Content-Length: <bytes> ``` with `\r\n` linebreaks. ## Approximate interpretation To enable static analysis with approximate interpretation (see reference [4] above), use option `--approx`: ```bash jelly --approx tests/helloworld/app.js ``` (This example assumes you have first installed test dependencies by running `npm run tests-install`.) Alternatively, you can run approximate interpretation and static analysis separately using options `--approx-only` and `--approx-load`: ```bash jelly --approx-only hints.json tests/helloworld/app.js jelly --approx-load hints.json tests/helloworld/app.js ``` ## Dynamic call graph construction Jelly supports dynamic call graph construction via [NodeProf](https://github.com/Haiyang-Sun/nodeprof.js/), which can be used for measuring recall (or unsoundness) of the static analysis. Install NodeProf (see also the information about Docker above): ```bash sudo dnf install g++ libstdc++-static mkdir -p ~/tools; cd ~/tools git clone --depth 1 --branch 6.0.4 https://github.com/graalvm/mx.git export PATH=$PATH:$HOME/tools/mx mx -y fetch-jdk --java-distribution labsjdk-ce-17 export JAVA_HOME=$HOME/.mx/jdks/labsjdk-ce-17-jvmci-22.2-b01 git clone --depth 1 https://github.com/Haiyang-Sun/nodeprof.js.git cd nodeprof.js mx sforceimports mx --dy /compiler build ``` As an example, run `tests/micro/classes.js` or `tests/helloworld/app.js` with instrumentation for call graph construction: ```bash export GRAAL_HOME=$HOME/tools/graal/sdk/latest_graalvm_home jelly tests/micro/classes.js -d cg.json jelly tests/helloworld/app.js -d cg.json ``` Extra arguments to the JavaScript program can be added after `--`. It is also possible to run `npm test` with instrumentation: ```bash jelly --npm-test tests/mochatest -d cg.json ``` Another approach is to add `$JELLY_HOME/lib/bin/node` to `PATH` and set `JELLY_OUT`, for example to run Mocha directly: ```bash cd tests/mochatest PATH=$JELLY_HOME/bin:$PATH JELLY_OUT=cg.json node_modules/.bin/mocha ``` where `JELLY_HOME` is the home directory of Jelly. This results in a file `cg.json-<PID>` for each instrumented file that is executed. Call graphs (generated either statically or dynamically) can be compared for precision and recall: ```bash jelly --compare-callgraphs cg1.json cg2.json ``` ## For developers Compile TypeScript code in watch mode: ```bash npm run build-watch ``` Install as scripts (`jelly` and `jelly-server`) for development: ```bash sudo npm link ``` Install dependencies for tests: ```bash npm run tests-install ``` Run all tests: ```bash npm test ``` Run individual tests (specified by regex), for example: ```bash npm test -- -t tests/helloworld ``` To enable source map transformation of stack traces, prefix commands by: ```bash NODE_OPTIONS=--enable-source-maps ``` ### Differential testing Differential testing can be used to test if updated code results in lower recall than the previous version by comparing the dataflow graph and call graphs of the two versions. Run the following command to test the testing framework: ```bash TAG=<tag> npm run differential -- -t tiny ``` where `<tag>` is the git tag of the previous version you want to compare to. Then run the following commands to start full test: ```bash TAG=<tag> npm run differential ``` During the test, the old version of Jelly will be installed in `tests/node_modules/jelly-previous` and test packages will be installed in `tmp/packages`.
JavaScript/TypeScript static analyzer for call graph construction, library usage pattern matching, and vulnerability exposure analysis
call-graph-analysis,javascript,typescript,vulnerability-detection,library-usage
2023-01-27T11:49:49Z
2024-05-04T07:51:53Z
2024-04-05T06:38:58Z
5
10
286
2
18
298
null
MIT
TypeScript
squaresapp/rawjs
master
null
Better document.createElement(). So much better, that you may no longer need React.
frontend,javascript,library,typescript,ui,vanilla-javascript
2023-02-02T14:18:42Z
2024-03-23T19:16:56Z
2024-03-23T19:15:39Z
3
3
150
3
5
276
null
MIT
TypeScript
Joao208/alexa-chatgpt
main
# Alexa Skill with ChatGPT This repository contains an example of how to use OpenAI's ChatGPT language model to create an Alexa Skill. ## How it works This code connects to the OpenAI ChatGPT API and sends Alexa's questions to the model, which processes them and returns the answers. Then, these responses are transmitted back to Alexa and presented to the user. ## Configuration You will need to obtain an API key from OpenAI to use the ChatGPT model. More information on how to do this can be found in the OpenAI API documentation. Once you have your API key, simply insert it into the index.js file in the designated location. ## Running the example This example was developed using Amazon's ASK CLI. To run it, you will need to install the ASK CLI and configure your Amazon Developer account. Once configured, simply run the following commands in the terminal: ``` ask init ask deploy ``` This will deploy your Skill to your Amazon Developer account and make it available for use with Alexa. ## Final considerations This is just a basic example of how to use ChatGPT with Alexa. You can expand this implementation to create more complex and personalized skills. Enjoy!
This is an Alexa bot developed with the help of OpenAI's ChatGPT language model. With it, you can converse naturally with Alexa, answering questions and performing tasks based on its language training.
chat,alexa,axios,chat-gpt,javascript
2023-02-05T03:12:25Z
2023-04-25T19:36:56Z
null
2
1
10
4
49
186
null
null
JavaScript
pionxzh/wakaru
main
# Wakaru [![deploy][DeployBadge]][Playground] [![codecov][CodecovBadge]][CodecovRepo] [![Telegram-group](https://img.shields.io/badge/Telegram-group-blue)](https://t.me/wakarujs) Wakaru is the Javascript decompiler for modern frontend. It brings back the original code from a bundled and transpiled source. <!-- Try it out at the [Playground][Playground]. --> - 🔪📦 Unpacks bundled JavaScript into separated modules from [webpack][webpack] and [browserify][browserify]. - ⛏️📜 Unminifies transpiled code from [Terser][Terser], [Babel][Babel], [SWC][SWC], and [TypeScript][TypeScript]. - ✨📚 Detects and restores downgraded syntaxes (even with helpers!). See the [list](./packages//unminify/README.md#syntax-upgrade). - 🧪🛡️ All cases are protected by tests. All code is written in TypeScript. ## Demo See [live demo][Demo] for detailed examples. ## Features ### Unminify Converts transpiled code back to its readable form and restores downgraded syntaxes. Supports the following transpilers: - Terser - Babel - SWC - TypeScript [Read the documentation](./packages/unminify/README.md) for more information. ### Unpacker Converts bundled JavaScript into separated modules Supports the following bundlers: - webpack - browserify ## Try it out Test the tool and see it in action at [Playground][Playground]. ## 🖥 Using the CLI ### Interactive mode By default, the CLI will run in interactive mode and guide you through the process.\ You can also pass [options](#options) to skip some steps in the interactive mode. ```sh npx @wakaru/cli # or pnpm dlx @wakaru/cli ``` ### Options Run `npx @wakaru/cli --help` to see the full list of options. | Option | Default | Description | | --------------- | ------- | --------------------------------------- | | `--output` | `"out"` | Output directory | | `--force` | `false` | Force overwrite output directory | | `--concurrency` | `1` | Specific the number of concurrent tasks | | `--perf` | `false` | Show performance metrics | | `--perf-output` | | Performance metrics output directory | `--concurrency` can be used to speed up the process. But please aware that the process might OOM if the input file is too large. ### Non-interactive mode If you want to run the CLI in non-interactive mode, you can specify the feature by passing the feature name as the first argument. `unpacker` and `unminify` will run only the corresponding feature.\ `all` will run both `unpacker` and `unminify` sequentially. ``` npx @wakaru/cli all <files...> [options] npx @wakaru/cli unpacker <files...> [options] npx @wakaru/cli unminify <files...> [options] ``` These options are **only** available in `all` mode. | Option | Default | Description | | ------------------- | ---------------- | ---------------------------------- | | `--unpacker-output` | `"out/unpack"` | Override unpacker output directory | | `--unminify-output` | `"out/unminify"` | Override unminify output directory | When running a single feature (either `unpacker` or `unminify`), the CLI will only uses the path specified in the `--output` option. This means that, unlike in the `all` mode where subdirectories (`out/unpack` and `out/unminify`) are automatically created within the output directory, in single feature mode, the output files are placed directly in the specified `--output` directory without any additional subdirectories. ## 📦 Using the API ```sh npm install @wakaru/unpacker @wakaru/unminify # or pnpm install @wakaru/unpacker @wakaru/unminify # or yarn add @wakaru/unpacker @wakaru/unminify ``` <details> <summary>Click to expand</summary> ### `@wakaru/unpacker` ```ts import { unpack } from '@wakaru/unpacker'; const { modules, moduleIdMapping } = await unpack(sourceCode); for (const mod of modules) { const filename = moduleIdMapping[mod.id] ?? `module-${mod.id}.js`; fs.writeFileSync(outputPath, mod.code, 'utf-8'); } ``` ### `@wakaru/unminify` ```ts import { runDefaultTransformationRules, runTransformationRules } from '@wakaru/unminify'; const file = { source: '...', // source code path: '...', // path to the file, used for advanced usecases. Can be empty. } // This function will apply all rules that are enabled by default. const { code } = await runDefaultTransformationRules(file); // You can also specify the rules to apply. Order matters. const rules = [ 'un-esm', ... ] const { code } = await runTransformationRules(file, rules); ``` You can check all the rules at [/unminify/src/transformations/index.ts](https://github.com/pionxzh/wakaru/blob/main/packages/unminify/src/transformations/index.ts). Please aware that this project is still in early development. The API might change in the future. And the bundle size of these packages are huge. It might be reduced in the future. Use with caution on the browser (Yes, like the playground, it can run on the browser ✨). </details> ## Legal Disclaimer Usage of `wakaru` for attacking targets without prior mutual consent is illegal. It is the end user's responsibility to obey all applicable local, state and federal laws. Developers assume no liability and are not responsible for any misuse or damage caused by this program. [TypeScript]: https://www.typescriptlang.org/ [browserify]: http://browserify.org/ [webpack]: https://webpack.js.org/ [Terser]: https://terser.org/ [Babel]: https://babeljs.io/ [SWC]: https://swc.rs/ [Playground]: https://wakaru.vercel.app/ [CodecovBadge]: https://img.shields.io/codecov/c/github/pionxzh/wakaru [CodecovRepo]: https://codecov.io/gh/pionxzh/wakaru [Demo]: https://wakaru.vercel.app/#eNq9WG1z00YQ/iuHPnTswXHkl/gllLZAodACyYBbBuIMI0sn+4IsiZPkOGTy3/vs6WSfZTuJwa0+JNrn9vZ29/ZNvrbcyOPWsTW0soSzJJXCTYfWo2E4cyST7DGT/GsmJK90251mVeORgXd6R23Ch+HhIfud+04WpCx2pDPlKZfJMPSz0E1FFLKLSpVdD0OGh4Q4EOLIcTblYZrUAx6O0wn7hdnsp5+W+Jl9zh48fsyy0OO+CLnHfl1dPGZD61XoR0rnQvRos+jGyuYGbV7I1bthw4BP48BJOQsEDHCCfMEJuEwrQ+tsaLGH0P0hzj1nb3iSOGPOfBlNAQAdkS9utDve8RBuYG40jaMQh7KRk8AE+CKdcOaJBAddvQVL7lYPai+8VeELb0HSyeiCuynzOG4oc9NMinC8tDfFRl53JyLwJA9rLMzpwEkSkl5jrgJmIhGjAKSvSNJNXZw+44mUztW2I2Jsqdg1JuuIk/cp/FOFN4ZWtcYmeimqf6pW4hpTYVLsG2NxgouqsSv11jhfelq7Z87SiCU8/UD//SgIokvlHyxCBXgvnMF38MnqBZe1caHKzFRlVFLlEoszpcpcvW1QRaTsUiBW3nGfJZnvi/ly+zfzTDBUK2EWBHnoaynvY8QMTPma8dDljM9jiQBZaA6OF2LOROghcXCbrhPo6JIc/sadL+Q/931wwMVqmZ5lYCzionhIbiBiFWeOFAmYHrKnURRwJ8zdJ5dKFA+ZxGHSA5shv1ykxtCCm7lEGFNSYfOMq6xaO+xZBAtIl4RuLIjGApasWVs8LiX0g0v6O688sJcOM9WPJOREMcm7RBgj+UCtsvngqTxigv3MGvajKhmWwMQ6zq+Idalk32eK79JRJzFpDn3diSPCRYwXj/BxC5/JMcg/qjx0yaQ7MCJnkfDyGpVzfeZ1JxRTh4TesQGsiDIkoLd2g4XClLjIhIGY8ihLK7fcuWHR5oJVfq5UutbhNdeB5Bqu+ADpWwCoCrh4A9jMceBAIYqLapFZ5cdF4MjCgHAT102NNXhr/caMRLiH4fc4p4ShKi9VWL6fuTV2eZ7TVY3Luis5XPo84NQs4DpPzIZWjV3jXF1VKUmWDkXVXfXfGOVIcv8YdQMGp8pf0GBTV0DQP0uSgXTCRKXVMPTqRnNATAytVQZKS6tmTZ04RgRbx9dWs40mPo28LOAHzXb9IsFyv7HE+o0ca/QMEESOthrGdhA52m7ZSxREjnZbhgQQBdo00abWwO4aKthdrYNtG8xEabzZ6hg4KI13e0cGDqqwpWWoTVSON+22cSxRGm/0+gYOSltvHxk4URpvH5luAaXxfsuQT5T211GjZzgMlMY7rZaBg8rxI7tr4ERpvHVkOJ4ojfc7hj5EFXjX5AeV451ux7gqojTeaxv8RBW4aS9R+m5t029EaRwjoYGD0ninY9hFlMa7bVMOKB0lnb5x70RpvGcbehKl8b7pH6IIv0E+8NQpkuHaEsgvmVrHZ9dWehXTkItZj8ZTiKAMBCDxmkSZdEF0m/32zXnNQh9T2zAah2AZgeWvE7zM6ITUGSe0NIJY8M7o3w1wSjXjxBUxn9RBxmYJDuu3kTPiwaHMMNpM+eGEBzHa9GGkBr0PGEJQ105lBDAVPLHUKSp5dzYMebdqFykUmQpFtyiUF0I06BP/FbWXNJIv1RJOOGBbNmVhksV0HPfUJjS9QaTmS+zassehZW34SzR2uumtByjm1+LLQqzyjypju188AnfdQbHpoOB/dBA0yW45bg9uUnV9a7QOVHTUrIu/tZ9iSk5huINkqC7wH7g6l42ysrNsqlfrsst6q460l0zdw0XkjXAv2pCHIl+LVX1098tBQS458BQs+LPqwrwd76G+vgCHA463G+4p7+07H0LNez0IPpWE5wPCHiwYkIMoWUbUCAVevnxQRpXOU4PHHs57o09BgVip4Kr4qSlmHylJRk3K0tUstCVUS6xqPNpZEQqru68un7HupUc+du2sB81Vd+uRz267G4mMv7tI5QPgHirgxYZgzKfI74uT2nZe3+RtNW5jjU1vw4/rDnm+pjNNuNsKJYaxlUJJO/LZdw8pd0ojsQuWAYY9DAI16x/6GPHw8hEFWdk9+lPn5cUfeKFGoJpnhpf5M13kvtH2cs7mk/i9ojkfzncPuF7jB4a/JBAu95aj2+39jZrhnZ1Q/UaxHHdei6kg1bfyh1FYTEjv8NPk9w5Vaq5Q3zHbosi/3DSKqE+cvXRoPk956OlJPv9EutfF519Ne4jk9x91KA5oxKNLivP2VZqQ1NfYj/eRklT1Lbd7Me71W7eVEuq9Kxbfwntq8GIEXnVOwX1sPQUbfn6e8idpNAX9quwf9fW5p/HUXRF+c/MvVs7HqQ== [DeployBadge]: https://therealsujitk-vercel-badge.vercel.app/?app=wakaru ## License [MIT](./LICENSE)
🔪📦 Javascript decompiler for modern frontend
ast,babel,debundle,decompiler,javascript,reverse-engineering,swc,unminify,unpack,webpack
2023-01-28T03:12:28Z
2024-05-09T10:10:18Z
2024-04-23T19:33:28Z
5
59
510
36
9
185
null
MIT
TypeScript
oslabs-beta/Zukeeper
main
# Zukeeper Zukeeper is a set of devtools for Zustand, in Zustand, featuring action and state logging, diffing, state hierarchy visualization, and time travel debugging. It's meant for the Zustand community, so it's fully open source and in active development ([flag issues](https://github.com/oslabs-beta/Zukeeper/issues), send us PRs!) ## How do I use it? Zukeeper was designed with simplicity in mind, and the setup reflects that. Here's how you can start: Install the [Zukeeper chrome extension](https://chrome.google.com/webstore/detail/zukeeper-zustand-devtools/copnnlbbmgdflldkbnemmccblmgcnlmo?hl=en) npm install zukeeper ```javascript npm i zukeeper ``` Import zukeeper into your store creation file Pass zukeeper as middleware to create( ) Assign your store, as you named it, to window.store ![An image showing how to implement Zukeeper when creating a Zustand store](./README%20assets/zukeeperSetup.png) That's it! Once your extension is installed and your store is ready, you're good to go. Zukeeper lives in the Chrome devtool panel, just as you'd expect. Open them up, and begin using the tools! We look forward to expanding to additional browsers in upcoming releases. --- ## What can it do? Zukeeper's primary features are: Action and state tracking: ![action and state tracking in Zukeeper](./README%20assets/stateActionTracking.gif) Diffing: ![diffing in Zukeeper](./README%20assets/diffing.gif) State hierarchy visualization: ![state hierarchy in Zukeeper](./README%20assets/treeVis.gif) Time travel debugging: ![time travel debugging in Zukeeper](./README%20assets/timeTravel.gif) and of course… Dark mode: ![Zukeeper in dark mode](./README%20assets/darkMode.png) --- ## How can I help? Use Zukeeper! Hunt bugs, flag issues, and send us PRs! We're excited to bring Zukeeper to the community, and we hope the community will be excited to improve. Here is the repo - we look forward to your contributions!
Native Developer Tool for Zustand
chrome-extension,devtools,javascript,jest,react,reactjs,sass,scss,typescript,zustand
2023-02-03T19:45:44Z
2023-06-08T17:41:49Z
null
65
42
126
13
4
128
null
MIT
TypeScript
4xmen/x-mega-menu
main
<h1 align="center"> <br> <a href="https://github.com/4xmen/x-mega-menu"> <img src="example/img/openlogo-nd.svg" alt="X-MEGA_MENU" width="150"> </a> <br> <a href="https://github.com/4xmen/x-mega-menu">X Mega Menu</a> <br> <hr> </h1> # X-Mega-Menu x mega menu is easy usable multi level responsive with vanillaJS very fast and without any dependencies (ltr and rtl support). ## How use it? With package manager: ```` npm i x-mega-menu ```` or ```` yarn add x-mega-menu ```` or you can use CDN package: CSS ⬇️ ```` <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/x-mega-menu@1.4.1/dist/x-mega-menu.min.css"> ```` JavaScript ⬇️ ```` <script src="https://cdn.jsdelivr.net/npm/x-mega-menu@1.4.1/dist/x-mega-menu.min.js"></script> ```` add assets: ```html <link rel="stylesheet" href="x-mega-menu/dist/x-mega-menu.min.css"> <script src="x-mega-menu/dist/x-mega-menu.min.js"></script> ``` HTML: ```html <nav> <ul id="mega-menu"> <li> <a href="#"> <img src="https://assets.ubuntu.com/v1/ff6a9a38-ubuntu-logo-2022.svg" alt=""> </a> </li> <li> <a href="#"> menu item 1 </a> <ul> <li> <h3> sub item 1 </h3> <ul> <li><a href="#">sub sub item 01</a></li> <li><a href="#">sub sub item 02</a></li> <li><a href="#">sub sub item 03</a></li> <li><a href="#">sub sub item 04</a></li> <li><a href="#">sub sub item 05</a></li> </ul> </li> <li> <h3> sub item 2 </h3> <ul> <li><a href="#">sub sub item 01</a></li> <li><a href="#">sub sub item 02</a></li> <li> <a href="#">sub sub item 03 has</a> <ul> <li><a href="#">sub sub sub item 001</a></li> <li><a href="#">sub sub sub item 002</a></li> <li><a href="#">sub sub sub item 003</a></li> <li> <a href="#"> sub sub sub item 004 has sub </a> <ul> <li><a href="#">sub sub sub item 001</a></li> <li><a href="#">sub sub sub item 002</a></li> <li><a href="#">sub sub sub item 003</a></li> <li><a href="#">sub sub sub item 004</a></li> <li><a href="#">sub sub sub item 005</a></li> </ul> </li> <li> <a href="#">sub sub sub item 005 has too</a> <ul> <li><a href="#">sub sub sub item 001</a></li> <li><a href="#">sub sub sub item 002</a></li> <li><a href="#">sub sub sub item 003</a></li> <li><a href="#">sub sub sub item 004</a></li> <li><a href="#">sub sub sub item 005</a></li> </ul> </li> </ul> </li> <li><a href="#">sub sub item 04</a></li> <li><a href="#">sub sub item 05</a></li> </ul> </li> <li> <h3> sub item 3 </h3> <img src="https://assets.ubuntu.com/v1/ff6a9a38-ubuntu-logo-2022.svg" alt=""> </li> <li class="x-highlight"> <h3> This highlight section </h3> <br> <p> Lorem ipsum dolor sit amet, consectetur adipisicing elit. Animi autem doloremque ducimus enim est et facilis iusto laboriosam magni molestiae molestias nesciunt obcaecati optio possimus quam, quidem quos repudiandae sunt. </p> </li> </ul> </li> <li> menu item 2 <ul> <li> <h3> sub item 1 </h3> <ul> <li><a href="#">sub sub item 01</a></li> <li><a href="#">sub sub item 02</a></li> <li><a href="#">sub sub item 03</a></li> <li><a href="#">sub sub item 04</a></li> <li><a href="#">sub sub item 05</a></li> </ul> </li> <li> <h3> sub item 3 </h3> <img src="https://assets.ubuntu.com/v1/ff6a9a38-ubuntu-logo-2022.svg" alt=""> </li> <li> <h3> sub item 1 </h3> <ul> <li><a href="#">sub sub item 01</a></li> <li><a href="#">sub sub item 02</a></li> <li><a href="#">sub sub item 03</a></li> <li><a href="#">sub sub item 04</a></li> <li><a href="#">sub sub item 05</a></li> </ul> </li> <li class="x-highlight"> <h3> This highlight section </h3> <br> <p> Lorem ipsum dolor sit amet, consectetur adipisicing elit. Animi autem doloremque ducimus enim est et facilis iusto laboriosam magni molestiae molestias nesciunt obcaecati optio possimus quam, quidem quos repudiandae sunt. </p> </li> </ul> </li> <li> <a href="#"> menu item 3 </a> </li> <li> <a href="#"> menu item 4 </a> </li> <li> <a href="#"> menu item 3 </a> </li> <li> menu item 4 </li> <li class="x-always-show x-small"> 🔍 </li> </ul> </nav> ``` javascript use: ```javascript xMegaMenu('#mega-menu', { responseWidth: 1124, isRtl: true, mainTitle: '🖤 xStack menu 🖤', blurEffect: true, disableLinks: true, fixedTop: true, onCloseSideMenu: function () { console.log('closed'); }, onOpenSideMenu: function () { console.log('opened'); } }); ``` # webpack or vite (`vuejs` or `reactjs`) usage 1. import css or scss ```scss @import "~x-mega-menu/src/x-mega-menu"; ``` 2. import js and use it ```javascript import xMegaMenu from 'x-mega-menu/dist/x-mega-menu'; xMegaMenu('#mega-menu', { // options }); ``` # Screenshots <div align="center"> <h2>Mega Menu Style</h2> <img src="example/img/mega-menu.png" width="600px"> </div> <div align="center"> <h2>Blue Theme</h2> <img src="example/img/screen-sidemenu-blue.png" width="450px"> </div> <div align="center"> <h2>Red Theme</h2> <img src="example/img/screen-sidemenu-red.png" width="450px"> </div> <div align="center"> <h2>Dark Theme</h2> <img src="example/img/screen-sidemenu-dark.png" width="450px"> </div> ## 🔗 Links https://www.npmjs.com/package/x-tree-select <br> http://4xmen.ir/ <br> https://xstack.ir ## DEMO (example) - You can watch /example of project. - [online demo](https://demos.4xmen.ir/x-mega-menu/example/) - [online rtl demo](https://demos.4xmen.ir/x-mega-menu/example/index-rtl.html) ## option and events | name | default | action | | ------------ | ------------ | ------------ | | responseWidth | `1024` | active mobile mode (side menu) | | barsIcon | - | any html element use for toggle bar | | mainTitle | `Navbar menu` | change main menu title | | isRtl | `false` | change direction to rtl | | blurEffect | `false` | blur effect when menu active | | resetMenu | `true` | reset side menu when close | | disableLinks | `true` | disable links when has sub menu click event otherwise on mouse enter show sub level | ###events <div align="center"> | name | action | | ------------ | ------------ | | onCloseSideMenu | Trigger when side menu open | | onOpenSideMenu | Trigger when side menu close | </div> ## Theme * Dark * Red * Blue * gray * customizable theme as you want ## Report Some Bugs Find a Bug? Please, [create an issue](https://github.com/4xmen/x-mega-menu/issues) and we'll fix it together for a better template. ## Contribution Contribution are always welcome and recommended! Here is how: - Fork the repository ([here is the guide](https://help.github.com/articles/fork-a-repo/)). - Clone to your machine git clone https://github.com/YOUR_USERNAME/Anubias-Desktop.git - Make your changes - Create a pull request ## Developing project Dependencies are `node-sass` and `minify` To render css: ```shell npm run scss ``` To build: ```shell npm run build ``` ## Badges <div align="center"> [![X-Mega-Menu](https://img.shields.io/badge/Mega-Menu-red.svg)](https://github.com/4xmen/x-mega-menu) [![GitHub](https://img.shields.io/badge/Github-4xmen-blue.svg)](https://GitHub.com/4xmen) [![Xstack](https://img.shields.io/badge/Xstack-Team-red.svg)](https://xstack.ir) [![4xmen](https://img.shields.io/badge/4xmen-Team-black.svg)](https://4xmen.ir) [![Devefun](https://img.shields.io/badge/Devefun-Community-blue.svg)](https://Telegram.me/Devefun) </div> ## License [![GPLv3 License](https://img.shields.io/badge/License-GPL%20v3-yellow.svg)](https://opensource.org/licenses/GNU) [GPL](https://www.gnu.org/licenses/gpl-3.0.en.html) ## Support Star Repo If Like It ... <div align="center"> Developed With Love ! ❤️</div>
x mega menu is repsonsive mega menu based on vannilajs
javascript,mega-menu,scss,vannila-js,menu,navbar,navigation,4xmen,xstack,rtl-design
2023-02-08T00:40:45Z
2024-01-14T11:06:12Z
2023-02-16T23:20:39Z
5
8
45
0
29
116
null
GPL-3.0
JavaScript
paularmstrong/onerepo
main
# <img src="https://github.com/paularmstrong/onerepo/assets/33297/8240ad56-f442-4a14-bba7-9e63830f3d2f" alt="" width="40" height="40" align="left" /> oneRepo [![Build status](https://img.shields.io/github/actions/workflow/status/paularmstrong/onerepo/merge-main.yaml?branch=main)](https://github.com/paularmstrong/onerepo/actions/workflows/merge-main.yaml) [![NPM version](https://img.shields.io/npm/v/onerepo)](https://npmjs.com/package/onerepo) ![Netlify](https://img.shields.io/netlify/f544fa4c-f2ad-4b59-83a0-933daa0b0b31) ## Documentation https://onerepo.tools/ - [Getting started](https://onerepo.tools/docs/getting-started/) - [Contributing](https://onerepo.tools/project/contributing/) ## License MIT License Copyright © 2023 Paul Armstrong
Easy, strict, safe, and fast JavaScript & TypeScript monorepo toolchain for high performance teams.
javascript,monorepos,typescript,monorepo,cli,nodejs,npm,pnpm,yarn
2023-01-29T21:49:47Z
2024-04-28T17:14:38Z
null
6
611
1,128
6
6
114
null
MIT
TypeScript
kuronekony4n/astream
master
# ASTREAM Basic Anime streaming web. It uses <a href="https://github.com/consumet/api.consumet.org">consumet API</a> under-the-hood for everything from searching to streaming. It uses `gogoanime` as the stream provider. It written in only HTML, CSS and JS. <a href="https://astream.pages.dev"><img src="https://img.shields.io/badge/visit-astream-blue"></a> --- ## Hosting Because is only a static website, you have a lot of free forever option for hosting. Use github page or cloudflare. --- ## Support It's not like i'm gonna use the money for the server or something.. only donate me if you appreciate this work <a href="https://sociabuzz.com/willydev/tribe"><img src="https://img.shields.io/badge/donasi_untuk_indonesia-red"></a> <a href="https://sociabuzz.com/willydev/tribe"><img src="https://img.shields.io/badge/donate-blue"></a> --- That's all, Bye 👋👋👋
A very epic anime streaming website. No Ads.
anime,api,consumet,japan,stream,streaming,watch,web-anime,anime-api,api-anime
2023-02-01T16:29:45Z
2024-01-18T14:36:18Z
null
1
2
28
0
47
106
null
null
CSS
puutaro/CommandClick
master
<br> <br> <br> <br> <br> <br> <br> <br> Are you satisfied with existing web browsers life ? <br> <br> <br> `CommandClick` has been developing to overcome question about existing browsers. <br> <br> <br> Welcome to the new browser era <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> CommandClick ---- <img src="https://github.com/puutaro/CommandClick/assets/55217593/e4e6f75b-a35e-47f1-bb41-144d8ea88185" width="500"> [![Android: 8+](https://img.shields.io/badge/Android-8+-blueviolet.svg?style=popout&logo=android)]((https://opensource.org/licenses/MIT)) [![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) ![GitHub release (with filter)](https://img.shields.io/github/v/release/puutaro/CommandClick) ![GitHub repo size](https://img.shields.io/github/repo-size/puutaro/CommandClick) <img src="https://img.shields.io/endpoint?url=https://apt.izzysoft.de/fdroid/api/v1/shield/com.mirfatif.permissionmanagerx&label=IzzyOnDroid&cacheSeconds=86400"> ![GitHub all releases](https://img.shields.io/github/downloads/puutaro/CommandClick/total) - With existing browsers, `add-ons` can only play an active role within that framework. But, with `CommandClick`, `add-ons` can have **infinite roll**. ex) **`Ubuntu`**, `Terminal`, file manager and more. - Existing browsers do not support `add-ons` development. But, `CommandClick` **strongly supports `add-ons` development** by low code. - Existing browsers do not support cooperation between add-ons. But, `CommandClick` **can link `add-ons`**. ex) Other addons can use `Ubuntu` as a backend.. etc - Existing browsers don't even think about distributing `add-ons`. But, `CommandClick` **strongly supports `add-ons` distributing** by builin QR `add-on`. Screenshots -------- <a href="https://github.com/puutaro/CommandClick/assets/55217593/1808e7c1-90a7-4ab2-9aaf-25fa3b10f322"><img src="https://github.com/puutaro/CommandClick/assets/55217593/1808e7c1-90a7-4ab2-9aaf-25fa3b10f322" width="30%" /></a> <a href="https://github.com/puutaro/CommandClick/assets/55217593/2bed519f-1908-4d1d-bb75-4c455595998e"><img src="https://github.com/puutaro/CommandClick/assets/55217593/2bed519f-1908-4d1d-bb75-4c455595998e" width="30%" /></a> <a href="https://github.com/puutaro/CommandClick/assets/55217593/2b04e38d-ba96-4194-85fc-d8302650bee6"><img src="https://github.com/puutaro/CommandClick/assets/55217593/2b04e38d-ba96-4194-85fc-d8302650bee6" width="30%" /></a> <a href="https://github.com/puutaro/CommandClick/assets/55217593/101da895-a578-4667-b8e2-7728bbd9e568"><img src="https://github.com/puutaro/CommandClick/assets/55217593/101da895-a578-4667-b8e2-7728bbd9e568" width="30%" /> <a href="https://github.com/puutaro/CommandClick/assets/55217593/c8593de5-c408-4f05-ba5d-e611e6696537"><img src="https://github.com/puutaro/CommandClick/assets/55217593/c8593de5-c408-4f05-ba5d-e611e6696537" width="30%" /></a> <a href="https://github.com/puutaro/commandclick-repository/assets/55217593/6f62911e-772c-4c04-8375-0998d1353612"><img src="https://github.com/puutaro/commandclick-repository/assets/55217593/6f62911e-772c-4c04-8375-0998d1353612" width="30%" /></a> <!-- <a href="https://github.com/puutaro/CommandClick/assets/55217593/f4d1263e-c390-4e45-b26f-8ae103a4f73a"><img src="https://github.com/puutaro/CommandClick/assets/55217593/f4d1263e-c390-4e45-b26f-8ae103a4f73a" width="30%" /></a> --> <!-- <a href="https://github.com/puutaro/CommandClick/assets/55217593/65aceaee-5f6e-418b-9423-26b39cf31ed5"><img src="https://github.com/puutaro/CommandClick/assets/55217593/65aceaee-5f6e-418b-9423-26b39cf31ed5" width="30%" /></a> --> <!-- <a href="https://github.com/puutaro/CommandClick/assets/55217593/3f1df823-e4ee-45ff-aa2f-c17bec4752d7"><img src="https://github.com/puutaro/CommandClick/assets/55217593/3f1df823-e4ee-45ff-aa2f-c17bec4752d7" width="30%" /></a> --> Addon Table ----- <details> <summary>Add-ons: <strong><code>Ubuntu</code></strong>, <code>Terminal</code>, <code>QR</code> reader & creator, <code>youtube</code> player, file manager ...</summary> <br> <br> `CommandClick` has multiple feature by addon. <br> Detail is bellow. <br> - In `CommandClick`, call addon `fannel`. <br> | Janre | builtin fannel(addon) / external fannel(addon) name | | ------- | ---------------- | | History oriented Web browser | builtin | | AdBlock | builtin | | QR reader | [builtin](https://github.com/puutaro/CommandClick/blob/master/USAGE.md#scan-qr) | | File transfer | [builtin](https://github.com/puutaro/CommandClick/blob/master/USAGE.md#image-long-click) by QR reader <br> [fileManager.js](https://github.com/puutaro/fileManager) | | Addon store | [builtin](https://github.com/puutaro/CommandClick/blob/master/USAGE.md#install-fannel) <br> [fannelStore.js](https://github.com/puutaro/fannelStore) | | Browser menu | [builtin](https://github.com/puutaro/selectTyper) | | Ubuntu22.04 | builtin after [installing](https://github.com/puutaro/CommandClick?tab=readme-ov-file#setup-ubuntu-addon) | | Ubuntu terminal | builtin after [installing ubuntu](https://github.com/puutaro/CommandClick?tab=readme-ov-file#setup-ubuntu-addon) <br> [sshTerminal.js](https://github.com/puutaro/sshTerminal) | | Termux client | [cmdMusicPlayer.js](https://github.com/puutaro/cmdMusicPlayer) <br> [cmdYoutuber.js](https://github.com/puutaro/cmdYoutuber) | | Music player | [cmdMusicPlayer.js](https://github.com/puutaro/cmdMusicPlayer) <br> [cmdMusicPlayerU.js](https://github.com/puutaro/cmdMusicPlayerU) | | Youtube scraping player | [cmdYoutuber.js](https://github.com/puutaro/cmdYoutuber) <br> [cmdYoutuberU.js](https://github.com/puutaro/cmdYoutuberU) | | Text to speech | textToSpeech.js (builtin) <br> [ttsPlsyer.js](https://github.com/puutaro/ttsPlayer) <br> [txtPdfViewer.js](https://github.com/puutaro/txtPdfViewer) <br> [newsSpeecher.js](https://github.com/puutaro/newsSpeecher) | | Pdf viewer | [txtPdfViewer.js](https://github.com/puutaro/txtPdfViewer) <br> [ctsvViewer.js](https://github.com/puutaro/ctsvViewer) | | News scraping | [newsSpeecher.js](https://github.com/puutaro/newsSpeecher) | | Google calendar register | [gCalendarFormatter.js](https://github.com/puutaro/gCalendarFormatter) | | Clip board formater | [clipFormatMaker.js](https://github.com/puutaro/clipFormatMaker) | | Train route seacher | [japanRouteSeacher.js](https://github.com/puutaro/japanRouteSearcher) | | File manager | [fileManager.js](https://github.com/puutaro/fileManager) | | Input support tool | [selectTyper.js](https://github.com/puutaro/selectTyper) | | Pocket web search | [webSearcher.js](https://github.com/puutaro/webSearcher) | | Gpt3.5 client | askGpt35.js (builtin) <br> [cmdGpt35.js](https://github.com/puutaro/cmdGpt35) | | Ascii art maker | [image2AsciiArt.js](https://github.com/puutaro/image2AsciiArt) | | Gmail draft saver | [sendToGmail.js](https://github.com/puutaro/sendClipToGmail) | </details> App installation ----- - Android 8+ get it on belllow link <a href="https://github.com/puutaro/CommandClick/releases" target="_blank"><img src="https://img.shields.io/github/v/release/puutaro/CommandClick" width="170"></a>   <a href="https://apt.izzysoft.de/fdroid/index/apk/com.puutaro.commandclick/" target="_blank"><img src="https://gitlab.com/IzzyOnDroid/repo/-/raw/master/assets/IzzyOnDroid.png" width="170"></a>   [Recommend] Install WebView Canary -------- By edge, webView javascript feature is limited. So, javascript not working, recommend to install [webView canary](https://play.google.com/store/apps/details?id=com.google.android.webview.canary&hl=ja&gl=US) or other. - I found this case in samsung galaxy. Setup Ubuntu addon ------ <img src="https://github.com/puutaro/CommandClick/assets/55217593/2406d8eb-b836-43eb-8dd0-1169c954e64b" width="400"> -> [More detail](https://github.com/puutaro/CommandClick/blob/master/USAGE.md#setup-ubuntu) Usage ------ <p>-> <a href="https://github.com/puutaro/CommandClick/blob/master/USAGE.md" target="_blank">USAGE.md</a></p> For Addon developer -------- <p>-> <a href="https://github.com/puutaro/CommandClick/blob/master/TUTORIAL.md" target="_blank">TUTORIAL.md</a></p> <p>-> <a href="https://github.com/puutaro/CommandClick/blob/master/DEVELOPER.md" target="_blank">DEVELOPER.md</a></p> Acknowledge -------- Thanks to awesome [UserLand](https://github.com/CypherpunkArmory/UserLAnd) and [PRoot](https://github.com/proot-me/proot), which make this project possible.
Android browser made by extraordinary addons: Ubuntu, Terminal, file manager etc...
android,browser,javascript,commandclick,cmdclick,linux,proot,linux-android,proot-android,ubuntu-on-android
2023-02-03T04:01:27Z
2024-05-22T14:28:46Z
2024-05-10T16:08:00Z
1
3
2,518
4
3
94
null
GPL-3.0
Kotlin
microsoft/regorus
main
# Regorus **Regorus** is - *Rego*-*Rus(t)* - A fast, light-weight [Rego](https://www.openpolicyagent.org/docs/latest/policy-language/) interpreter written in Rust. - *Rigorous* - A rigorous enforcer of well-defined Rego semantics. Regorus is also - *cross-platform* - Written in platform-agnostic Rust. - *no_std compatible* - Regorus can be used in `no_std` environments too. Most of the builtins are supported. - *current* - We strive to keep Regorus up to date with latest OPA release. Regorus supports `import rego.v1`. - *compliant* - Regorus is mostly compliant with the latest [OPA release v0.64.0](https://github.com/open-policy-agent/opa/releases/tag/v0.64.0). See [OPA Conformance](#opa-conformance) for details. Note that while we behaviorally produce the same results, we don't yet support all the builtins. - *extensible* - Extend the Rego language by implementing custom stateful builtins in Rust. See [add_extension](https://github.com/microsoft/regorus/blob/fc68bf9c8bea36427dae9401a7d1f6ada771f7ab/src/engine.rs#L352). Support for extensibility using other languages coming soon. - *polyglot* - In addition to Rust, Regorus can be used from *C*, *C++*, *C#*, *Golang*, *Java*, *Javascript*, *Python*, and *Ruby*. This is made possible by the excellent FFI tools available in the Rust ecosystem. See [bindings](#bindings) for information on how to use Regorus from different languages. To try out a *Javascript(WASM)* compiled version of Regorus from your browser, visit [Regorus Playground](https://anakrish.github.io/regorus-playground/). Regorus is available as a library that can be easily integrated into your Rust projects. Here is an example of evaluating a simple Rego policy: ```rust fn main() -> anyhow::Result<()> { // Create an engine for evaluating Rego policies. let mut engine = regorus::Engine::new(); let policy = String::from( r#" package example import rego.v1 allow if { ## All actions are allowed for admins. input.principal == "admin" } else if { ## Check if action is allowed for given user. input.action in data.allowed_actions[input.principal] } "#, ); // Add policy to the engine. engine.add_policy(String::from("policy.rego"), policy)?; // Add data to engine. engine.add_data(regorus::Value::from_json_str( r#"{ "allowed_actions": { "user1" : ["read", "write"], "user2" : ["read"] }}"#, )?)?; // Set input and evaluate whether user1 can write. engine.set_input(regorus::Value::from_json_str( r#"{ "principal": "user1", "action": "write" }"#, )?); let r = engine.eval_rule(String::from("data.example.allow"))?; assert_eq!(r, regorus::Value::from(true)); // Set input and evaluate whether user2 can write. engine.set_input(regorus::Value::from_json_str( r#"{ "principal": "user2", "action": "write" }"#, )?); let r = engine.eval_rule(String::from("data.example.allow"))?; assert_eq!(r, regorus::Value::Undefined); Ok(()) } ``` Regorus is designed with [Confidential Computing](https://confidentialcomputing.io/about/) in mind. In Confidential Computing environments, it is important to be able to control exactly what is being run. Regorus allows enabling and disabling various components using cargo features. By default all features are enabled. The default build of regorus example program is 6.3M: ```bash $ cargo build -r --example regorus; strip target/release/examples/regorus; ls -lh target/release/examples/regorus -rwxr-xr-x 1 anand staff 6.3M May 11 22:03 target/release/examples/regorus* ``` When all default features are disabled, the binary size drops down to 1.9M. ```bash $ cargo build -r --example regorus --no-default-features; strip target/release/examples/regorus; ls -lh target/release/examples/regorus -rwxr-xr-x 1 anand staff 1.9M May 11 22:04 target/release/examples/regorus* ``` Regorus passes the [OPA v0.64.0 test-suite](https://www.openpolicyagent.org/docs/latest/ir/#test-suite) barring a few builtins. See [OPA Conformance](#opa-conformance) below. ## Bindings Regorus can be used from a variety of languages: - *C*: C binding is generated using [cbindgen](https://github.com/mozilla/cbindgen). [corrosion-rs](https://github.com/corrosion-rs/corrosion) can be used to seamlessly use Regorous in your CMake based projects. See [bindings/c](https://github.com/microsoft/regorus/tree/main/bindings/c). - *C freestanding*: [bindings/c_no_std](https://github.com/microsoft/regorus/tree/main/bindings/c_no_std) shows how to use Regorus from C environments without a libc. - *C++*: C++ binding is generated using [cbindgen](https://github.com/mozilla/cbindgen). [corrosion-rs](https://github.com/corrosion-rs/corrosion) can be used to seamlessly use Regorous in your CMake based projects. See [bindings/cpp](https://github.com/microsoft/regorus/tree/main/bindings/cpp). - *C#*: C# binding is generated using [csbindgen](https://github.com/Cysharp/csbindgen). See [bindings/csharp](https://github.com/microsoft/regorus/tree/main/bindings/csharp) for an example of how to build and use Regorus in your C# projects. - *Golang*: The C bindings are exposed to Golang via [CGo](https://pkg.go.dev/cmd/cgo). See [bindings/go](https://github.com/microsoft/regorus/tree/main/bindings/go) for an example of how to build and use Regorus in your Go projects. - *Python*: Python bindings are generated using [pyo3](https://github.com/PyO3/pyo3). Wheels are created using [maturin](https://github.com/PyO3/maturin). See [bindings/python](https://github.com/microsoft/regorus/tree/main/bindings/python). - *Java*: Java bindings are developed using [jni-rs](https://github.com/jni-rs/jni-rs). See [bindings/java](https://github.com/microsoft/regorus/tree/main/bindings/java). - *Javascript*: Regorus is compiled to WASM using [wasmpack](https://github.com/rustwasm/wasm-pack). See [bindings/wasm](https://github.com/microsoft/regorus/tree/main/bindings/wasm) for an example of using Regorus from nodejs. To try out a *Javascript(WASM)* compiled version of Regorus from your browser, visit [Regorus Playground](https://anakrish.github.io/regorus-playground/). - *Ruby*: Ruby bindings are developed using [magnus](https://github.com/matsadler/magnus). See [bindings/ruby](https://github.com/microsoft/regorus/tree/main/bindings/ruby). To avoid operational overhead, we currently don't publish these bindings to various repositories. It is straight-forward to build these bindings yourself. ## Getting Started [examples/regorus](https://github.com/microsoft/regorus/blob/main/examples/regorus.rs) is an example program that shows how to integrate Regorus into your project and evaluate Rego policies. To build and install it, do ```bash $ cargo install --example regorus --path . ``` Check that the regorus example program is working ```bash $ regorus Usage: regorus <COMMAND> Commands: eval Evaluate a Rego Query lex Tokenize a Rego policy parse Parse a Rego policy help Print this message or the help of the given subcommand(s) Options: -h, --help Print help -V, --version Print version ``` First, let's evaluate a simple Rego expression `1*2+3` ```bash $ regorus eval "1*2+3" ``` This produces the following output ```json { "result": [ { "expressions": [ { "value": 5, "text": "1*2+3", "location": { "row": 1, "col": 1 } } ] } ] } ``` Next, evaluate a sample [policy](https://github.com/microsoft/regorus/blob/main/examples/example.rego) and [input](https://github.com/microsoft/regorus/blob/main/examples/input.json) (borrowed from [Rego tutorial](https://www.openpolicyagent.org/docs/latest/#2-try-opa-eval)): ```bash $ regorus eval -d examples/example.rego -i examples/input.json data.example ``` Finally, evaluate real-world [policies](tests/aci/) used in Azure Container Instances (ACI) ```bash $ regorus eval -b tests/aci -d tests/aci/data.json -i tests/aci/input.json data.policy.mount_overlay=x ``` ## Policy coverage Regorus allows determining which lines of a policy have been executed using the `coverage` feature (enabled by default). We can try it out using the `regorus` example program by passing in the `--coverage` flag. ```shell $ regorus eval -d examples/example.rego -i examples/input.json data.example --coverage ``` It produces the following coverage report which shows that all lines are executed except the line that sets `allow` to true. ![coverage.png](https://github.com/microsoft/regorus/blob/main/docs/coverage.png?raw=true) See [Engine::get_coverage_report](https://docs.rs/regorus/latest/regorus/struct.Engine.html#method.get_coverage_report) for details. Policy coverage information is useful for debugging your policy as well as to write tests for your policy so that all lines of the policy are exercised by the tests. ## ACI Policies Regorus successfully passes the ACI policy test-suite. It is fast and can run each of the tests in a few milliseconds. ```bash $ cargo test -r --test aci Finished release [optimized + debuginfo] target(s) in 0.05s Running tests/aci/main.rs (target/release/deps/aci-2cd8d21a893a2450) aci/mount_device passed 3.863292ms aci/mount_overlay passed 3.6905ms aci/scratch_mount passed 3.643041ms aci/create_container passed 5.046333ms aci/shutdown_container passed 3.632ms aci/scratch_unmount passed 3.631333ms aci/unmount_overlay passed 3.609916ms aci/unmount_device passed 3.626875ms aci/load_fragment passed 4.045167ms ``` Run the ACI policies in the `tests/aci` directory, using data `tests/aci/data.json` and input `tests/aci/input.json`: ```bash $ regorus eval -b tests/aci -d tests/aci/data.json -i tests/aci/input.json data.policy.mount_overlay=x ``` Verify that [OPA](https://github.com/open-policy-agent/opa/releases) produces the same output ```bash $ diff <(regorus eval -b tests/aci -d tests/aci/data.json -i tests/aci/input.json data.framework.mount_overlay=x) \ <(opa eval -b tests/aci -d tests/aci/data.json -i tests/aci/input.json data.framework.mount_overlay=x) ``` ## Performance To check how fast Regorus runs on your system, first install a tool like [hyperfine](https://github.com/sharkdp/hyperfine). ```bash $ cargo install hyperfine ``` Then benchmark evaluation of the ACI policies, ```bash $ hyperfine "regorus eval -b tests/aci -d tests/aci/data.json -i tests/aci/input.json data.framework.mount_overlay=x" Benchmark 1: regorus eval -b tests/aci -d tests/aci/data.json -i tests/aci/input.json data.framework.mount_overlay=x Time (mean ± σ): 4.6 ms ± 0.2 ms [User: 4.1 ms, System: 0.4 ms] Range (min … max): 4.4 ms … 6.0 ms 422 runs ``` Compare it with OPA ```bash $ hyperfine "opa eval -b tests/aci -d tests/aci/data.json -i tests/aci/input.json data.framework.mount_overlay=x" Benchmark 1: opa eval -b tests/aci -d tests/aci/data.json -i tests/aci/input.json data.framework.mount_overlay=x Time (mean ± σ): 45.2 ms ± 0.6 ms [User: 68.8 ms, System: 5.1 ms] Range (min … max): 43.8 ms … 46.7 ms 62 runs ``` ## OPA Conformance Regorus has been verified to be compliant with [OPA v0.64.0](https://github.com/open-policy-agent/opa/releases/tag/v0.64.0) using a [test driver](https://github.com/microsoft/regorus/blob/main/tests/opa.rs) that loads and runs the OPA testsuite using Regorus, and verifies that expected outputs are produced. The test driver can be invoked by running: ```bash $ cargo test -r --test opa --features opa-testutil,serde_json/arbitrary_precision ``` Currently, Regorus passes all the non-builtin specific tests. See [passing tests suites](https://github.com/microsoft/regorus/blob/main/tests/opa.passing). The following test suites don't pass fully due to mising builtins: - `cryptoparsersaprivatekeys` - `cryptox509parseandverifycertificates` - `cryptox509parsecertificaterequest` - `cryptox509parsecertificates` - `cryptox509parsekeypair` - `cryptox509parsersaprivatekey` - `globsmatch` - `graphql` - `invalidkeyerror` - `jsonpatch` - `jwtdecodeverify` - `jwtencodesign` - `jwtencodesignraw` - `jwtverifyhs256` - `jwtverifyhs384` - `jwtverifyhs512` - `jwtverifyrsa` - `netcidrcontains` - `netcidrcontainsmatches` - `netcidrexpand` - `netcidrintersects` - `netcidrisvalid` - `netcidrmerge` - `netcidroverlap` - `netlookupipaddr` - `providers-aws` - `regometadatachain` - `regometadatarule` - `regoparsemodule` - `rendertemplate` They are captured in the following [github issues](https://github.com/microsoft/regorus/issues?q=is%3Aopen+is%3Aissue+label%3Alib). ### Grammar The grammar used by Regorus to parse Rego policies is described in [grammar.md](https://github.com/microsoft/regorus/blob/main/docs/grammar.md) in both [W3C EBNF](https://www.w3.org/Notation.html) and [RailRoad Diagram](https://en.wikipedia.org/wiki/Syntax_diagram) formats. ## Contributing This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit <https://cla.opensource.microsoft.com>. When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA. This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. ## Trademarks This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow [Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general). Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.
Regorus - A fast, lightweight Rego (OPA policy language) interpreter written in Rust.
interpreter,opa,rego,rust,confidential-computing,policy-as-code,c,cpp,csharp,golang
2023-02-09T18:46:41Z
2024-05-23T15:31:09Z
2024-05-08T01:28:56Z
14
160
198
21
26
86
null
MIT
Open Policy Agent
xoraus/BackendBytes-ZeroToOne
main
# 🌲 Backend Specialization This repository is dedicated to the Backend Development with NodeJS. Here you will find key highlights/notes/code, reference material related to Backend Engineering, and much more. Join us on this journey to become a Backend developer with NodeJS. `Cousre Instructor` - [Sanket Singh](https://in.linkedin.com/in/singhsanket143) SWE II @ Google | Ex-SDE @ Linked[In] #### ✨ Notes Preview ![notes](notes-snapshot.jpeg) ### 📚 JavaScript - The Easy Parts 01. [JavaScript Fundamentals Part 1](https://github.com/xoraus/Javascript-Notes/blob/main/01.%20JavaScript%20Fundamentals%20Part%201.md) 02. [JavaScript Fundamentals Part 2](https://github.com/xoraus/Javascript-Notes/blob/main/02.%20JavaScript%20Fundamentals%20Part%202.md) 03. How to Navigate This Course 04. [Developer Skills & Editor Setup](https://github.com/xoraus/Javascript-Notes/blob/main/04.%20Developer%20Skills%20%26%20Editor%20Setup.md) 05. [OPTIONAL: HTML & CSS Crash Course](https://github.com/xoraus/Javascript-Notes/blob/main/05.%20HTML%20%26%20CSS%20Crash%20Course.md) 06. [JavaScript in the Browser: DOM and Events Fundamentals](https://github.com/xoraus/Javascript-Notes/blob/main/06.%20DOM%20and%20Events%20Fundamentals.md) 07. [How JavaScript Works Behind the Scenes](https://github.com/xoraus/Javascript-Notes/blob/main/07.%20How%20JavaScript%20Works%20Behind%20the%20Scenes.md) 08. [Data Structures, Modern Operators and Strings](https://github.com/xoraus/Javascript-Notes/blob/main/08.%20Data%20Structures%2C%20Modern%20Operators%20and%20Strings.md) 09. [A Closer Look at Functions](https://github.com/xoraus/Javascript-Notes/blob/main/09.%20A%20Closer%20Look%20at%20Functions.md) 10. [Working With Arrays](https://github.com/xoraus/Javascript-Notes/blob/main/10.%20Working%20With%20Arrays.md) 11. [Numbers, Dates, Intl and Timers](https://github.com/xoraus/Javascript-Notes/blob/main/11.%20Numbers%2C%20Dates%2C%20Intl%20and%20Timers.md) 12. [Advanced DOM and Events](https://github.com/xoraus/Javascript-Notes/blob/main/12.%20Advanced%20DOM%20and%20Events.md) 13. [Object-Oriented Programming (O0P) With JavaScript](https://github.com/xoraus/Javascript-Notes/blob/main/13.%20Object-Oriented%20Programming%20(O0P)%20With%20JavaScript.md) 14. [Mapty App: OOP, Geolocation, External Libraries, and More!](https://github.com/xoraus/Javascript-Notes/blob/main/13.%20Object-Oriented%20Programming%20(OOP)%20.md) 15. [Asynchronous JavaScript: Promises, Async/Await, and AJAX](https://github.com/xoraus/Javascript-Notes/blob/main/14.%20Mapty%20App%20-%20OOP%2C%20Geolocation%2C%20External%20Libraries%2C%20and%20More!.md) 16. [Modern JavaScript Development: Modules, Tooling, and Functional]() 17. [Forkify App: Building a Modern Application]() 18. [Setting Up Git and Deployment]() ### 📚 Advance JavaScript - The Hard Parts - ✅ [Introduction to JS](https://github.com/xoraus/Backend-Specialization/blob/main/Lectures/Introduction-to-JS%202-Operators-Conditionals-Loops-basic.md) - ✅ [Is Javascript Compiled? I Lexical Scoping](https://github.com/xoraus/Backend-Specialization/blob/main/Lectures/Is-Javascript-Compiled%3F-Lexical-Scoping.md) - ✅ [Lexical Scoping I Auto Global](https://github.com/xoraus/Backend-Specialization/blob/main/Lectures/Lexical-Scoping-Auto-Global.md) - ✅ [Function Expression](https://github.com/xoraus/Backend-Specialization/blob/main/Lectures/Function-Expression.md) - ✅ [Callbacks Inversion of Control](https://github.com/xoraus/Backend-Specialization/blob/main/Lectures/Callbacks-IVC.md) - ✅ [How runtime helps in async nature of JS](https://github.com/xoraus/Backend-Specialization/blob/main/Lectures/How-runtime-helps-in-async-nature-of-JS.md) - ✅ [Async Behaviour with Callbacks](https://github.com/xoraus/Backend-Specialization/blob/main/Lectures/Async-Behaviour-with-Callbacks.md) - ✅ [Introduction to Promises](https://github.com/xoraus/Backend-Specialization/blob/main/Lectures/intro-to-promises.md) - 🚧 [Promises: Part 2]() 🚧 (work in progress) - 🚧 [Promises: Part 3]() - 🚧 [Promises: Part 4]() - 🚧 [Generators and iterators]() - 🚧 [Async Await]() ## Databases & SQL - ✅ [Introduction to Databases & DBMS](https://github.com/xoraus/Backend-Specialization/blob/main/Lectures/intro-to-dbms.md) - ✅ [SQL: Introduction](https://github.com/xoraus/Backend-Specialization/blob/main/Lectures/SQL1.md) - ✅ [SQL: Commands](https://github.com/xoraus/Backend-Specialization/blob/main/Lectures/SQL2.md) - ✅ [SQL: Joins](https://github.com/xoraus/Backend-Specialization/blob/main/Lectures/SQL3.md) - ✅ [Normalization - I](https://github.com/xoraus/Backend-Specialization/blob/main/Lectures/Normalization-I.md) - ✅ [Normalization - II](https://github.com/xoraus/Backend-Specialization/blob/main/Lectures/Normalization-II.md) ## Version control with GIT - 💡 (up next) - 🚧 [Git and Github | Introduction | Basic commands] - 🚧 [Git starters] --- ## Resources / Blogs / Articles ### 👨🏻‍💻 Industry Professionals - [Brewing Code With Siddharth](https://github.com/xoraus/Backend-Specialization/blob/main/Industry-Professionals/Brewing-Code-With-Siddharth.md) ### 🧵 Resources/Articles by fellow batchmates By [Milind's Blog](https://blog.milind.live/) - [Wait, so you're saying JavaScript isn't weird!](https://blog.milind.live/wait-so-youre-saying-javascript-isnt-weird) - [Understanding why the famous [object Object] pops up and handling it, tactfully.](https://blog.milind.live/object-object) - [Abstract Equality and Special Types!](https://blog.milind.live/abstract-equality-and-special-types) By [Mohini Mahato](https://www.linkedin.com/in/mohinimahato/) - [Abstract Operation](https://www.linkedin.com/posts/mohinimahato_toprimitive-abstract-operator-activity-7021741753808433153-Xa6J) By [Sachin](https://github.com/Sachin-RJ7) -> 'Handwritten' - [Advance JavaScript](https://github.com/xoraus/Backend-Specialization/blob/main/Notes/Advance-JS.pdf) - [Callbacks, Inversion of Control](https://github.com/xoraus/Backend-Specialization/blob/main/Notes/callbacks_Inversion_of_control_.pdf) - [How Runtime helps in async nature of JS](https://github.com/xoraus/Backend-Specialization/blob/main/Notes/How_runtime_helps_in_async_nature_of_JS.pdf) ### 📚 Notes from the Orientation Session🔥 **What is Backend Engineering?** Backend engineering is a branch of software engineering that focuses on the server-side of web development. It involves the development and maintenance of the servers, databases, APIs, and other components that make up the back-end of web applications. **What is the role of a Backend Engineer** 1. Design decision making and creation of high-level design (HLD) for architecture 2. Writing APIs and interacting with databases 3. Implementing business logic 4. Maintaining deployment processes and conducting testing 5. Performing maintenance and documenting work 6. Collaborating with front-end engineers, database administrators, and other stakeholders 7. Writing clean and efficient code 8. Building robust and scalable systems to support business needs 9. Ensuring seamless integration with front-end systems 10. Providing a seamless user experience. **Example** - Scalability of hotspot (Home Screen Crashed on back button (Live Cricked Match → Dhoni got out) ) Flow of Code, ability to read and understand code. The main focus during the course is going to be outcome - end to end Microservices based applications - deploy app, database on public cloud like aws - testable JS applications Link - [Scaling hotstar.com for 25 million concurrent viewers - YouTube](https://www.youtube.com/watch?v=QjvyiyH4rr0) --- ### 🎓 Course Curriculum Key Highlights - Basics of JavaScript - Advanced JavaScript - Scopes in JS - Closures in JS - Asynchronous JavaScript with Callbacks and Promises 🕰️ - Hoisting and Coercion - Node JS - Express JS 🔥 - Understanding how the internet works 🕸️ - CI/CD - Micro-service based project development - Message brokers and Queues 💬 - Introduction to programming and problem solving with JavaScript (Recorded) 🔍 - Design Documentation and Feature Planning 📝 - HLD discussion for the projects 💬 - Deployments on Elastic Beanstalk or EC2 🚀 - REST - gRPC 🔥 - API development - CRUD API - HTTP / HTTPS 🌐 - Web Sockets 💬 - Deployment on AWS and Heroku 🚀 - Containers, Docker, and Intro to Kubernetes 🐳 - MongoDB 💾 - MySQL 💾 - ORM and ODM - Airline Ticket Booking System Project 🛫 - Blog Project 📝 - Chat Application Project 💬 - Twitter Application Project 🐦 - Networking 🌐 - DOM Manipulation (extra frontend topic, will be taken in extra class or recorded session) 💻 - Streams in NodeJS 🕰️ ## 🚨 Pull requests are Welcome 😊, The more the better.
An extensive guide to backend development, featuring production-grade projects.
api,backend,grpc,javascript,nodejs,designdocs
2023-01-30T13:50:33Z
2024-01-09T12:15:42Z
null
1
0
28
0
25
86
null
MIT
null
axiomhq/axiom-js
main
![axiom-js: The official javascript bindings for the Axiom API](.github/images/banner-dark.svg#gh-dark-mode-only) ![axiom-js: The official javascript bindings for the Axiom API](.github/images/banner-light.svg#gh-light-mode-only) <div align="center"> [![Workflow][workflow_badge]][workflow] [![License][license_badge]][license] </div> [Axiom](https://axiom.co) unlocks observability at any scale. - **Ingest with ease, store without limits:** Axiom’s next-generation datastore enables ingesting petabytes of data with ultimate efficiency. Ship logs from Kubernetes, AWS, Azure, Google Cloud, DigitalOcean, Nomad, and others. - **Query everything, all the time:** Whether DevOps, SecOps, or EverythingOps, query all your data no matter its age. No provisioning, no moving data from cold/archive to “hot”, and no worrying about slow queries. All your data, all. the. time. - **Powerful dashboards, for continuous observability:** Build dashboards to collect related queries and present information that’s quick and easy to digest for you and your team. Dashboards can be kept private or shared with others, and are the perfect way to bring together data from different sources For more information check out the [official documentation](https://axiom.co/docs) and our [community Discord](https://axiom.co/discord). ## Projects This is a monorepo, for specific documentation, check out the different projects: * [`@axiomhq/js`](./packages/js): Official API bindings that let you ingest or query your data. * [`@axiomhq/winston`](./packages/winston): A [winston](https://github.com/winstonjs/winston) transport which sends logs to Axiom. * [`@axiomhq/pino`](./packages/pino): A [pino](https://github.com/pinojs/pino) transport which sends logs to Axiom. ## Migrate to v1.x - Pass the credentials as an object to Axiom client, this package no longer reads them from the environment variables. do: ```ts const axiom = new Axiom({ token: process.env.AXIOM_TOKEN, }); ``` instead of: ```ts const axiom = new Axiom(); ``` ## License Distributed under the [MIT License](LICENSE). <!-- Badges --> [workflow]: https://github.com/axiomhq/axiom-js/actions/workflows/ci.yml [workflow_badge]: https://img.shields.io/github/actions/workflow/status/axiomhq/axiom-js/ci.yml?branch=main&ghcache=unused [license]: https://opensource.org/licenses/MIT [license_badge]: https://img.shields.io/github/license/axiomhq/axiom-js.svg?color=blue&ghcache=unused
Official language bindings and library extensions for Axiom
api,axiom,javascript,sdk,typescript,winston
2023-02-02T12:23:41Z
2024-05-21T14:47:32Z
null
21
170
527
5
10
80
null
MIT
TypeScript
Reayhs/react-tailwind-portfolio
main
# react-tailwind-portfolio + <a href="https://www.youtube.com/watch?v=hYv6BM2fWd8">Design</a> + Made with tailwind ![Ekran görüntüsü 2023-01-28 221435](https://user-images.githubusercontent.com/104009655/215286744-b85473b0-22cd-4deb-9152-149cad4c90cd.png) ![Ekran görüntüsü 2023-01-28 221445](https://user-images.githubusercontent.com/104009655/215286723-3defaee7-09e9-4fc6-8ab4-4d6187ffc001.png) ![Ekran görüntüsü 2023-01-28 221901](https://user-images.githubusercontent.com/104009655/215286846-86706df7-37a1-4764-b4b7-6aafa74c2a18.png) ![Ekran görüntüsü 2023-01-28 221504](https://user-images.githubusercontent.com/104009655/215286732-3522a344-a21f-4a77-9c8f-dd72ce881288.png)
null
react,swiper,tailwind,portfolio,react-hooks,javascript
2023-01-28T19:11:09Z
2023-02-28T13:11:59Z
null
1
6
9
1
31
79
null
null
JavaScript
alsiam/web-projects
main
null
Explore a curated collection of 22+ 🔥 web projects showcasing the art of web design with HTML, CSS, and JavaScript. Perfect for learning and inspiration. Join us in creating beautiful web experiences! 🌐💻🎨
css,html,html-css,html-css-javascript,html-projects,javascript,javascript-projects,web,web-design,web-development
2023-01-28T22:34:40Z
2023-10-28T10:16:50Z
2023-09-08T21:43:17Z
5
6
149
0
35
79
null
GPL-3.0
HTML
somiibo/tiktok-bot
main
<p align="center"> <a href="https://somiibo.com/platforms/tiktok-bot"> <img src="https://cdn.itwcreativeworks.com/assets/somiibo/images/logo/somiibo-brandmark-blue-x.svg" width="100px"> </a> </p> <p align="center"> <img src="https://img.shields.io/github/package-json/v/itw-creative-works/node-powertools.svg"> <br> <img src="https://img.shields.io/npm/dm/node-powertools.svg"> <img src="https://img.shields.io/website/https/itwcreativeworks.com.svg"> <img src="https://img.shields.io/github/contributors/itw-creative-works/node-powertools.svg"> <br> <br> <strong>TikTok Bot</strong> is a free software that automatically follows users and likes & comments on videos </p> # 💻 Installation ### Direct link [![Windows](https://img.shields.io/badge/-Windows_x64-blue.svg?style=for-the-badge&logo=windows)](https://somiibo.com/download?download=windows) [![MacOS](https://img.shields.io/badge/-MacOS-lightblue.svg?style=for-the-badge&logo=apple)](https://somiibo.com/download?download=macos) [![Unix](https://img.shields.io/badge/-Linux/BSD-red.svg?style=for-the-badge&logo=linux)](https://somiibo.com/download?download=linux) [![All versions](https://img.shields.io/badge/-All_Versions-lightgrey.svg?style=for-the-badge)](https://somiibo.com/download?download=null) ### Command line Clone this repo then run the following commands: ```shell cd <download-directory> npm install npm start ``` # 🎉 Features - Grow your TikTok organically - Automatically follows users and likes & comments on videos - Those users will then become organic followers # 🙋‍♂️ Want to contribute? Want to contribute? Great! All contributions are welcome, from code to documentation to graphics to design suggestions to bug reports. [Join our Discord server](https://somiibo.com/discord) to participate
TikTok bot. Automatically follows users and likes & comments on videos
agency,automation,front-end,frontend,javascript,marketing,marketing-automation,nodejs,saas,social-media
2023-02-07T11:50:41Z
2024-05-23T01:51:21Z
null
2
2
468
3
19
76
null
null
JavaScript
somiibo/youtube-view-generator-bot
main
<p align="center"> <a href="https://somiibo.com/platforms/youtube-bot"> <img src="https://cdn.itwcreativeworks.com/assets/somiibo/images/logo/somiibo-brandmark-blue-x.svg" width="100px"> </a> </p> <p align="center"> <img src="https://img.shields.io/github/package-json/v/itw-creative-works/node-powertools.svg"> <br> <img src="https://img.shields.io/npm/dm/node-powertools.svg"> <img src="https://img.shields.io/website/https/itwcreativeworks.com.svg"> <img src="https://img.shields.io/github/contributors/itw-creative-works/node-powertools.svg"> <br> <br> <strong>YouTube Play Generator Bot</strong> is a free software that generates plays on your YouTube videos </p> # 💻 Installation ### Direct link [![Windows](https://img.shields.io/badge/-Windows_x64-blue.svg?style=for-the-badge&logo=windows)](https://somiibo.com/download?download=windows) [![MacOS](https://img.shields.io/badge/-MacOS-lightblue.svg?style=for-the-badge&logo=apple)](https://somiibo.com/download?download=macos) [![Unix](https://img.shields.io/badge/-Linux/BSD-red.svg?style=for-the-badge&logo=linux)](https://somiibo.com/download?download=linux) [![All versions](https://img.shields.io/badge/-All_Versions-lightgrey.svg?style=for-the-badge)](https://somiibo.com/download?download=null) ### Command line Clone this repo then run the following commands: ```shell cd <download-directory> npm install npm start ``` # 🎉 Features - Generate views on your YouTube videos - Proxy scraper automatically gets fresh proxies 24/7 - Choose target countries - User agents randomized (or set your own!) - HTTP Referrer randomized (or set your own!) # 🙋‍♂️ Want to contribute? Want to contribute? Great! All contributions are welcome, from code to documentation to graphics to design suggestions to bug reports. [Join our Discord server](https://somiibo.com/discord) to participate
YouTube View Generator. Generate views on your YouTube videos
agency,automation,front-end,frontend,javascript,marketing,marketing-automation,nodejs,saas,social-media
2023-02-07T12:25:59Z
2024-05-23T01:55:55Z
null
2
0
467
3
14
59
null
null
JavaScript
tweneboah/Full-Stack-Web-Development-Bootcamp-Course
main
# MERN Stack Fullstack Web Development Course Welcome to the MERN Stack Fullstack Web Development Course repository! This project repository is your gateway to mastering Fullstack development using the MERN stack, comprising MongoDB, Express.js, React.js, and Node.js. ## About This Course This course is meticulously designed for beginners and advanced developers alike, aiming to empower you with hands-on skills and in-depth knowledge to build scalable, high-performing web applications. Whether you're looking to kickstart your career in web development or enhance your existing skill set, this course offers comprehensive coverage of all essential aspects of the MERN stack. ### What You Will Find Here In this repository, you'll find all the starter and complete codes necessary for the course. Each codebase is organized to complement the course structure, ensuring a seamless learning experience. - **Starter Code**: Jumpstart each project with our starter code, setting the foundation for your learning and development. - **Complete Code**: Review and reference the complete code to understand best practices and final outcomes for each project. ### Getting Started To make the most of this course and the provided codes, we recommend the following steps: 1. **Fork this repository**: Forking will allow you to have your own copy of the course code, which you can then modify and update as you progress through the course. 2. **Stay Updated**: By forking the repository, you'll be able to easily pull in updates and new codes as they are added. Ensure you regularly check back for updates or subscribe to notifications. ### Enroll in the Course Ready to dive in? Enroll in the MERN Stack Fullstack Web Development Course today and take the first step towards becoming a proficient full-stack developer. [Enroll Now](https://www.udemy.com/course/fullstack-web-development-course-projects-base/?referralCode=F8C808368D020D5794BD) ### Connect With Us We believe in building a community of learners and developers. Connect with us and fellow students through the following platforms: - **Personal Website**: [MasyncTech](https://masynctech.com/) - **Facebook**: [Follow us on Facebook](https://www.facebook.com/masynctech) - **YouTube**: [Subscribe to our channel](https://www.youtube.com/channel/UCqgi3TTpWwO22hIxzPOLhWw) - **Discord**: [Join our Discord community](https://discord.com/invite/k8X6W9DC2Q) We're excited to have you on board and look forward to supporting you on your journey to becoming a full-stack developer with the MERN stack. Happy coding!
Full-Stack-Web-Development-Bootcamp-Course. This GitHub repository contains the entire curriculum for our Full Stack Web Development Bootcamp Course. The course covers a wide range of subjects, including HTML, CSS, JavaScript, Node.js, Express, React, and MongoDB.
css,ejs-templates,expressjs,flexbox,html-css-javascript,javascript,jwt-authentication,mern-stack,mongodb,mongoose
2023-01-27T00:10:28Z
2024-04-26T14:45:44Z
null
1
5
53
0
75
56
null
MIT
JavaScript
humairshoukat/Bachelors-Computer-Science
main
# Bachelors-Computer-Science This repo contains data of the courses, taught in the Bachelor's Degree of Computer Science. <br> Data includes Books, Lectures, Notes, Code Files, and much more. <br> **Note:** Assignments, Quizzes, Projects, and Presentations are not included because those are the sole source of learning opportunities for you in the university/college. If you copy these things you will not going to learn anything during your degree. So make some effort and try to build these things on your own if you want to learn. <br><br> ### Computing Core Courses * [Programming Fundamentals](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Programming%20Fundamentals) * [Object Oriented Programming](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Object-Oriented-Programming) * [Data Structures & Algorithms](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Data-Structure-Algorithms) * [Discrete Structures](https://github.com/humairshoukatBachelors-Computer-Science/tree/main/Discrete-Structures) * [Operating System](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Operating-System) * [Database Management System](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Database-Systems) * [Software Engineering](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Software%20Engineering) * [Computer Networks](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Computer-Networks) * [Information Security](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Information%20Security) ### General Education Courses * [English Composition & Comprehension](https://github.com/humairshoukat/BS-ComputerScience-SoftwareEngineering-IT/tree/main/English%20Comprehension) * [Technical & Business Writing](https://github.com/humairshoukat/BS-ComputerScience-SoftwareEngineering-IT/tree/main/Technical%20Business%20Writing) * [Communication & Presentation Skills](https://github.com/humairshoukat/BS-ComputerScience-SoftwareEngineering-IT/tree/main/Communication%20%26%20Presentation%20skills) * [Professional Practices](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Professional%20Practices) * [Information & Computer Technology](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Information%26Computer-Technology) * [Pakistan Studies](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Pakistan%20Studies) * [Islamic Studies](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Islamic%20Studies) ### University Elective Courses * Foreign Language i.e. [German Language](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/German%20Language) * Management Related i.e. [Software Project Management](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Software%20Project%20Management) * Leadership Related i.e. [Technical Entrepreneurship](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Technical%20Enterprenuership) ### Mathematics and Science Foundation Courses * [Calculus & Analytical Geometry](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Calculus%20%26%20Analytical%20Geometry) * [Probability & Statistics](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Statistics%20%26%20Probability) * [Linear Algebra](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Linear%20Algebra) * [Applied Physics](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Applied%20Physics) ### Computer Science Core Courses * [Compiler Construction](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Compiler%20Construction) * [Computer Organization & Assembly Language](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Computer%20Organization%20%26%20Assembly%20Language) * [Digital Logic Design](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Digital%20Logic%20Design) * [Design & Analysis of Algorithms](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Data%20Structure%20Algorithms) * [Parallel & Distributed Computing](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Parallel%20%26%20Distributed%20Computing%20) * [Artificial Intelligence](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Artificial%20Intelligence) * [Theory of Automata](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Automata%20Theory) ### Computer Science Supporting Courses * [Differential Equations](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Differential%20Equations) * [Multivariable Calculus](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Multivariable%20Calculas) * [Numerical Computing](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Numerical%20Computing) ### Computer Science Elective Courses * [Web Programming](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Web%20Programming) * [Mobile App Development](https://github.com/humairshoukat/Bachelors-Computer-Science/tree/main/Mobile%20App%20Development)
This repo contains data of the courses taught in the Bachelor's Degree of Computer Science. Data includes Books, Lectures, Notes, Code Files, and much more.
bachelor-degree,computer-science,cpp,java,javascript,object-oriented-programming,python,web-development,programming-fundamentals,artificial-inteligence
2023-02-03T03:13:18Z
2023-08-30T11:54:55Z
null
3
4
256
0
16
56
null
null
Jupyter Notebook
Avinash905/HealthBooker
main
<div id="top"> <h1 align="center">HealthBooker 🧑‍⚕️</h1> <div align="center"> <br> <img src="https://img.shields.io/github/repo-size/Avinash905/HealthBooker?style=for-the-badge" /> <img src="https://img.shields.io/github/issues/Avinash905/HealthBooker?style=for-the-badge" /> <img src="https://img.shields.io/github/issues-closed-raw/Avinash905/HealthBooker?style=for-the-badge" /> <img src="https://img.shields.io/github/last-commit/Avinash905/HealthBooker?style=for-the-badge" /> <img src="https://img.shields.io/github/issues-pr/Avinash905/HealthBooker?style=for-the-badge" /> <img src="https://img.shields.io/github/issues-pr-closed-raw/Avinash905/HealthBooker?style=for-the-badge" /> <img src="https://img.shields.io/github/forks/Avinash905/HealthBooker?style=for-the-badge" /> <img src="https://img.shields.io/github/stars/Avinash905/HealthBooker?style=for-the-badge" /> <img src="https://img.shields.io/github/contributors-anon/Avinash905/HealthBooker?style=for-the-badge" /> </div> <br> <h3>📝 Description :</h3> Welcome to our comprehensive healthcare platform! Our website offers a seamless experience for users and doctors alike. Sign up or log in to unlock a range of features. Easily browse through a list of available doctors, manage your profile, and submit queries effortlessly. Stay updated with notifications and enjoy secure access to your information. Aspiring doctors can apply through our user-friendly system. Book appointments with your preferred doctors and track their completion status. Admin features ensure smooth operations, including approval of doctor applications and user management. Rest assured, all data is stored securely. Join us to experience a new era of convenient and efficient healthcare interactions. <br/> --- ### 🌐 Link: <h4> Live Site: https://healthbooker.onrender.com/ </h4> <br> ### 🛠️ Tools and technologies used : <div align=center> <a href="https://www.w3.org/html/" target="_blank" rel="noreferrer"> <img src="https://img.shields.io/badge/HTML5-E34F26?style=for-the-badge&logo=html5&logoColor=white" alt="html5"/> </a> <a href="https://www.w3schools.com/css/" target="_blank" rel="noreferrer"> <img src="https://img.shields.io/badge/CSS3-1572B6?style=for-the-badge&logo=css3&logoColor=white" alt="css3" /> </a> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank" rel="noreferrer"> <img src="https://img.shields.io/badge/JavaScript-F7DF1E?style=for-the-badge&logo=javascript&logoColor=black" alt="javascript"/> </a> <a href="https://reactjs.org/" target="_blank" rel="noreferrer"> <img src="https://img.shields.io/badge/React-20232A?style=for-the-badge&logo=react&logoColor=white&color=148dff" alt="react" /> </a> <a href="https://nodejs.org" target="_blank" rel="noreferrer"> <img src="https://img.shields.io/badge/Node.js-8A2BE2?style=for-the-badge&logo=Node.js&color=b3ffb0" alt="nodejs" /> </a> <a href="https://expressjs.com" target="_blank" rel="noreferrer"> <img src="https://img.shields.io/badge/Express.js-404D59?style=for-the-badge&color=008712" alt="express"/> </a> <a href="https://www.mongodb.com/" target="_blank" rel="noreferrer"> <img src="https://img.shields.io/badge/MongoDB-4EA94B?style=for-the-badge&logo=mongodb&logoColor=white" alt="mongodb" /> </a> <a href="https://redux-toolkit.js.org/" target="_blank" rel="noreferrer"> <img src="https://img.shields.io/badge/Redux-593D88?style=for-the-badge&logo=redux&logoColor=white" alt="redux-toolkit" /> </a> </div> <br> ### 👋 Connect with me: <div align=center> [![LinkedIn](https://img.shields.io/badge/LinkedIn-0A66C2.svg?style=for-the-badge&logo=LinkedIn&logoColor=white)](https://www.linkedin.com/in/dunna-avinash) [![GitHub](https://img.shields.io/badge/GitHub-100000?style=for-the-badge&logo=github&logoColor=white)](https://github.com/Avinash905) <a href="mailto:avinash.90527@gmail.com" target="_blank"><img alt="Gmail" src="https://img.shields.io/badge/Gmail-D14836?style=for-the-badge&logo=gmail&logoColor=white" /></a> [![Twitter](https://img.shields.io/badge/Twitter-1DA1F2?style=for-the-badge&logo=twitter&logoColor=white)](https://twitter.com/avinashdunna) </div> <br> --- <p align="right"><a href="#top">Back to Top</a></p> ### 📃Features : <ul> <li><strong>User Registration and Login:</strong> Enabling user registration and login functionality is the foundation of any user-oriented platform.</li> <li><strong>View Available Doctors:</strong> Allowing users to easily view the list of available doctors helps them find the right medical professional for their needs.</li> <li><strong>Update Profile:</strong> Providing users with the ability to update their profiles keeps their information accurate and up to date.</li> <li><strong>Contact Section for Queries:</strong> Including a contact section for user queries enhances user engagement and customer support.</li> <li><strong>Notifications Tab:</strong> A notifications tab helps users stay informed about updates, appointments, and application statuses.</li> <li><strong>Admin Management System:</strong> An admin management system is crucial for overseeing users, appointments, and doctor applications.</li> <li><strong>Access Control:</strong> Restricting access to certain sections like notifications, profile, appointments, and doctor applications to logged-in users ensures data privacy and security.</li> <li><strong>Doctor Application:</strong> Allowing users to apply to become a doctor on the site expands the pool of medical professionals and adds value to the platform.</li> <li><strong>Book Appointments:</strong> Enabling users to book appointments with their preferred doctors streamlines the process of accessing medical services.</li> <li><strong>Admin Approval for Doctor Requests:</strong> Admin approval for doctor applications ensures that only qualified professionals are listed on the platform.</li> <li><strong>User and Doctor Removal:</strong> Admin's ability to remove users or doctors from the site is crucial for maintaining the platform's integrity.</li> <li><strong>Appointment Marking:</strong> Allowing doctors and admin to mark appointments as completed ensures proper record-keeping.</li> <li><strong>Application and Appointment Notifications:</strong> Sending notifications to users, doctors, and admins about application statuses and appointment updates enhances communication.</li> <li><strong>Data Storage and Security:</strong> Storing all data in a database ensures data integrity, security, and easy retrieval of information.</li> </ul> <hr/> <p align="right"><a href="#top">Back to Top</a></p> ### Steps to run the project on your local machine <ol> <li>Fork this repository</li> <li>Open terminal or command prompt on your local machine. Run the following command to clone the repository:</li> ``` git clone https://github.com/your-username/your-repo.git ``` Replace **your-username** with your GitHub username and **your-repo** with the name of your repository. <li>Open the project and rename <strong>.env.example</strong> files to <strong>.env</strong> in both client and root directory.</li> <li>Add your own environment variables to these both files.</li> <li>To run the backend, open a new terminal and execute:</li> ``` npm start ``` <li>To run the frontend, open a new terminal and run 'cd client/' to go to client directory and execute: </li> ``` npm start ``` </ol> ### To access the admin dashboard <ol> <li>Download the project from the git repository</li> <li>You need to create your own MongoDB instance and add the MongoDB url to the .env file</li> <li>Register on the website and go to your MongoDB and manually change the 'isAdmin' field of the account you want to make admin in the DB to 'true' and then log in back on the site</li> <li>Now you will be able to access the admin dashboard</li> </ol> --- <p align="right"><a href="#top">Back to Top</a></p> ### Home page <img src="./client/src/images/full_pic.png" alt='home'/> ### Sign up page <img src="./client/src/images/signup.png" alt='signup'/> ### Sign in page <img src="./client/src/images/signin.png" alt='signin'/> ### Profile page <img src="./client/src/images/profile.png" alt='profile'/> ### All Doctors page <img src="./client/src/images/doctors.png" alt='doctors'/> ### Apply for doctor page <img src="./client/src/images/docapply.png" alt='applyfordoctor'/> ### Admin all users dashboard <img src="./client/src/images/users.png" alt='users'/> ### Admin all applications page <img src="./client/src/images/applications.png" alt='applications'/> ### Book Appointment page <img src="./client/src/images/bookappointment.png" alt='bookappointment'/> ### Users all appointments page <img src="./client/src/images/userappointments.png" alt='appointments'/> ### Doctors all appointments page <img src="./client/src/images/doctorappointments.png" alt='appointments'/> ### Notifications page <img src="./client/src/images/notifications.png" alt='notifications'/> --- <br/> ### 🛡️ License [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=for-the-badge)](https://opensource.org/licenses/MIT) Terms and conditions for use, reproduction and distribution are under the [MIT License](https://opensource.org/license/mit/). <br/> --- <h3 align="center"> Give it a 🌟 if you 🧡 this repository </h3> --- <p align="right"><a href="#top">Back to Top</a></p> </div>
This is a healthcare platform where you can browse doctors, manage profiles, and book appointments. Enjoy notifications and secure access. Aspiring doctors can apply too. Admin ensures smooth operations. Your data is safe with us. Join us for effortless healthcare interactions!
doctor-appointment-management,mern,mern-project,mern-stack,css,html,mern-stack-development,nodejs,reactjs,expressjs
2023-01-28T14:42:37Z
2024-02-19T17:03:52Z
null
3
6
49
5
65
55
null
MIT
JavaScript
jessedi0n/openai-chatgpt-chrome-extension
main
# OpenAI ChatGPT Chrome Extension This extension uses the magic of OpenAI's chat and image models to ensure a seamless ChatGPT-Like experience - all without ever having to leave your favorite website. Start a A.I. powered conversation or generate stunning images with just a few clicks. ## 📸 Screenshots <div style="display: flex; gap: 20px; justify-content: start; align-items: start;"> <img src='assets/preview-1.png' width='400' alt='Chat Completion Preview' /> <img src='assets/preview-2.png' width='400' alt='Image Generation Preview' /> </div> ## ✨ Features - 💨 Easy access to OpenAI's chat and images models without leaving your favorite website. - 💬 Chat with the latest GPT models. - 🌄 Generate stunning images with DALL-E 3. - 🎛️ Seamlessly switch between different models. - 💾 Copy or download the generated content with just a click. - 🛟 API-Key is safely stored in the browser's local storage and never leaves your device. ## 🚀 Getting started 1. Clone the extension or download the latest release. 2. Open the Chrome browser and navigate to [chrome://extensions](chrome://extensions). 3. Enable the developer mode by clicking the toggle switch in the top right corner of the page. 4. Click on the "Load unpacked" button and select the cloned extension folder. 5. The options page automatically opens where you need to enter your OpenAI API-Key. The extension should now be installed and ready to use. Open the extension by clicking on the chrome-themed OpenAI icon in the top right corner of your browser. ## 🚨 Note For the extension to work, you need to have an OpenAI API-Key. You can get one by signing up on the [OpenAI website](https://openai.com/). Once you have an API-Key, you will need to enter it in the options page of the extension.
A Chrome extension that uses the magic of OpenAI's chat and image models to ensure a seamless ChatGPT-Like experience - all without ever having to leave your favorite website.
javascript,chrome-extension,openai,chromium-extension,gpt-3,chrome,gpt-4,chatgpt
2023-02-09T19:28:52Z
2024-05-13T19:34:13Z
2024-05-13T19:34:13Z
1
8
48
0
14
49
null
MIT
JavaScript
oslabs-beta/Splache
dev
<div align = 'center'> <img src = 'https://i.imgur.com/P3gEOhl.png'/> <h3> A Lightweight NPM package for GraphQL Caching with Redis </h3> ![GraphQL](https://img.shields.io/badge/-GraphQL-E10098?style=for-the-badge&logo=graphql&logoColor=white) ![Redis](https://img.shields.io/badge/redis-%23DD0031.svg?style=for-the-badge&logo=redis&logoColor=white) [![License](https://img.shields.io/github/license/Ileriayo/markdown-badges?style=for-the-badge)](public/LICENSE) Introducing Splache (/splæʃ/), an agile, user-friendly, and lightweight JavaScript library that efficiently caches GraphQL queries using the power of Redis. The Splache library is designed for improved performance and reduced load on your GraphQL server. Through leveraging the speed and scalability of Redis, Splache is able to provide an efficient and unique solution for caching GraphQL queries! </div> <br/> <hr/> [Launch Page](www.splachejs.com) : Learn More about Splache & Demo our package via an interactive sandbox pre-installation [Install our NPM Package](https://www.npmjs.com/package/splache) [Documentation](https://medium.com/@zhangn356/exploring-caching-solutions-for-graphql-an-introduction-to-splache-4a497bdb597f) <hr/> ## Get Started and Installation Run ```npm install splache``` to install the package to import ```SplacheCacheWhole```, ```ResolverCache``` and ```SplacheCache```. ### Quick Start with Redis If you are new to Redis, here is the [documentation](https://redis.io/docs/getting-started/) to install redis and start a redis instance locally. ### Import splache ```node import splache from 'splache' ``` <hr/> ## Key Features 1.<b> The Caching of Whole Queries </b> Simply provide SpacheCacheWhole your schema, redis host, redis port, and password (Only provide the password if your external redis instance is password protected. If not, omit the password. Additionally, omit host, port, and password arguments if connecting to local redis instance) and then direct your queries through the middleware as seen in the example below. ```node import { SplacheCacheWhole } const cache = new SplacheCacheWhole(schema, host, post, password); app.use('/graphql', cache.wholeCache, (req, res) => { res.send(res.locals.queryResponse) }) ``` 2. <b> The Caching of Resolvers </b> ```node import { ResolverCache } from 'Splache' const cache = new ResolverCache(host, port, password) ``` Upon importing ResolverCache from our package, create a new instance of ResolverCache to access the ‘checkCache’ method. From there, simply wrap your resolver functions with our pre-built functionality. Here is an example: ```node planet : { type: Planet, args: { id : { description: 'id of the planet' type: new GraphQLNonNull(GraphQLString) } }, resolve: ((parent, args, context, info) => cache.checkCache(parents, args, context, info, getPlanet)) } ``` 3. <b> The Caching of Normalized Query Strings & Breakdown of Complex Nested Queries </b> Create a new instance of SplacheCache, passing in your schema, host, port, and password (omit host, port, and password if just connecting to local redis instance). By passing your query through our GQLquery method, it’ll generalize and split your query string and check the cache for these individual split queries. This reduces redundancy in your cache if existing cached queries are nested into a complex nested query. ```node import { SplacheCache } from 'splache' const cache = newSplacheCache(schema, host, port, password); app.use('/graphql', cacheGQLquery, (req, res) => { res.send(res.locals.queryResponse) }) ``` ## Currently Under Development ## Connect with the Team! | Nicholas Cathcart | Nicolas Jackson | Jessica Wang | Nancy Zhang | | :---: | :---: | :---: | :---: | | [![GitHub](https://skillicons.dev/icons?i=github)](https://github.com/nhcathcart) [![LinkedIn](https://skillicons.dev/icons?i=linkedin)](https://www.linkedin.com/in/nicholas-cathcart-4b3834267/)| [![GitHub](https://skillicons.dev/icons?i=github)](https://github.com/NicJax) [![LinkedIn](https://skillicons.dev/icons?i=linkedin)](www.linkedin.com/in/NicJax) | [![GitHub](https://skillicons.dev/icons?i=github)](https://github.com/jesswang-dev) [![LinkedIn](https://skillicons.dev/icons?i=linkedin)](https://www.linkedin.com/in/jessica-xuecen-wang) | [![GitHub](https://skillicons.dev/icons?i=github)](https://github.com/zhangn356 ) [![LinkedIn](https://skillicons.dev/icons?i=linkedin)](https://www.linkedin.com/in/zhangn356) | ## Want to Contribute? Splache is an open-source product that is open to input and contributions from the community. After trying out the product, feel free to raise issues or submit a PR request.
A GraphQL caching solution utilizing the speed of Redis
graphql,javascript,redis,redis-cache,typescript,npm,npm-package
2023-02-03T20:38:13Z
2023-05-08T15:10:37Z
null
64
29
62
0
2
49
null
MIT
TypeScript
FrigadeHQ/javascript
main
<H3 align="center"><strong>Official Frigade JavaScript SDKs</strong></H3> <div align="center">The easiest way for developers to build high-quality product onboarding and education.</div> <br /> <div align="center"> <a href="https://frigade.com">Website</a> <span> · </span> <a href="https://demo.frigade.com">Demo</a> <span> · </span> <a href="https://github.com/FrigadeHQ">GitHub</a> <span> · </span> <a href="https://docs.frigade.com">Docs</a></div> <br /> ![Frigade iamge](https://frigade.com/img/frigademetaimage-v2.png) [Frigade](<https://frigade.com>) is a developer-first platform for building quality product onboarding. A powerful, flexible API and native SDKs allow you to build onboarding 10x faster, experiment more easily, and drive customer success. Frigade supports a series of use cases such as: - **Registration**: Maximize the number of users getting through your sign up flows with beautiful explainers, progress bars, and forms. - **Activation**: Convert more customers by taking them through a series of key onboarding items specific to their role, permissions, or goals. - **Adoption**: Introduce audiences to specific features that deliver value with native hotspots, tooltips, tours, and interactive product guides. - **Engagement**: Keep active customers engaged, announce new product features, and create lifecycle specific re-onboarding flows for dormant or churned customers. - **Retention**: Increase retention by delivering the right content at the right time, and by asking your users for feedback on the product. # Features **Component Library** Unstyled, ready-made components for building high‑quality user onboarding, faster. Onboarding checklists, tooltips, product walkthroughs, and much more. [See components](https://frigade.com/components) **Integrations** Integrations with Segment, Mixpanel, Posthog, and more to power targeting, analytics, and communications. **Content Management** Lightweight CMS built-in to update and test onboarding copy and content. **Versioning** Frigade makes it easy to manage multiple versions of onboarding across staging and production. Revisit previous versions of onboarding to see how they performed and make improvements. **Customer Journeys** Frigade automatically tracks state management and onboarding progress. Give your team full observability into the customer journey, and use Frigade to kick off automated workflows. To learn more, visit [frigade.com](<https://frigade.com>)
Frigade is a platform for building high quality product onboarding with React and powerful API. Product tours, getting started checklists, banners, and much more.
banners,checklist,javascript,onboarding,react,tooltips,tours,frigade
2023-02-02T07:29:45Z
2024-05-17T21:45:54Z
2024-05-17T21:48:52Z
11
274
1,575
1
12
46
null
NOASSERTION
TypeScript
XantreDev/preact-signals
main
# `@preact-signals` Monorepo Goal of the project to provide comprehensive tooling for using [`preact/signals`](https://github.com/preactjs/signals) ### Playground: [![image](./example.jpg) check in stackblitz](https://stackblitz.com/edit/vitejs-vite-h8ib6b?file=src%2FApp.tsx) ## Packages - [`@preact-signals/utils`](./packages/utils): A package that contains a lot of utils for many purposes. I think it should be kinda stdlib for using preact signals. Utils contains: Solid js like resource, for handling async reactivity, Simple flat store implementation that wraps values into signals getters, Vue deep reactivity tracking, high order components. - [`@preact-signals/safe-react`](./packages/react): Unofficial `@preact/signals` integration for react, that tries to be bullet proof. - [`@preact-signals/query`](./packages/query): Tanstack query core preact signals bindings - [`@preact-signals/unified-signals`](./packages/unified-signals/): This package reexports `@preact/signals-react`, with hooks shims in case of overwriting dependencies. And also polyfills newest preact signals features. ## Contributing Contributions are welcome! 1. Clone the repository: `git clone https://github.com/XantreDev/preact-signals.git` 2. Install dependencies: `pnpm install` 3. Transpile packages and start vite devservers: `pnpm watch` 4. Make changes 5. Commit changes to new branch 6. Run `pnpm changeset` and make PR ## License This project is licensed under the [MIT License](LICENSE).
Preact Signals: Supercharge your React/Preact development! Unleash the power of reactive programming with hooks, components, a TanStack query adapter, and more. Code smarter, not harder
components,javascript,preact,react,reactive-programming,standard-library,typescript,utilities
2023-02-04T19:50:01Z
2024-05-21T00:23:40Z
2024-05-16T04:01:06Z
1
107
471
1
0
44
null
MIT
TypeScript
innovatorved/nexttalk-frontend
main
# NextTalk Frontend NextTalk is a real-time chat application that supports both individual and group chats. This is the frontend codebase of the application built using Next.js and Prisma ORM. The database used is MongoDB. Note : This is the frontend codebase of the application. The backend codebase can be found [here](https://github.com/innovatorved/nexttalk-backend.git) . ## Installation To run the application locally, follow these steps: 1. Clone the repository: ```bash git clone https://github.com/innovatorved/nexttalk-backend.git ``` 2. Install the dependencies: ```bash cd nexttalk-frontend npm install ``` 3. Set up the environment variables: ```bash cp .env.example .env.local ``` 4. Set up Prisma Configuration ```bash npx prisma generate ``` 5. Start the serve : For Development server change the `NODE_ENV` variable in `.env.local` to `development` and run the following command: ```bash npm run dev ``` For Production server change the `NODE_ENV` variable in `.env.local` to `production` and run the following commands: ```bash npm run build npm run start ``` 6. Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. Note : Make sure to replace the values in `.env.local` with your own values. ## Features - Real-time individual chat - Real-time group chat - User authentication and authorization - Ability to create, join and leave chat groups - View list of online and offline users - Search for users and chat groups - Responsive design ## Tech Stack Next.js, Prisma ORM, MongoDB, GraphQl, Apollo Client, React, ChakraUI, Nodejs ## Contributing Contributions are welcome! Feel free to create a pull request or raise an issue. Please read the [contributing guidelines](https://github.com/innovatorved/nexttalk-frontend/blob/main/CONTRIBUTING.md) before contributing. ## License This project is licensed under the MIT License - see the [LICENSE](https://github.com/innovatorved/nexttalk-frontend/blob/main/LICENSE) file for details. ## Authors - [Ved Gupta](https://www.github.com/innovatorved) ## 🚀 About Me I'm a Developer i will feel the code then write . ## Support For support, email vedgupta@protonmail.com
NextTalk is a real-time chat application that supports both individual and group chats. This is the frontend codebase of the application built using Next.js and Prisma ORM. The database used is MongoDB.
chat,innovatorved,real-time,realtime,nextjs,apollo,apollo-client,graphql,mongodb,prisma
2023-02-06T08:08:14Z
2023-06-06T14:24:44Z
null
1
4
90
0
0
44
null
MIT
TypeScript
somiibo/instagram-bot
main
<p align="center"> <a href="https://somiibo.com/platforms/instagram-bot"> <img src="https://cdn.itwcreativeworks.com/assets/somiibo/images/logo/somiibo-brandmark-blue-x.svg" width="100px"> </a> </p> <p align="center"> <img src="https://img.shields.io/github/package-json/v/itw-creative-works/node-powertools.svg"> <br> <img src="https://img.shields.io/npm/dm/node-powertools.svg"> <img src="https://img.shields.io/website/https/itwcreativeworks.com.svg"> <img src="https://img.shields.io/github/contributors/itw-creative-works/node-powertools.svg"> <br> <br> <strong>Instagram Bot</strong> is a free software that automatically follows users and likes & comments on posts </p> # 💻 Installation ### Direct link [![Windows](https://img.shields.io/badge/-Windows_x64-blue.svg?style=for-the-badge&logo=windows)](https://somiibo.com/download?download=windows) [![MacOS](https://img.shields.io/badge/-MacOS-lightblue.svg?style=for-the-badge&logo=apple)](https://somiibo.com/download?download=macos) [![Unix](https://img.shields.io/badge/-Linux/BSD-red.svg?style=for-the-badge&logo=linux)](https://somiibo.com/download?download=linux) [![All versions](https://img.shields.io/badge/-All_Versions-lightgrey.svg?style=for-the-badge)](https://somiibo.com/download?download=null) ### Command line Clone this repo then run the following commands: ```shell cd <download-directory> npm install npm start ``` # 🎉 Features - Grow your Instagram organically - Automatically follows users and likes & comments on posts - Those users will then become organic followers # 🙋‍♂️ Want to contribute? Want to contribute? Great! All contributions are welcome, from code to documentation to graphics to design suggestions to bug reports. [Join our Discord server](https://somiibo.com/discord) to participate
Instagram bot. Automatically follows users and likes & comments on posts
agency,automation,front-end,frontend,instagram-bot,javascript,marketing,marketing-automation,nodejs,saas
2023-02-07T11:42:00Z
2024-05-23T01:56:55Z
null
2
0
469
1
7
42
null
null
JavaScript
ErickWendel/editing-videos-nodejs-ffmpeg
main
# editing-videos-nodejs-ffmpeg ## About This is the examples shown in my live screen about [editing videos on-demand using Node.js Streams and ffmpeg (pt-br)](https://www.youtube.com/live/RixFzeltO68?feature=share) First of all, leave your star 🌟 on this repo. Access our [**exclusive telegram channel**](https://bit.ly/canalerickwendel) so I'll let you know about all the content I've been producing ## Complete source code - Access it in [app](./recorded/) ![Live01](https://user-images.githubusercontent.com/8060102/216472447-1490150f-1fd0-4933-bdf7-16d5fbcb23c9.jpg) ## Have fun!
editing videos on-demand using Node.js Streams and ffmpeg (pt-br)
ffmpeg,javascript,nodejs,noframeworks,streams,tutorial,webapi
2023-02-02T18:23:11Z
2023-02-02T23:17:17Z
null
1
0
3
0
11
38
null
null
JavaScript
devvsakib/javascript-problem-solving
main
<div align="center"> # JavaScript Problem Solving </div> There are many ways to solve a problem. This repository is a collection of different ways to solve a problem. The solutions are written in JavaScript. The solutions are not necessarily the best solutions, but they are solutions. ## How to use this repository Each problem is in its own folder. Each folder contains a README.md file that describes the problem. The README.md file also contains a link to the solution. The solution is in the solution.js file. ## Level Indicators The level indicators are used to indicate the difficulty of the problem. The indicators are: - **L-B** - Level Beginner - **L-I** - Level Intermediate - **L-A** - Level Advanced ## How to contribute If you have a solution to a problem, please submit a pull request. If you have a problem that you would like to see solved, please submit an issue. We will be glad if you add your problem and solution to this repository. Get started by forking this repository. 1. Fork this repository 2. Clone your forked repository 3. Create a new branch 4. Add your problem and solution 5. Commit and push your changes 6. Create a pull request ### How to add a problem 1. Create a new folder with the problem name. **ex: 0001 FizzBuzz ( L-B )** 2. Create a README.md file in the folder. 3. Add the problem description in the README.md file. 5. Add the problem added by section in the README.md file. 6. Add the Reference link in the README.md file. 7. Create a solution file named YourProblemName.js in the folder. **ex: FizzBuzz.js** > Follow this [file](https://github.com/devvsakib/javascript-problem-solving/blob/main/README_template_for_solution.md) for reference. ## How to run the solutions Each solution is written in JavaScript. You can run the solutions in your browser's console or in Node.js or any IDE like **VSCODE**. ## Problems Collection You will find all the common/beginner level problems in this repository.
JavaScript Problem Solving is an open-source project. This project focused to JavaScript beginner level problem, task, solution.
javascript,javascript-practice,open-source,problem-solving,algorithms,data-structures,hackerrank,leetcode,hacktoberfest,hacktoberfest2023
2023-02-03T16:36:50Z
2023-10-11T14:52:01Z
null
25
59
182
1
40
37
null
GPL-3.0
JavaScript
shubhxg/web-dev-journey
main
<h1 align="left"> Full-stack Web Dev Journey 🌐 </h1> > **Use `ctrl + click` to open link in new tab. 🖱** ## Foundations ### Bash and git related - [Bash (Linux)](https://github.com/shubhsharma19/web-dev-journey/tree/main/Bash) - [Git and GitHub](https://github.com/shubhsharma19/web-dev-journey/tree/main/Git) ### HTML, CSS, JS related - [HTML (Hyper Text Markup Language)](https://github.com/shubhsharma19/web-dev-journey/tree/main/HTML) - [CSS (Cascading Styles Sheet)](https://github.com/shubhsharma19/web-dev-journey/tree/main/CSS/readme.md) - [Sass (Syntactically Awesome Style Sheets)](https://github.com/shubhsharma19/web-dev-journey/tree/main/Sass/readme.md) - [JavaScript Language](https://github.com/shubhsharma19/web-dev-journey/tree/main/JavaScript/readme.md) ## Backend Stuff ### Nodejs, npm and nodemon related - [Nodejs, Bun and Runtime env](https://github.com/shubhsharma19/web-dev-journey/tree/main/NodeJS/readme.md) - [Importing and Exporting modules in NodeJS](https://github.com/shubhsharma19/web-dev-journey/tree/main/NodeJS/modules/readme.md) - [Useful built-in modules](https://github.com/shubhsharma19/web-dev-journey/tree/main/NodeJS/modules/usefulmodules.md) - [Reading and writing files using nodejs](https://github.com/shubhsharma19/web-dev-journey/tree/main/NodeJS/working_with_files.md) - [npm](https://github.com/shubhsharma19/web-dev-journey/tree/main/NodeJS/npm.md) - [HTTP server in NodeJS](https://github.com/shubhsharma19/web-dev-journey/tree/main/NodeJS/server_using_http_module/readme.md) ### Servers, Express, Middlewares related - [What is Express?](https://github.com/shubhsharma19/web-dev-journey/tree/main/Express/readme.md) - [Prerequisites for backend](https://github.com/shubhsharma19/web-dev-journey/blob/main/Express/01_basic_prerequisites.md) - [Creating HTTP server using Express](https://github.com/shubhsharma19/web-dev-journey/blob/main/Express/02_creating_http_server.md) - [Parsing and body of request](https://github.com/shubhsharma19/web-dev-journey/blob/main/Express/03_body_of_request.md) - [Sending status codes](https://github.com/shubhsharma19/web-dev-journey/blob/main/Express/04_sending_status_codes.md) - [Middlewares](https://github.com/shubhsharma19/web-dev-journey/blob/main/Express/05_middlewares.md) - [Global Catches](https://github.com/shubhsharma19/web-dev-journey/blob/main/Express/06_globalcatches.md) - [Custom middlewares](https://github.com/shubhsharma19/web-dev-journey/blob/main/Express/07_custom_middlewares.md) - [Useful middlewares and libraries](https://github.com/shubhsharma19/web-dev-journey/blob/main/Express/08_useful_middlewares_and_libraries.md) - [JWT and User Authentication](https://github.com/shubhsharma19/web-dev-journey/blob/main/Express/09_jwt.md) ### Database related
Notes made by me in my full-stack web dev journey.
css,html,javascript,git,bootstrap,sass,api,nodejs,expressjs,react
2023-01-30T10:02:19Z
2024-04-21T20:39:56Z
2024-04-07T10:18:58Z
6
47
230
1
7
35
null
GPL-3.0
null
xplpc/xplpc
main
<p align="center"> <a href="https://github.com/xplpc/xplpc" target="_blank" rel="noopener noreferrer"> <img width="250" src="extras/images/logo.png" alt="XPLPC Logo"> </a> <br> XPLPC - Cross Platform Lite Procedure Call <br> </p> <p align="center"> <a href="https://github.com/xplpc/xplpc/actions/workflows/c.yml"><img src="https://github.com/xplpc/xplpc/actions/workflows/c.yml/badge.svg"></a> <a href="https://github.com/xplpc/xplpc/actions/workflows/cxx.yml"><img src="https://github.com/xplpc/xplpc/actions/workflows/cxx.yml/badge.svg"></a> <a href="https://github.com/xplpc/xplpc/actions/workflows/kotlin-desktop.yml"><img src="https://github.com/xplpc/xplpc/actions/workflows/kotlin-desktop.yml/badge.svg"></a> <a href="https://github.com/xplpc/xplpc/actions/workflows/kotlin-android.yml"><img src="https://github.com/xplpc/xplpc/actions/workflows/kotlin-android.yml/badge.svg"></a> <a href="https://github.com/xplpc/xplpc/actions/workflows/swift.yml"><img src="https://github.com/xplpc/xplpc/actions/workflows/swift.yml/badge.svg"></a> <a href="https://github.com/xplpc/xplpc/actions/workflows/wasm.yml"><img src="https://github.com/xplpc/xplpc/actions/workflows/wasm.yml/badge.svg"></a> <a href="https://github.com/xplpc/xplpc/actions/workflows/flutter.yml"><img src="https://github.com/xplpc/xplpc/actions/workflows/flutter.yml/badge.svg"></a> <a href="https://github.com/xplpc/xplpc/actions/workflows/python.yml"><img src="https://github.com/xplpc/xplpc/actions/workflows/python.yml/badge.svg"></a> </p> <p align="center"> <a href="https://www.codacy.com/gh/xplpc/xplpc/dashboard?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=xplpc/xplpc&amp;utm_campaign=Badge_Grade"><img src="https://app.codacy.com/project/badge/Grade/aaff32bd69594525a289545c56324801"></a> </p> ## Project The XPLPC project connects languages and platforms, allowing for the transfer of serialized data between them. This is achieved without the need for a server, but instead by utilizing device memory. This approach is known as Lite Procedure Call. The Platform Proxy class plays a crucial role in this process by connecting both languages and platforms, and facilitating the transfer of data using device memory instead of the HTTP protocol. This allows for a more efficient and streamlined communication process. For example, you can call a procedure written in C++ code from a mobile application, or vice versa, with ease. This opens up a wide range of possibilities for developers and allows for a more seamless integration of different languages and platforms. The XPLPC project is also highly user-friendly, as it does not require the use of generators or additional tools. This means that the generated library can be added to your existing project without the need for any rewriting of code. This plug-and-play feature allows for full code reuse and makes the integration process smooth and hassle-free. ## Workflow <p align="center"> <a href="https://github.com/xplpc/xplpc" target="_blank" rel="noopener noreferrer"> <img src="extras/images/how-it-works.png" alt="XPLPC How It Works"> </a> </p> ## How to use Using C++ code: ```cpp auto request = Request{ "sample.login", Param<std::string>{"username", "paulo"}, Param<std::string>{"password", "123456"}, Param<bool>{"remember", true}, }; Client::call<std::string>(request, [](const auto &response) { std::cout << "Returned Value: " << (response ? response.value() : "Empty") << std::endl; }); ``` Using Kotlin code: ```kotlin val request = Request( "sample.login", Param("username", "paulo"), Param("password", "123456"), Param("remember", true) ) Client.call<String>(request) { response -> println("Returned Value: $response") } ``` Using Swift code: ```swift let request = Request( "sample.login", Param("username", "paulo"), Param("password", "123456"), Param("remember", true) ) Client.call(request) { (response: String?) in print("Returned Value: \(response)") } ``` Using WASM with Typescript: ```typescript const request = new XRequest( "sample.login", new XParam("username", "paulo"), new XParam("password", "123456"), new XParam("remember", true), ); XClient.call<string>(request).then((response : string | undefined) => { console.log("Returned Value: " + response); }); ``` Using Flutter with Dart: ```dart var request = Request("sample.login", [ Param("username", "paulo"), Param("password", "123456"), Param("remember", true), ]); Client.call<String>(request, (response) { print(response); }); ``` Using Python code: ```python request = Request( "sample.login", [ Param("username", "paulo"), Param("password", "123456"), Param("remember", True), ], ) response = Client.call(request) print(response) ``` Obs: There are syntax suggar for async/await/future calls, see the documentation about each language/platform. ## Supported languages and platforms * C * C++ * Kotlin (Android, Desktop) * Swift (iOS, macOS, tvOS, watchOS, Catalyst) * WebAssembly * Flutter (iOS, Android, Desktop) * Python ## Documentation * [General](docs/general.md) * [C](docs/c.md) * [C++](docs/cxx.md) * [Kotlin](docs/kotlin.md) * [Swift](docs/swift.md) * [WebAssembly](docs/wasm.md) * [Flutter](docs/flutter.md) * [Python](docs/python.md) * [Dependency Manager](docs/dependency-manager.md) * [Contribution](docs/contribution.md) * [Purpose](docs/purpose.md) ## License [MIT](http://opensource.org/licenses/MIT) Copyright (c) 2022-2024, Paulo Coutinho
Cross Platform Lite Procedure Call - Support Linux, macOS, Windows, iOS, Android, Web Assembly, Flutter, Kotlin, Python and More
cross-platform,cxx,javascript,kotlin,mobile,procedure-call,rpc,swift,typescript,webassembly
2023-01-27T09:11:06Z
2024-04-18T18:01:30Z
2024-04-18T18:01:30Z
1
78
286
0
0
35
null
MIT
Python
SereinMC/Serein
main
<p align="center"> <h1 align="center">Serein</h1> </p> <p align="center"><img width="200" src="./logo.svg" alt="logo"></a></p> <p align="center"> <a href="https://github.com/SereinMC/Serein/blob/main/LICENSE"><img src="https://img.shields.io/github/license/SereinMC/serein" alt="license"></a> <a href="https://www.npmjs.com/package/@pureeval/serein"><img src="https://img.shields.io/npm/v/%40pureeval%2Fserein" alt="npm"></a> <a href="https://www.npmjs.com/package/@pureeval/serein"><img src="https://img.shields.io/npm/dw/%40pureeval%2Fserein" alt="download"></a> <a href="https://www.npmjs.com/package/@pureeval/serein"><img src="https://img.shields.io/badge/minecraft_support-latest-8A2BE2" alt="minecraft"></a> </p> Serein is a scaffolding project developed for the [Minecraft: Bedrock Edition Script API](https://learn.microsoft.com/en-us/minecraft/creator/scriptapi/) to help developers create and manage projects efficiently and elegantly. View this document in [简体中文](README_zh-CN.md) | English > Serein is unofficial and not from Minecraft or approved by Minecraft. > "Minecraft" is a trademark of Mojang Synergies AB - 🚀 Create and manage projects efficiently - 🛠️ Support JavaScript / TypeScript - 📦 Automatically packaging `mcpack` - 🎛️ Automatically cross-platform (Windows/Linux/Android) deployment with Hot Reload - 💡 Build with `esbuild` and support for npm modules - 🪐 Random `pack_icon` generator - 🔌 Support for embedding into existing projects [![asciicast](https://asciinema.org/a/600827.svg)](https://asciinema.org/a/600827) ### Getting Started Go to [Serein Document](https://sereinmc.github.io/Docs/) for details. ### Contributing to Serein Serein still has many issues and features yet to be implemented, and the main maintainer ([@Lampese](https://github.com/Lampese)) is still high school student with very limited time. If you have questions or suggestions for improvements, feel free to create an issue or send an email to me@lampese.com. If you wish to contribute to the project, we welcome Pull Requests, even if it may be initially wrong. ### Special Thanks - Thanks to [@MeowShe](https://github.com/MeowShe) for providing the CDN service. - Thanks to cowsay for contributing a cow to this project.
A Minecraft Bedrock ScriptAPI creation manage tool.
javascript,minecraft,typescript,script-api,gametest,node-cli
2023-01-26T12:28:55Z
2024-02-24T17:55:49Z
2024-02-24T17:55:49Z
5
156
170
0
1
34
null
MIT
JavaScript
Joao208/jira-ai
main
# Jira AI https://user-images.githubusercontent.com/59159025/217343115-2dbf1f35-11b9-46ff-bf18-eec7b9153b8c.mp4 Jira AI is an application that uses the ChatGPT language model to automatically generate task descriptions in Jira. ## Technologies Used Forge (Node.js) React ## Installation To install Jira AI, you need to follow the following steps: 1. Clone this repository 2. Install dependencies by running `npm install` 3. Generate your OpenAI credentials [Here](https://platform.openai.com/account/api-keys) 4. Configure Jira API access credentials ([Tutorial](https://developer.atlassian.com/platform/forge/getting-started/)) 5. Create an app ```bash # You will only use the `manifest.yml` # Select the Blank template forge create ``` 6. Move the app's manifest to the repository ```bash cat <your_app_name>/manifest.yml > jira-ai/manifest.yml ``` 7. Create the envs in atlassian: ```bash forge variables set OPEN_AI_URL https://api.openai.com/v1 forge variables set OPEN_AI_KEY <YOUR KEY> ``` 8. Export envs ```bash export FORGE_USER_VAR_OPEN_AI_URL=https://api.openai.com/v1 export FORGE_USER_VAR_OPEN_AI_KEY=<YOUR KEY> ``` 9. Deploy the application by running ```bash npm run deploy forge install # Choose JIRA and put in your account URL ``` 10. You are now ready to use. ## Usage After installation, you can use Jira AI to automatically generate task descriptions. Simply follow the instructions in the user interface to use the ChatGPT language model. ## Contribution If you would like to contribute to the development of Jira AI, follow the following steps: 1. Create a branch for your changes 2. Submit a pull request ## License This project is licensed under the MIT license. See the LICENSE file for more information.
O Jira AI é um aplicativo de inteligência artificial que utiliza o modelo de linguagem ChatGPT da OpenAI para automatizar a criação de descrições de tarefas no Jira. Com uma interface amigável e fácil de usar, o Jira AI torna o processo de criação de tarefas mais eficiente e preciso. Desenvolvido com Forge (Node.js) e React, o Jira AI é uma solução
chat-gpt,chatgpt,javascript,jira,react
2023-02-07T03:48:30Z
2023-02-11T18:01:41Z
null
1
0
12
0
3
34
null
null
JavaScript
Shm-Rsuf/personal-portfolio
main
# Getting Started with Create React App This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ## Available Scripts In the project directory, you can run: ### `npm start` Runs the app in the development mode.\ Open [http://localhost:3000](http://localhost:3000) to view it in your browser. The page will reload when you make changes.\ You may also see any lint errors in the console. ### `npm test` Launches the test runner in the interactive watch mode.\ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. ### `npm run build` Builds the app for production to the `build` folder.\ It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes.\ Your app is ready to be deployed! See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. ### `npm run eject` **Note: this is a one-way operation. Once you `eject`, you can't go back!** If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. ## Learn More You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). To learn React, check out the [React documentation](https://reactjs.org/). ### Code Splitting This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) ### Analyzing the Bundle Size This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) ### Making a Progressive Web App This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) ### Advanced Configuration This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) ### Deployment This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) ### `npm run build` fails to minify This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
This GitHub repository contains code for a personal portfolio website using React, TailwindCSS, React-Router, Gsap-Animation, WebGL, Three.js, and Emailjs. It likely showcases the developer's work and skills in an interactive way.
gsap-animation,react-router,reactjs,tailwindcss,emailjs,javascript,html,threejs,webgl
2023-02-02T03:44:58Z
2023-10-23T12:45:16Z
null
1
0
34
0
3
32
null
null
JavaScript
somiibo/twitter-bot
main
<p align="center"> <a href="https://somiibo.com/platforms/twitter-bot"> <img src="https://cdn.itwcreativeworks.com/assets/somiibo/images/logo/somiibo-brandmark-blue-x.svg" width="100px"> </a> </p> <p align="center"> <img src="https://img.shields.io/github/package-json/v/itw-creative-works/node-powertools.svg"> <br> <img src="https://img.shields.io/npm/dm/node-powertools.svg"> <img src="https://img.shields.io/website/https/itwcreativeworks.com.svg"> <img src="https://img.shields.io/github/contributors/itw-creative-works/node-powertools.svg"> <br> <br> <strong>Twitter Bot</strong> is a free software that automatically follows users and likes, retweets & comments on posts </p> # 💻 Installation ### Direct link [![Windows](https://img.shields.io/badge/-Windows_x64-blue.svg?style=for-the-badge&logo=windows)](https://somiibo.com/download?download=windows) [![MacOS](https://img.shields.io/badge/-MacOS-lightblue.svg?style=for-the-badge&logo=apple)](https://somiibo.com/download?download=macos) [![Unix](https://img.shields.io/badge/-Linux/BSD-red.svg?style=for-the-badge&logo=linux)](https://somiibo.com/download?download=linux) [![All versions](https://img.shields.io/badge/-All_Versions-lightgrey.svg?style=for-the-badge)](https://somiibo.com/download?download=null) ### Command line Clone this repo then run the following commands: ```shell cd <download-directory> npm install npm start ``` # 🎉 Features - Grow your Twitter organically - Automatically follows users and likes, retweets & comments on posts - Those users will then become organic followers # 🙋‍♂️ Want to contribute? Want to contribute? Great! All contributions are welcome, from code to documentation to graphics to design suggestions to bug reports. [Join our Discord server](https://somiibo.com/discord) to participate
Twitter bot. Automatically follows users and likes, retweets & comments on posts
agency,automation,front-end,frontend,javascript,marketing,marketing-automation,nodejs,saas,social-media
2023-02-07T11:55:28Z
2024-05-23T01:57:54Z
null
2
0
468
0
10
32
null
null
JavaScript
sudharsanan123/sudharsanan-portfolio.github.io
main
Welcome!!!-This is my portfolio-build using Html,Css,Javascript # sudharsanan-portfolio.github.io![project-img-1](https://user-images.githubusercontent.com/109327528/215249029-1d9214cd-1fad-4902-8a95-72a170970299.png) ![project-img-2png](https://user-images.githubusercontent.com/109327528/215249034-be15a98d-5390-4231-beb7-fbb5f140699e.png) ![project-img-3](https://user-images.githubusercontent.com/109327528/215249036-ca50df99-7585-41b1-917f-94069bbfc484.png) ![project-img-4](https://user-images.githubusercontent.com/109327528/215249039-d3e658c8-ca3c-43a3-ad77-361b9ed74abf.png) ![project-img-5](https://user-images.githubusercontent.com/109327528/215249042-6b7e0ed7-aad1-4f16-b972-5a951a1a2b03.png)
Portfolio website
css,html,javascript,portfolio
2023-01-28T05:59:20Z
2024-01-30T04:51:41Z
null
1
3
56
0
0
30
null
null
CSS
colbychittenden/DuckOS
main
<a name="readme-top"></a> <br /> <div align="center"> <a href="https://skyhax.xyz"> <img src="media/logo.gif" alt="Logo" width="80" height="80"> </a> <h3 align="center">DuckOS v6</h3> <p align="center"> A purely static web-based operating system designed to combat internet censorship. <br /> <a href="https://github.com/GikitSRC/DuckOS/wiki"><strong><< Documentation for developers >></strong></a> <br /> <br /> <a href="https://skyhax.xyz/directories/duckos.html">Quick Demo</a> · <a href="https://skyhax.xyz">Official Website</a> · <a href="https://discord.gg/MxRvwQjrAa">Discord Server</a> </p> </div> --- <!-- ABOUT THE PROJECT --> ## About DuckOS 🪐 ![Screenshot of DuckOS]([https://media.discordapp.net/attachments/1141194299996897320/1162793530813583500/7Hu7Nyu.png?ex=657499dd&is=656224dd&hm=6c3a3bf31d8f414aedafdace83e9d65b1b213f3aea606137f3d3772feb8f130c&=&format=webp&quality=lossless&width=1432&height=676]) There are so many web-based operating systems out there for this purpose... (I won't call out names) but I never tought they feel like a real Operating System. That's when I got the idea of creating my own web-based operating system, with a unique look and packed with features, having a goal of being at least 90% bug-free and easy to use. But why should you choose to use DuckOS over the others? Here's why: * Meets the standards. Modern, simple and user-friendly interface. * Powerful. Equipped with the best flagship proxies to help you go on unblocked sites. * Flexible. Easily customize, develop and integrate. Of course, DuckOS isn't created to replace your real Operating System (MacOS, Windows, etc). It will always be a project I made just for fun, with NO GOALS OF MAKING SCHOOL DISTRICTS CHASE AFTER ME Find our website's link on the `top of the page` <p align="right">(<a href="#readme-top">back to top</a>)</p> --- <!-- GETTING STARTED --> ## Self-Hosting 💾 These are instructions on hosting DuckOS by yourself. ### Prerequisites * 28MB of Disk Space (1MB if you replace the images with FontAwesome) * Your own Domain * Static Web Hosting Service ### Installation 1. Make a fork DuckOS's Github Repo 2. You can host DuckOS on a static web hosting service like [Netlify](https://www.netlify.com/) or [Cloudflare Pages](https://pages.cloudflare.com/) (There are many other options available) <br> **That's it! With just two steps, you can get DuckOS up and running ;) However, if you want dynamic proxies to work, you'll have to do a bit more work and add a subdomain accordingly with the proxies app.** <p align="right">(<a href="#readme-top">back to top</a>)</p> --- <!-- CONTRIBUTING --> ## Contributing 🦮 Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**. 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! Thanks again! 1. Fork the Project 2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`) 3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`) 4. Push to the Branch (`git push origin feature/AmazingFeature`) 5. Open a Pull Request <p align="right">(<a href="#readme-top">back to top</a>)</p> --- <!-- LICENSE --> ## License 📝 Distributed under the Apache 2.0 License. See `LICENSE.txt` for more information. <p align="right">(<a href="#readme-top">back to top</a>)</p> --- <!-- CONTACT --> ## Contact 📱 ### [XENITHZ](https://github.com/X3N1THZ) - DISCORD: codecorruption ### justinkk - [Email](hi@justinkopf.com) - [Website](https://justinkopf.com) - iMessage: message@justinkopf.com ### [Colbster937](https://github.com/colbychittenden) - [Email](mailto:colbster937@colbster937.dev) - [Profile](https://colbster937.dev) - Discord: Colbster937 ### Original Skyhax founder: Arthur Jiang - [Profile Page](https://arthur-can.design) - admin@skyhax.lol [Discord Server](https://discord.gg/MxRvwQjrAa) Project Link: [DuckOS Demo](https://skyhax.xyz/directories/duckos) <p align="right">(<a href="#readme-top">back to top</a>)</p> --- <!-- ACKNOWLEDGMENTS --> ## Acknowledgments 🤭 Resources that made DuckOS possible. * [Apache 2.0 License](license.txt) * [Fontawesome](https://fontawesome.com/) * [JQuery](https://jquery.com/) * [Visual Studio Code](https://code.visualstudio.com/) * [Canva](https://www.canva.com/) * [Github](https://github.com) <br> <p align="right">(<a href="#readme-top">back to top</a>)</p>
A pure JavaScript web-based operating system. 100% static but seemingly dynamic 💖
skyhax,html,javascript,operatingsystem,webapp,colbster937,justinkk1,x3n1thz
2023-01-28T05:06:20Z
2024-03-27T12:40:27Z
2023-09-16T15:30:18Z
10
8
1,001
0
81
29
null
Apache-2.0
HTML
John-Weeks-Dev/twitter-clone
master
# Twitter Clone (twitter-clone) ### Tutorial showing you how to build Twitter If you'd like a step by step guide on how to build this just **CLICK THE IMAGE BELOW** [![GO TO JOHN WEEKS DEV TUTORIAL VIDEOS](https://user-images.githubusercontent.com/108229029/220173582-bd4beef4-165a-4272-a3c5-5c98a6e44918.png)](https://www.youtube.com/watch?v=RWJF0xSSaps) Come and check out my YOUTUBE channel for lots more tutorials -> https://www.youtube.com/@johnweeksdev **LIKE**, **SUBSCRIBE**, and **SMASH THE NOTIFICATION BELL**!!! ## App Setup ``` git clone https://github.com/John-Weeks-Dev/twitter-clone.git composer install cp .env.example .env php artisan cache:clear composer dump-autoload php artisan key:generate composer require laravel/breeze --dev php artisan breeze:install vue --ssr php artisan serve ``` Create the DB ``` DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=twitter-clone DB_USERNAME=root DB_PASSWORD= ``` Now migrate your DB ``` php artisan migrate php artisan db:seed ``` Now run this command to start the project ``` npm i npm run dev ``` You should be good to go! # Application Images ![Screenshot 2023-01-26 at 16 45 28](https://user-images.githubusercontent.com/108229029/214846914-799dd1dd-a063-4a39-b41f-0c18d1ff365c.png) ![Screenshot 2023-01-26 at 16 45 53](https://user-images.githubusercontent.com/108229029/214846904-a4e3cbfe-dd24-451c-b0ba-79f6068283e3.png) ![Screenshot 2023-01-26 at 16 46 08](https://user-images.githubusercontent.com/108229029/214846901-27368967-7f5a-4acf-91c9-8d4dad756fae.png) ![Screenshot 2023-01-26 at 16 47 03](https://user-images.githubusercontent.com/108229029/214846892-3bed7033-c600-4161-87c9-ee18fe06e6c3.png) ![Screenshot 2023-01-26 at 16 47 24](https://user-images.githubusercontent.com/108229029/214846886-e401fbda-746a-4a6d-9e56-a2e75ab54873.png) ![Screenshot 2023-01-26 at 16 47 38](https://user-images.githubusercontent.com/108229029/214846882-c3ed31ad-6898-4ac7-96a7-2ff2daa35ae7.png) ![Screenshot 2023-01-26 at 16 47 51](https://user-images.githubusercontent.com/108229029/214846876-bfeb7762-c316-404b-b832-ceb967b97005.png)
This is a Twitter Clone made with Vue 3, Laravel, Tailwind CSS, and Inertia JS
amazon-clone,file-upload,html,inertia,inertiajs,laravel,tailwind-css,tutorial,twitter,twitter-clone
2023-01-26T13:08:11Z
2023-02-20T17:53:39Z
null
1
0
6
0
8
29
null
null
PHP
ankoh/sqlynx
main
<p align="center"> <img src="misc/logo.png" width=80> </p> <p align="center"> <a href="https://github.com/ankoh/sqlynx/actions/workflows/push_main.yml"><img src="https://github.com/ankoh/sqlynx/actions/workflows/push_main.yml/badge.svg?branch=main" /></a> <a href="https://github.com/ankoh/sqlynx/actions/workflows/renovate.yml"><img src="https://github.com/ankoh/sqlynx/actions/workflows/renovate.yml/badge.svg" /></a> <a href="https://coveralls.io/github/ankoh/sqlynx?branch=main"><img src="https://coveralls.io/repos/github/ankoh/sqlynx/badge.svg?branch=main" /></a> <a href="https://opensource.org/licenses/MPL-2.0"><img src="misc/badge_mpl2.svg?raw=true" /></a> <a href="https://github.com/ankoh/sqlynx/commits/main"><img src="misc/badge_wip.svg?raw=true" /></a> </p> --- SQLynx is a library for creating and analyzing a compact version of the PostgreSQL AST. It builds around a Bison parser that materializes AST Nodes into a single Flatbuffer vector. It can be compiled to WebAssembly and has been originally built for lightweight SQL instrumentation, running on every user keystroke in DashQL. _Each AST node is packed into [24 bytes](https://github.com/ankoh/sqlynx/blob/b38e952afcd3367c91ea18f068ed58183dc59683/proto/sqlynx/parsed_script.fbs#L355-L361) and references matched substrings in the original script text. This encoding is compact and efficient for simple passes, but is not directly suited for a full semantic analysis._ <img src="misc/ast.png?raw=true" width="680px"> --- ### Building ``` make infra_macos # Install dependencies to .infra, `infra_linux` for linux yarn install # Install npm packages make proto # Generate flatbuffers make core_native_o0 # Build unoptimized native core library make core_native_o2 # Build optimized native core library with debug symbols make core_native_tests # Run native tests make core_wasm_o3 # Build optimized wasm core library make core_js_o3 # Build js bundle with wasm module and js api make core_js_tests # Run js tests using the wasm module make snapshots # Update snapshots make benchmark_pipeline # Benchmark the processing pipeline make svg_symbols # Update svg sprites used in the PWA make pwa_tests # Run js tests of the PWA # PWA dev server, you will spend most time here during development # # Make sure to increase the number of file system watchers for hot module reloading: # MacOS: sudo sysctl -w kern.maxfiles=524288 # Linux: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p # make pwa_dev # Run the dev server of the PWA make native_tests # Run rust tests of native app make native_mac_o0 # Create a debug build packaged as .dmg, open devtools with (cmd + alt + i) make native_mac_universal # Create a universal build packaged as .dmg make native_mac_updates # Create universal app updates with code signing (requires signing key) ``` --- ### Incremental parsing with Tree-sitter? Tree-sitter is a great parser framework and I recommend everyone to try it out. It gives you flexible incremental parsing without much hassle and is a perfect fit for many editors. SQLynx was built for specific database systems. The systems Hyper, Umbra, NoisePage, AlloyDB and DuckDB all use Bison parsers derived from the PostgreSQL grammar. The PostgreSQL grammar stood the test of time and established itself as de-facto reference for SQL syntax. Staying close to PostgreSQL simplifies building frontends for these database systems without worrying too much about grammar differences. SQLynx builds around a carefully optimized and very fast parser based on the PostgreSQL-grammar and provides lightweight semantic analysis passes, running on every single keystroke. SQLynx is still doing work in `O(text-length)` with every input event, as opposed to `O(change-size)` by Tree-sitter. Yet, SQLynx analyzes most input in well under a millisecond in your browser, even when replacing the entire text. After all, the parser is not the only component that has to be tuned for fast analysis passes, incremental parsing alone "only" gives you a head-start for the AST update. SQLynx maintains B+-tree ropes, dictionary-encodes and tags SQL object names in-flight and performs efficient post-order DFS traversals through linear scans over a compact AST representation. --- ### What does "fast" mean in numbers? Here are timings for TPC-DS Q1 on my laptop. All steps run single-threaded on a M1Max. SQLynx spends **5us** with scanning, **10us** with parsing, and **15us** with analyzing, leaving plenty of time for Javascript to reflect changes in the UI. ``` Run on (10 X 24.1324 MHz CPU s) CPU Caches: L1 Data 64 KiB L1 Instruction 128 KiB L2 Unified 4096 KiB (x10) Load Average: 10.72, 6.78, 5.17 ---------------------------------------------------------- Benchmark Time CPU Iterations ---------------------------------------------------------- scan_query 5367 ns 5349 ns 100176 parse_query 10602 ns 10542 ns 64493 analyze_query 15533 ns 15495 ns 45057 move_cursor 435 ns 434 ns 1623384 complete_cursor 6200 ns 6173 ns 111914 compute_layout 13414 ns 13377 ns 53352 ```
[WIP] Unofficial SQL client for the Hyper database system and Salesforce Data Cloud
browser,editor,node,sql,wasm,javascript,web
2023-02-05T09:15:18Z
2024-05-23T06:37:08Z
null
3
722
2,824
3
0
28
null
MPL-2.0
C++
muffafa/ChatGPT-CopyIt-Chrome-Extension
main
# [ChatGPT CopyIt Chrome Extension](https://chrome.google.com/webstore/detail/chatgpt-copyit/ogakgacjkoojmdahpelppalilhhplnbe?hl=en&authuser=0) This Chrome extension adds a "Copy" button to the end of each answer in OpenAI's chat interface. It also shows the number of characters and words in each answer. <div align="center"> <h1>ChatGPT CopyIt Chrome Extension</h1> <a class="header-badge" target="_blank" href="https://chrome.google.com/webstore/detail/chatgpt-copyit/ogakgacjkoojmdahpelppalilhhplnbe"> <img src="https://img.shields.io/badge/Chrome%20Web%20%20Store-download-green"> </a> <a class="header-badge" target="_blank" href="https://www.linkedin.com/in/muffafa/"> <img src="https://img.shields.io/badge/style--5eba00.svg?label=LinkedIn&logo=linkedin&style=social"> </a> <a class="header-badge" target="_blank" href="https://twitter.com/muffafa"> <img alt="Twitter Follow" src="https://img.shields.io/twitter/follow/muffafa?style=social"> </a> <sub>Author: <a href="https://linktr.ee/muffafa" target="_blank">Muhammed Mustafa (muffafa) Savar</a><br> <small> February, 2023</small> </sub> </div> ## Installation YOU CAN DIRECTLY [DOWNLOAD](https://chrome.google.com/webstore/detail/chatgpt-copyit/ogakgacjkoojmdahpelppalilhhplnbe) IT FROM CHROME WEBSTORE 1. Download the `ChatGPT-CopyIt-Chrome-Extension` folder to your local machine. 2. Open Google Chrome and navigate to the "Extensions" page. 3. Turn on "Developer mode". 4. Click "Load unpacked" and select the `ChatGPT-CopyIt-Chrome-Extension` folder. ## How to Use 1. Open the chat interface in OpenAI. 2. Scroll to the bottom of an answer to see the "Copy" button. ![chat-interface](./img/intro/ChatGPT-CopyIt-Chrome-Extension1.jpg) 3. Click the "Copy" button to copy the text to your clipboard. ![copied](./img/intro/ChatGPT-CopyIt-Chrome-Extension2.jpg) 4. You can paste it anywhere you want! ![paste](./img/intro/ChatGPT-CopyIt-Chrome-Extension3.jpg)
ChatGPT CopyIt adds a copy to clipboard button end of each answer. Also it shows word and character counter.
chatgpt,chatgpt-chrome-extension,chrome-extension,chrome-web-store,copy,copy-paste,copy-to-clipboard,extension,javascript
2023-02-04T12:38:02Z
2023-04-24T01:41:25Z
null
1
0
34
0
3
28
null
GPL-3.0
JavaScript
JustAWaifuHunter/darkcord
master
<div align="center"> <br /> <img src="https://i.imgur.com/ZqpK5wo.png" title="darkcord" width="546" /> <br /> <p> <a href="https://github.com/JustAWaifuHunter/darkcord/actions"><img src="https://github.com/JustAWaifuHunter/darkcord/actions/workflows/tests.yml/badge.svg" alt="Tests status" /></a> <a href="https://www.npmjs.com/package/darkcord"><img src="https://img.shields.io/npm/dm/darkcord" alt="Npm Package" /></a> <a href="https://www.codefactor.io/repository/github/justawaifuhunter/darkcord"><img src="https://www.codefactor.io/repository/github/justawaifuhunter/darkcord/badge" alt="CodeFactor" /></a> </p> </div> ## About Darkcord is a [Node.js](https://nodejs.org) module to easily interact with [Discord API](https://discord.com/developers/docs/intro). ## Installation **Node.js 16.9.0 or newer is required to installation.** ```sh-session npm install darkcord yarn add darkcord pnpm add darkcord ``` ## Example Usage ### Gateway Example ```js import { Client, Constants } from "darkcord"; const GatewayIntentBits = Constants.GatewayIntentBits; const ClientIntents = GatewayIntentBits.Guilds | GatewayIntentBits.GuildMessage | GatewayIntentBits.MessageContent; const client = new Client("token", { gateway: { intents: ClientIntents, }, }); client.on("ready", () => { console.log(`Connected to Discord Gateway`); }); client.on("interactionCreate", async (interaction) => { if (interaction.isCommand()) { await interaction.reply({ content: "Pong!" }); } }); client.connect(); ``` ### HTTP Interactions Example ```js import { InteractionClient } from "darkcord"; const client = new InteractionClient("public key", { rest: { token: "token", }, webserver: { port: 8080, }, }); client.on("connect", () => { console.log("Listening on port 8080"); }); client.on("interactionCreate", async (interaction) => { if (interaction.isCommand()) { await interaction.reply({ content: "Pong!" }); } }); client.connect(); ``` ### Voice #### Install voice packages ```sh-session npm install shoukaku yarn add shoukaku pnpm add shoukaku npm install kazagumo yarn add kazagumo pnpm add kazagumo ``` ##### Spotify ```sh-session npm install kazagumo-spotify yarn add kazagumo-spotify pnpm add kazagumo-spotify ``` ```js import { Client } from "darkcord"; import { Lava } from "@darkcord/lava"; const Nodes = [ { name: "Node 1", url: "localhost:2333", auth: "youshallnotpass", secure: false, }, ]; const voicePlugin = Lava({ nodes: Nodes, defaultSearchEngine: "youtube", }); const client = new Client("token", { gateway: { intents: YOUR_INTENTS, }, plugins: [voicePlugin], }); client.lava.lavalink.on("ready", (node) => console.log(`Node ${node} is Ready`), ); client.lava.on("playerStart", (player) => { client.channels.cache.get(player.textId).createMessage({ content: `Now playing **${track.title}** by **${track.author}**`, }); }); client.on("ready", () => console.log("Client is Ready")); client.connect(); ``` ## Useful Links - [Website](https://darkcord.denkylabs.com) - [GitHub](https://github.com/JustAWaifuHunter/darkcord) - [npm](https://npmjs.com/package/darkcord) - [Discord API Discord server](https://discord.gg/discord-api)
A NodeJS Library to interact with discord api
ws,api,discord,javascript,node,nodejs,typescript,http,http-server,interactions
2023-01-26T09:40:04Z
2024-03-23T15:42:25Z
null
3
17
420
0
6
28
null
MIT
TypeScript
RONAKPATELLLLLLL/Weird-Working-Hacks
main
# WeirdWorkingHacks The best Hacks for everything out there # Blooket Hacks fixed Thanks! DO NOT EDIT, OR ELSE!! PLEASE Hacks For everything you Need Them For # I give full credit for the Blooket and Gimkit cheats to Aerell and TheLazySquid. I just wanted them to be in another place too. <p align="center">Blooket Cheats</p> <p align="center">Cheats made by someone who knows more about what they're doing</p> <h3 align="center"><a href="https://github.com/RONAKPATELLLLLLL/WeirdWorkingHacks/tree/main/Tutorials/Blooket%20Cheats">Instructions for importing bookmarklets</a></h2> # Vision Board - [ ] Auto Play - [ ] GUI ingame chat for cheaters? (Low chance of this happening) - [ ] More Racing cheats - [ ] Change name during game - [ ] Set players gold/crypto ## Information <details><summary><h3>How to use</h3></summary> There are 3 good methods to using these scripts: 1. Importing one of the Bookmarklets.html files using [these instructions](https://github.com/RONAKPATELLLLLLL/WeirdWorkingHacks/tree/main/Tutorials/Blooket%20Cheats) 2. Going to the [GitHub pages site](https://minesraft2.github.io/Blooket-Cheats), choosing a gamemode, then dragging a cheat to your bookmarks bar or clicking one to copy the script 3. Copying a script and running it in the inspect element console </details> <details><summary><h3>What can I do if JavaScript is blocked?</h3></summary> We don't actually know what to do about this or how to fix it, sorry. </details> <details><summary><h3>(script) is not working?</h3></summary> Make sure you're running it properly, if it still doesn't work and other cheats do, then make an issue </details> <details><summary><h3>What is the difference between obfuscated and unobfuscated?</h3></summary> Obfuscated are scripts that are changed to be unreadable, unobfuscated are the original scripts (both with an added update checker). Unobfuscated scripts will not work if you try copying it and pasting it into a bookmarklet. This is because of the lack of semicolons in certain places. Please either use the obfuscated scripts or use one of the methods mentions in the first FAQ </details> <details><summary><h3>Can you give me infinite tokens / bypass daily limit / permanently give me blooks / change pack luck?</h3></summary> No, these are things we would've already done if they were possible, they're managed on the backend of Blooket so we can't modify them </details> <details><summary><h3>Can you make hacks for (game)</h3></summary> I'll start making scripts for other games when the Blooket scripts stop needing so much maintenance </details> <details><summary><h3>Can you make more Battle Royale cheats</h3></summary> Battle Royale is a gamemode that works almost entirely on the host's end. The only thing we have control over is answering questions. </details> <details><summary><h3>How do I do this on mobile?</h3></summary> These scripts aren't made for mobile, so we don't really know how to get them to work on it. </details> <details><summary><h3>What's the Mobile GUI?</h3></summary> The mobile GUI is the original GUI I made long ago. Some people said it worked on mobile and it's a lot neater for mobile use apparently so we just called it that. </details> <details><summary><h2>List of Cheats</h2></summary> * [GUI] * [Mobile GUI] ### [Monster Brawl] * [Double Enemy XP] * [Half Enemy Speed] * [Instant Kill] * [Invincibility] * [Kill Enemies] * [Magnet] * [Max Current Abilities] * [Next Level] * [Remove Obstacles] * [Reset Health] ### [Cafe] * [Max Items] * [Remove Customers] * [Reset Abilities] * [Set Cash] * [Stock Food] ### [Crypto Hack] * [Always Triple] * [Auto Guess] * [Choice ESP] * [Password ESP] * [Remove Hack] * [Set Crypto] * [Set Password] * [Steal Players Crypto] ### [Deceptive Dinos] * [Auto Choose] * [Rock ESP] * [Set Fossils] * [Set Multiplier] * [Stop Cheating] ### [Tower of Doom] * [Fill Deck] * [Max Cards] * [Max Health] * [Max Stats] * [Min Enemy] * [Set Coins] ### [Factory] * [Choose Blook] * [Max Blooks] * [Remove Glitches] * [Send Glitch] * [Set All Mega Bot] * [Set Cash] ### [Fishing Frenzy] * [Frenzy] * [Remove Distraction] * [Send Distraction] * [Set Lure] * [Set Weight] ### [Flappy Blook] * [Set Score] * [Toggle Ghost] ### [Global] * [Anti Flood Game] * [Auto Answer] * [Auto Sell Dupes On Open] * [Every Answer Correct] * [Flood Game] * [Get Daily Rewards] * [Highlight Answers] * [Prevent Suspension] * [Remove Random Name] * [Sell Cheap Duplicates] * [Sell Duplicate Blooks] * [Simulate Pack] * [Simulate Unlock] * [Spam Buy Blooks] * [Unlock Plus Gamemodes] * [Use Any Blook] #### [Intervals] * [Auto Answer] * [Highlight Answers] ### [Gold Quest] * [Always Triple] * [Auto Choose] * [Chest ESP] * [Reset All Gold] * [Reset Players Gold] * [Set Gold] * [Swap Gold] ### [Crazy Kingdom] * [Choice ESP] * [Choice ESP Loop] * [Disable Toucan] * [Max Stats] * [Set Guests] * [Skip Guest] ### [Battle Royale] * [Auto Answer] #### [Intervals] * [Auto Answer] ### [Blook Rush] * [Set Blooks] * [Set Defense] ### [Tower Defense] * [Earthquake] * [Max Towers] * [Remove Ducks] * [Remove Enemies] * [Remove Obsticles] * [Set Damage] * [Set Round] * [Set Tokens] ### [Tower Defense 2] * [Max Towers] * [Remove Enemies] * [Set Coins] * [Set Health] * [Set Round] ### [Santa's Workshop] * [Remove Distractions] * [Send Distraction] * [Set Toys] * [Set Toys Per Question] * [Swap Toys] </details> [^1]: [Overtime](https://github.com/overtimepog) # Gimkit Cheat ## Usage When in a Gimkit game, open the console (Ctrl+Shift+I) and paste the code for your desired gamemode after setting up an override. Read below for more information for each gamemode. ## All scripts now require a local override to be set up. Click [here](#setting-up-the-overrides) to see how to set up a local override. If you are unable to use local overrides, you can use the old version that doesn't require an override. You will need to answer all questions once before it begins working. ## General Use Scripts ### [Auto answer] This script automatically answers a question every ~1 second. Manually answering questions may cause them to be wrong even if they looked correct. ### [Player Higlighter] This script adds toggles that allow you to highlight where teammates and enemies are in relation to you. This is useful for games like Capture the Flag, Snowbrawl or Tag. ### [Cosmetic Picker] This script allows you to select any cosmetic you want, including unused ones such as clown. Nobody else can see the equipped cosmetics, they are only visible to you. ### [Freecam] This script allows you to move your camera independent of your player. When in freecam mode, you can move the camera by hitting u, h, j and k. If i'm gonna be honest, it's not actually that useful, but it's still a neat utility to have. ## Gamemode Specific Scripts ### [Classic] The trick for classic is loosely based around a trick found in [non-reai's Gimkit hack](https://github.com/non-reai/Gimkit-Hacks) to answer questions, rather than manually storing and answering questions. It automatically answers questions and purchases upgrades, and all you should manually do is purchase and use powerups. ### [Fishtopia] This script allows you to sell fish without being at the sell station and fish anywhere without being at water. Additionally, after using a "travel to..." thing (such as the travel to purple pond boat), you will be able to permanently use it from anywhere. ### [One Way Out] #### Patched: You can no longer use auto attack This script allows you to do a variety of things. First, you can purchase health, shield, bridges and checkpoints from anywhere. Secondly, it comes with an "Auto Attack" feature. While holding a weapon out, it will automatically fire it and kill the nearest enemy to you, even through walls. This lets you earn the money from killing enemies from anywhere, so you can simply loiter at spawn doing this until you can afford to get the third checkpoint. You need to purchase the bridge before the checkpoint, like normal. ### [Farmchain] This script does the standard stuff of getting water, research, seeds and unlocks from anywhere. On top of that, it comes with an "auto harvest" mode which will automatically collect grown crops from wherever, and an auto plant mode. Auto plant mode automatically will plant all seeds in your inventory from wherever you are, which can then be harvested with auto harvest. Once you begin using this, all you need to do is purchase and unlock seeds for it to plant. ### [Capture the flag] This script allows you to purchase upgrades and invisabits from anywhere. In the future it might highlight where opponents are, but that's still in the works. ### [Tag] For now, all this lets you do is buy upgrades from anywhere. As with capture the flag, more is in the works. ### [Snowbrawl] #### Patched: You can no longer use auto attack This script allows you to buy health and med packs from anywhere, but more importantly, it has an "Auto Attack" button. This allows will automatically damage and quickly kill the nearest player to you. Unlike in no way out, you really are attacking real players with this one and you effectively softlock the game in smaller lobbies. Please be responsible when using this. ## Updating the override In order to update the overrides, simply redownload the overrides and replace the old ones. # Gimkit Cheat This version of Gimkit Cheat was inspired by Gimkit Utility by [UndercoverGoose](https://github.com/UndercoverGoose), which was sadly taken down. The main things that were carried over from the other script are using Typescript, Rollup and Tampermonkey, which makes it easier to develop and use. If you do want to try out the older versions, check out v2. Install/Update it by clicking on [this link](https://raw.githubusercontent.com/TheLazySquid/GimkitCheat/main/build/bundle.user.js) while having [Tampermonkey](https://www.tampermonkey.net/) installed on your browser. ## Features Gimkit Cheat provides a nice, unified way to use different cheats. To open/close the hud, press "\" (backslash) on your keyboard while on Gimkit. It will show various menus, which should be fairly self explanatory. While it might look like a lot is missing, this script includes all still-working features from the old one. Which is to say, not a lot, since Gimkit patched almost everything out. ### General Cheats - **Auto Answer**: Automatically answers questions for you. - **Cosmetic Picker**: Allows you to use any cosmetic you want, even unused ones. These are only visible to you. - **Freecam**: Allows you to move your camera wherever you want, or even spectate other players. Once in freecam, use UHJK to move around. - **Player Highlighter**: Marks on your screen where teammates or enemies are in relation to you. - **Instant Use**: Tired of waiting for painfully slow bars to fill up just to purchase something minor? This allows you to use the nearest thing instantly by hitting enter. ### Gamemode Specific Cheats - **Classic**: Automatically purchases upgrades for you. Best used with Auto Answer. - **Super Rich Mode**: Identical to Classic, with adjusted values. - **Trust No One**: Tells you who the imposters are. Doesn't work if you join mid-game. - **Capture The Flag**: Purchase upgrades from anywhere - **Tag**: Purchase upgrades from anywhere - **Snowbrawl**: Purchase shield cans/medpacks from anywhere - **One Way Out**: Purchase shield cans/medpacks from anywhere - **Farmchain**: Adds options to automatically harvest/plant crops from anywhere and more to come!
The best Hacks for everything out there
blooket,cheat,game,gimkit,hack,blooket-cheats,blooket-hack,edpuzzle,edpuzzle-hacks,gimkit-cheat
2023-01-26T16:44:21Z
2023-05-19T18:33:09Z
null
1
1
353
3
13
28
null
NOASSERTION
HTML
berthutapea/bookshelf-app
main
# 📚 Bookshelf-Apps Submission Aplikasi Pengelolaan Data Menggunakan DOM dan Web Storage - Kelas Belajar Membuat Front-End Web untuk Pemula Oleh Dicoding 🗒️ [Sertifikat Kompetensi Kelas Belajar Membuat Front-End Web untuk Pemula](https://www.dicoding.com/certificates/72ZD9J65JPYW) ## 🚀 Deskripsi Kelas Belajar Membuat Front-End Web untuk Pemula <br> Disusun oleh: Dicoding Indonesia <br> Level: Pemula Kelas ini ditujukan untuk seorang Front-End Web Developer yang ingin mengembangkan website yang memiliki fungsionalitas lebih daripada hanya media informasi saja, sesuai dengan standar industri. Di akhir kelas, siswa dapat membuat aplikasi front-end web yang interaktif serta memiliki fitur penyimpanan menggunakan web storage. Materi yang dipelajari: - **Dasar JavaScript** : Mengenal bahasa pemrograman JavaScript serta dasar dalam pemrograman JavaScript seperti statement dan expression, variabel, operator, percabangan, perulangan, data structure, dan fungsi. (12 jam 45 menit) - **Browser Object dan DOM Manipulation** : Membahas tentang Browser Object, teknik manipulasi DOM, dan Event pada HTML element. (14 jam 45 menit) - **Web Storage** : Mengetahui Web Storage, tipe web storage, dan belajar menggunakan localStorage dalam untuk menyimpan data yang persisten. (6 jam 40 menit) Evaluasi Pembelajaran: - Submission (proyek akhir) membuat sebuah website yang menerapkan teknik manipulasi DOM dan web storage Total jam yang dibutuhkan untuk menyelesaikan kelas ini, mulai dari persiapan kelas sampai evaluasi belajar, adalah 36 jam. <br> <div align="center"> <img src="https://user-images.githubusercontent.com/95717485/188485268-90e682b9-fce9-470b-836e-d8838079a309.png" alt="Dicoding"> </div>
📚 Submission Aplikasi Pengelolaan Data Menggunakan DOM dan Web Storage - Kelas Belajar Membuat Front-End Web untuk Pemula Oleh Dicoding
bookshelf,javascript,web-storage
2023-02-02T20:17:46Z
2023-05-13T19:33:32Z
null
1
0
22
0
1
27
null
null
JavaScript
sudharsanan123/Survey_form
main
# Survey_form Build using Html,Css ![output](https://user-images.githubusercontent.com/109327528/216656338-8d1670e8-ebe7-47b4-b368-e04f11f4fc36.png)
survey-form
css,front-end-development,html,javascript
2023-02-03T16:29:21Z
2023-02-04T12:44:42Z
null
1
1
3
0
1
27
null
null
HTML
AtriSukul1508/Njack_Hack_It_Out-Tur1ng-
master
<div align="center"><h2> Tur1ng_ </h2></div> ![Contributors](https://img.shields.io/github/contributors/harshita214/Chrome-Extension?style=for-the-badge) ![PRs-Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=for-the-badge) </div> <!-- TABLE OF CONTENTS --> #### Table of Contents : * [Overview](#Overview) * [Open Source programs this repo has been part of](#Open-Source-programs-this-repo-has-been-part-of) * [Contribution Guidelines](#Contribution-Guidelines) * [Contributors](#Contributors) * [Feedback](#Feedback) <h2 align="center">Overview</h2> <p align="center"> - We are here to reduce the gap between students and developers 😉 - It is a blog website which contains updated tags to bring you relevant information directly to your homepage. Read our [Contributing Guidelines](https://github.com/AtriSukul1508/Njack_Hack_It_Out-Tur1ng-/blob/master/Contributing.md) Welcome to Njack_Hack_It_Out-Tur1ng-! We aim to bridge the gap between students and developers, providing a blog website that delivers relevant information directly to your homepage. Stay up-to-date with the latest tags and discover exciting content. ![Github Repo Size](https://img.shields.io/github/repo-size/AtriSukul1508/Njack_Hack_It_Out-Tur1ng-?style=for-the-badge&color=black) <div align="center"> <h3> Contribution is fun! ✨ </h3> </div> <br> We believe that contribution should be fun, enjoyable, and educational for everyone. We welcome all contributions, including bug reports, feature suggestions, and code updates. Please refer to our Contributing Guidelines for more information. ## Tech Used ⚙ <img src="https://img.shields.io/badge/MongoDB-4EA94B?style=for-the-badge&logo=mongodb&logoColor=white"> &nbsp; <img src="https://img.shields.io/badge/Express.js-404D59?style=for-the-badge"> &nbsp; <img src="https://img.shields.io/badge/React-20232A?style=for-the-badge&logo=react&logoColor=61DAFB"> &nbsp; <img src="https://img.shields.io/badge/Node.js-43853D?style=for-the-badge&logo=node.js&logoColor=white"> &nbsp; <details><summary><h2> Snapshots 📸 </h2></summary> <details><summary><h2> Home page </h2></summary> <img src="https://user-images.githubusercontent.com/95478617/217651292-61b27656-2083-446e-9c33-6fce0c9d6e1b.png"/> </details> <details><summary><h2> Write Blog page </h2></summary> <img src="https://user-images.githubusercontent.com/95478617/216022863-0bcecbfb-d8b6-4748-a3d3-48caffaf492f.png"/> </details> <details><summary><h2> All blogs of the user page </h2></summary> <img src="https://user-images.githubusercontent.com/95478617/216805020-e79db92a-6710-46f1-af6b-6f0a9040bb55.png"/> </details> <details><summary><h2> Single Blog View page </h2></summary> <img src="https://user-images.githubusercontent.com/95478617/216805007-b41f2efe-3cee-4ba5-91ef-ad59a97f3b32.png"/> <img src="https://user-images.githubusercontent.com/95478617/216805009-bc19c07e-6992-420a-906e-90c6d691a5f0.png"/> <img src="https://user-images.githubusercontent.com/95478617/216805012-2508f769-7b3d-48ee-9397-e09c771b3d92.png"/> </details> <details><summary><h2> Sign up page </h2></summary> <img src="https://user-images.githubusercontent.com/95478617/215736223-c24bf57e-49ab-4b69-ae99-65f287bd9558.png"/> </details> <details><summary><h2> Login page </h2></summary> <img src="https://user-images.githubusercontent.com/95478617/215501102-d46b61ec-c88d-4166-993c-81f60110d659.png"/> </details> </details> <p align="center"> Help to make it better by adding your ideas or by making current one better! Want the contribution to be fun, enjoyable, and educational for everyone. All contributions are welcome, including issues as well as updates. </p> <br> <br> ### How to Start? 📌 If you have a idea of any Njack_Hack_It_Out_Turn1ng you want to build just open an appropriate issue regarding this, we will discuss and assign you that issue. In case you are confused and have queries, just ping in the discord, will help you get along and build! <br> <br> <h3 align="center"> ‼️ For [JWOC'23](https://jwoc.tech/) program Admin and Mentor rights of Njack_Hack_It_Out_Turn1ng are given to [Atri Sukul](https://github.com/AtriSukul1508) ‼️ ## This Repo participated in 😍 |||| |--|--|--| |1.|<b>JWOC</b>|<img height="100" width="100" src="https://user-images.githubusercontent.com/94545831/219814617-703be394-c72b-4641-9bae-74345f78db12.png"/>| |||| |--|--|--| |2.|<b>GSSOC</b>|<img height="100" width="100" src="https://github.com/codervivek5/VigyBag/assets/63696299/0e79c05a-63f1-4c18-a85b-662b5a3332fc"/>| <br> <div align="center"><h2> Show ❤ by giving ⭐ this Repo </h2></div> If you like our project, please show your support by giving it a star ⭐️ on GitHub. We appreciate it! ## Thanks to our Contributors ⚡ We appreciate the valuable contributions made by the following individuals: <a href="https://github.com/AtriSukul1508/Njack_Hack_It_Out-Tur1ng-/graphs/contributors"> <img src="https://contrib.rocks/image?repo=AtriSukul1508/Njack_Hack_It_Out-Tur1ng-" /> </a> ## Feedback We value your feedback and suggestions. If you have any ideas for improving our project, please let us know.
Blog Website
javascript,blog,expressjs,nodejs,reactjs,mongodb
2023-01-28T14:53:02Z
2023-08-10T19:23:58Z
null
31
53
169
71
55
26
null
MIT
JavaScript
bosombaby/web3d-product
master
# 作品展示平台 ## 一、前言 `概述`:基于`WebGL`的三维引擎,目前是国内资料最多、使用最广泛的`三维引擎`,可以制作一些`3D`可视化项目 <img src="https://gitee.com/riskbaby/picgo/raw/master/blog/202210210954262.png" alt="2" style="zoom: 67%;" /> 目前随着`元宇宙`概念的爆火,`THREE`技术已经深入到了物联网、VR、游戏、数据可视化等多个平台。 最近一段时间主要对之前学习three.js的总结和记录,记录只对自己觉得重要的部分记录,其他的可以参考别的平台资源。 <img src="https://gitee.com/riskbaby/picgo/raw/master/blog/202302101849641.png" alt="10" style="zoom: 50%;" /> 目前作品的相关`展示平台`已上线:[VR_Team作品展示平台](https://product.vrteam.top/),欢迎大家查看。 `项目开源地址`:[web3d-product](https://github.com/bosombaby/web3d-product),下面为一部分的网页的作品展示。 ## 二、作品展示 ### 粒子特效 <img src="https://gitee.com/riskbaby/picgo/raw/master/blog/202302131959988.png" alt="4" style="zoom: 50%;" /> `在线预览`:[粒子平面墙](https://product.vrteam.top/examples/particles/points_wall.html) <img src="https://gitee.com/riskbaby/picgo/raw/master/blog/202302131959828.png" alt="1" style="zoom: 50%;" /> `在线预览`:[迷失太空](https://product.vrteam.top/examples/particles/lost_in_space.html) <img src="https://gitee.com/riskbaby/picgo/raw/master/blog/202302131959473.png" alt="2" style="zoom: 50%;" /> `在线预览`:[粒子海浪](https://product.vrteam.top/examples/particles/particles_sea.html) <img src="https://gitee.com/riskbaby/picgo/raw/master/blog/202302131959445.png" alt="3" style="zoom: 50%;" /> `在线预览`:[银河系](https://product.vrteam.top/examples/particles/galaxy_generator.html) ### 二维漫画 <img src="https://gitee.com/riskbaby/picgo/raw/master/blog/202302132003153.png" alt="5" style="zoom:50%;" /> `在线预览`:[漫画-蜘蛛侠](https://product.vrteam.top/examples/comic/spider-man.html) ### 可视化 <img src="https://gitee.com/riskbaby/picgo/raw/master/blog/202302132005539.png" alt="6" style="zoom: 50%;" /> `在线预览`:[电脑主机拆解](https://product.vrteam.top/examples/visualization/computer_host.html) ### 后期处理 <img src="https://gitee.com/riskbaby/picgo/raw/master/blog/202302132006366.png" alt="7" style="zoom:50%;" /> `在线预览`:[后期处理-虚幻花朵](https://product.vrteam.top/examples/processing/webgl_postprocessing_unreal_bloom.html) ## 三、项目使用流程 ### 3.1 项目结构 <img src="https://gitee.com/riskbaby/picgo/raw/master/blog/202302101913095.png" alt="11" style="zoom: 80%;" /> **功能说明** - `public文件夹`:存放一些独立的案例界面(html格式),不需要依赖,可以直接运行在网页 - `assets`存在依赖的资源 - `Basic`:基础界面 - `Comic`:二维漫画 - `Particles`:粒子效果 - `Processing`:后期chuli - `Visualization`:可视化 - `src` - `views`:功能主界面 ### 3.2 基本使用 ```js //安装依赖 npm i //运行项目 npm run dev ``` ### 3.3 项目模板 ![12](https://gitee.com/riskbaby/picgo/raw/master/blog/202302101919199.png) 该模板集成最简单的一个`three.js`环境,在此基础上可以自行搭建。 ### 3.4 技术栈 `前端`:vue + three.js + js
这个Github开源仓库是基于three.js技术的,包含了多个案例,如粒子特效、二维漫画、可视化和实践项目等。无论你是想学习如何使用three.js创建炫酷的3D场景,还是寻找实用的示例代码,这个仓库都会是一个不错的选择。同时,里面还提供了一些实践项目,可以帮助你更深入地了解three.js在实际项目中的运用。无论你是初学者还是有一定经验的开发者,这个开源仓库都值得你去探索!
threejs,vue3,webgl,3d,css3,html5,javascript
2023-02-08T13:16:38Z
2023-11-11T07:04:22Z
null
1
0
31
0
5
26
null
null
JavaScript
ismailmunyentwari9/African_Women_inTech
main
<a name="readme-top"></a> # 📗 Table of Contents - [📖 About the Project](#about-project)<br> - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) -[LIVE DEMO](#live-demo)<br> -[LOOM VIDEO](#loom-video)<br> 💻 Getting Started<br> -Setup<br> -Prerequisites<br> - [👥 Authors](#authors)<br> - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [📝 License](#license) # 📖 [Capstone project ] <a name="about-project"></a> *[Capstone project]* This project is a final project that I worked on to demonstrate the skills and knowledge I have acquired during the first module of the program. it's about The impact of open and free culture on innovation and creativity <br> **Key Features**<br> simple Capstone project built with Bootstrap,html5,CSS and simple Javascript With linter configurattion.<br> [Set up linters]<br> [Add navigation bar for mobile and Desktop version]<br> [Add intro header section for mobile and Desktop version]<br> [Add media queries(Responsiveness)]<br> **Tech Stack**<br> This portfolio project, was built with html5 and css3 Client<br> **.Bootstrap** **.Javascript** **.HTML** **.CSS** ## 🚀 LIVE DEMO <a name="live-demo"></a> To get deployed version of my Capstone project<br> visit <a href="https://ismailmunyentwari9.github.io/My_capstone_project_001/">Capstone project:001</a> ## 🚨 LOOM VIDEO <a name="loom-video"></a> If you want to watch full Presantation of my project through video<br> visit <a href="https://www.loom.com/share/ff70161facb3489aac43f7e3e78d1938">**LOOM**</a> ## 💻 Getting Started<br> To get a local copy up and running, follow these steps.<br> Prerequisites<br> In order to run this project you need:<br> Any IDE or text editor that supports HTML and CSS Git installed<br> Setup<br> Clone this repository to your desired folder:<br> 1. Clone this repository or download the Zip folder:"<br> $ git clone <(https://github.com/ismailmunyentwari9/capstone-one)><br> 2. Navigate to the location of the folder in your machine:<br> (C:\Users\AMANI\Documents\GitHub)<br> **3. Press Enter to navigate to your local clone.** <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 👥 Author<a name="authors"></a> 👤 *Ismail Munyentwari* - GitHub: [@ismailmunyentwari9](https://github.com/ismailmunyentwari9) - LinkedIn: [LinkedIn](https://www.linkedin.com/in/munyentwari-ismail-754718191/) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🔭 Future Features <a name="future-features"></a> -Create More pages. <br> -Adding a screen reader. <br> -adding direct emails to my email account. <br> <p align="right">(<a href="#readme-top">back to top</a>)</p> ## ⭐️ Show your support <a name="support"></a> This is first capstone project in Microverse,<br> I will feel loved when you give me some positive comments and likes. or other positive feedbacks to continue my journey🤩🤩 ## 🙏 Acknowledgments <a name="acknowledgements"></a> We would like to extend a special thanks to our talented web designer Cindy Shin in Behance. for their hard work and dedication in creating a visually stunning and user-friendly website design. Your creativity and attention to detail have truly brought our skills to the next level. Thank you for your contributions. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. <a name="readme-top"></a>
This project is a final project that I worked on to demonstrate the skills and knowledge I have acquired during the first module of the program. it's about The impact of open and free culture on innovation and creativity
bootstrap,css3,html5,javascript
2023-02-04T06:28:43Z
2023-02-07T09:14:59Z
null
1
1
4
0
0
24
null
MIT
HTML
somiibo/linkedin-bot
main
<p align="center"> <a href="https://somiibo.com/platforms/linkedin-bot"> <img src="https://cdn.itwcreativeworks.com/assets/somiibo/images/logo/somiibo-brandmark-blue-x.svg" width="100px"> </a> </p> <p align="center"> <img src="https://img.shields.io/github/package-json/v/itw-creative-works/node-powertools.svg"> <br> <img src="https://img.shields.io/npm/dm/node-powertools.svg"> <img src="https://img.shields.io/website/https/itwcreativeworks.com.svg"> <img src="https://img.shields.io/github/contributors/itw-creative-works/node-powertools.svg"> <br> <br> <strong>LinkedIn Bot</strong> is a free software that automatically follows users and likes, reposts & comments on posts </p> # 💻 Installation ### Direct link [![Windows](https://img.shields.io/badge/-Windows_x64-blue.svg?style=for-the-badge&logo=windows)](https://somiibo.com/download?download=windows) [![MacOS](https://img.shields.io/badge/-MacOS-lightblue.svg?style=for-the-badge&logo=apple)](https://somiibo.com/download?download=macos) [![Unix](https://img.shields.io/badge/-Linux/BSD-red.svg?style=for-the-badge&logo=linux)](https://somiibo.com/download?download=linux) [![All versions](https://img.shields.io/badge/-All_Versions-lightgrey.svg?style=for-the-badge)](https://somiibo.com/download?download=null) ### Command line Clone this repo then run the following commands: ```shell cd <download-directory> npm install npm start ``` # 🎉 Features - Grow your LinkedIn organically - Automatically follows users and likes, reposts & comments on posts - Those users will then become organic followers # 🙋‍♂️ Want to contribute? Want to contribute? Great! All contributions are welcome, from code to documentation to graphics to design suggestions to bug reports. [Join our Discord server](https://somiibo.com/discord) to participate
LinkedIn Bot. Automatically follows users and likes, reposts & comments on posts
agency,automation,front-end,frontend,javascript,linkedin,linkedin-bot,marketing,marketing-automation,nodejs
2023-02-07T12:33:53Z
2024-05-23T01:51:49Z
null
2
0
468
0
3
24
null
null
JavaScript
decapapi/Super-Mario-Phaser
main
# **Super Mario Phaser** Super Mario Phaser is a recreation of the classic Super Mario Bros game using the Phaser framework. This project aims to bring the nostalgic experience of playing the iconic platformer to modern web browsers. One exciting feature of this game is the random level generation, which ensures that each playthrough offers a unique and challenging experience. ## **Table of Contents** - [Demo](#Demo) - [Controls](#Controls) - [Contributing](#Contributing) - [License](#License) ### Demo A live demo of the game can be accessed at [https://decapapi.github.io/Super-Mario-Phaser/](https://decapapi.github.io/Super-Mario-Phaser/). Some screenshots of the game: ![Level Gameplay](assets/showcase/level-gameplay.gif) ![Level Start](assets/showcase/level-start.gif) ![Level End](assets/showcase/level-end.gif) ![Settings Screen](assets/showcase/settings-screen.png) ### Controls Controls are fully customizable, however default controls are: **Jump:** SPACE **Move Left:** A **Move Right:** D **Crouch:** S **Fire:** Q ### Contributing Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request. Make sure to adhere to the existing code style and follow the established guidelines.
Recreation of the classic Super Mario Bros game using the Phaser framework, featuring random level generation.
javascript,phaser,super-mario-bros,videogame
2023-01-27T14:50:22Z
2024-01-17T13:18:52Z
null
1
0
25
0
3
23
null
MIT
JavaScript
lisandrascruz/PretaLab-Disney-LP
main
# [O Poder do Futuro] Lógica de Programação > O [Poder do Futuro](https://opoderdofuturo.pretalab.com/?itm_source=site&itm_medium=popup&itm_campaign=opoderdofuturo) é uma formação introdutória a tecnologia baseada nos pilares de conhecimento técnico, autoconhecimento e autogestão, promovido pela [PretaLab](https://www.pretalab.com/ "Site do PretaLab") com apoio da [Disney](https://disney.com.br/ "Site da Disney"). O poder do futuro é inspirado no Pantera Negra: Wakanda para Sempre - filme da Marvel. A formação é voltada à mulheres negras ou indígenas que se identificam com o gênero feminino, convidando-as para fazer parte de uma nova geração de mulheres na tecnologia que mudará o curso da história, assim como Shuri e Nakia, duas personagens profundamente comprometidas com a ciência e seu impacto positivo. Esse repositório é voltado ao módulo de Lógica de Programação, terá duração de 5 semanas, onde serão ministrados a base de conhecimento para todo o desenvolvimento. Ao final, as alunas estarão aptas para desenvolver um projeto prático. --- ## Planejamento #### [06/fev - 11/fev] Semana 1 - Introdução a Lógica de Programação - Preparação do ambiente de desenvolvimento - Revisão e prática #### [13/fev - 18/fev] Semana 2 - Variáveis, constantes e seus padrões de nomeclatura - Tipos de dados (não são os do RPG) - Operadores aritméticos - Operadores relacionais - Tabela verdade - Estrutura Condicional: *if - else if - else* - Revisão e prática #### [20/fev - 25/fev] Semana 3 - Estrutura de Repetição: *for* #### [27/fev - 04/mar] Semana 4 - Estrutura de Repetição: *for e/ou while* - Revisão e prática #### [06/mar - 11/mar] Semana 5 - Projetinho final --- Vocês são manas incríveis, nunca duvidem dos seus potenciais, mandem a impostora pro cantinho dela. Será um prazer aprender e ensinar com vocês, vamos juntas, pois assim somos mais fortes! Feito com muito carinho <3
Parceria de PretaLab e Disney para impulsionar pessoas pretas e indígenas, que se identificam com o gênero feminino, na tecnologia.
code,disney,javascript,pretalab,technology
2023-01-31T12:28:39Z
2023-03-06T21:27:18Z
null
3
0
98
0
25
23
null
null
JavaScript