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
CMOISDEAD/next-library
master
![Next Library](https://github.com/CMOISDEAD/next-library/assets/51010598/983a61b5-b827-44a3-ba7d-fe10660563e1) <h1 align="center">📖 Next Library 📖</h1> # Description Next Library is an innovative virtual library application that offers a seamless and personalized way to manage your book collection. With Next Library, you can easily organize your books, discover new reads, and create a customized reading experience. Whether you're a casual reader or a book enthusiast, Next Library provides a user-friendly platform to enhance your reading journey. Experience the joy of a virtual library and embark on a new chapter of literary exploration with Next Library. # Features 🚅 - **Custom PDF Viewer Tool**: Open and view PDF files directly within the virtual library program using a customized PDF viewer tool. - **Multiple Colorschemes**: Personalize the user interface by choosing from a variety of colorschemes to suit your preferences and create an engaging reading experience. - **Custom Categories**: Create and manage custom categories to organize your book collection according to your own preferences and needs. Easily categorize books based on genres, topics, or any other criteria. - **Manage Book Metadata**: Add and update book metadata such as title, description, year, author, and category. Keep your library organized with accurate and up-to-date information about each book. - **Fancy UI**: Enjoy a visually appealing and user-friendly interface that enhances the overall experience of browsing and interacting with your virtual library. - **Search Functionality**: Effortlessly find specific books using a powerful search feature that allows searching by title, author, category, or any other relevant criteria. - **Responsive Design**: Access and use the virtual library seamlessly across various devices and screen sizes, thanks to its responsive design that adapts to different resolutions. We welcome contributions to this virtual library project! Feel free to contribute and help it grow by adding new features, improving existing functionality, or addressing any issues. Your contributions will play a vital role in making this virtual library a more robust and user-friendly platform for book enthusiasts. # Installation 1. Visit the GitHub repository's "Release" section and download the latest release of the application. 2. Locate the downloaded AppImage file. 3. Make the AppImage executable by right-clicking on it, selecting "Properties," navigating to the "Permissions" tab, and enabling the "Allow executing file as program" option. 4. Double-click the AppImage file to launch the virtual library application. 5. Start using the virtual library and enjoy managing your book collection effortlessly. Please note that the provided steps assume familiarity with the operating system and may vary depending on the platform or distribution being used. # Contributing Contributions to the Next Library project are welcome! If you find any issues or have suggestions for improvement, please submit an issue or create a pull request. Ensure that your contributions adhere to the guidelines specified in the CONTRIBUTING.md file. # License The Next Library project is licensed under the GPL-3.0 License. Feel free to modify the template according to your project's specific details and requirements. Good luck with your virtual library project!
:book: Book library manager, for book enthusiast.
book,electron,javascript,nextjs,bookreader,pdf
2023-02-08T04:07:09Z
2023-07-16T16:05:03Z
2023-07-06T02:56:26Z
1
1
43
0
0
2
null
GPL-3.0
JavaScript
AGuyNamedDJ/Render-Test-Deakers
main
# Render-Test-Deakers
Car Haven is a full-stack web application for luxury car enthusiasts. It includes a database of manufacturers, models, and unique features for specific cars. Built using React.js, Node.js, and Tailwind CSS, it offers a visually stunning user interface and a seamless user experience for browsing and searching for luxury cars.
javascript,node,react
2023-01-26T02:38:58Z
2023-01-27T18:16:55Z
null
1
0
27
0
0
2
null
null
JavaScript
hamza4600/Advance_Design_Patterns
main
# Discusss about advance data structure and OOps concept , design pattern and algorithm # JavaScript Design Patterns * will discus about following patterns * Module Pattern * Model View Controller Pattern * Creational Design Pattern * Structural Design Pattern * Behavior Design Pattern # Abstract Factory Pattern * Abstract Factory Pattern provides an interface for creating families of related or dependent objects without specifying their concrete classes. # Builder Pattern * allowes you to create complex objects step by step * the pattern allows you to produce different types and representations of an object using the same construction code # Factory Method Pattern * Factory Method Pattern defines an interface for creating an object, but lets subclasses decide which class to instantiate. Factory Method lets a class defer instantiation to subclasses. used in application where the application manage and manintain collection of different object but at same time have many different types of object # Prototype Pattern * Prototype Pattern refers to creating duplicate object while keeping performance in mind. This type of design pattern comes under creational pattern as this pattern provides one of the best ways to create an object. * This pattern involves implementing a prototype interface which tells to create a clone of the current object. This pattern is used when creation of object directly is costly. For example, an object is to be created after a costly database operation. We can cache the object, returns its clone on next request and update the database as and when needed thus reducing database calls. # Singleton Pattern * The Singleton Pattern ensures a class has only one instance, and provides a global point of access to it. * system where we need to ensure that only one instance of a class is created. * - when we need to have a global access point to an object from a well-known access point. * - when we need to have a limited number of instances of a class. # Adapter Pattern * Adapter Pattern works as a bridge between two incompatible interfaces. This type of design pattern comes under structural pattern as this pattern combines the capability of two independent interfaces. * This pattern involves a single class which is responsible to join functionalities of independent or incompatible interfaces. A real life example could be a case of card reader which acts as an adapter between memory card and a laptop. You plugin the memory card into card reader and card reader into the laptop so that memory card can be read via laptop. * make existing classes work with others without modifying their source code. # IIFE (Immediately Invoked Function Expression) * IIFE is a JavaScript function that runs as soon as it is defined. * IIFE is a design pattern which is also known as a Self-Executing Anonymous Function and contains two major parts: * The first is the anonymous function with lexical scope enclosed within the Grouping Operator (). This prevents accessing variables within the IIFE idiom as well as polluting the global scope. * The second part creates the immediately invoked function expression () through which the JavaScript engine will directly interpret the function. # Bridge Pattern * Bridge is used when we need to decouple an abstraction from its implementation so that the two can vary independently. This type of design pattern comes under structural pattern as this pattern decouples implementation class and abstract class by providing a bridge structure between them. * This pattern involves an interface which acts as a bridge which makes the functionality of concrete classes independent from interface implementer classes. Both types of classes can be altered structurally without affecting each other. # Composite Pattern * Composite pattern is used where we need to treat a group of objects in similar way as a single object. Composite pattern composes objects in term of a tree structure to represent part as well as whole hierarchy. This type of design pattern comes under structural pattern as this pattern creates a tree structure of group of objects. * This pattern creates a class that contains group of its own objects. This class provides ways to modify its group of same objects. # Decorator Pattern * Decorator pattern allows a user to add new functionality to an existing object without altering its structure. This type of design pattern comes under structural pattern as this pattern acts as a wrapper to existing class. * This pattern creates a decorator class which wraps the original class and provides additional functionality keeping class methods signature intact. # Facade Pattern * Facade pattern hides the complexities of the system and provides an interface to the client using which the client can access the system. This type of design pattern comes under structural pattern as this pattern adds an interface to existing system to hide its complexities. # Flyweight Pattern * Flyweight pattern is primarily used to reduce the number of objects created and to decrease memory footprint and increase performance. This type of design pattern comes under structural pattern as this pattern provides ways to decrease object count thus improving the object structure of application. # Proxy Pattern * Proxy pattern is used when we want to provide controlled access to original object. Proxy pattern is used to provide a substitute or placeholder for another object to control access to it. # Chain of Responsibility Pattern * allow to create a chain of objects that will receive a request and process it , each object in the chain will decide either to process the request or to pass it to the next object in the chain # Command Pattern * is a behavioral design pattern in which an object is used to encapsulate all information needed to perform an action or trigger an event at a later time. This information includes the method name, the object that owns the method and values for the method parameters. * used in application where we need to issue requests to objects without knowing anything about the operation being requested or the receiver of the request # Interpreter Pattern * allow to create a language that can be used to interpret a set of instructions * used in applications that need to interpret a set of instructions * example of interpreter pattern is a compiler that takes a set of instructions and converts them into machine code # Iterator Pattern * is a behavioral design pattern that lets you traverse elements of a collection without exposing its underlying representation (list, stack, tree, etc.). # Mediator Pattern * is a behavioral design pattern that lets you reduce chaotic dependencies between objects. The pattern restricts direct communications between the objects and forces them to collaborate only via a mediator object. # Memento Pattern * is a behavioral design pattern that lets you save and restore the previous state of an object without revealing the details of its implementation. * used in application where we need to save the state of an object so that we can restore it later # Observer Pattern * is a behavioral design pattern that lets you define a subscription mechanism to notify multiple objects about any events that happen to the object they’re observing. * used in application where we need to notify multiple objects about any changes in the state of an object # State Pattern * is a behavioral design pattern that lets an object alter its behavior when its internal state changes. It appears as if the object changed its class. * used in application where we need to change the behavior of an object based on its state # Strategy Pattern * allow to create a family of algorithms , encapsulate each one , and make them interchangeable , strategy lets the algorithm vary independently from clients that use it * used in application where we need to select an algorithm at runtime # Template Method Pattern * allow to create a template that can be used to create a set of instructions * provides an outline of a series of steps for an algorithm. Objects that implement these steps retain the original structure of the algorithm but have the option to redefine or adjust certain steps # Visitor Pattern * allow to create a new operation without changing the classes of the elements on which it operates # MVC Pattern * is a software design pattern commonly used for developing user interfaces that divides the related program logic into three interconnected elements. This is done to separate internal representations of information from the ways information is presented to and accepted from the user. The MVC design pattern decouples these major components allowing for efficient code reuse and parallel development.
Discusses about advance data structure and Oops concept , design pattern and algorithm
basic-programming,javascript,oop-principles
2023-01-29T12:11:12Z
2023-01-29T12:24:33Z
null
1
0
3
0
0
2
null
null
JavaScript
wildfielded/samples-web-etc
master
# HTML, CSS, JavaScript examples for references # :ru: [Русская версия здесь](README_RU.md) ### The most interesting solutions for training exercises and test tasks ### ---- ## Small exercises and tasks from interviews ## 1. [**`Task-strong-org`**](https://github.com/wildfielded/samples-web-etc/tree/master/Task-strong-org)&nbsp;&mdash; Making landing-page layout according to the Figma layout. ![HTML5](https://img.shields.io/badge/html5-%23E34F26.svg?style=plastic&logo=html5&logoColor=white) ![CSS3](https://img.shields.io/badge/css3-%231572B6.svg?style=plastic&logo=css3&logoColor=white) ![Figma](https://img.shields.io/badge/figma-%23F24E1E.svg?style=plastic&logo=figma&logoColor=white) ----
HTML, CSS, JS probes
css3,html5,javascript
2023-01-28T08:10:03Z
2023-11-25T12:57:15Z
null
1
0
12
0
0
2
null
CC0-1.0
CSS
loan-mgt/live-stats-mc
main
<div align="center"> <a href="https://github.com/Qypol342/live-stats-mc"> <img src="assets/icon.png" alt="Logo" height="150"> </a> <h3 align="center">Live Stats For Minecraft Server</h3> <p align="center">Simple web page to display active player on a minecraft server</p> <p align="center"> <a href="https://qypol342.github.io/live-stats-mc?ip=simplyvanilla.co">example</a></p> </div> </br> # 📗 Usage Simply add your server address to then end of the url </br> `https://qypol342.github.io/live-stats-mc?ip=<your-server_adress>` You can precise then server port if it is different than `25565`</br> `https://qypol342.github.io/live-stats-mc?ip=<your-server_adress>&port=<server-port>` Here is an example for `simplyvanilla.co` server: <a href="https://qypol342.github.io/live-stats-mc?ip=simplyvanilla.co"> <img src="assets/example.png" height=300> </a> ### :warning: Note The Minecraft server used in the example (`simplyvanilla.co`) is not owned or operated by me, and I have never played on it. It is used solely as an example for demonstration purposes. </br> # 📮 Hosting As shown above the web page is already hosted on github page, but if you prefer you can self host this project. You just need to set the path from your server to the root of this repo </br> # 🔧 Info Query The server status info is retrieved thanks to this api [mcapi.us](https://mcapi.us/). Not all server are compatible, you may have a `server protocol is unknown`
Simple web page to display active player on a minecraft server
minecraft,api,javascript,live
2023-02-02T09:22:49Z
2023-06-25T18:37:35Z
2023-02-23T09:42:52Z
2
2
28
2
0
2
null
GPL-3.0
HTML
AdriaCara/dobdeb
master
null
My social media
firebase,firebase-auth,javascript,js,social-media
2023-01-26T13:08:46Z
2023-02-23T22:27:45Z
2023-02-16T18:23:39Z
1
21
60
0
0
2
null
null
JavaScript
AdamMYoung/Portfolio
main
null
Monorepo containing my development and photography portfolios, built in Next.js
javascript,nextjs,tailwindcss,typescript
2023-02-04T21:13:41Z
2024-03-30T10:41:12Z
null
1
2
59
0
0
2
null
null
TypeScript
DanielCok17/Diploma-thesis
master
<h1 align="center"> Smart web-based system for rescue centre using traffic accident data </h1> #### Type: Diploma thesis #### Issue area: Autonomous transport, Web development, Detecting a vehicle crash <br> The rapid growth of motor vehicles without adequate advances in road safety has resulted in a huge loss of human life. With the growing population, the use of cars has also increased, leading to more traffic, road hazards and more road accidents. One of the causes of death of a person in a car accident is also the non-availability of first aid due to the inability of the paramedics to gather the details of the accident in time and subsequently dispatch the proper rescue forces to the accident site. An accident may involve multiple victims and hence it is important to provide adequate number of rescue personnel to rescue all the victims. The ideal survival situation after an accident is that rescue forces approach the accident scene as quickly as possible. In this thesis, analyze the current status of rescue centers, the technologies used and needed to effectively assess the severity of the accident without the need of human intervention. Also analyze the available data or datasets from previous traffic accidents. Design a system that will be based on information collected in real time while the vehicle is moving and then evaluate this data. Implement an intelligent web-based system for rescue centers, and try to design an algorithm that will evaluate the severity of the traffic accident and automatically assign the appropriate number of rescue units to be sent to the accident scene. Validate the proposed solution on real-time data collected while the vehicle is moving and evaluate the result. <br> <h1 align="center"> 🌐 MERN Stack </h1> <p align="center"> <img src="https://miro.medium.com/v2/format:webp/0*hU4zJiyVwWcM0L-w.png" width="100%" height="200" /> </p> <br> > This app si a MERN fullstack implementation in MongoDB, Expressjs, React/Redux, Nodejs. > MERN stack is the idea of using Javascript/Node for fullstack web development. <br> ## Repository clone ```shell git clone https://github.com/DanielCok17/Diploma-thesis.git ``` ## Run app localally ```shell ./start-local.sh ``` ## Run Docker ```shell docker-compose build docker-compose -f ./backend/docker-compose.yml -f ./backend/docker-compose.dev.yml up -d --build docker-compose -f ./frontend/docker-compose.yml -f ./frontend/docker-compose.dev.yml up -d --build ``` <br> --- Copyright © 2023, Daniel Cok
Smart web-based system for rescue centre using traffic accident data
docker,diploma-thesis,express,fiit,fullstack-javascript,mern,mern-project,mongodb,nodejs,react
2023-02-02T13:12:04Z
2024-05-17T10:54:33Z
null
1
6
84
0
0
2
null
null
TypeScript
seanpm2001/Bliss_Browser_JavaScript
Bliss_Browser_JavaScript_Main-dev
*** # <projectName> ![{Project icon} This image failed to load. It may be due to the file not being reached, or a general error. Reload the page to fix a possible general error.](Image.svg) # By: <!-- ![{Developer name} This image failed to load. It may be due to the file not being reached, or a general error. Reload the page to fix a possible general error.](Image2.svg) !--> ## [Seanpm2001](https://github.com/seanpm2001/), [<developerName>](https://github.com/<developerName>/) Et; Al. ### Top # `README.md` *** ## Read this article in a different language **Sorted by:** `A-Z` [Sorting options unavailable](https://github.com/<developerName>/<repoName>) ( [af Afrikaans](/.github/README_AF.md) Afrikaans | [sq Shqiptare](/.github/README_SQ.md) Albanian | [am አማርኛ](/.github/README_AM.md) Amharic | [ar عربى](/.github/README_AR.md) Arabic | [hy հայերեն](/.github/README_HY.md) Armenian | [az Azərbaycan dili](/.github/README_AZ.md) Azerbaijani | [eu Euskara](/.github/README_EU.md) Basque | [be Беларуская](/.github/README_BE.md) Belarusian | [bn বাংলা](/.github/README_BN.md) Bengali | [bs Bosanski](/.github/README_BS.md) Bosnian | [bg български](/.github/README_BG.md) Bulgarian | [ca Català](/.github/README_CA.md) Catalan | [ceb Sugbuanon](/.github/README_CEB.md) Cebuano | [ny Chichewa](/.github/README_NY.md) Chichewa | [zh-CN 简体中文](/.github/README_ZH-CN.md) Chinese (Simplified) | [zh-t 中國傳統的)](/.github/README_ZH-T.md) Chinese (Traditional) | [co Corsu](/.github/README_CO.md) Corsican | [hr Hrvatski](/.github/README_HR.md) Croatian | [cs čeština](/.github/README_CS.md) Czech | [da dansk](README_DA.md) Danish | [nl Nederlands](/.github/README_NL.md) Dutch | [**en-us English**](/.github/README.md) English | [EO Esperanto](/.github/README_EO.md) Esperanto | [et Eestlane](/.github/README_ET.md) Estonian | [tl Pilipino](/.github/README_TL.md) Filipino | [fi Suomalainen](/.github/README_FI.md) Finnish | [fr français](/.github/README_FR.md) French | [fy Frysk](/.github/README_FY.md) Frisian | [gl Galego](/.github/README_GL.md) Galician | [ka ქართველი](/.github/README_KA) Georgian | [de Deutsch](/.github/README_DE.md) German | [el Ελληνικά](/.github/README_EL.md) Greek | [gu ગુજરાતી](/.github/README_GU.md) Gujarati | [ht Kreyòl ayisyen](/.github/README_HT.md) Haitian Creole | [ha Hausa](/.github/README_HA.md) Hausa | [haw Ōlelo Hawaiʻi](/.github/README_HAW.md) Hawaiian | [he עִברִית](/.github/README_HE.md) Hebrew | [hi हिन्दी](/.github/README_HI.md) Hindi | [hmn Hmong](/.github/README_HMN.md) Hmong | [hu Magyar](/.github/README_HU.md) Hungarian | [is Íslenska](/.github/README_IS.md) Icelandic | [ig Igbo](/.github/README_IG.md) Igbo | [id bahasa Indonesia](/.github/README_ID.md) Icelandic | [ga Gaeilge](/.github/README_GA.md) Irish | [it Italiana/Italiano](/.github/README_IT.md) | [ja 日本語](/.github/README_JA.md) Japanese | [jw Wong jawa](/.github/README_JW.md) Javanese | [kn ಕನ್ನಡ](/.github/README_KN.md) Kannada | [kk Қазақ](/.github/README_KK.md) Kazakh | [km ខ្មែរ](/.github/README_KM.md) Khmer | [rw Kinyarwanda](/.github/README_RW.md) Kinyarwanda | [ko-south 韓國語](/.github/README_KO_SOUTH.md) Korean (South) | [ko-north 문화어](README_KO_NORTH.md) Korean (North) (NOT YET TRANSLATED) | [ku Kurdî](/.github/README_KU.md) Kurdish (Kurmanji) | [ky Кыргызча](/.github/README_KY.md) Kyrgyz | [lo ລາວ](/.github/README_LO.md) Lao | [la Latine](/.github/README_LA.md) Latin | [lt Lietuvis](/.github/README_LT.md) Lithuanian | [lb Lëtzebuergesch](/.github/README_LB.md) Luxembourgish | [mk Македонски](/.github/README_MK.md) Macedonian | [mg Malagasy](/.github/README_MG.md) Malagasy | [ms Bahasa Melayu](/.github/README_MS.md) Malay | [ml മലയാളം](/.github/README_ML.md) Malayalam | [mt Malti](/.github/README_MT.md) Maltese | [mi Maori](/.github/README_MI.md) Maori | [mr मराठी](/.github/README_MR.md) Marathi | [mn Монгол](/.github/README_MN.md) Mongolian | [my မြန်မာ](/.github/README_MY.md) Myanmar (Burmese) | [ne नेपाली](/.github/README_NE.md) Nepali | [no norsk](/.github/README_NO.md) Norwegian | [or ଓଡିଆ (ଓଡିଆ)](/.github/README_OR.md) Odia (Oriya) | [ps پښتو](/.github/README_PS.md) Pashto | [fa فارسی](/.github/README_FA.md) |Persian [pl polski](/.github/README_PL.md) Polish | [pt português](/.github/README_PT.md) Portuguese | [pa ਪੰਜਾਬੀ](/.github/README_PA.md) Punjabi | No languages available that start with the letter Q | [ro Română](/.github/README_RO.md) Romanian | [ru русский](/.github/README_RU.md) Russian | [sm Faasamoa](/.github/README_SM.md) Samoan | [gd Gàidhlig na h-Alba](/.github/README_GD.md) Scots Gaelic | [sr Српски](/.github/README_SR.md) Serbian | [st Sesotho](/.github/README_ST.md) Sesotho | [sn Shona](/.github/README_SN.md) Shona | [sd سنڌي](/.github/README_SD.md) Sindhi | [si සිංහල](/.github/README_SI.md) Sinhala | [sk Slovák](/.github/README_SK.md) Slovak | [sl Slovenščina](/.github/README_SL.md) Slovenian | [so Soomaali](/.github/README_SO.md) Somali | [[es en español](/.github/README_ES.md) Spanish | [su Sundanis](/.github/README_SU.md) Sundanese | [sw Kiswahili](/.github/README_SW.md) Swahili | [sv Svenska](/.github/README_SV.md) Swedish | [tg Тоҷикӣ](/.github/README_TG.md) Tajik | [ta தமிழ்](/.github/README_TA.md) Tamil | [tt Татар](/.github/README_TT.md) Tatar | [te తెలుగు](/.github/README_TE.md) Telugu | [th ไทย](/.github/README_TH.md) Thai | [tr Türk](/.github/README_TR.md) Turkish | [tk Türkmenler](/.github/README_TK.md) Turkmen | [uk Український](/.github/README_UK.md) Ukrainian | [ur اردو](/.github/README_UR.md) Urdu | [ug ئۇيغۇر](/.github/README_UG.md) Uyghur | [uz O'zbek](/.github/README_UZ.md) Uzbek | [vi Tiếng Việt](/.github/README_VI.md) Vietnamese | [cy Cymraeg](/.github/README_CY.md) Welsh | [xh isiXhosa](/.github/README_XH.md) Xhosa | [yi יידיש](/.github/README_YI.md) Yiddish | [yo Yoruba](/.github/README_YO.md) Yoruba | [zu Zulu](/.github/README_ZU.md) Zulu ) Available in 110 languages (108 when not counting English and North Korean, as North Korean has not been translated yet [Read about it here](/OldVersions/Korean(North)/README.md)) Translations in languages other than English are machine translated and are not yet accurate. No errors have been fixed yet as of March 21st 2021. Please report translation errors [here](https://github.com/<developerName>/<repoName>/issues/). Make sure to backup your correction with sources and guide me, as I don't know languages other than English well (I plan on getting a translator eventually) please cite [wiktionary](https://en.wiktionary.org) and other sources in your report. Failing to do so will result in a rejection of the correction being published. Note: due to limitations with GitHub's interpretation of markdown (and pretty much every other web-based interpretation of markdown) clicking these links will redirect you to a separate file on a separate page that isn't the intended page. You will be redirected to the [.github folder](/.github/) of this project, where the README translations are hosted. Translations are currently done with Bing translate and DeepL. Support for Google Translate translations is coming to a close due to privacy concerns. *** # Index [00.0 - Top](#Top) > [00.1 - Title](#<projectName>) > [00.2 - Read this article in a different language](#Read-this-article-in-a-different-language) > [00.3 - Index](#Index) [01.0 - Description](#RepositoryName) [02.0 - About](#About) [03.0 - Wiki](#Wiki) [04.0 - History](#History) > [04.1 - Pre-history](#Pre-history) > [04.2 - Alpha History](#Alpha-history) > [04.3 - Beta History](#Beta-history) > [04.4 - Modern History](#Modern-history) [05.0 - Copying](#Copying) [06.0 - Credits](#Credits) [07.0 - Installation](#Installation) [08.0 - Version history](#Version-history) [09.0 - Version history](#Version-history) [10.0 - Software status](#Software-status) [11.0 - Sponsor info](#Sponsor-info) [12.0 - Contributers](#Contributers) [13.0 - Issues](#Issues) > [13.1 - Current issues](#Current-issues) > [13.2 - Past issues](#Past-issues) > [13.3 - Past pull requests](#Past-pull-requests) > [13.4 - Active pull requests](#Active-pull-requests) [14.0 - Resources](#Resources) [15.0 - Contributing](#Contributing) [16.0 - About README](#About-README) [17.0 - README Version history](#README-version-history) [18.0 - Footer](#You-have-reached-the-end-of-the-README-file) > [18.9 - End of file](#EOF) *** # <repoName> <repo_description> *** ## About See above. <extendedRepoDescription> *** ## Wiki [Click/tap here to view this projects Wiki](https://github.com/<developerName>/<repoName>/wiki) If the project has been forked, the Wiki was likely removed. Luckily, I include an embedded version. You can view it [here](/External/ProjectWiki/). *** ## History Write about this projects history here. ### Pre-history No pre-history to show for this project. ### Alpha history No Alpha history to show for this project. ### Beta history No Beta history to show for this project. ### Modern history No Modern history to show for this project. *** ## Copying View the copying license for this project [here](/COPYING) (if you haven't built the project yet with the makefile, here is the original link: [COPYINGL](/COPYINGL) Please note that you also have to follow the rules of the GNU General Public License v3 (GPL3) which you can view [here](/LICENSE.txt) *** ## Credits View the credits file for this project and see the people who got together to make this project by [clicking/tapping here](/CREDITS) *** ## Installation View the installation instructions file for this project [here](/INSTALL) Requirements: Read the instructions for more info, and get the latest up-to-date instructions [here](https://gist.github.com/seanpm2001/745564a46186888e829fdeb9cda584de) *** ## Sponsor info ![SponsorButton.png](/SponsorButton.png) You can sponsor this project if you like, but please specify what you want to donate to. [See the funds you can donate to here](https://github.com/seanpm2001/Sponsor-info/tree/main/For-sponsors/) You can view other sponsor info [here](https://github.com/seanpm2001/Sponsor-info/) Try it out! The sponsor button is right up next to the watch/unwatch button. *** ## Version history **Version history currently unavailable** **No other versions listed** *** ## Software status All of my works are free some restrictions. DRM (**D**igital **R**estrictions **M**anagement) is not present in any of my works. ![DRM-free_label.en.svg](/DRM-free_label.en.svg) This sticker is supported by the Free Software Foundation. I never intend to include DRM in my works. I am using the abbreviation "Digital Restrictions Management" instead of the more known "Digital Rights Management" as the common way of addressing it is false, there are no rights with DRM. The spelling "Digital Restrictions Management" is more accurate, and is supported by [Richard M. Stallman (RMS)](https://en.wikipedia.org/wiki/Richard_Stallman) and the [Free Software Foundation (FSF)](https://en.wikipedia.org/wiki/Free_Software_Foundation) This section is used to raise awareness for the problems with DRM, and also to protest it. DRM is defective by design and is a major threat to all computer users and software freedom. Image credit: [defectivebydesign.org/drm-free/...](https://www.defectivebydesign.org/drm-free/how-to-use-label/) *** ## Contributers Currently, I am the only contributer. Contributing is allowed, as long as you follow the rules of the [CONTRIBUTING.md](/CONTRIBUTING.md) file. > * 1. [seanpm2001](https://github.com/seanpm2001/) - x commits (As of Yr, DoW, Month, DoM, at ##:## a/pm) > * 2. No other contributers. *** ## Issues ### Current issues * None at the moment * No other current issues If the repository has been forked, issues likely have been removed. Luckily I keep an archive of certain images [here](/.github/Issues/) [Read the privacy policy on issue archival here](/.github/Issues/README.md) **TL;DR** I archive my own issues. Your issue won't be archived unless you request it to be archived. ### Past issues * None at the moment * No other past issues If the repository has been forked, issues likely have been removed. Luckily I keep an archive of certain images [here](/.github/Issues/) [Read the privacy policy on issue archival here](/.github/Issues/README.md) **TL;DR** I archive my own issues. Your issue won't be archived unless you request it to be archived. ### Past pull requests * None at the moment * No other past pull requests If the repository has been forked, issues likely have been removed. Luckily I keep an archive of certain images [here](/.github/Issues/) [Read the privacy policy on issue archival here](/.github/Issues/README.md) **TL;DR** I archive my own issues. Your issue won't be archived unless you request it to be archived. ### Active pull requests * None at the moment * No other active pull requests If the repository has been forked, issues likely have been removed. Luckily I keep an archive of certain images [here](/.github/Issues/) [Read the privacy policy on issue archival here](/.github/Issues/README.md) **TL;DR** I archive my own issues. Your issue won't be archived unless you request it to be archived. *** ## Resources Here are some other resources for this project: [Project language file A](PROJECT_LANG_1.<fileExtensionForProgrammingLanguage>) [Join the discussion on GitHub](https://github.com/<developerName>/<repoName>/discussions) No other resources at the moment. *** ## Contributing Contributing is allowed for this project, as long as you follow the rules of the `CONTRIBUTING.md` file. [Click/tap here to view the contributing rules for this project](/CONTRIBUTING.md) *** ## About README **File type:** `Markdown Document (*.md *.mkd *.markdown)` **File version:** `0.1.6 (Monday, August 23rd 2021 at 6:37 pm)` **Line count (including blank lines and compiler line):** `0,407` *** ## README version history Version 0.1 (Sunday, March 21st 2021 at 7:50 pm) > Changes: > * Started the file > * Added the title section > * Added the index > * Added the about section > * Added the Wiki section > * Added the version history section > * Added the issues section. > * Added the past issues section > * Added the past pull requests section > * Added the active pull requests section > * Added the contributors section > * Added the contributing section > * Added the about README section > * Added the README version history section > * Added the resources section > * Added a software status section, with a DRM free sticker and message > * Added the sponsor info section **ITERATION 5** > * Updated the title section > * Updated the index > * Added the history section > * Updated the file info section > * Updated the file history section **ITERATION 6** > * Updated the title section > * Fixed and update template links > * Updated the index > * Added the copying section > * Added the credits section > * Added the installation section > * Updated the resources section > * Updated the contributors section > * Added the technical notes section > * Updated the footer > * Updated the file info section > * Updated the file history section > * No other changes in version 0.1 Version 1 (Coming soon) > Changes: > * Coming soon > * No other changes in version 1 Version 2 (Coming soon) > Changes: > * Coming soon > * No other changes in version 2 *** ### You have reached the end of the README file ( [Back to top](#Top) | [Exit to GitHub](https://github.com) | [Exit to Bing](https://www.bing.com/) | [Exit to DuckDuckGo](https://duckduckgo.com/) | [Exit to Ecosia](https://www.ecosia.org) ) ### EOF ***
🌳️🌐️#️⃣️ The Bliss Browser JavaScript language support module, allowing JavaScript programs to be written in and ran within the browser.
bliss-browser,bliss-browser-development,bliss-browser-language-support,bliss-browser-languages,browser,gpl3,gplv3,javascript,javascript-lang,javascript-language
2023-02-05T22:54:35Z
2023-02-06T06:24:20Z
null
1
0
31
0
1
2
null
GPL-3.0
JavaScript
clevinwilson/netflix-react
master
# 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)
A Netflix-inspired movie streaming app built with React JS, utilizing the TMDB API to list popular and trending movies. With an intuitive and visually appealing design, this app allows users to preview movie trailers by clicking on a movie's banner, making it easy to discover and enjoy new films
javascript,reactjs
2023-02-04T07:15:09Z
2023-02-04T06:38:56Z
null
1
0
6
0
0
2
null
null
JavaScript
Im-Rises/particle-simulator-react-p5
main
# particle-simulator-react-p5 <p align="center"> <img src="https://img.shields.io/badge/React-20232A?style=for-the-badge&logo=react&logoColor=61DAFB" alt="reactLogo" style="height:50px;"> <img src="https://img.shields.io/badge/JavaScript-323330?style=for-the-badge&logo=javascript&logoColor=F7DF1E" alt="javascriptLogo" style="height:50px;"> <img src="https://img.shields.io/badge/TypeScript-007ACC?style=for-the-badge&logo=typescript&logoColor=white" alt="typescriptLogo" style="height:50px;"> <img src="https://img.shields.io/badge/Sass-CC6699?style=for-the-badge&logo=sass&logoColor=white" alt="scssLogo" style="height:50px;"> <img src="https://img.shields.io/badge/CSS-239120?&style=for-the-badge&logo=css3&logoColor=white" alt="cssLogo" style="height:50px;"> <img src="https://img.shields.io/badge/p5%20js-ED225D?style=for-the-badge&logo=p5dotjs&logoColor=white" alt="cssLogo" style="height:50px;"> </p> ## Description This is a particle simulator package made with React Typescript and p5.js. ## 🚀🚀[You can try it online from your browser](https://im-rises.github.io/particle-simulator-react-p5-website/) 🚀🚀 It works on desktop and mobile as well with different controls (check the `controls` section). The particles are set randomly on the screen in a circle shape. Their color change according to the speed of the particle. The particles are attracted to the mouse and they are repelled from the edges of the screen. You can toggle attract/repel by clicking with the mouse button on a screen. On tablet and mobile de the touch screen to move the particles by dragging your finger. To toggle attract/repel tap on the screen. ## 🚀🚀 [The package is available on npm](https://www.npmjs.com/package/particle-simulator-react-p5) 🚀🚀 > **Note** > I also made a C++ version for WebGL2 using OpenGL ES 3.0. You can check it > out [here](https://github.com/Im-Rises/particle-simulator-webgl). ## Screenshots | Attraction | Drag | Repulsion | |:---------------------------------------------------------------------------------------------------------------------:|:---------------------------------------------------------------------------------------------------------------------:|:---------------------------------------------------------------------------------------------------------------------:| | ![screenshot1](https://user-images.githubusercontent.com/59691442/230525907-1efd6bc5-ce33-485a-879a-57a8ed46c596.png) | ![screenshot2](https://user-images.githubusercontent.com/59691442/230525910-7a41907f-d6fe-4ed2-8c44-94c09b837e6f.png) | ![screenshot3](https://user-images.githubusercontent.com/59691442/230525912-bb0054c4-0f0c-4f6e-b7c9-937f11ba0acf.png) | ## Demo video [//]: # (https://user-images.githubusercontent.com/59691442/219550627-16660c09-dbea-41f3-ba15-3d7aaafca6d9.mp4) [//]: # (https://user-images.githubusercontent.com/59691442/230523799-9afbf327-3cf4-4530-8127-594339d94334.mp4) https://user-images.githubusercontent.com/59691442/230526870-cd104007-be41-4cdd-a10e-4672da650974.mp4 ## Controls The particles are initially attracted to the mouse, but you can toggle attract/repel by clicking with the mouse button on a screen. On tablet and mobile de the touch screen to move the particles by dragging your finger. To toggle attract/repel tap on the screen. You can also toggle fullscreen mode by pressing the `F11` key. ## Package installation To install it type `npm install particle-simulator-react-p5` in your terminal to install it. Then you can import it in your project with `import ParticleSimulator from 'particle-simulator-react-p5'`. ## Usage To use it you can simply add the component in your project like this: ```tsx import React, {useEffect, useState} from 'react'; import ParticleSimulator from 'particle-simulator-react-p5'; import './App.css'; const App: React.FC = () => { const [isLoaded, setIsLoaded] = useState(false); const divRef = React.useRef <HTMLDivElement>(null); useEffect(() => { if (divRef.current) { setIsLoaded(true); } }, [divRef]); return ( <div className='App'> <div ref={divRef}> {isLoaded ? ( <div className={'particle-sim-canvas'}> <ParticleSimulator parentRef={divRef} /> </div> ) : ( <p className={'wait-sim-canvas'}>Loading...</p> )} </div> </div> ); }; export default App; ``` or you can change all the settings like this: ```tsx import React, {useEffect, useState} from 'react'; import ParticleSimulator from 'particle-simulator-react-p5'; import './App.css'; const App: React.FC = () => { const [isLoaded, setIsLoaded] = useState(false); const divRef = React.useRef <HTMLDivElement>(null); useEffect(() => { if (divRef.current) { setIsLoaded(true); } }, [divRef]); return ( <div className='App'> <div ref={divRef}> {isLoaded ? ( <div className={'particle-sim-canvas'}> <ParticleSimulator parentRef={divRef} particleCountMobile={1000} particleCountComputer={3000} fixedUpdate={60} frameRate={60} spawnAreaRadius={2} gravitationalConstant={1} particlesMass={50} attractorMass={250} friction={0.99} softening={10} pixelsPerMeter={100} initColor={[0, 255, 255, 200]} finalColor={[255, 0, 255, 200]} maxColorVelocity={5} backColor={[0, 0, 0, 255]} /> </div> ) : ( <p className={'wait-sim-canvas'}>Loading...</p> )} </div> </div> ); }; export default App; ``` The component takes 1 to 16 props: - `parentRef` - a reference to the parent div of the canvas. It is used to get the size of the canvas. - `particleCountMobile` - the number of particles on mobile devices. - `particleCountComputer` - the number of particles on desktop devices. - `fixedUpdate` - the number of fixed updates per second. - `frameRate` - the number of frames per second. - `spawnAreaRadius` - the radius of the spawn area of the particles (in meters). - `gravitationalConstant` - the gravitational constant of the simulation. - `particlesMass` - the mass of the particles. - `attractorMass` - the mass of the attractor. - `friction` - the friction of the particles. - `softening` - the softening parameter of the gravitational force calculation. - `pixelsPerMeter` - the number of pixels to represent 1 meter. - `initColor` - the initial color of the particles (in RGB). - `finalColor` - the final color of the particles (in RGB). - `maxColorVelocity` - the maximum velocity of the particles at which the color will be the final color. - `backColor` - the background color of the canvas (in RGB). This will create a canvas with 3000 particles on desktop and 1000 on mobile in fullscreen which will be resized when the window is resized. > **Note** > The default values of the props are the same as the ones in the example above. You can find the complete example of the project in the GitHub repository [here](https://im-rises.github.io/particle-simulator-react-p5-website). > **Note** > Be sure to do like in the example, the parent div of the canvas must be set before the p5 canvas is created. ## Calculations The calculations are made with the [Newtonian mechanics](https://en.wikipedia.org/wiki/Newtonian_mechanics) equations. $$ F = G \frac{m_1 m_2}{r^2} $$ To prevent to have a division by zero when the particles are too close to each other, we add a softening parameter $\epsilon$. The implementation is not made to be physically accurate, but to be visually appealing. By adding the offset $\epsilon$ directly like below, the particles will come from a far distance faster than they should. $$ F = G \frac{m_1 m_2}{r^2 + \epsilon} $$ One of the real force calculation with softening could be like this: $$ F = G \frac{m_1 m_2}{(r^2 + \epsilon^2)^\frac{3}{2}} $$ Where G is the gravitational constant, m1 and m2 are the masses of the particles, r is the distance between the particles and d is the softening parameter. ## Known issues > **Warning** > The React-p5 dependency may have issues with the index.js file. ```js const root = ReactDOM.createRoot(document.getElementById('root')); root.render( <React.StrictMode> <App/> </React.StrictMode> ); ``` Please delete the React.StrictMode tag in the index.js file and replace it with the code below. ```js const root = ReactDOM.createRoot(document.getElementById('root')); root.render( <> <App/> </> ); ``` ## GitHub Actions [//]: # ([![pages-build-deployment]&#40;https://github.com/Im-Rises/particle-simulator-react-p5/actions/workflows/pages/pages-build-deployment/badge.svg&#41;]&#40;https://github.com/Im-Rises/particle-simulator-react-p5/actions/workflows/pages/pages-build-deployment&#41;) [![Node.js CI](https://github.com/Im-Rises/particle-simulator-react-p5/actions/workflows/node.js.yml/badge.svg?branch=main)](https://github.com/Im-Rises/particle-simulator-react-p5/actions/workflows/node.js.yml) [![ESLint](https://github.com/Im-Rises/particle-simulator-react-p5/actions/workflows/eslint.yml/badge.svg?branch=main)](https://github.com/Im-Rises/particle-simulator-react-p5/actions/workflows/eslint.yml) [![CodeQL](https://github.com/Im-Rises/particle-simulator-react-p5/actions/workflows/codeql.yml/badge.svg?branch=main)](https://github.com/Im-Rises/particle-simulator-react-p5/actions/workflows/codeql.yml) [![Node.js Package](https://github.com/Im-Rises/particle-simulator-react-p5/actions/workflows/npm-publish.yml/badge.svg)](https://github.com/Im-Rises/particle-simulator-react-p5/actions/workflows/npm-publish.yml) The project is set up to run the following actions: [//]: # (- pages-build-deployment : Builds the website and deploys it to GitHub Pages.) - node.js.yml : Runs the tests for the Node.js project. - eslint.yml : Runs the ESLint linter on the project. - codeql.yml : Runs the CodeQL linter on the project. - npm-publish.yml : Publishes the package to npm. ## Libraries React: <https://reactjs.org/docs/getting-started.html> Xo: <https://github.com/xojs/xo> <https://github.com/xojs/eslint-config-xo-react> <https://github.com/xojs/eslint-config-xo-typescript> ESLint: <https://eslint.org/docs/latest/user-guide/getting-started> GitHub gh-pages: <https://github.com/gitname/react-gh-pages> P5.js: <https://p5js.org/> <https://www.npmjs.com/package/react-p5> react-device-detect: <https://www.npmjs.com/package/react-device-detect> ## Documentation The Coding Challenge (math and physics): <https://www.youtube.com/watch?v=OAcXnzRNiCY> P5.js: <https://p5js.org/> P5.js React: <https://www.npmjs.com/package/react-p5> ## Links Check the source code on [![github](https://user-images.githubusercontent.com/59691442/223556058-6244e346-8117-43cd-97c6-bf68611bf286.svg)](https://github.com/im-rises/particle-simulator-react-p5) Check the demo on [![github](https://user-images.githubusercontent.com/59691442/223556058-6244e346-8117-43cd-97c6-bf68611bf286.svg)](https://github.com/im-rises/particle-simulator-react-p5-website) Check the package on [![npm](https://user-images.githubusercontent.com/59691442/223556055-4e9ef014-79d4-4136-ac07-b837b49066c8.svg)](https://www.npmjs.com/package/particle-simulator-react-p5) ## Contributors Quentin MOREL : - @Im-Rises - <https://github.com/Im-Rises> [![GitHub contributors](https://contrib.rocks/image?repo=Im-Rises/particle-simulator-react-p5)](https://github.com/Im-Rises/particle-simulator-react-p5/graphs/contributors)
Particle Simulation package made in React with P5js
javascript,particle-simulator,particles,react,scss,simulation,typescript,website,npm,npm-package
2023-02-08T22:00:09Z
2023-06-20T21:23:32Z
null
1
36
149
0
1
2
null
MIT
TypeScript
allisonw11/Binocular_Project
main
# Binocular Binocular is a site intended to help user discover new events happening near them and provide reviews for others. Based on user's preferences, search engine will return a list of events and provide further information such as event's genre, date and location to find their next adventure. The purpose of this project is to help student to demostrate the basic coding skills learned from Hackbright and apply it using an existing database from Ticketmaster API in 4 weeks of time. Table of Contents * [Technologies Used](#technologies) * [Features](#features) * [How to use Binocular?](#use) * [Author](#author) ## <a name="technologies"></a>Technologies Used * Python * Flask * PostgresSQL * SQLAlchemy * JavaScript * AJAX/JSON * Jinja2 * CSS/Bootstrap * HTML * Ticketmaster API * Google Maps API ## <a name="features"></a>Features 1. Create new user account 2. View user profile 3. View all user written reviews 4. Search for events using different filters 5. Access specific event information 6. Add and edit review for event 7. Log-out ## <a name="use"></a>How to use Binocular? ### To use Binocular, user is encourage to create a new account to gain access to all features. ![Homepage BEFORE login](static/images/homePage.png) ![Create new account](static/images/createAccount.png) ![Homepage AFTER login](static/images/afterLogin.png) ### Enter keyword(s), zip code and/or radius in search bar, then click `Let's go!`. ![Search bar](static/images/searchBar.png) A list of results will return by Ticketmaster API. Each page will display a maxium of 10 events at a time. `Next Page` and `Previous Page` buttons will also be available for interact when search results is greater than 10. ![Search result](static/images/searchResult.png) ![Page buttons](static/images/nextPrevBtn.png) ### Click a title of event will query the database and display more specific information for user to see. ![Event details](static/images/eventDetails.png) ### To purchase a ticket, there are 2 options. Depending availability, page will either direct user to Ticketmaster webpage or to an indiviual box office webpage. ![Event details part 2](static/images/eventDetails2.png) ### Log-in user can view all, add or edit existing review at the bottom of each event page. ![Add and edit review](static/images/reviewEvent.png) ### If user clicked on `Profile` or `My Reviews` at the top navigation bar, it will display their user profile and all reviews this user has posted sorted by its written date. ![User profile page](static/images/userProfile.png) ![All user's posted review](static/images/myReviews.png) ## Author Allison Wong is a software engineer in Boston, MA and the creator of Binocular. She is available to connect via GitHub and LinkedIn when visit her profile.
Capstone project created when going through Hackbright Adcademy.
api,bootstrap,css,html,javascript,python
2023-01-27T22:36:27Z
2023-03-01T00:58:02Z
null
1
0
13
0
0
2
null
null
HTML
xyzdelete/BankistWebDevelopmentProject
main
# BankistWebDevelopmentProject ![image](https://user-images.githubusercontent.com/42832387/236183065-a7b2553f-4955-4cf8-afba-941655fcafee.png)
Web development project "Bankist". It was built by Arturs Anikins during completion of the online course by Jonas Schmedtmann "The Complete JavaScript Course 2023: From Zero to Expert!". Everything is used for learning purposes only.
css,dom,dom-manipulation,html,javascript,event-handling
2023-01-29T02:12:23Z
2023-05-04T10:48:31Z
null
1
0
22
0
0
2
null
null
HTML
sabidalam/Hot-News-Client
main
# Hot-News-Portal 1. IT gives you all news around the world. # Live Site Link#
null
expressjs,firebase,javascript,mongodb,node-js,react-bootstrap,reactjs
2023-01-27T17:37:56Z
2023-01-27T17:39:47Z
null
1
0
7
0
0
2
null
null
JavaScript
Namrata0407/Namrata0407.github.io
master
null
This is my portfolio
css,html5,javascript
2023-02-09T10:50:29Z
2023-07-15T09:46:38Z
null
1
0
49
0
1
2
null
null
JavaScript
LafeLabs/trashbook
main
# [TRASHBOOK LIVE INSTANCE!](https://trashbook.trashrobot.org) ### [WWW.SLOANSLAKE.ART](https://www.sloanslake.art) ### [WWW.SOUTHBROADWAY.NET](https://www.southbroadway.net) ### [LOCALHOST!](http://localhost) ***THE TRASHBOOK IS THE FIRST REALLY FREE EBOOK EVER!*** ### [WWW.TRASHROBOT.ORG](https://www.trashrobot.org) NOTHING ON THE CLOUD IS FREE! NOTHING FROM THE APP STORE IS FREE! NOTHING WITH PERSONAL INFORMATION ON IT IS FREE! IPHONE IS NOT FREE! ANDROID IS NOT FREE! THIS IS THE WORLDS FIRST FREE EBOOK BECAUSE IT IS MADE OF TRASH AND REPLICATES ITSELF TO MORE TRASH! THIS BOOK EATS TRASH! EVERY TIME THIS BOOK REPLICATES, MORE TRASH IS CONSUMED! THIS BOOK CONSISTS OF SELF-REPLICATING CODE, SELF-REPLICATING WEB SERVERS FROM TRASH, SELF-REPLICATING SIGNS ON CARDBOARD TRASH, AND SELF-REPLICATING CARTS WHICH MOVE TRASH IN THE STREET NETWORKS! IT IS A SELF-REPLICATING SET MADE OF TRASH AND SELF-REPLICATING CODE! TO REPLICATE IT, GET A CART OF SOME KIND YOU FIND OUT IN A PUBLIC SPACE AND MOVE IT TO A HIGH TRAFFIC AREA! ![](https://raw.githubusercontent.com/LafeLabs/trashnet/main/trashmagic/cart.png) FIND A USB THUMB DRIVE WITH MORE THAN 16 GB ON IT, PUT THE UBUNTU INSTALL IMAGE ON IT USING THE [INSTRUCTIONS AT UBUNTU.COM](https://ubuntu.com/tutorials/install-ubuntu-desktop#1-overview), AND PAINT THE DRIVE PURPLE OR PINK WITH PAINT PEN! ![](https://raw.githubusercontent.com/LafeLabs/trashbook/main/trashmagic/ubuntu.png) GET A LAPTOP SOMEONE IS THROWING AWAY, MAKE SURE THEY HAVE ALL THEIR DATA, AND WIPE THE HARD DRIVE! USE THE UBUNTU DRIVE TO INSTALL UBUNTU ON THE TRASH SERVER!, WRITE THE LOGIN AND PASSWORD ON THE MACHINE WITH PAINT PEN, DECORATE WITH PAINT PEN USING GEOMETRON AND TRASH MAGIC! USE ABSOLUTELY THE MOST MAXIMALIST POSSIBLE DESIGN ETHOS WHEN WORKING OVER THE ART STRUCTURE OF THE TRASH SERVERS! MAXIMUM RAINBOWS! MAXIMUM GOOGLEY EYES! MAXIMUM OVERTRASH! ![](https://raw.githubusercontent.com/LafeLabs/trashbook/main/trashmagic/server.png) NEVER PUT ANY PERSONAL OR PRIVATE INFORMATION ON THE FREE MACHINE! NEVER LOG INTO ANYTHING ON THE MACHINE! THIS MACHINE IS FREE! INSTALL APACHE, PHP, AND THE TRASHBOOK SERVER BY OPENING A COMMAND LINE AND TYPING THE COMMANDS BELOW! ``` sudo apt update sudo apt install apache2 -y sudo apt install php libapache2-mod-php -y cd /var/www/html sudo rm index.html sudo apt install curl sudo curl -o replicator.php https://raw.githubusercontent.com/LafeLabs/trashbook/main/php/replicator.txt cd .. sudo chmod -R 0777 * cd html php replicator.php sudo chmod -R 0777 * ``` REPLICATE THE SPECIFIC INSTANCE OF THE BOOK OF TRASH YOU WANT TO WORK WITH ONTO THE NEW SERVER! ON THE SERVER YOU CAN OPEN A BROWSER AND GO TO [http://localhost](http://localhost) TO SEE THE TRASHBOOK! ON ANY OTHER SERVER ON THE LOCAL NETWORK, POINT A BROWSER TO THE IP ADDRESS OF A TRASH SERVER! ON A TRASH MAGIC DUMP(HOME INTERNET CONNECTION) FORWARD ALL PORT 80 TRAFFIC TO THE IP ADDRESS OF A TRASH SERVER! POINT A DOMAIN AND SUBDOMAIN REFERENCING THE PHYSICAL LOCATION OF THE TRASH CART TO A TRASH SERVER! WRITE THE DOMAIN ON CARDBOARD SIGNS AND PUT THEM IN ON AND AROUND THE TRASH CART! ![](https://raw.githubusercontent.com/LafeLabs/trashnet/main/trashmagic/trashbooksign.png) PUT THE TRASH SERVERS IN THE TRASH CART! PUSH THE TRASH CART AROUND AND PICK UP NEW SERVERS AND DROP OFF OLD SERVERS! WRITE NEW TRASHBOOKS! TO WRITE A NEW TRASHBOOK, REPLICATE THIS BOOK AND MODIFY IT, THEN USE THE CHAOS MAGIC SYMBOL TO REPLICATE SCROLL SETS! TRASHBOOKS ARE SETS OF SELF-REPLICATING MARKDOWN FILES CALLED SCROLLS! REPLICATE OTHERS' TRASHBOOKS! PUBLISH ZINES ABOUT TRASH MAGIC ON THE TRASH MAGIC ZINE DISTRO! TO DO THAT, CREATE A "ZINES" FOLDER IN THE WEB FOLDER ON THE SERVER(/var/www/html/zines), AND PUT THE FILES FOR THE ZINES IN IT! LINK A FOLDER ON THE DESKTOP TO THE ZINES FOLDER FROM THE COMMAND LINE! LINK TO THE ZINE DISTRO WITH [DISTRO.HTML](distro.html)! ``` cd /var/www/html mkdir zines ln -s /var/www/html/zines ~/Desktop/zines ``` GO OUT AND ASK PEOPLE TO SUBMIT THEIR OWN ZINES ABOUT MAKING THINGS FROM TRASH AND PUBLISH THOSE! CREATE A TRASH MAGIC PODCAST AND PUBLISH IT TO A SERVER! ``` cd /var/www/html mkdir podcast ln -s /var/www/html/podcast ~/Desktop/podcast ``` CREATE A TRASH MAGIC MUSIC LABEL AND PUBLISH IT TO A SERVER! RECORD SONGS ABOUT REPLICATING THINGS FROM TRASH AND RELEASE THEM INTO THE PUBLIC DOMAIN! ``` cd /var/www/html mkdir music ln -s /var/www/html/music ~/Desktop/music ``` PRINT OUT THESE QR CODES AND PUT THEM ON ALL THE TRASH! ![](https://raw.githubusercontent.com/LafeLabs/trashbook/main/trashmagic/github-qrcode.png) GET MORE DOMAINS AND CONNECT THEM TO THE TRASHNET! POINT THE DOMAINS TO THE SERVERS! REPLICATE THIS GITHUB REPO! REPLICATE EVERYTHING! EVOLVE FULL TRASH MAGIC!
THE WORLD'S FIRST REALLY FREE EBOOK!
anarchy,chaos,ebooks,html5,javascript,magick,markdown,mathjax,php,self-replicating
2023-01-30T22:51:22Z
2023-12-01T03:46:29Z
null
1
0
55
1
0
2
null
CC0-1.0
HTML
luqmanherifa/notimetonews-news-portal
main
# NoTimeToNews: News Portal NoTimeToNews is a news portal contains highlight and daily news, news submit and edit features based on web. The project was developed for practicing React and CRUD using React, Laravel, Tailwind CSS, MySQL, and others. ## Interface ![Interface](https://raw.githubusercontent.com/luqmanherifa/luqman-herifa-personal-portfolio-v2/main/public/works/notimetonews.png) ## Software ### Languages - JavaScript - PHP - HTML/CSS ### Frameworks - React - Laravel - Tailwind CSS ### Libraries - daisyUI - Inertia ### Database - MySQL ### Tools - Visual Studio Code ## Design ### Fonts - [Plus Jakarta Sans](https://fonts.google.com/specimen/Plus+Jakarta+Sans) - [Playfair Display](https://fonts.google.com/specimen/Playfair+Display) ### Colors - ![#FACC15](https://placehold.co/20x20/FACC15/FACC15.png)  #FACC15 - ![#F6F4F0](https://placehold.co/20x20/F6F4F0/F6F4F0.png)  #F6F4F0 ### Tools - Figma ## Build ### Platform - Web ### Live - [YouTube](https://youtu.be/DtDKl8th9u8) ### Responsive - Desktop - Mobile ### Date created - February 2023 ### How to run - React ``` npm run watch ``` - Laravel ``` php artisan serve ``` ## Thanks to - [Dea Afrizal](https://www.youtube.com/@deaafrizal) - [CNN International](https://edition.cnn.com)
NoTimeToNews is a news portal contains highlight and daily news, news submit and edit features based on web. The project was developed for practicing React and CRUD using React, Laravel, Tailwind CSS, MySQL, and others.
crud,css,html,javascript,laravel,mysql,news,php,react,tailwindcss
2023-02-04T11:20:17Z
2023-12-07T09:45:49Z
null
1
0
46
0
0
2
null
null
JavaScript
prakash-s-2210/calendar-appointment-app-react
main
# Calendar appointment application frontend using React The Calendar Appointment App is a web application developed using React and ASP.Net Web API, which allows multiple users to create and manage their own events, similar to Google Calendar. The app has a landing signup page, where new users can sign up for an account. When a user submits their signup details, the ASP.Net Web API handles the request and checks if the email is already registered in the in-memory database. If the email is not found, the user's details are added to the user list, and a 200 Success response is returned. If the signup fails, an error message is displayed to the user. Once the user is signed up, they can log in using their email and password. The login details are processed in the backend, where the app checks if the email and password match with the ones stored in the user table. If the authentication is successful, a custom encoded token is generated by concatenating the UUID created during signup with a new UUID generated during login. The encoded token is then set to the response header and cookie. For subsequent requests such as posting, getting, updating, or deleting calendar events, the app first checks the token's validity. It decodes the token and verifies it against the user table. If the token is valid, the actual request is processed, and the response is returned to the frontend. If the token is null or invalid, the app redirects the user to the signup page. When the user clicks the logout button, the token's value is set to null, and the cookie is updated in the response header. The app then redirects the user to the signup page. If a request is made to the backend without a valid token, the app redirects the user to the landing page, as the user must be authenticated to access the app's features. ## Screenshots https://github.com/prakash-s-2210/calendar-appointment-app-react/assets/94909544/c9a8a728-ddb8-48dc-a560-764e73cec738 ![Calendar Img](https://github.com/prakash-s-2210/calendar-appointment-app-react/assets/94909544/21c32b47-c5b7-48e3-b656-7990fdb2ded4)
The Calendar Appointment App is a web application developed using React and ASP.Net Web API, which allows multiple users to create and manage their own events, similar to Google Calendar.
html,react,css,javascript,sass,scss,axios,react-router-dom,usecontext,usereducer
2023-02-05T16:52:47Z
2023-12-21T08:52:30Z
null
1
0
9
0
0
2
null
null
JavaScript
Gubchik123/Project-board
master
<a href="https://portfolio.hubariev.com/" target="_blank"><img title="Project board" alt="Header image" src="./md_images/Project-board_header.png"></a> _Page for displaying all my deployed projects_ ### Demo [![Netlify Status](https://api.netlify.com/api/v1/badges/3f7a5c61-3278-4d1c-9b5f-e8cc81bf15ad/deploy-status)](https://app.netlify.com/sites/gubchik123-project-board/deploys) Click **<a href="https://portfolio.hubariev.com/" target="_blank">here</a>** to open my project board page <img title="Demo" alt="Demo image" src="./md_images/demo.jpg"> ### License [Project-board](https://github.com/Gubchik123/Project-board) is licensed under the [MIT License](https://github.com/Gubchik123/Project-board/blob/master/LICENSE.md). ### Contributing Feel free to contribute. You can create an [issue](https://github.com/Gubchik123/Project-board/issues/new) to report a bug, suggest an improvement for this plugin, ask a question, etc. You can make a [pull request](https://github.com/Gubchik123/Project-board/compare) to contribute to this bot development. <br> ### Support If you like this project, you can support me to help me keep working on projects. Buy me coffee on [buymeacoffee.com/Gubchik123](https://www.buymeacoffee.com/Gubchik123) <a href="https://www.buymeacoffee.com/Gubchik123" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" height="60"></a>
The landing site with all my deployed projects
bootstrap5,css3,frontend,html5,javascript,project-board
2023-02-03T06:08:45Z
2024-05-06T16:07:12Z
null
1
0
51
0
0
2
null
MIT
HTML
ACM-Entrepreneurship/acm-e-website
main
# ACM Entrpenuership website GitHub repository ![GitHub contributors](https://img.shields.io/github/contributors/ACM-Entrepreneurship/acm-e-website) ![GitHub last commit (by committer)](https://img.shields.io/github/last-commit/ACM-Entrepreneurship/acm-e-website) ![GitHub Repo stars](https://img.shields.io/github/stars/ACM-Entrepreneurship/acm-e-website) ![AUR license](https://img.shields.io/aur/license/license?color=red) ![Screenshot-acme](https://github.com/ACM-Entrepreneurship/acm-e-website/assets/62154897/bf7627b5-367d-4944-bb30-1e4b4f9806f6) Welcome to the Missouri S&T ACM Entrepreneurship website GitHub repository! This website will serve as a platform for students to gain information about the organization, its events, projects, and resources. The website will consist of several sections including Home, Projects, Events, How to Join, Team, and FAQ. <br> ## Technologies Used - React.js - JavaScript - HTML - CSS - Bootstrap <br> ## Getting Started We welcome contributions from everyone. Here are the steps you can take to get started if you would like to contribute to the project: 1. Clone the repository to your local machine using Git Bash. To do this, open your Git Bash and run the following command: ```bash git clone https://github.com/<your-username>/acm-e-website.git ``` 2. Install dependencies: After cloning the repository, navigate to the project directory and install the required dependencies by running the following command: ```bash npm install ``` 3. Start the development server: Once you have installed the dependencies, start the development server by running the following command: ```bash npm start ``` 4. Make your changes: You are now ready to make changes to the codebase! Feel free to make any changes you like and experiment with the code. 5. Create a pull request: When you are ready to submit your changes, create a pull request from your fork to the original repository. We will review your changes and merge them into the main branch if they are accepted. <br> ## Contact ACM-E: entrepreneurshipacm@gmail.com Project Manager: parsa_hajiha@mst.edu <br> ## Contributors A special thanks goes to the following people who have contributed to this project: <a href="https://github.com/ACM-Entrepreneurship/acm-e-website/graphs/contributors"> <img src="https://contrib.rocks/image?repo=ACM-Entrepreneurship/acm-e-website" /> </a>
ACM Entrepreneurship's official website
bootrap-5,javascript,reactjs
2023-02-08T02:20:18Z
2023-10-22T22:49:45Z
null
5
10
106
0
0
2
null
MPL-2.0
JavaScript
codewithmmak/webdriverio-assertion-demo
master
--- # WebdriverIO Assertions Demo Setup Guide --- ## Features of this framework * Expect in WebdriverIO (Assertions) * [Cloud Integration: LambdaTest](http://www.lambdatest.com?fp_ref=md-moeen-ajaz40) ## Getting started ### Pre-requisites * Download and install Node.js * Download and install any Text Editor like Visual Code/Sublime/Brackets ### Setup Visual Code - optional * Install GitLens Extension from the Marketplace: `GitLens — Git supercharged by GitKraken https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens` * Install Material Icon Theme Extension from the Marketplace: `Material Icon Theme by Philipp Kief https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme` * Go to Visual Code Preference > Setting and search `formatOnSave` and enable/ON it. ### Setup Scripts * Clone the repository into a folder * Go to Project root directory and install Dependency: `npm install` * All the dependencies from package.json would be installed in node_modules folder. ## How to Run Test Locally * Go to the Project root directory and run command: `npm run wdio` ## How to Run Single Spec Locally * Go to the Project root directory and run command: `npm run wdio wdio.conf.js --spec ./test/specs/to-have-url.e2e.js` ## How to Run Test on LambdaTest Cloud * Go to Project root directory and run command: `npm run lambdatest` ### Terminal Test Result ![Terminal Test Result](./assets/terminal-lt.PNG?raw=true "Terminal Test Result") ### LambdaTest Cloud Results ![LambdaTest Cloud Results](./assets/lambdatest-results.PNG?raw=true "LambdaTest Cloud Results") ![LambdaTest Cloud Results Expanded View](./assets/lambdatest-results-expanded-view.PNG?raw=true "LambdaTest Cloud Results Expanded View")
This is a test automation framework designed using WebdriverIO to demonstrate different assertions
javascript,webdriverio,webdriverio-boilerplate-framework,lambdatest,nodejs,expect-webdriverio
2023-02-05T15:49:10Z
2023-02-07T17:41:22Z
null
1
1
6
0
0
2
null
null
JavaScript
praveen-1995/javascript-dom-basics
master
## Variables #1 1. create "firstName" and "last_name" variables 2. assign your values 3. create "address" variable and assign "main street" value to it 4. re-assign address to "first street" later 5. log all values in the console ## Concatenate Strings #2 1. create "street" and "country" variables 2. assign your values 3. create "fullMailingAddress" variable and assign the result of "street + country" 4. remember about the space 5. log "fullMailingAddress" in the console ## Numbers #3 1. create "score1", "score2", "score3" variables and assign values (0-100) 2. calculate total score and average score, and assign them to the variables. 3. log total score and average score 4. create "plates" variable and assign 20 5. create "people" variable and assign 7 6. calculate remaining plates and assign to the variable 7. add one to remaining plates 8. create message variable and display 'There are (your value goes here) plates available' - string concatenation 9. log message ## Arrays #4 1. create "fruits" array and store some fruit values 2. setup the last item as number (random) 3. assign first fruit to the variable 4. re-assign last array item to the actual fruit 5. log both first fruit variable and entire fruits array ## Functions #5 1. create "calculateTotal" function 2. add two parameters subTotal, tax 3. return sum of parameters 4. create 3 vars "order1","order2","order3" 5. call calculateResult, pass in some values and assign result to each order 6. log all three orders 7. refactor "calculateTotal" to function expression ## Objects #6 1. create car object 2. add make, model, year, colors (array), hybrid (boolean) keys 3. add two methods (drive and stop) 4. in the function body setup log with random text 5. log make 6. log first color 7. invoke both methods ## Conditional Statements #7 1. create two objects "person1", "person2" 2. setup name,age (15-25), status ('resident', 'tourist') keys 3. setup if else, condition where age must be bigger than 18 and status must be equal to 'resident' 4. test with both objects ## Strings #8 1. create function fullName 2. accept two parameters "firstName", "lastName" 3. add them together (concat) and return result in uppercase 4. invoke fullName and pass some values 5. log result 6. change the order of arguments 7. refactor to object parameter ## Array Methods #9 Multiple Videos #### Create Students Array 1. setup students array with 5 students { id: 1, name: 'peter', score: 80, favoriteSubject: 'math', }, #### Use Multiple Files - easer to manage code base (file, project) - order matters - other ways to achieve the same result (ES6 modules, fetch DB ) - not limited to just static data #### updatedStudents 1. add role:'student' property to each object using MAP method 2. assign to 'updatedStudents' variable and log #### highScores 1. filter array and return only scores >= 80 2. assign to 'highScores' variable and log #### specificId 1. find specific id in array 2. assign to 'specificId' variable and log #### averageScore 1. sum up all student.score values with reduce 2. divide by the length of the students array 3. assign to 'averageScore' and log #### survey 1. list favorite subjects with reduce { english: 1 history: 1 math: 3 } 2. assign to survey and log
JavaScript & DOM Basics
javascript,john-smilga,css3,html5,git,arrays,data-types,dom,events,helper-methods
2023-02-02T05:52:08Z
2023-02-20T05:04:53Z
null
1
0
106
0
0
2
null
null
JavaScript
EthenThinkful/poke-booklets
main
# Poke Booklets Full stack project using React frontend & Java backend. Poke Booklets is used to connect with others over Pokemon trading card collectibles. <img width="323" alt="Screenshot 2023-10-23 at 11 50 11 AM" src="https://github.com/EthenThinkful/poke-booklets/assets/104235709/cd16d7c8-6fd1-4678-92fc-d8a9cd606fea"> ## Plans for evolution of the site - Extensive card authentication/verification. Tesseract.js doesn't look viable enough. - CSS page flips for card booklets. ## Backend Repository https://github.com/EthenThinkful/PokemonAPIjectBackend
Passion project intended for people to interact over their Pokemon card collectibles.
css,javascript,pokemon,pokemon-api,pokemonapi,react,reactjs
2023-01-31T20:35:00Z
2023-10-23T17:59:18Z
null
3
87
377
0
2
2
null
null
JavaScript
NATASHA-ct/STICKY-NOTE-APP
featureA
<a name="readme-top"></a> <!-- HOW TO USE: This is an example of how you may give instructions on setting up your project locally. Modify this file to match your project and remove sections that don't apply. REQUIRED SECTIONS: - Table of Contents - About the Project - Built With - Live Demo - Getting Started - Authors - Future Features - Contributing - Show your support - Acknowledgements - License OPTIONAL SECTIONS: - FAQ After you're finished please remove all the comments and instructions! --> <div align="center"> <!-- You are encouraged to replace this logo with your own! Otherwise you can also remove it. --> <img src="logo.png" alt="logo" width="240" height="auto" /> <br/> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#triangular_flag_on_post-deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [❓ FAQ (OPTIONAL)](#faq) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 [STICKY NOTE APP] <a name="about-project"></a> > Sticky Note App is an interactive web application that allows users to create and manage virtual sticky notes in a web browser. This repository contains the source code for a fully functional Note app built using JavaScript, HTML, and CSS. The user interface is simple and intuitive, so anyone can start using the app right away. Thanks to its responsive design, the application is optimized for use on both desktop and mobile devices. Whether you want to stay organized or just want a fun and creative way to jot down your thoughts, this JavaScript Sticky Note app is the perfect solution. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> - JavaScript - Html - Sass <!-- Features --> ### Key Features <a name="key-features"></a> - **[key_feature_1]** - **[key_feature_2]** - **[key_feature_3]** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> > Add a link to your deployed project. - [Live Demo Link](https://yourdeployedapplicationlink.com) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> > Describe how a new developer could make use of your project. To get a local copy up and running, follow these steps. ### Prerequisites In order to run this project you need: <!-- Example command: ```sh gem install rails ``` --> ### Setup Clone this repository to your desired folder: <!-- Example commands: ```sh cd my-folder git clone git@github.com:myaccount/my-project.git ``` ---> ### Install Install this project with: <!-- Example command: ```sh cd my-project gem install ``` ---> ### Usage To run the project, execute the following command: <!-- Example command: ```sh rails server ``` ---> ### Run tests To run tests, run the following command: <!-- Example command: ```sh bin/rails test test/models/article_test.rb ``` ---> ### Deployment You can deploy this project using: <!-- Example: ```sh ``` --> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **NATASHA TATENDA CHIROMBE** - GitHub: [@NATASHA-ct]((https://github.com/NATASHA-ct) - Twitter: [@NatashaChirombe] - LinkedIn: [Natasha Chirombe](linkedin.com/in/natasha-chirombe-1531aa17b) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **[new_feature_1]** - [ ] **[new_feature_2]** - [ ] **[new_feature_3]** <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> > Write a message to encourage readers to support your project If you like this project... <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> > Give credit to everyone who inspired your codebase. I would like to thank... <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FAQ (optional) --> ## ❓ FAQ (OPTIONAL) <a name="faq"></a> > Add at least 2 questions new developers would ask when they decide to use your project. - **[Question_1]** - [Answer_1] - **[Question_2]** - [Answer_2] <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. _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>
Sticky Note App - a virtual note-taking app built using JavaScript, HTML, and CSS. Simple UI optimized for desktop and mobile devices. Jot down thoughts and stay organized with ease.
html5,javascript,sass
2023-02-06T21:55:31Z
2023-02-08T18:28:16Z
null
1
0
10
0
0
2
null
null
CSS
AJEDDIGElias/react-anime-watchlist
main
# Anime WatchList (ReactJS) ![Demo](/anime-watchlist/src/assets/Animation.gif) ## 📖 Table of Contents - [❓ Why?](#-why-) - [✨ Tech stack](#-tech-stack-) - [💾 Install](#-install-) - [🎛️ API](#️-api-) - [👨🏼‍💻 Author](#-author-) - [📄 License](#-license-) ## ❓ Why? [🔝](#-table-of-contents) The goal of this project was to learn the basics of ReactJS. This project was a big project : a anime watchlist application. In this page, we can : - Search for every anime - Read the synopsis of every anime - Have all informations (Rank, Score of the community, Popularity, etc...) - Add/Remove an anime from the WatchList ## ✨ Tech stack [🔝](#-table-of-contents) For this project, I used [npm](https://www.npmjs.com/) for default package management for the Node.js JavaScript runtime environment from Node.js and [ReactJS](https://reactjs.org/) the open-source JavaScript library used to facilitate the creation of single-page web applications, via the creation of components that depend on a state and generate an HTML page at each state change.. ## 💾 Install [🔝](#-table-of-contents) Project setup ``` cd anime-watchlist npm install ``` Launch project ``` npm start ``` ## 🎛️ API [🔝](#-table-of-contents) I use the API called [Jikan API](https://docs.api.jikan.moe/). It's a free and opensource API used by [MyAnimeList](https://myanimelist.net/). # 👨🏼‍💻 Author [🔝](#-table-of-contents) Elias AJEDDIG # 📄 License [🔝](#-table-of-contents) MIT © Elias AJEDDIG
React App that uses Jikan API to display anime database and create watchlist
api,html,javascript,react
2023-01-27T15:22:20Z
2023-02-01T19:55:12Z
null
1
0
7
0
0
2
null
null
JavaScript
bijanstha7/Car-Animation
master
# Car-Animation Link: https://bijanstha7.github.io/Car-Animation/
null
css,html,html-css-javascript,javascript
2023-02-05T07:48:15Z
2023-02-06T12:44:59Z
null
1
0
3
0
0
2
null
null
CSS
martinliu/dalle_clone
main
# A Full Stack MERN AI Image Generation App ![2023-02-08_00-37-22](https://user-images.githubusercontent.com/582423/217306764-6593c933-a501-45f3-afbd-2bf9da12c1f4.jpg) I am building with: 1. the powerful MERN stack Node.js, Express.js, MongoDB, and React.js together. * vite, react, tailwindcss * express, mongoose, openai, cloudinary 2. the most popular CSS framework Tailwind. 3. OpenAI's DALL-E model: A deep learning model that generates images from text input * different scales for my blog. 4. A cloud-based image persistent storage service Cloudinary. ## Other AI Art generators * [Deep Dream Generato](https://deepdreamgenerator.com/) * [Midjourney](https://www.midjourney.com/home/) * [Stablecog](https://stablecog.com/) * [NightCafe]() * []() ## Gallery ### Women and Cats by Deep Dream ![lkggwj_be931639774a707f26d125dee5cdeb9ccf2f8b22](https://user-images.githubusercontent.com/582423/217399753-9fcbfa59-bad3-4a75-a508-b886d9a70020.jpg) ### Pomegranate by Deep Dream ![wlyzg8_79be260813718640654ca1dea8fa68331a9944c5](https://user-images.githubusercontent.com/582423/217400270-ab20d761-e739-46d7-b533-ed7f865f4850.jpg) Prompt: Pomegranate with almandine garnet arils a bowl of ruby pomegranates in a room full of treasure, cut pomegranate, dragons horde, stacks of gold coins, gold cups. ### Cottage in the forest by NightCafe ![ubMPneNrKE8NVKdhx5WO](https://user-images.githubusercontent.com/582423/217398690-8b8771ef-c3d8-4fc6-a1a5-5d035eef2d41.jpg) ### Portrait of a cat by Van Gogh by Stablecog ![s_909088975 - gs_7 - is_30 -Portrait of a cat by Van Gogh](https://user-images.githubusercontent.com/582423/217399302-f5d5e2b0-f377-4667-9dd2-a3513174c15d.jpeg)
Dive into the world of artificial intelligence and build my own version of these tools that can generate everything for my websites.
cloudflare-pages,cloudinary,dalle2,javascript,nodejs,openai,react,tailwindcss,vite
2023-02-05T13:47:57Z
2023-02-08T00:49:06Z
null
1
0
14
0
0
2
null
GPL-3.0
JavaScript
javacatscript/To-do-app
master
# To-do-app A to-do list app to add, delete, update your daily tasks
A to-do list app to add, delete, update your daily tasks
ejs,javascript,mongoose,css,html,mongodb
2023-02-09T09:15:02Z
2023-02-09T09:39:31Z
null
1
0
2
0
0
2
null
null
CSS
prateeeksagar/project-management-app
master
# 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. ### 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) ### Preview and Images ![alt text](https://github.com/prateeeksagar/project-management-app/blob/c184e346e8ff632f30c818bd80e170c99df527cb/Screenshot%20from%202023-02-15%2011-45-42.png?raw=true) ![alt text](https://github.com/prateeeksagar/project-management-app/blob/master/Screenshot%20from%202023-02-15%2011-45-55.png?raw=true) ![alt text](https://github.com/prateeeksagar/project-management-app/blob/e1df391ab0a93087a4ff0fcd060fce6149247b0e/Screenshot%20from%202023-02-15%2011-45-50.png) ![alt text](https://github.com/prateeeksagar/project-management-app/blob/e1df391ab0a93087a4ff0fcd060fce6149247b0e/Screenshot%20from%202023-02-15%2011-45-46.png) ![alt text](https://github.com/prateeeksagar/project-management-app/blob/e1df391ab0a93087a4ff0fcd060fce6149247b0e/Screenshot%20from%202023-02-15%2011-45-42.png)
Name : ProManager
api,css,html,javascript,project-management,reactjs
2023-02-09T05:27:56Z
2023-03-13T11:38:28Z
null
1
0
11
0
0
2
null
null
JavaScript
tsahiBarshevsky/job-hunter
master
# _Job Hunter - an Online Job Tracker_ When I started the job search process, I used an Excel file to organize all the jobs I've been applied for and later, I found a site that allows doing the same thing more conveniently. But I felt it was very basic and lacking features that could further facilitate the process, so I'm happy to introduce you to Job Hunter - an [upgraded version](https://github.com/tsahiBarshevsky/jobi) of a job tracking site. [![N|Solid](https://lh3.googleusercontent.com/d2xe03sWwzKIu5FtKjBRXwEJajNYaDOdxXqT3Qpnal8D3QAvPUbIiB0x_ujv_7N3hdspCBTVtibKRpLnbQz96lcWnRFzsqRev1e1CKJFnlkA0oCUOiAwjhaWQQuOw_wLNBBbchhqvw=w2400)](https://job-hunter1.netlify.app) Job Hunter allows you to keep track of job applications in a convenient and organized way, update job status easily, view a job timeline from the moment you apply, through a conversation with a recruiter until you get the job. In addition, there are some metrics like weekly and monthly applications and you can also create phone book of contatcs and activities. All you have to do is log in with your Google account and start tracking. ### Project stack: ![](https://img.shields.io/badge/React-20232A?style=for-the-badge&logo=react&logoColor=61DAFB) ![](https://img.shields.io/badge/React_Router-CA4245?style=for-the-badge&logo=react-router&logoColor=white) ![](https://img.shields.io/badge/Material--UI-0081CB?style=for-the-badge&logo=material-ui&logoColor=whit) ![](https://img.shields.io/badge/Sass-CC6699?style=for-the-badge&logo=sass&logoColor=white) ![](https://img.shields.io/badge/JavaScript-F7DF1E?style=for-the-badge&logo=javascript&logoColor=black) ![Firebase](https://img.shields.io/badge/firebase-%23039BE5.svg?style=for-the-badge&logo=firebase) ### Deployed using ![](https://img.shields.io/badge/Netlify-00C7B7?style=for-the-badge&logo=netlify&logoColor=white)
An online job tracker
framework-css,javascript,material-ui,react,sass
2023-01-31T08:32:38Z
2023-02-18T11:31:13Z
null
1
0
99
0
0
2
null
null
JavaScript
divyaGrvgithub/Shopping-Cart-Project-G8
project/productsManagementGroup8
#Californium ## Project - Products Management ### Key points - In this project we will work feature wise. That means we pick one object like user, book, blog, etc at a time. We work through it's feature. The steps would be: 1) We create it's model. 2) We build it's APIs. 3) We test these APIs. 4) We deploy these APIs. 5) We integrate these APIs with frontend. 6) We will repeat steps from Step 1 to Step 5 for each feature in this project. - This project is divided into 4 features namely User, Product, Cart and Order. You need to work on a single feature at a time. Once that is completed as per above mentioned steps. You will be instructed to move to next Feature. - In this project we are changing how we send token with a request. Instead of using a custom header key like x-api-key, you need to use Authorization header and send the JWT token as Bearer token. - Create a group database `groupXDatabase`. You can clean the db you previously used and resue that. - This time each group should have a *single git branch*. Coordinate amongst yourselves by ensuring every next person pulls the code last pushed by a team mate. You branch will be checked as part of the demo. Branch name should follow the naming convention `project/productsManagementGroupX` - Follow the naming conventions exactly as instructed. ## FEATURE I - User ### Models - User Model ```yaml { fname: {string, mandatory}, lname: {string, mandatory}, email: {string, mandatory, valid email, unique}, profileImage: {string, mandatory}, // s3 link phone: {string, mandatory, unique, valid Indian mobile number}, password: {string, mandatory, minLen 8, maxLen 15}, // encrypted password address: { shipping: { street: {string, mandatory}, city: {string, mandatory}, pincode: {number, mandatory} }, billing: { street: {string, mandatory}, city: {string, mandatory}, pincode: {number, mandatory} } }, createdAt: {timestamp}, updatedAt: {timestamp} } ``` ## User APIs ### POST /register - Create a user document from request body. Request body must contain image. - Upload image to S3 bucket and save it's public url in user document. - Save password in encrypted format. (use bcrypt) - __Response format__ - _**On success**_ - Return HTTP status 201. Also return the user document. The response should be a JSON object like [this](#successful-response-structure) - _**On error**_ - Return a suitable error message with a valid HTTP status code. The response should be a JSON object like [this](#error-response-structure) ```yaml { "status": true, "message": "User created successfully", "data": { "fname": "John", "lname": "Doe", "email": "johndoe@mailinator.com", "profileImage": "https://classroom-training-bucket.s3.ap-south-1.amazonaws.com/user/copernico-p_kICQCOM4s-unsplash.jpg", "phone": 9876543210, "password": "$2b$10$DpOSGb0B7cT0f6L95RnpWO2P/AtEoE6OF9diIiAEP7QrTMaV29Kmm", "address": { "shipping": { "street": "MG Road", "city": "Indore", "pincode": 452001 }, "billing": { "street": "MG Road", "city": "Indore", "pincode": 452001 } }, "_id": "6162876abdcb70afeeaf9cf5", "createdAt": "2021-10-10T06:25:46.051Z", "updatedAt": "2021-10-10T06:25:46.051Z", "__v": 0 } } ``` ### POST /login - Allow an user to login with their email and password. - On a successful login attempt return the userId and a JWT token contatining the userId, exp, iat. > **_NOTE:_** There is a slight change in response body. You should also return userId in addition to the JWT token. - __Response format__ - _**On success**_ - Return HTTP status 200 and JWT token in response body. The response should be a JSON object like [this](#successful-response-structure) - _**On error**_ - Return a suitable error message with a valid HTTP status code. The response should be a JSON object like [this](#error-response-structure) ```yaml { "status": true, "message": "User login successfull", "data": { "userId": "6165f29cfe83625cf2c10a5c", "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOiI2MTYyODc2YWJkY2I3MGFmZWVhZjljZjUiLCJpYXQiOjE2MzM4NDczNzYsImV4cCI6MTYzMzg4MzM3Nn0.PgcBPLLg4J01Hyin-zR6BCk7JHBY-RpuWMG_oIK7aV8" } } ``` ## GET /user/:userId/profile (Authentication required) - Allow an user to fetch details of their profile. - Make sure that userId in url param and in token is same - __Response format__ - _**On success**_ - Return HTTP status 200 and returns the user document. The response should be a JSON object like [this](#successful-response-structure) - _**On error**_ - Return a suitable error message with a valid HTTP status code. The response should be a JSON object like [this](#error-response-structure) ```yaml { "status": true, "message": "User profile details", "data": { "address": { "shipping": { "street": "MG Road", "city": "Indore", "pincode": 452001 }, "billing": { "street": "MG Road", "city": "Indore", "pincode": 452001 } }, "_id": "6162876abdcb70afeeaf9cf5", "fname": "John", "lname": "Doe", "email": "johndoe@mailinator.com", "profileImage": "https://classroom-training-bucket.s3.ap-south-1.amazonaws.com/user/copernico-p_kICQCOM4s-unsplash.jpg", "phone": 9876543210, "password": "$2b$10$DpOSGb0B7cT0f6L95RnpWO2P/AtEoE6OF9diIiAEP7QrTMaV29Kmm", "createdAt": "2021-10-10T06:25:46.051Z", "updatedAt": "2021-10-10T06:25:46.051Z", "__v": 0 } } ``` ## PUT /user/:userId/profile (Authentication and Authorization required) - Allow an user to update their profile. - A user can update all the fields - Make sure that userId in url param and in token is same - __Response format__ - _**On success**_ - Return HTTP status 200. Also return the updated user document. The response should be a JSON object like [this](#successful-response-structure) - _**On error**_ - Return a suitable error message with a valid HTTP status code. The response should be a JSON object like [this](#error-response-structure) ```yaml { "status": true, "message": "User profile updated", "data": { "address": { "shipping": { "street": "MG Road", "city": "Delhi", "pincode": 110001 }, "billing": { "street": "MG Road", "city": "Indore", "pincode": 452010 } }, "_id": "6162876abdcb70afeeaf9cf5", "fname": "Jane", "lname": "Austin", "email": "janedoe@mailinator.com", "profileImage": "https://classroom-training-bucket.s3.ap-south-1.amazonaws.com/user/laura-davidson-QBAH4IldaZY-unsplash.jpg", "phone": 9876543210, "password": "$2b$10$jgF/j/clYBq.3uly6Tijce4GEGJn9EIXEcw9NI3prgKwJ/6.sWT6O", "createdAt": "2021-10-10T06:25:46.051Z", "updatedAt": "2021-10-10T08:47:15.297Z", "__v": 0 } } ``` Note: [Bcrypt](https://www.npmjs.com/package/bcrypt) Send [form-data](https://developer.mozilla.org/en-US/docs/Web/API/FormData) ## FEATTURE II - Product ### Models - Product Model ```yaml { title: {string, mandatory, unique}, description: {string, mandatory}, price: {number, mandatory, valid number/decimal}, currencyId: {string, mandatory, INR}, currencyFormat: {string, mandatory, Rupee symbol}, isFreeShipping: {boolean, default: false}, productImage: {string, mandatory}, // s3 link style: {string}, availableSizes: {array of string, at least one size, enum["S", "XS","M","X", "L","XXL", "XL"]}, installments: {number}, deletedAt: {Date, when the document is deleted}, isDeleted: {boolean, default: false}, createdAt: {timestamp}, updatedAt: {timestamp}, } ``` ## Products API (_No authentication required_) ### POST /products - Create a product document from request body. - Upload product image to S3 bucket and save image public url in document. - __Response format__ - _**On success**_ - Return HTTP status 201. Also return the product document. The response should be a JSON object like [this](#successful-response-structure) - _**On error**_ - Return a suitable error message with a valid HTTP status code. The response should be a JSON object like [this](#error-response-structure) ### GET /products - Returns all products in the collection that aren't deleted. - __Filters__ - Size (The key for this filter will be 'size') - Product name (The key for this filter will be 'name'). You should return all the products with name containing the substring recieved in this filter - Price : greater than or less than a specific value. The keys are 'priceGreaterThan' and 'priceLessThan'. > **_NOTE:_** For price filter request could contain both or any one of the keys. For example the query in the request could look like { priceGreaterThan: 500, priceLessThan: 2000 } or just { priceLessThan: 1000 } ) - __Sort__ - Sorted by product price in ascending or descending. The key value pair will look like {priceSort : 1} or {priceSort : -1} _eg_ /products?size=XL&name=Nit%20grit - __Response format__ - _**On success**_ - Return HTTP status 200. Also return the product documents. The response should be a JSON object like [this](#successful-response-structure) - _**On error**_ - Return a suitable error message with a valid HTTP status code. The response should be a JSON object like [this](#error-response-structure) ### GET /products/:productId - Returns product details by product id - __Response format__ - _**On success**_ - Return HTTP status 200. Also return the product documents. The response should be a JSON object like [this](#successful-response-structure) - _**On error**_ - Return a suitable error message with a valid HTTP status code. The response should be a JSON object like [this](#error-response-structure) ### PUT /products/:productId - Updates a product by changing at least one or all fields - Check if the productId exists (must have isDeleted false and is present in collection). If it doesn't, return an HTTP status 404 with a response body like [this](#error-response-structure) - __Response format__ - _**On success**_ - Return HTTP status 200. Also return the updated product document. The response should be a JSON object like [this](#successful-response-structure) - _**On error**_ - Return a suitable error message with a valid HTTP status code. The response should be a JSON object like [this](#error-response-structure) ### DELETE /products/:productId - Deletes a product by product id if it's not already deleted - __Response format__ - _**On success**_ - Return HTTP status 200. The response should be a JSON object like [this](#successful-response-structure) - _**On error**_ - Return a suitable error message with a valid HTTP status code. The response should be a JSON object like [this](#error-response-structure) ## FEATURE III - Cart ### Models - Cart Model ```yaml { userId: {ObjectId, refs to User, mandatory, unique}, items: [{ productId: {ObjectId, refs to Product model, mandatory}, quantity: {number, mandatory, min 1} }], totalPrice: {number, mandatory, comment: "Holds total price of all the items in the cart"}, totalItems: {number, mandatory, comment: "Holds total number of items in the cart"}, createdAt: {timestamp}, updatedAt: {timestamp}, } ``` ## Cart APIs (_authentication required as authorization header - bearer token_) ### POST /users/:userId/cart (Add to cart) - Create a cart for the user if it does not exist. Else add product(s) in cart. - Get cart id in request body. - Get productId in request body. - Make sure that cart exist. - Add a product(s) for a user in the cart. - Make sure the userId in params and in JWT token match. - Make sure the user exist - Make sure the product(s) are valid and not deleted. - Get product(s) details in response body. - __Response format__ - _**On success**_ - Return HTTP status 201. Also return the cart document. The response should be a JSON object like [this](#successful-response-structure) - _**On error**_ - Return a suitable error message with a valid HTTP status code. The response should be a JSON object like [this](#error-response-structure) ### PUT /users/:userId/cart (Remove product / Reduce a product's quantity from the cart) - Updates a cart by either decrementing the quantity of a product by 1 or deleting a product from the cart. - Get cart id in request body. - Get productId in request body. - Get key 'removeProduct' in request body. - Make sure that cart exist. - Key 'removeProduct' denotes whether a product is to be removed({removeProduct: 0}) or its quantity has to be decremented by 1({removeProduct: 1}). - Make sure the userId in params and in JWT token match. - Make sure the user exist - Get product(s) details in response body. - Check if the productId exists and is not deleted before updating the cart. - __Response format__ - _**On success**_ - Return HTTP status 200. Also return the updated cart document. The response should be a JSON object like [this](#successful-response-structure) - _**On error**_ - Return a suitable error message with a valid HTTP status code. The response should be a JSON object like [this](#error-response-structure) ### GET /users/:userId/cart - Returns cart summary of the user. - Make sure that cart exist. - Make sure the userId in params and in JWT token match. - Make sure the user exist - Get product(s) details in response body. - __Response format__ - _**On success**_ - Return HTTP status 200. Return the cart document. The response should be a JSON object like [this](#successful-response-structure) - _**On error**_ - Return a suitable error message with a valid HTTP status code. The response should be a JSON object like [this](#error-response-structure) ### DELETE /users/:userId/cart - Deletes the cart for the user. - Make sure that cart exist. - Make sure the userId in params and in JWT token match. - Make sure the user exist - cart deleting means array of items is empty, totalItems is 0, totalPrice is 0. - __Response format__ - _**On success**_ - Return HTTP status 204. Return a suitable message. The response should be a JSON object like [this](#successful-response-structure) - _**On error**_ - Return a suitable error message with a valid HTTP status code. The response should be a JSON object like [this](#error-response-structure) ## FEATURE IV - Order ### Models - Order Model ```yaml { userId: {ObjectId, refs to User, mandatory}, items: [{ productId: {ObjectId, refs to Product model, mandatory}, quantity: {number, mandatory, min 1} }], totalPrice: {number, mandatory, comment: "Holds total price of all the items in the cart"}, totalItems: {number, mandatory, comment: "Holds total number of items in the cart"}, totalQuantity: {number, mandatory, comment: "Holds total number of quantity in the cart"}, cancellable: {boolean, default: true}, status: {string, default: 'pending', enum[pending, completed, cancled]}, deletedAt: {Date, when the document is deleted}, isDeleted: {boolean, default: false}, createdAt: {timestamp}, updatedAt: {timestamp}, } ``` ## Checkout/Order APIs (Authentication and authorization required) ### POST /users/:userId/orders - Create an order for the user - Make sure the userId in params and in JWT token match. - Make sure the user exist - Get cart details in the request body - __Response format__ - _**On success**_ - Return HTTP status 200. Also return the order document. The response should be a JSON object like [this](#successful-response-structure) - _**On error**_ - Return a suitable error message with a valid HTTP status code. The response should be a JSON object like [this](#error-response-structure) ## PUT /users/:userId/orders - Updates an order status - Make sure the userId in params and in JWT token match. - Make sure the user exist - Get order id in request body - Make sure the order belongs to the user - Make sure that only a cancellable order could be canceled. Else send an appropriate error message and response. - __Response format__ - _**On success**_ - Return HTTP status 200. Also return the updated order document. The response should be a JSON object like [this](#successful-response-structure) - _**On error**_ - Return a suitable error message with a valid HTTP status code. The response should be a JSON object like [this](#error-response-structure) ## Testing - To test these apis create a new collection in Postman named Project 5 Shopping Cart - Each api should have a new request in this collection - Each request in the collection should be rightly named. Eg Create user, Create product, Get products etc - Each member of each team should have their tests in running state Refer below sample ![A Postman collection and request sample](assets/Postman-collection-sample.png) ## Response ### Successful Response structure ```yaml { status: true, message: 'Success', data: { } } ``` ### Error Response structure ```yaml { status: false, message: "" } ``` ## Collections ## users ```yaml { _id: ObjectId("88abc190ef0288abc190ef02"), fname: 'John', lname: 'Doe', email: 'johndoe@mailinator.com', profileImage: 'http://function-up-test.s3.amazonaws.com/users/user/johndoe.jpg', // s3 link phone: 9876543210, password: '$2b$10$O.hrbBPCioVm237nAHYQ5OZy6k15TOoQSFhTT.recHBfQpZhM55Ty', // encrypted password address: { shipping: { street: "110, Ridhi Sidhi Tower", city: "Jaipur", pincode: 400001 }, {mandatory} billing: { street: "110, Ridhi Sidhi Tower", city: "Jaipur", pincode: 400001 } }, createdAt: "2021-09-17T04:25:07.803Z", updatedAt: "2021-09-17T04:25:07.803Z", } ``` ### products ```yaml { _id: ObjectId("88abc190ef0288abc190ef55"), title: 'Nit Grit', description: 'Dummy description', price: 23.0, currencyId: 'INR', currencyFormat: '₹', isFreeShipping: false, productImage: 'http://function-up-test.s3.amazonaws.com/products/product/nitgrit.jpg', // s3 link style: 'Colloar', availableSizes: ["S", "XS","M","X", "L","XXL", "XL"], installments: 5, deletedAt: null, isDeleted: false, createdAt: "2021-09-17T04:25:07.803Z", updatedAt: "2021-09-17T04:25:07.803Z", } ``` ### carts ```yaml { "_id": ObjectId("88abc190ef0288abc190ef88"), userId: ObjectId("88abc190ef0288abc190ef02"), items: [{ productId: ObjectId("88abc190ef0288abc190ef55"), quantity: 2 }, { productId: ObjectId("88abc190ef0288abc190ef60"), quantity: 1 }], totalPrice: 50.99, totalItems: 2, createdAt: "2021-09-17T04:25:07.803Z", updatedAt: "2021-09-17T04:25:07.803Z", } ``` ### orders ```yaml { "_id": ObjectId("88abc190ef0288abc190ef88"), userId: ObjectId("88abc190ef0288abc190ef02"), items: [{ productId: ObjectId("88abc190ef0288abc190ef55"), quantity: 2 }, { productId: ObjectId("88abc190ef0288abc190ef60"), quantity: 1 }], totalPrice: 50.99, totalItems: 2, totalQuantity: 3, cancellable: true, status: 'pending' createdAt: "2021-09-17T04:25:07.803Z", updatedAt: "2021-09-17T04:25:07.803Z", } ```
This project is based on the E-commerce website and Cart Management. In this project, we had to create 4 Model like User Model, Products Model, Cart Model and Order Model. First, we need to create User. Then add products. After that User can add product in their cart which user wants to buy. And finally, user can order those products from Cart.
javascript,jwt-authentication,jwt-token,npm,validator
2023-02-01T09:27:47Z
2023-02-09T17:45:12Z
null
3
10
92
0
0
2
null
null
JavaScript
Toni-Zoaretz/AS-Project-Minecraft-Game
master
# 🪓Minecraft Game I was given a task @AppleSeeds Bootcamp to to build responsive Minecraft Game.<br> I implement the Game using `HTML`,`CSS`,`JavaScript`. ### Minecraft Game link: https://minecraft-game-appleseed.netlify.app/ ### Reference Game link: https://www.youtube.com/watch?v=OtKK-GFa1ss&ab_channel=EricChukoltiansky ### Game Instructions ▶In this game you can collect the elements you want from the word by clicking it with the right tool.<br> ▶Axe -for cutting leaves, trunck trees and flowers.<br> ▶Pickaxe - for mining rocks.<br> ▶Shovel - for digging dirt and grass.<br> ▶you can also take back what you collect from the trash box and push it back in the word whenever you want.<br> ▶When pressing the sun in became night mood<br> ### Screenshots ![Alt text](/assets/welcome_screen.png) ![plot](/assets/main_game.png) ![plot](/assets/game_action.png) ![plot](/assets/night_png.PNG) ### Deployment To deploy this project run ```bash ./index.html ```
Minecraft Game
css,html,dom,dom-manipulation,flexbox,javascript,responsive-design,grid-layout
2023-02-02T13:47:22Z
2023-02-14T07:59:34Z
null
1
0
30
0
0
2
null
null
CSS
Joliwood/Portfolio
main
# Welcome to my portfolio ![Gif of presentation](https://github.com/Joliwood/Portfolio/blob/main/docs/portfolio.gif?raw=true) ## Context This portfolio had been created by myself in React JS and Next js, without CSS librairy or template. To see these skills, you will need to go to my repositories and check at my projects.</p> ## What is it for ? The website is to show a basic website, but well made, in ergonomy, responsivness, design and SEO. The repository will be updated as needed to continue to show my skills and learning throughout my career. ## How to read commits in this project :zap: = Minor correction / debug \ :construction: = Work in progress \ :card_file_box: = Datas or contents updated \ :hammer: = New functionnality / component \ :memo: = Readme / Code comments / Documentations \ :rotating_light: = Security \ :sparkles: = Clean code ## How to access to this project [Link to my portfolio website](https://guillaume-jolibois.fr/)
ONLINE - My portfolio build in React & Next js, all the designs are made by myself with SCSS
javascript,next,portfolio,portfolio-website,react,scss,eslint
2023-02-02T17:46:56Z
2023-11-15T10:52:28Z
null
1
9
128
0
0
2
null
MIT
JavaScript
JoshuaMc1/Citas-React
main
# Vettrack ¡Bienvenido/a a la aplicación de citas veterinarias! Esta aplicación ha sido construida con tecnologías modernas como React, TailwindCSS y Vite para proporcionar una experiencia de usuario eficiente y agradable. ## Características principales - **Registro de Usuarios**: Los usuarios pueden crear cuentas personalizadas para gestionar sus citas y la información de sus mascotas. - **Agenda de Citas**: Visualiza y gestiona fácilmente todas las citas programadas con la opción de añadir, modificar o cancelar citas. - **Información de Mascotas**: Guarda detalles esenciales sobre tus mascotas, como su nombre, raza y fecha de nacimiento para un mejor seguimiento de su salud. - **Notificaciones**: Recibe recordatorios y notificaciones sobre las próximas citas para que no te pierdas ninguna. ## Requisitos previos Asegúrate de tener Node.js y npm instalados en tu máquina antes de comenzar. Puedes instalarlos desde [nodejs.org](https://nodejs.org/). ## Configuración del Proyecto 1. Clona este repositorio: `git clone https://github.com/JoshuaMc1/Citas-React.git` 2. Accede al directorio del proyecto: `cd Citas-React` 3. Instala las dependencias: `npm install` 4. Inicia la aplicación: `npm run dev` La aplicación estará disponible en [http://localhost:5173](http://localhost:5173). ## Tecnologías Utilizadas - **React**: Biblioteca JavaScript para construir interfaces de usuario interactivas. - **TailwindCSS**: Framework de utilidad de CSS altamente personalizable para diseñar interfaces modernas. - **Vite**: Herramienta de construcción y desarrollo para aplicaciones web rápidas. ## Contribuir ¡Contribuciones son bienvenidas! Si tienes ideas para mejorar Vettrack, no dudes en abrir un issue o enviar un pull request. ## Licencia Este proyecto está licenciado bajo la Licencia MIT - ver el archivo [LICENSE.md](LICENSE.md) para más detalles. ¡Esperamos que disfrutes usando la aplicación de citas veterinarias! Si tienes alguna pregunta o encuentras problemas, no dudes en abrir un problema en el [repositorio](https://github.com/JoshuaMc1/Citas-React.git). ¡Gracias por tu contribución!
Aplicación de citas veterinarias
javascript,nodejs,react,tailwindcss,vitejs
2023-01-29T05:38:45Z
2024-01-31T02:53:24Z
null
1
0
5
0
0
2
null
MIT
JavaScript
yash244466666/e-commerce-website
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 After you're finished, please remove all the comments and instructions! --> <div align="center"> <!-- <img src="https://user-images.githubusercontent.com/74345713/208942551-07d6427b-ff1a-4d6e-8f14-21c206cbe1db.png" alt="logo" width="140" height="auto" /> --> <br/> <h1><b>E-commerce website</b></h1> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [👥 Authors](#authors) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 E-commerce website <a name="about-project"></a> **E-commerce website** is a e-commerce website for a fictional store called "FLY FASSION" It's build using React. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="">HTML</a></li> <li><a href="">CSS</a></li> <li><a href="">JavaScript</a></li> <li><a href="">React</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **Uses React** - **Based on latest ES6 syntax** <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://stupendous-kitten-c6066f.netlify.app) --> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- GETTING STARTED --> ## 💻 Getting Started with Math Magicians <a name="getting-started"></a> ### Setup Clone this [repository](https://github.com/yash244466666/e-commerce-website.git) to your desired folder: ```sh cd my-folder git clone git@github.com:yash244466666/e-commerce-website.git cd book-store ``` ### Install Install this project with: ```sh npm install ``` ### Start To start the application, run the following command ```sh npm start ``` ### Run tests To run tests, run the following command: ```sh npm test ``` <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Yash Solo** - GitHub: [Yash](https://github.com/yash244466666) - LinkedIn: [Yash Solo](https://www.linkedin.com/in/yash-solo) - Twitter: [Yash Solo](https://twitter.com/yash_solo000) <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/yash244466666/e-commerce-website/issues). <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- SUPPORT --> ## ⭐️ Show your support <a name="support"></a> Give a ⭐️ if you like this project! <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **[Will-have-a-better-style]** - [ ] **[Will-have-a-domain-name]** - [ ] **[Will-have-a-dedicatd-server]** <!-- > Describe 1 - 3 features you will add to the project. - **Use callbacks and promises** - **Use ES6 modules to write modular JavaScript** - **Send and receive data from an API** --> <!-- FUTURE FEATURES --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank Microverse and all my colleagues who have helped me make this project. <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/Wahaj-Ali/To-do-list/blob/main/LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
This is a portfolio e-commerce website built with React, designed to showcase and sell a variety of products. The website features a responsive design and a modern user interface, with dynamic content and intuitive navigation.
css,javascript,react,reactjs
2023-02-05T11:55:34Z
2024-02-11T16:06:27Z
null
1
2
17
0
0
2
null
null
JavaScript
FatemeGhalandari/BookSearch
master
# Project Name: Google Books This web application built using ReactJS, allows users to search for books and find brief information about them. To display book data, the website uses the Google Books API. ![Screenshot (2021)](https://user-images.githubusercontent.com/121693146/223189659-d9a3f54e-4903-4ed6-b4c3-0cd038cfdee7.png) ![Screenshot (2022)](https://user-images.githubusercontent.com/121693146/223190240-4d1fc3a8-2701-4792-ae81-f6d0c4a095e0.png) ## Features • Search for books by title, author, or keyword • View book details such as title, author, description, and cover image ## Technologies Used • ReactJS: A JavaScript library for building user interfaces. • Google Books API: An API that provides access to information about books. • CSS ## Getting Started To get started with this project, follow these steps: 1. Clone this repository. 2. Install dependencies using npm install. 3. Create a .env file in the root directory of the project and add your Google Books API key as follows: REACT_APP_API_KEY=your_api_key_here 4. Start the development server using npm start. ## Contributing Contributions are welcome! If you find any bugs or have suggestions for new features, please open an issue or submit a pull request. ## Acknowledgments This project was bootstrapped with Create React App [1]. Special thanks to [2], [3], [4], and [5] for inspiration and ideas. ### References: [1] https://github.com/facebook/create-react-app [2] https://github.com/Akshatjalan/Book-store-Reactjs [3] https://github.com/jatiinyadav/Books-Library-using-ReactJs [4] https://github.com/DonkeyGeek/books-app-react-redux [5] https://github.com/scotth527/bookswap_website
A reactJS website to search books using google books API
css,google-books-api,javascript,reactjs
2023-02-06T12:59:02Z
2023-07-04T15:57:34Z
null
1
3
32
0
0
2
null
null
JavaScript
CauanDZN/clipboard-landing-page
main
<div align="center"> # Clipboard Landing-page <p>Frontend Mentor Challenge - Clipboard landing page</p> <img style="width: 400px;" src="./.github/preview.png" alt=""> </div> ## Sobre o projeto: Projeto criado através do desafio do Frontend Mentor com a finalidade de compartilhar conhecimentos em grupo ou dupla. A proposta é da comunidade [Desbravando a programação](https://discord.gg/jeYD43z7), para que possamos criar projetos juntos e aprimorar nossas habilidades. 🎯 [🔗 Acessar desafio](https://www.frontendmentor.io/challenges/clipboard-landing-page-5cc9bccd6c4c91111378ecb9)<br> 🌐 [🔗 Acessar projeto](https://clipboardlp-project.vercel.app/) ## 🛠 Tecnologias: - HTML - CSS - JavaScript - React.js - Vite ## 👥 Autores - [@CauanDZN](https://github.com/CauanDZN) - [@AndersonRodrigs](https://github.com/AndersonRodrigs)
Frontend Mentor Challenge - Clipboard landing page
css,javascript,react,reactjs,vite
2023-01-28T22:38:27Z
2023-02-08T20:13:38Z
null
2
6
36
0
0
2
null
null
JavaScript
akram-elgh/Drum-kit
main
## **Drum kit** Simple Drum Kit made for fun with javascript.
Simple Drum Kit game to play with
javascript,javascript-game
2023-02-06T21:15:38Z
2023-02-06T21:22:13Z
null
1
0
1
0
0
2
null
null
JavaScript
0x6f6b/Denarius-NEA
master
# Denarius NEA Distributed Ledger and Digital Currency using WebRTC and ElectronJS [![CodeQL](https://github.com/0x6f6b/Denarius-NEA/actions/workflows/github-code-scanning/codeql/badge.svg)](https://github.com/0x6f6b/Denarius-NEA/actions/workflows/github-code-scanning/codeql) ## Description This is a project where I implemented a distributed ledger using JavaScript and ElectronJS. The ledger uses Proof-of-Work and the account model to a degree. Please note that this is not a production-ready project, and it is not intended for real-world use. ## Technologies Used - JavaScript/NodeJS - ElectronJS - WebRTC via PeerJS - LevelDB ## How to Use To use this project, you can download or clone the repository and run it using the following commands: ```javascript npm install npm start ``` Please note that a PeerJS signaling server may be required for certain networking features. You can find more information about PeerJS and how to set up a signaling server on their website. ## Releases In the future, I plan to include installers for this project in the Releases section of this repository. ## Disclaimer This project is not intended for real-world use and is solely created for educational purposes. The code may contain vulnerabilities, and I take no responsibility for any issues that may arise from its usage. Please use at your own risk. ## License This project is licensed under the [MIT License](LICENSE).
WebRTC-Based Distributed Ledger Application
a-level-computer-science-project,cryptocurrency,distributed-systems,electronjs,javascript,leveldb,nodejs,peerjs
2023-02-07T19:56:19Z
2023-12-02T15:46:38Z
null
1
3
63
0
0
2
null
MIT
JavaScript
Evy-Oliveira/mini-projetos
main
null
Projetos em html, css e js
css,html5,javascript
2023-02-03T23:02:40Z
2023-05-04T21:05:57Z
null
1
0
5
0
0
2
null
null
CSS
kalkuz/fetch-http
master
[![npm version](https://badge.fury.io/js/@kalkuz%2Ffetch-http.svg)](https://badge.fury.io/js/@kalkuz%2Ffetch-http) # Fetch HTTP A simple HTTP client for Browsers. > **Warning** > If you want to use this package in a Node.js, you should use [@kalkuz/node-fetch-http](https://github.com/kalkuz/node-fetch-http) instead. ## Installation You can install this package using npm: ```bash npm install @kalkuz/fetch-http ``` Using yarn: ```bash yarn add @kalkuz/fetch-http ``` ## Usage ### Importing The Package For configuring the package, you can use the default export: ```javascript import FetchHttp from '@kalkuz/fetch-http'; FetchHttp.Configurate(...); ``` Or you can use the named export: ```javascript import { Configurate } from '@kalkuz/fetch-http'; Configurate(...); ``` For supported types of HTTP requests, you can use the named export: ```javascript import { Get, Post, Put, Patch, Delete } from '@kalkuz/fetch-http'; ``` ## Configuring The Package Configuration is optional. If you don't configure the package, it will use the default configuration. The default configuration is: ```javascript { baseUrl: '', getAuthorization: () => '', } ``` ### Configuring The Base URL The `baseUrl` parameter will be used as the base URL for all requests. Example: ```javascript // Configured URL: https://example.com/api/v1 Get('/users'); // Final URL: https://example.com/api/v1/users ``` If you don't want to use a base URL, you can pass an empty string as the `baseUrl` parameter or skip the configuration. When you skip configuration of `baseUrl`, you can pass the full URL as the first parameter of the HTTP request function. ```javascript Get('https://example.com/api/v1/users'); // Final URL: https://example.com/api/v1/users ``` If you configured the `baseUrl` parameter and you want to use another full URL endpoint, you can pass the full URL as the optionalApiAddress parameter of the HTTP request function. Example: ```javascript // Configured URL: https://example.com/api/v1 Configurate({ baseUrl: 'https://example.com/api/v1' }); // Get(endpoint, headers, optionalApiAddress) Get('/users', null, 'https://example.com/api/v2'); // Post(endpoint, body, headers, optionalApiAddress) Post('/users', { name: 'John Doe' }, null, 'https://example.com/api/v2') // Final URL: https://example.com/api/v2/users ``` ### Configuring The Authorization Header The `getAuthorization` function will be used to get the authorization header for all requests. The `getAuthorization` function will be called before every request and it should return the authorization header value. Example: ```javascript Configurate({ getAuthorization: () => { const token = localStorage.getItem('token'); // as bearer token return `Bearer ${token}`; // or as basic auth return `${token}`; }, }); // If you send a request: Get('/users'); // Headers will be something like: { ... 'Content-Type': 'application/json', authorization: 'Bearer %YOUR_TOKEN%', // or authorization: '%YOUR_TOKEN%', } ``` ### Promise Based All HTTP request functions return a promise. Example: ```javascript Get('/users') .then((response) => { // response is a json // response.json() is applied before }) .catch((error) => { // handle the error }); ``` ## License [MIT License](https://github.com/kalkuz/fetch-http/blob/master/LICENCE)
A simple HTTP client for Browsers.
fetch,javascript,utility
2023-01-27T10:24:22Z
2023-07-21T08:10:52Z
null
1
0
15
0
0
2
null
MIT
TypeScript
Satyam0700/NFT_APP
main
# NFT_APP NFT_APP <img width="946" alt="NFT App" src="https://user-images.githubusercontent.com/114215415/219414690-0d17636c-46f8-48d9-b546-aa1151060aa7.png">
NFT_APP
tailwindcss,javascript,react-native,redux
2023-01-27T14:36:34Z
2023-02-16T15:40:44Z
null
1
0
4
0
0
2
null
null
JavaScript
AishwaryaAtWork/Vocable
master
# Vocable A fun word guessing game web app made for enhancing your knowledge as well as reducing your boredom. ## Build with REACT and CSS. ## Screenshots ![Screenshot (574)](https://user-images.githubusercontent.com/109826222/215170300-a48b2860-eab3-47b7-b092-f224aa59b243.png) ![Screenshot (573)](https://user-images.githubusercontent.com/109826222/215170364-8368e715-acc3-491a-8f1b-a6c455181557.png) ## Feedback If you have fun playing this game, don't forget to give stars. Link - https://github.com/AishwaryaAtWork/Vocable ## Acknowledgements - [React](https://reactjs.org/) - [Readme.so](https://readme.so/) - [Vercel](https://vercel.com/) ## Connect with me [![github](https://img.shields.io/badge/github-000?style=for-the-badge&logo=ko-fi&logoColor=white)](https://github.com/AishwaryaAtWork) [![linkedin](https://img.shields.io/badge/linkedin-0A66C2?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/aishwarya-pathak-573993233/)
A fun word guessing game web app made with React JS.
css,javascript,reactjs
2023-01-26T21:04:18Z
2023-01-27T18:59:33Z
null
1
0
10
0
0
2
null
null
JavaScript
kacperwitkowski/Photogram-App
master
# :camera: Photogram App builded with MERN Stack, Typescript and Tailwind CSS. - Authentication via Email - Adding photos that are saved in the MongoDB database and on the cloudinary server - Sending messages between users in real time using socket.io - Redux-Toolkit to manage user data within components - Sending notifications when other users react to posts or send message on the chat You can see a live demo at **https://photogram-app.herokuapp.com/** ## :tipping_hand_man: About Photogram is a free, online photo-sharing application and social network platform which allows users to edit and upload posts. As with other social networking platforms, Photogram users can like, comment on and bookmark others' photos, as well as send private messages to their friends. Photogram also allows users to make their accounts private if they don't want to share their photos with everyone! ## :clipboard: Todo - Add Real-time notifications - Create a ability to pin any post ## :gear: Configuring Before you run the project configure the .env file like on this example(just copy [.env.local](https://github.com/kacperwitkowski/Photogram-App/blob/master/.env) and fill the options with your keys. ## :package: Installing and running locally in development mode To get started, just clone the repository and run these commands: git clone https://github.com/kacperwitkowski/Photogram-App.git npm install in the global folder & npm install in the ./frontend folder nodemon/node app.js in the global folder & npm run start in the ./frontend folder
Photogram is a free, online photo-sharing application and social network platform which allows users to edit and upload posts. As with other social networking platforms, Photogram users can like, comment on and bookmark others' photos, as well as send private messages to their friends.
nodejs,express,javascript,mongodb,react,redux,socket-io,tailwindcss,typescript
2023-02-07T14:03:28Z
2023-04-13T11:28:19Z
null
1
0
12
0
2
2
null
null
TypeScript
MathewsBorges/redelvd
main
# redelvd Sistema de Rh projetado para a Rede LVD, FRONT - Bootstrap, CSS, JS | BACK - PHP, JS, MySQL
Sistema de RH que está sendo projetado para a rede lvd
bootstrap4,css,javascript,jquery,mysql,pdo,php
2023-02-06T11:17:46Z
2023-02-28T20:54:22Z
null
1
0
82
0
0
2
null
null
PHP
Rickazuo/calculator-rocketseat
main
<h1 align="center"> #5 My Calculator </h1> <p align="center"> Esta calculadora é o #5 desafio <a href="https://boracodar.dev/">#BORACODAR</a> da RocketSeat<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="#-collaborators">Collaborators</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; </p> <br> <p align="center"> <img alt="my calculator project" src=".github/calculator.jpg" width="100%"> </p> ## 🚀 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML - CSS - JavaScript - React - Git e Github - Figma ## 💻 Projeto O projeto _My Calculator_ foi realizado como parte do desafio #BORACODAR da RocketSeat sugerido pelo professor <a href="https://github.com/maykbrito" alt="Link para o GitHub do professor Mayk Brito" target="_blank">Mayk Brito</a>. <p align="center"> Funcionalidade </p> Esta calculadora opera basicamente como qualquer outra calculadora, podendo ser utilizada com números inteiros e float incluindo as funções mais comumente usadas, tais como: - Soma - Subtração - Multiplicação - Divisão Além dessas operações ela conta com duas funcionalidades mais específicas, o botão "+/-" que serve para tornar um número negativo ou positivo, e o botão "%" o qual explicarei na sequência. <p align="center"> Funcionamento do operador "%" </p> Para encontrar a porcentagem de um número, digite o número, aperte a tecla "x" (multiplicação), digite outro número referente a porcentagem desejada e, em seguida, pressione a tecla "%". Por exemplo, 18% de 100 é calculado pressionando-se: <p align="center"> 100 x 18 % </p> Resultando em 18 como valor final no display. Já para encontrar o desconto ou acréscimo percentual de um valor, o valor deve ser digitado em seguida deve-se pressionar a tecla "+" para o acréscimo ou "-" para o desconto, e em seguida pressionar "%". Por exemplo, 18% de acréscimo no valor de 100 é calculado pressionando-se: <p align="center"> 100 + 18 % </p> Resultando em 118 como valor final no display. - <a href="https://mycalculator-juh-rick.vercel.app/" target="_blank">Visite o projeto online</a> ## 🔖 Layout Você pode visualizar o layout proposto pela RocketSeat através do [LINK](https://www.figma.com/community/file/1202607074523509182). É necessário ter conta no [Figma](https://figma.com) para acessá-lo. ## 📃 Collaborators This challange was made by [Julia](https://gsajulia.github.io) and [Ricardo](https://rickazuo.github.io/portfolio/)
Calculator RocketSeat Project - to_portfolio
css,html,javascript,react,vite
2023-02-01T21:40:44Z
2023-02-07T00:53:34Z
null
2
2
18
0
1
2
null
null
JavaScript
MrSlothhCodes/MrSlothhCodes.github.io
main
# MrSlothCodes.github.io This is a Calculator made using HTML , CSS and JS trying to give IRL calculator vibes I have used no framework so you can download and run it Thank you
Calculator made using HTML , CSS and JS trying to give IRL calculator vibes [completed]
calculator,calculator-javascript,css,html,javascript
2023-02-06T13:58:08Z
2023-11-25T16:21:03Z
null
1
1
23
0
0
2
null
Unlicense
HTML
Tegh25/machacks9
main
# Animatrix ### Get instant wildlife insight with our AI tool! Simply snap a photo of any animal and learn its species, genus, endangerment status and fascinating facts in seconds. ![Animatrix 1](https://user-images.githubusercontent.com/48258080/216829205-199cae30-ea42-4271-a979-e359e49e68bf.png) --- As Urbanization increases more and more animals around the world are going extinct due to habitat loss, pollution, deforestation, climate change, and more. The WWF found that humans are responsible for 99% of endangered species and that the current extinction rate is 1000 to 10000 times higher than the natural rate. Animatrix is a web application which uses ImageAI to classify animals based on pictures uploaded by the user with over 72% accuracy. This application was developed to increase awareness for endangered species of animals around the world. Our goal is to provide easy access to information regarding a specific species, giving young students and teachers a platform to explore and learn about the animal kingdom. This application will provide the name of the animal, its genus, endangered status, and a little description of the animal when prompted with an image. With more awareness, the world can take action to preserve Earth’s biodiversity and natural beauty. # Installation ## Python - ImageAI Install python version 3.8.x (x being any number) if on Windows 10, other python versions will work if running WSL or other operating systems. Install AI dependencies from the ai directory: `pip install -r requirements.txt` Run the AI locally from the ai directory: `flask run` ## Backend - Java Install openjdk-17 on your device. Change the permissions of gradlew in the backend directory: `chmod +x /gradlew` Run the backend server locally: `./gradlew bootRun` ## Frontend - HTML/JS/CSS No dependencies or installations required. Run web application using live server or by opening index.html with a browser. ## Figma Design <a href="https://www.figma.com/file/FI34CUdAHLGskyOHcMlLMU/Whiteboard-Ideation?node-id=0%3A1&t=CzEUq4pvlcvRPYdK-1" target="_blank">Ideation Whiteboard</a> <a href="https://www.figma.com/file/2Ickk0dbHW9Y2BWnAW2qUX/Web-App-Pages?node-id=0%3A1&t=ukpGkokekjVg456G-1" target="_blank">Web App UI Outline</a>
Get instant wildlife insight with our AI tool! Simply snap a photo of any animal and learn its species, genus, endangerment status and fascinating facts in seconds. Made for the MacHacks 3 hackathon.
html,java,javascript,css,imageai,kotlin,python
2023-02-04T00:31:24Z
2023-03-12T14:30:00Z
null
5
0
46
0
1
2
null
MIT
CSS
Ismaxis/Paradigms
master
# Solutions of Paradigms HW (M3136) ITMO CT 2023-y1-spring Course by [kgeorgiy](https://www.kgeorgiy.info/) --- [Условия домашних заданий](https://www.kgeorgiy.info/courses/paradigms/homeworks.html) ## Домашнее задание 15. Разбор выражений на Prolog Модификации * *Base* * Код должен находиться в файле `prolog-solutions/expression.pl`. * *SinCos* (32, 34). Дополнительно реализовать поддержку: * унарных операций: * `op_sin` (`sin`) – синус, `sin(4846147)` примерно равно 1; * `op_cos` (`cos`) – косинус, `cos(5419351)` примерно равно 1. * *SinhCosh* (33, 35). Дополнительно реализовать поддержку: * унарных операций: * `op_sinh` (`sinh`) – гиперболический синус, `sinh(3)` немного больше 10; * `op_cosh` (`cosh`) – гиперболический косинус, `cosh(3)` немного меньше 10. * *Variables*. Дополнительно реализовать поддержку: * Переменных, состоящих из произвольного количества букв `XYZ` в любом регистре * Настоящее имя переменной определяется первой буквой ее имени * *VarBoolean* (36, 37). Сделать модификацию *Variables* и дополнительно реализовать поддержку: * Булевских операций * Аргументы: число больше 0 → `true`, иначе → `false` * Результат: `true` → 1, `false` → 0 * `op_not` (`!`) - отрицание: `!5` равно 0 * `op_and` (`&&`) – и: `5 & -6` равно 0 * `op_or` (`||`) - или: `5 & -6` равно 1 * `op_xor` (`^^`) - исключающее или: `5 ^ -6` равно 1 * *VarImplIff* (38, 39). Сделать модификацию *Boolean* и дополнительно реализовать поддержку: * Булевских операций * `op_impl` (`->`) – импликация (правоассоциативна): `-4 -> 1` равно 1 * `op_iff` (`<->`) - тогда и только тогда: `2 <-> 6` равно 1 ## Домашнее задание 14. Дерево поиска на Prolog Модификации * *Базовая* * Код должен находиться в файле `prolog-solutions/tree-map.pl`. * *Keys* (32, 34) * Добавьте правило: * `map_keys(Map, Keys)`, возвращающее ключи в порядке возрастания. * *Value* (33, 35) * Добавьте правило: * `map_values(Map, Values)`, возвращающее значения в порядке возрастания ключей. * *PutIfAbsent* (36, 37) * Добавьте правило `map_putIfAbsent(Map, Key, Value, Result)`, добавляющее новый ключ и значение. * *PutCeiling* (38, 39) * Добавьте правила: * `map_getCeiling(Map, Key, Value)`, возвращающее значение, соответствующее минимальному ключу, большему либо равному заданному; * `map_putCeiling(Map, Key, Value, Result)`, заменяющее значение, соответствующее минимальному ключу, большему либо равному заданному (если такой существует). ## Домашнее задание 13. Простые числа на Prolog Модификации * *Базовая* * Код должен находиться в файле `prolog-solutions/primes.pl`. * *Square* (32, 34) * Добавьте правило `square_divisors(N, D)`, возвращающее делители N²: `square_divisors(6, [2, 2, 3, 3])`. * *Cube* (33, 35) * Добавьте правило `cube_divisors(N, D)`, возвращающее делители N³: `cube_divisors(6, [2, 2, 2, 3, 3, 3])`. * *Compact* (36, 37) * Добавьте правило `compact_prime_divisors(N, CDs)`, где `CDs` — список пар (простое, степень): `compact_prime_divisors(120, [(2, 3), (3, 1), (5, 1)])`. * *Divisors* (38, 39) * Добавьте правило `divisors_divisors(N, Divisors)`, где `Divisors` — список разложений на простые делители делителей числа `N`: `divisors_divisors(12, [[], [2], [3], [2,2], [2,3], [2,2,3]])`. Для запуска тестов можно использовать скрипты [TestProlog.cmd](prolog/TestProlog.cmd) и [TestProlog.sh](prolog/TestProlog.sh) * Репозиторий должен быть скачан целиком. * Скрипты должны находиться в каталоге `prolog` (их нельзя перемещать, но можно вызывать из других каталогов). * Полное имя класса теста указывается в качестве первого аргумента командной строки, например, `prtest.primes.PrimesTest`. * Тестируемое решение должно находиться в текущем каталоге. ## Исходный код к лекциям по Prolog Лекция 1. Факты, правила и вычисления * [Учебный план](examples/prolog/examples/1_1_plan.pl) * [Вычисления](examples/prolog/examples/1_2_calc.pl) * [Списки](examples/prolog/examples/1_3_lists.pl) * [Правила высшего порядка](examples/prolog/examples/1_4_high-order.pl) Лекция 2. Задачи, унификация и объекты * [Задача о расстановке ферзей](examples/prolog/examples/2_1_queens.pl) * [Задача Эйнштейна](examples/prolog/examples/2_2_einstein.pl) * [Арифметические выражения](examples/prolog/examples/2_3_expressions.pl) Лекция 3. Преобразование в строку и разбор * [Преобразование через термы](examples/prolog/examples/3_1_terms.pl) * [Преобразование через списки](examples/prolog/examples/3_2_chars.pl) * [Грамматики](examples/prolog/examples/3_3_grammar.pl) ## Домашнее задание 12. Комбинаторные парсеры Модификации * *Base* * Код должен находиться в файле `clojure-solutions/expression.clj`. * *Variables*. Дополнительно реализовать поддержку: * Переменных, состоящих из произвольного количества букв `XYZ` в любом регистре * Настоящее имя переменной определяется первой буквой ее имени * *IncDec* (32, 34). Сделать модификацию *Variables* и дополнительно реализовать поддержку: * Унарных операций: * `Inc` (`++`) – инкремент, `(33 ++)` равно 34; * `Dec` (`--`) – декремент, `(33 --)` равно 32. * *UPowLog* (33, 35). Сделать модификацию *Variables* и дополнительно реализовать поддержку: * Унарных операций: * `UPow` (`**`) – возведение в степень, `(8 **)` примерно равно 2981; * `ULog` (`//`) – натуральный логарифм абсолютной величины, `(2981 //)` примерно равно 8. * *Boolean* (36, 37). Сделать модификацию *Variables* и дополнительно реализовать поддержку: * Булевских операций * Аргументы: число больше 0 → `true`, иначе → `false` * Результат: `true` → 1, `false` → 0 * `Not` (`!`) - отрицание: `!5` равно 0 * `And` (`&&`) – и: `5 & -6` равно 0 * `Or` (`||`) - или: `5 & -6` равно 1 * `Xor` (`^^`) - исключающее или: `5 ^ -6` равно 1 * операции по увеличению приоритета: `^^`, `||`, `&&`, операции базовой модификации * *ImplIff* (38, 39). Сделать модификацию *Boolean* и дополнительно реализовать поддержку: * Булевских операций * `Impl` (`->`) – импликация (правоассоциативна): `-4 -> 1` равно 1 * `Iff` (`<->`) - тогда и только тогда: `2 <-> 6` равно 1 * операции по увеличению приоритета: `<->`, `->`, операции модификации *Boolean* ## Домашнее задание 11. Объектные выражения на Clojure Модификации * *Базовая* * Код должен находиться в файле `clojure-solutions/expression.clj`. * *SinCos* (32, 34). Дополнительно реализовать поддержку: * унарных операций: * `Sin` (`sin`) – синус, `(sin 4846147)` примерно равно 1; * `Cos` (`cos`) – косинус, `(cos 5419351)` примерно равно 1. * *SinhCosh* (33, 35). Дополнительно реализовать поддержку: * унарных операций: * `Sinh` (`sinh`) – гиперболический синус, `(sinh 3)` немного больше 10; * `Cosh` (`cosh`) – гиперболический косинус, `(cosh 3)` немного меньше 10. * *MeansqRMS* (36, 37). Дополнительно реализовать поддержку: * операций произвольного числа аргументов: * `Meansq` (`meansq`) – среднее квадратов, `(meansq 2 10 22)` равно 196; * `RMS` (`rms`) – [Root mean square](https://en.wikipedia.org/wiki/Root_mean_square), `(rms 2 10 22)` равно 14; * *SumexpLSE* (38, 39). Дополнительно реализовать поддержку: * операций произвольного числа аргументов: * `Sumexp` (`sumexp`) – сумма экспонент, `(sumexp 2 3 16)` примерно равно 8886137; * `LSE` (`lse`) – [LogSumExp](https://en.wikipedia.org/wiki/LogSumExp), `(lse 2 3 16)` примерно равно 16; ## Домашнее задание 10. Функциональные выражения на Clojure Модификации * *Base* * Код должен находиться в файле `clojure-solutions/expression.clj`. * *ExpLn* (32, 34). Дополнительно реализовать поддержку: * унарных операций: * `exp` – экспонента, `(exp 8)` примерно равно 2981; * `ln` – натуральный логарифм абсолютной величины, `(ln -2981)` примерно равно 8. * *ArcTan* (33, 35). Дополнительно реализовать поддержку: * операций: * `atan` – арктангенс, `(atan 1256)` примерно равно 1.57; * `atan2` – арктангенс, `(atan2 841 540)` примерно равно 1. * *SumexpLSE* (36, 37). Дополнительно реализовать поддержку: * операций произвольного числа аргументов: * `sumexp` – сумма экспонент, `(sumexp 2 3 16)` примерно равно 8886137; * `lse` – [LogSumExp](https://en.wikipedia.org/wiki/LogSumExp), `(lse 2 3 16)` примерно равно 16; * *MeansqRMS* (38, 39). Дополнительно реализовать поддержку: * операций произвольного числа аргументов: * `meansq` – среднее квадратов, `(meansq 2 10 22)` равно 196; * `rms` – [Root mean square](https://en.wikipedia.org/wiki/Root_mean_square), `(rms 2 10 22)` равно 14; ## Домашнее задание 9. Линейная алгебра на Clojure Модификации * *Базовая* * Код должен находиться в файле `clojure-solutions/linear.clj`. * *Shapeless* (32 - 35) * Добавьте операции поэлементного сложения (`s+`), вычитания (`s-`), умножения (`s*`) и деления (`sd`) чисел и векторов любой (в том числе, переменной) формы. Например, `(s+ [[1 2] 3] [[4 5] 6])` должно быть равно `[[5 7] 9]`. * *Tensor* (36, 37) * Назовем _тензором_ многомерную прямоугольную таблицу чисел. * Добавьте операции поэлементного сложения (`t+`), вычитания (`t-`), умножения (`t*`) и деления (`td`) тензоров. Например, `(t+ [[1 2] [3 4]] [[5 6] [7 8]])` должно быть равно `[[6 8] [10 12]]`. * *Broadcast* (38, 39) * Назовем _тензором_ многомерную прямоугольную таблицу чисел. * _Форма_ тензора – последовательность чисел (_s_<sub>1..n</sub>)=(_s_<sub>1</sub>, _s_<sub>2</sub>, …, _s<sub>n</sub>_), где _n_ – размерность тензора, а _s<sub>i</sub>_ – число элементов по _i_-ой оси. Например, форма тензора `[[[2 3 4] [5 6 7]]]`  равна (1, 2, 3), а форма `1` равна (). * Тензор формы (_s_<sub>1.._n_</sub>) может быть _распространен_ (broadcast) до тензора формы (_u_<sub>1.._m_</sub>), если (_s_<sub>i.._n_</sub>) является префиксом (_u<sub>1..m</sub>_). Для этого, элементы тензора копируются по недостающим осям. Например, распространив тензор `[[1 2]]` формы (1, 2) до формы (1, 2, 3) получим `[[[1 1 1] [2 2 2]]]`, а распространив `1` до формы (2, 3) получим `[[1 1 1] [1 1 1]]`. * Тензоры называются совместимыми, если один из них может быть распространен до формы другого. Например, тензоры формы (1, 2, 3) и (1, 2) совместимы, а (1, 2, 3) и (2, 1) – нет. Числа совместимы с тензорами любой формы. * Добавьте операции поэлементного сложения (`tb+`), вычитания (`tb-`), умножения (`tb*`) и деления (`tbd`) совместимых тензоров. Если формы тензоров не совпадают, то тензоры меньшей размерности должны быть предварительно распространены до тензоров большей размерности. Например, `(tb+ 1 [[10 20 30] [40 50 60]] [100 200])` должно быть равно `[[111 121 131] [241 251 261]]`. * [Исходный код тестов](clojure/cljtest/linear/BroadcastTester.java) ## Исходный код к лекциям по Clojure Документация * [Clojure Reference](https://clojure.org/reference/documentation) * [Clojure Cheat Sheet](https://clojure.org/api/cheatsheet) Запуск Clojure * Консоль: [Windows](clojure/RunClojure.cmd), [*nix](clojure/RunClojure.sh) * Интерактивный: `RunClojure` * С выражением: `RunClojure --eval "<выражение>"` * Скрипт: `RunClojure <файл скрипта>` * Справка: `RunClojure --help` * IDE * IntelliJ Idea: [плагин Cursive](https://cursive-ide.com/userguide/) * Eclipse: [плагин Counterclockwise](https://marketplace.eclipse.org/content/counterclockwise) [Скрипт со всеми примерами](examples/clojure/examples.clj) Лекция 1. Функции * [Введение](examples/clojure/examples/1_1_intro.clj) * [Функции](examples/clojure/examples/1_2_functions.clj) * [Списки](examples/clojure/examples/1_3_lists.clj) * [Вектора](examples/clojure/examples/1_4_vectors.clj) * [Функции высшего порядка](examples/clojure/examples/1_5_functions-2.clj) Лекция 2. Внешний мир * [Ввод-вывод](examples/clojure/examples/2_1_io.clj) * [Разбор и гомоиконность](examples/clojure/examples/2_2_read.clj) * [Порядки вычислений](examples/clojure/examples/2_3_evaluation-orders.clj) * [Потоки](examples/clojure/examples/2_4_streams.clj) * [Отображения и множества](examples/clojure/examples/2_5_maps.clj) Лекция 3. Объекты * [Прототипное наследование](examples/clojure/examples/3_1_js-objects.clj) * Библиотека для ДЗ [proto.clj](examples/clojure/examples/proto.clj) * [Java-классы](examples/clojure/examples/3_2_java-objects.clj) * [Изменяемое состояние](examples/clojure/examples/3_3_mutable-state.clj) Лекция 4. Комбинаторные парсеры * [Базовые функции](examples/clojure/examples/4_1_base.clj) * [Комбинаторы](examples/clojure/examples/4_2_combinators.clj) * Библиотека для ДЗ [parser.clj](examples/clojure/examples/parser.clj) * [JSON](examples/clojure/examples/4_3_json.clj) Лекция 5. Макросы и основания математики * [Макросы](examples/clojure/examples/5_1_macro.clj) * [Парсеры](examples/clojure/examples/5_2_parser.clj) * [Числа Чёрча](examples/clojure/examples/5_3_church.clj) ## Тестовое задание на Clojure Это задание преднозначено для проверки правильности настройки Clojure. Вам надо проверить, что оно успешно проверяется на вашем компьютере. Для запуска тестов используются скрипты [TestClojure.cmd](clojure/TestClojure.cmd) и [TestClojure.sh](clojure/TestClojure.sh) * Репозиторий должен быть скачан целиком. * Скрипты должны находиться в каталоге `clojure` (их нельзя перемещать, но можно вызывать из других каталогов). * Тестируемое решение должно находиться в текущем каталоге. * В качестве аргументов командной строки указывается полное имя класса теста, сложность и модификация, например, `cljtest.example.ExampleTest hard base`. Модификации * *base* * Код решения `clojure-solutions/example.clj` * [Исходный код тестов](clojure/cljtest/example/ExampleTest.java) * Запускать c аргументом `hard` или `easy`. ## Домашнее задание 8. Обработка ошибок на JavaScript Модификации * *Base* * Код должен находиться в файле `javascript-solutions/objectExpression.js`. * *SumAvg* (32-35). Дополнительно реализовать поддержку: * операций произвольного числа аргументов: * `sum` – сумма, `(sum 1 2 3)` равно 6; * `avg` – среднее, `(avg 1 2 3)` равно 2; * *Postfix* (36-39). Дополнительно реализовать поддержку: * Выражений в постфиксной записи: * `(2 3 +)` равно 5 * функция `parsePostfix` * метод `postfix` * [Исходный код тестов](javascript/jstest/prefix/PostfixTest.java) * Запускать c указанием модификации и сложности (`easy` или `hard`). * *SumexpLSE* (36, 37). Дополнительно реализовать поддержку: * Операций произвольного числа аргументов: * `Sumexp` (`sumexp`) – сумма экспонент, `(2 3 16 sumexp)` примерно равно 8886137; * `LSE` (`lse`) – [LogSumExp](https://en.wikipedia.org/wiki/LogSumExp), `(2 3 16 lse)` примерно равно 16; * *MeansqRMS* (38, 39). Дополнительно реализовать поддержку: * операций произвольного числа аргументов: * `Meansq` (`meansq`) – среднее квадратов, `(2 10 22 meansq)` равно 196; * `RMS` (`rms`) – [Root mean square](https://en.wikipedia.org/wiki/Root_mean_square), `(2 10 22 rms)` равно 14; ## Домашнее задание 7. Объектные выражения на JavaScript Модификации * *Base* * Код должен находиться в файле `javascript-solutions/objectExpression.js`. * *ExpLn* (32, 34). Дополнительно реализовать поддержку: * унарных функций: * `Exp` (`exp`) – экспонента, `8 exp` примерно равно 2981; * `Ln` (`Ln`) – натуральный логарифм абсолютной величины, `2981 ln` примерно равно 8. * *ArcTan* (33, 35). Дополнительно реализовать поддержку: * функций: * `ArcTan` (`atan`) – арктангенс, `1256 atan` примерно равно 1.57; * `ArcTan2` (`atan2`) – арктангенс, `841 540 atan2` примерно равно 1. * *Distance* (36, 37). Дополнительно реализовать поддержку: * функций от `N` аргументов для `N=2..5`: * `SumSqN` (`sumsqN`) – сумма квадратов, `3 4 sumsq2` равно 25; * `DistanceN` (`distanceN`) – длина вектора, `3 4 distance2` равно 5. * *SumrecHMean* (38, 39). Дополнительно реализовать поддержку: * функций от `N` аргументов для `N=2..5`: * `SumrecN` (`sumrecN`) – сумма обратных величин, `1 2 3 6 sumrec4` равно 2; * `HMeanN` (`hmeanN`) – среднее гармоническое, `2 3 6 hmean3` равно 3. ## Домашнее задание 6. Функциональные выражения на JavaScript Модификации * *Базовая* * Код должен находиться в файле `javascript-solutions/functionalExpression.js`. * *OneTwo* (32-39). Дополнительно реализовать поддержку: * констант: * `one` – 1; * `two` – 2; * *SinCos* (32, 34). Дополнительно реализовать поддержку: * операций: * `sin` – синус, `3.14159265 sin` примерно равно 0; * `cos` – косинус, `3.14159265 cos` примерно равно -1. * *SinhCosh* (33, 35). Дополнительно реализовать поддержку: * операций: * `sinh` – гиперболический синус, `(sinh 3)` немного больше 10; * `cosh` – гиперболический косинус, `(cosh 3)` немного меньше 10. * *FP* (36, 37). Дополнительно реализовать поддержку: * операций: * `*+` (`madd`) – тернарный оператор произведение-сумма, `2 3 4 *+` равно 10; * `_` (`floor`) – округление вниз `2.7 _` равно 2; * `^` (`ceil`) – округление вверх `2.7 ^` равно 3. * *ArgMinMax* (38, 39). Дополнительно реализовать поддержку: * операций: * `argMin3` – индекс минимального из трёх аргументов, `3 4 1 argMin3` равно 2; * `argMax3` – индекс максимального из трёх аргументов, `3 4 1 argMin3` равно 1; * `argMin5` – индекс минимального из пяти аргументов, `3 4 1 5 6 argMin3` равно 2; * `argMax5` – индекс максимального из пяти аргументов, `3 4 10 5 6 argMax3` равно 2; ## Исходный код к лекциям по JavaScript [Скрипт с примерами](examples/javascript/examples.js) Запуск примеров * [В браузере](javascript/RunJS.html) * Из консоли * [на Java](javascript/RunJS.java): [RunJS.cmd](javascript/RunJS.cmd), [RunJS.sh](javascript/RunJS.sh) * [на node.js](javascript/RunJS.node.js): `node RunJS.node.js` Лекция 1. Типы и функции * [Типы](examples/javascript/examples/1_1_types.js) * [Функции](examples/javascript/examples/1_2_functions.js) * [Функции высшего порядка](examples/javascript/examples/1_3_functions-hi.js). Обратите внимание на реализацию функции `mCurry`. Обратите внимание, что функции `array.map` и `array.reduce` (аналог `leftFold` входят в стандартную библиотеку). * [Пример: вектора и матрицы](examples/javascript/examples/1_4_vectors.js). Лекция 2. Объекты и замыкания * [Поля](examples/javascript/examples/2_1_fields.js) * [Методы](examples/javascript/examples/2_2_methods.js) * [Замыкания](examples/javascript/examples/2_3_closures.js) * [Модули](examples/javascript/examples/2_4_modules.js) * [Пример: стеки](examples/javascript/examples/2_5_stacks.js) Лекция 3. Другие возможности * [Обработка ошибок](examples/javascript/examples/3_1_errors.js) * [Чего нет в JS](examples/javascript/examples/3_2_no.js) * [Стандартная библиотека](examples/javascript/examples/3_3_builtins.js) * [Работа со свойствами](examples/javascript/examples/3_4_properties.js) * [Методы и классы](examples/javascript/examples/3_5_classes.js) * [JS 6+](examples/javascript/examples/3_6_js6.js) * Модули: [объявление](examples/javascript/examples/3_7_js6_module.mjs) [использование](examples/javascript/examples/3_7_js6_module_usage.mjs) * [Простейший ввод-вывод](examples/javascript/examples/3_8_io.js) ## Тестовое задание на JavaScript Это задание преднозначено для проверки правильности настройки JavaScript. Вам надо проверить, что оно успешно проверяется на вашем компьютере. Запуск тестов * Для запуска тестов используется [GraalJS](https://github.com/graalvm/graaljs) (часть проекта [GraalVM](https://www.graalvm.org/), вам не требуется их скачивать отдельно) * Для запуска тестов можно использовать скрипты [TestJS.cmd](javascript/TestJS.cmd) и [TestJS.sh](javascript/TestJS.sh) * Репозиторий должен быть скачан целиком. * Скрипты должны находиться в каталоге `javascript` (их нельзя перемещать, но можно вызывать из других каталогов). * В качестве аргументов командной строки указывается полное имя класса теста и модификация, например `jstest.example.ExampleTest hard base`. * Для самостоятельно запуска из консоли необходимо использовать командную строку вида: `java -ea --module-path=<js>/graal --class-path <js> jstest.functional.FunctionalTest {hard|easy} <variant>`, где * `-ea` – включение проверок времени исполнения; * `--module-path=<js>/graal` путь к модулям Graal (здесь и далее `<js>` путь к каталогу `javascript` этого репозитория); * `--class-path <js>` путь к откомпилированным тестам; * {`hard`|`easy`} указание тестируемой сложности; * `<variant>`} указание тестируемой модификации. * При запуске из IDE, обычно не требуется указывать `--class-path`, так как он формируется автоматически. Остальные опции все равно необходимо указать. * Troubleshooting * `Error occurred during initialization of boot layer java.lang.module.FindException: Module org.graalvm.truffle not found, required by jdk.internal.vm.compiler` – неверно указан `--module-path`; * `Graal.js not found` – неверно указаны `--module-path` * `Error: Could not find or load main class jstest.example.ExampleTest` – неверно указан `--class-path`; * `Exception in thread "main" java.lang.AssertionError: You should enable assertions by running 'java -ea jstest.functional.FunctionalExpressionTest'` – не указана опция `-ea`; * `Exception in thread "main" jstest.EngineException: Script 'example.js' not found` – в текущем каталоге отсутствует решение (`example.js`) Модификации * *base* * Код решения `java-solutions/example.js` * [Исходный код тестов](javascript/jstest/example/ExampleTest.java) * Запускать c аргументом `hard` или `easy`. ## Домашнее задание 5. Вычисление в различных типах Модификации * *Base* * Класс `GenericTabulator` должен реализовывать интерфейс [Tabulator](java/expression/generic/Tabulator.java) и строить трехмерную таблицу значений заданного выражения. * `mode` – режим вычислений: * `i` – вычисления в `int` с проверкой на переполнение; * `d` – вычисления в `double` без проверки на переполнение; * `bi` – вычисления в `BigInteger`. * `expression` – выражение, для которого надо построить таблицу; * `x1`, `x2` – минимальное и максимальное значения переменной `x` (включительно) * `y1`, `y2`, `z1`, `z2` – аналогично для `y` и `z`. * Результат: элемент `result[i][j][k]` должен содержать значение выражения для `x = x1 + i`, `y = y1 + j`, `z = z1 + k`. Если значение не определено (например, по причине переполнения), то соответствующий элемент должен быть равен `null`. * [Исходный код тестов](java/expression/generic/GenericTest.java) * Первый аргумент: `easy` или `hard` * Последующие аргументы: модификации * *Ufs* (32-35) * Дополнительно реализуйте поддержку режимов: * `u` – вычисления в `int` без проверки на переполнение; * `f` – вычисления в `float` без проверки на переполнение; * `s` – вычисления в `short` без проверки на переполнение. * *Asm* (36-39) * Дополнительно реализуйте унарные операции: * `abs` – модуль числа, `abs -5` равно 5; * `square` – возведение в квадрат, `square 5` равно 25. * Дополнительно реализуйте бинарную операцию (максимальный приоритет): * `mod` – взятие по модулю, приоритет как у умножения (`1 + 5 mod 3` равно `1 + (5 mod 3)` равно `3`). * *Uls* (36, 37) * Дополнительно реализуйте поддержку режимов: * `u` – вычисления в `int` без проверки на переполнение; * `l` – вычисления в `long` без проверки на переполнение; * `s` – вычисления в `short` без проверки на переполнение. * *Ups* (38, 39) * Дополнительно реализуйте поддержку режимов: * `u` – вычисления в `int` без проверки на переполнение; * `p` – вычисления в целых числах по модулю 10079; * `s` – вычисления в `short` без проверки на переполнение. ## Домашнее задание 4. Очереди Модификации * *Count* (32, 34) * Реализовать метод `count`, возвращающий число вхождений элемента в очередь. * *Index* (33, 35) * Реализовать метод * `indexOf`, возвращающий индекс первого вхождения элемента в очередь; * `lastIndexOf`, возвращающий индекс последнего вхождения элемента в очередь. * Индексы отсчитываются с головы очереди. * Если искомого элемента нет, методы должны возвращать `-1`. * *Contains* (36, 37) * Добавить в интерфейс очереди и реализовать методы * `contains(element)` – проверяет, содержится ли элемент в очереди * `removeFirstOccurrence(element)` – удаляет первое вхождение элемента в очередь и возвращает было ли такое * Дублирования кода быть не должно * *Nth* (38, 39) * Добавить в интерфейс очереди и реализовать методы * `getNth(n)` – создать очередь, содержащую каждый n-й элемент, считая с 1 * `removeNth(n)` – создать очередь, содержащую каждый n-й элемент, и удалить их из исходной очереди * `dropNth(n)` – удалить каждый n-й элемент из исходной очереди * Тип возвращаемой очереди должен соответствовать типу исходной очереди * Дублирования кода быть не должно ## Домашнее задание 3. Очередь на массиве Модификации * *Базовая* * Классы должны находиться в пакете `queue` * *ToStr* (32, 34) * Реализовать метод `toStr`, возвращающий строковое представление очереди в виде '`[`' _голова_ '`, `' ... '`, `' _хвост_ '`]`' * *ToArray* (33, 35) * Реализовать метод `toArray`, возвращающий массив, содержащий элементы, лежащие в очереди в порядке от головы к хвосту. * *Deque* * Дополнительно реализовать методы * `push` – добавить элемент в начало очереди; * `peek` – вернуть последний элемент в очереди; * `remove` – вернуть и удалить последний элемент из очереди. * *DequeToArray* (36, 37) * Реализовать модификацию *Deque*; * Реализовать метод `toArray`, возвращающий массив, содержащий элементы, лежащие в очереди в порядке от головы к хвосту. * *DequeIndexed* (38, 39) * Реализовать модификацию *Deque* * Реализовать методы * `get` – получить элемент по индексу, отсчитываемому с головы; * `set` – заменить элемент по индексу, отсчитываемому с головы. * Для работы тестов необходимо добавить опцию JVM `--add-opens java.base/java.util=ALL-UNNAMED` ## Домашнее задание 2. Бинарный поиск Модификации * *Базовая* * Класс `BinarySearch` должен находиться в пакете `search` * *Oddity* (32 - 37) * Если сумма всех чисел во входе чётная, то должна быть использоваться рекурсивная версия, иначе — итеративная. * *Shift* (32, 34) * На вход подается отсортированный (строго) по убыванию массив, циклически сдвинутый на `k` элементов. Требуется найти `k`. Все числа в массиве различны. * Класс должен иметь имя `BinarySearchShift` * *Max* (33, 35) * На вход подается циклический сдвиг отсортированного (строго) по возрастанию массива. Требуется найти в нём максимальное значение. * Класс должен иметь имя `BinarySearchMax` * *Uni* (36, 37) * На вход подается массив полученный приписыванием в конец массива отсортированного (строго) по возрастанию, массива отсортированного (строго) по убыванию. Требуется найти минимальную возможную длину первого массива. * Класс должен иметь имя `BinarySearchUni` * *Span* (38, 39) * На вход подаётся число `x` и массив, отсортированный по неубыванию. Требуется вывести два числа: начало и длину диапазона элементов, равных `x`. Если таких элементов нет, то следует вывести пустой диапазон, у которого левая граница совпадает с местом вставки элемента `x`. * Не допускается использование типов `long` и `BigInteger`. * Класс должен иметь имя `BinarySearchSpan` ## Домашнее задание 1. Обработка ошибок Модификации * *Base* * Класс `ExpressionParser` должен реализовывать интерфейс [TripleParser](java/expression/exceptions/TripleParser.java) * Классы `CheckedAdd`, `CheckedSubtract`, `CheckedMultiply`, `CheckedDivide` и `CheckedNegate` должны реализовывать интерфейс [TripleExpression](java/expression/TripleExpression.java) * Нельзя использовать типы `long` и `double` * Нельзя использовать методы классов `Math` и `StrictMath` * *SetClear* (32-37) * Дополнительно реализуйте бинарные операции (минимальный приоритет): * `set` – установка бита, `2 set 3` равно 10; * `clear` – сброс бита, `10 clear 3` равно 2. * *Count* (32-37) * Дополнительно реализуйте унарную операцию `count` – число установленных битов, `count -5` равно 31. * *GcdLcm* (38, 39) * Дополнительно реализуйте бинарные операции (минимальный приоритет): * `gcd` – НОД, `2 gcd -3` равно 1; * `lcm` – НОК, `2 lcm -3` равно -6. * *Reverse* (38, 39) * Дополнительно реализуйте унарную операцию `reverse` – число с переставленными цифрами, `reverse -12345` равно `-54321`. * *PowLog10* (36-39) * Дополнительно реализуйте унарные операции: * `log10` – логарифм по уснованию 10, `log10 1000` равно 3; * `pow10` – 10 в степени, `pow10 4` равно 10000.
ITMO CT 2023-y1-spring Paradigms HW
clojure,ct-itmo-y2022,java,javascript,paradigms,prolog,kgeorgiy
2023-02-09T20:41:56Z
2023-09-24T15:45:00Z
null
1
0
154
0
0
2
null
null
Java
Doriniel/Bankist-website
main
# Bankist-website - A fictional online bank langing page with functionalities written in vanilla JavaScript. - Practice of advanced DOM manipulation. - Check the project [here](https://doriniel.github.io/Bankist-website/). ![bankist_website_preview](https://user-images.githubusercontent.com/91247583/218783555-d9fc5bb5-6e7a-4299-8dfa-ab233b595ce2.png)
Online bank langing page with vanilla JS functionality.
css,dom-manipulation,html,javascript
2023-02-09T12:13:53Z
2023-02-14T15:33:24Z
null
1
0
18
0
0
2
null
null
HTML
Inna-Mykytiuk/50
main
# 50 50 little java script projects
This folder contains 50 small projects developed using JavaScript
javascript,sass,html5
2023-01-30T11:46:22Z
2023-10-23T14:49:15Z
null
1
0
36
0
0
2
null
null
HTML
SparshWabhale/College-Management-Website
main
# College-Management-Website College Automation System is a multi-function processing operation which includes several modules that are working as one unit in general. It is a software that can keep a systematic record of student’s details, mark sheet, attendance and defaulters list. This software can keep a systematic record of student’s details, mark sheet, attendance and defaulters list. This project enables the easy way of maintaining class attendance with fewer efforts. The system also generates a brief report of attendance from the database according to subject-wise or date-wise as required. A defaulter list can be generated through system. Staff and HOD has the option to take a print of the reports and defaulter list is thus generated. PROJECT DESCRITPTION 1. ADMIN LOGIN The admin of the software can manage the operations and can maintain the software and also check if there is any failure in the system.<br> SPECIFICATION: Place holders for username & password. A submit button with university logo and information. 2. ANNOUNCEMENTS Here the students and the staff members can view all the important information regarding any current events or academic announcements in this section.<br> SPECIFICATION: Announcement as title, all entered announcements to be displayed in bulletin points. 3. STAFF LOGIN The registered staff members can enter their credentials and also can manipulate their profiles. <br> SPECIFICATION: Place holders for username & password. A submit button. 4. STUDENT REGISTERATION AND LOGIN: Students need to register themselves into the system. Registered students can access the system by logging into it <br> SPECIFICATION (Register): Place holders for Name, Age, Gender, Course and all other information required. A placeholder for storing passport size photo of student. A button to save changes/Submit.<br> SPECIFICATION (Login): Place holders for username & password. A submit button. 5. PROFILE UPDATION The system allows the Staff member as well as Students to update their profile. <br> SPECIFICATION: Displays profile. Modify Button. If clicked it allows to modify the data. Save changes button. 6. TIME TABLE The staff can create and modify the time table of particular students under them. Both the staff and students can view the time table. <br> SPECIFICATION: Displays time table created by staff in a tabular form. 7. ASSIGNMENTS Staff members can assign digital assignments and projects to the students. <br> SPECIFICATION (staff): Option to create Topics and upload assignments under the respective topics. View button to display the summary of students who have submitted and the defaulters. <br> SPECIFICATION (student): Download button to download the assignment uploaded by the faculty. Upload button to upload the assignment for student. Submit button to Submit. 8. MATERIALS Staff members can provide materials, books, notes and other reference materials required for the subject. <br> SPECIFICATION (staff): Option to create Topics and upload materials under the respective topics. <br> SPECIFICATION (student): Download button to download the materials uploaded by the faculty. 9. ATTENDANCE REPORT It will maintain daily attendance reports and generate automated overall report students wise. <br> SPECIFICATION (staff): List of students and a drop down by side of it. It will contain options of Present and Absent. <br> SPECIFICATION (student): View attendance in tabular form of all subjects 10. MARKS & GRADES Here the system will allow the staff members to enter marks of the students subject wise or also individual student wise. The Grade system will operate automatically based on entered marks and class average. <br> SPECIFICATION (staff): Class/Subject wise categories. Entry of marks of students. Displaying student name and other details. Placeholder to enter marks. <br> SPECIFICATION (student): View marks and Grades respectively. 11. SEARCH The Search operation will help staff members to navigate to a particular student and view their information, attendance reports, marks, grades etc. <br> SPECIFICATION (staff): Place holder to search Student name, Courses and easy navigation to different modules directly. 12. REPORT GENERATION Here, the system allows Staff member as well as students to view and print the respective reports. <br> SPECIFICATION: Displays automated generated report by system based on marks, grades, evaluation of assignments done by staff. Print button to print the report. 13. QUIZ Here, the system allows Staff member to generate a quiz for the students. The students can attend the quiz and the score will be displayed to the students at the end of the test. <br> SPECIFICATION: Questions are added by the faculty and student answers the quiz and can see their marks after the completion of quiz.
College Automation System is a multi-function processing operation which includes several modules that are working as one unit in general. It is a software that can keep a systematic record of student’s details, mark sheet, attendance and defaulters list.
fontawesome,html-css,javascript,mysql,php,srs-document,website
2023-02-03T07:25:07Z
2023-02-03T07:41:01Z
null
1
0
5
0
2
2
null
null
PHP
akram-elgh/Weather-App
main
# Weather-App Simple weather app built with node and express using openweathermap-api
Simple weather app built with node and express using openweather
ejs,express,glitch,javascript,nodejs,openweathermap-api,weather,weather-app
2023-02-07T20:20:06Z
2023-02-17T10:52:44Z
null
1
0
8
0
0
2
null
null
EJS
gagan257/Shopping-Cart-API
main
# Shopping Cart API ## INSTALL ALL REQUIRED MODULES BEFORE STARTING ``` shell $ npm init $ npm install node $ npm install express $ npm install hbs $ npm install mysql2 $ npm install sequelize ``` ----------OR----------- ```shell $ npm init $ npm install node express hbs mysql2 sequelize #Installing all modules together ``` ## Structure ``` shell Front-End ─── db.js # database blueprint ^ | | | V | JQuery <-- Server <--> Routes └───api └─── index.js # for products and users └─── products.js # handles and exports product data in database └─── users.js # handles and exports user data in database ``` ## How to Use 1. **Connect the database** 2. **Start the server** ```shell $ node server.js ``` 3. **Go to http://localhost:2345** `List of products will be displayed that are present in Database via JQuery` 4. **Add a product** `via` **http://localhost:2345/add_product**
Shopping Cart API with ExpressJS, Sequelize, JQuery
expressjs,jquery,sequelize,backend,nodejs,api,javascript,css,html5,sqlite
2023-02-04T08:11:26Z
2023-03-07T11:06:14Z
null
1
0
13
0
0
2
null
null
JavaScript
LeslieAine/Leslie-Portfolio
master
# Leslie's Portfolio <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> **[Leslie's Portfolio]** is a website that introduces me as a Full-Stack developer and the projects I have worked on ## 🛠 Built With <a name="built-with"></a> ### Html, css, bootstrap 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 <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/Leslie-portfolio) 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 - Click on contacts to contact me - Click on projects to view the different projects I have worked on ## 👥 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. - [ ] **[Future projects I work on]** <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> - <!-- 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>
A website that introduces me as a full stack developer and the projects I have worked on
bootstrap4,html-css,javascript,scss
2023-02-02T20:22:50Z
2024-05-08T05:06:21Z
null
1
0
27
0
0
2
null
MIT
CSS
JoaoIto/Ito-Bank
main
null
O projeto é um banco de bitcoin, formulários com validação, usando a biblioteca unform, desenvolvida pela Rocketseat para a construção de formulários na biblioteca do React.
javascript,react,reactjs,stitches,undraw,undraw-illustrations,unform,vite,vitejs
2023-02-04T17:49:43Z
2023-03-05T03:17:59Z
2023-02-13T18:29:25Z
1
7
38
0
0
2
null
null
JavaScript
azhan3/Track-Pad
main
# VirtualMouse
Track Pad is a hand tracking program, allowing users to use their hand(s) as a computer mouse. Gestures are completely mappable
electron,flask,javascript,knn-classification,mediapipe,opencv,python,sklearn,vuejs
2023-02-03T05:41:21Z
2023-02-19T04:45:39Z
null
1
0
8
0
0
2
null
null
Python
BlckTitan/rps_game
main
# rps_game https://blcktitan.github.io/rps_game/ Rock paper scissors game project for Brainnest program ### The challenge Users should be able to: - Choose if the want to begin - Compete five rounds against the computer - See the winner of each round - See the overall winner at the end of five rounds - Choose if the want to play a new game at the end of the contest ### Screenshot ![newGame](./img/newGame.jpg) ![chooseToBegin](./img/chooseToBegin.jpg) ![round](./img/round.jpg) ![game/over](./img/gameOver.jpg) - Solution URL: [https://blcktitan.github.io/rps_game/] - Live Site URL: [Ahttps://blcktitan.github.io/rps_game/] ### Built with - Semantic HTML5 markup - CSS custom properties - Flexbox - CSS Grid - Mobile-first workflow ## Author - Website - [Ugorji E. Victor](https://blcktitan.github.io/Eze-Portfolio/)
Rock paper scissors game project for Brainnest program
css-flexbox,css3,game,html5,javascript
2023-01-29T22:16:39Z
2023-05-17T09:59:47Z
null
1
0
20
0
0
2
null
null
CSS
kimly888/portfolio-next.js
main
<p align="center"> <img src="https://user-images.githubusercontent.com/62628408/149734737-cd534c5b-03d9-4ad3-af77-70d6784d98cc.png" align="center" width="50%"> </p> <h1 align="center">Portfolio Template - Next.js</h1> <p align="center"> <img src="https://img.shields.io/github/repo-size/CommunityPro/portfolio-html?color=green&label=project%20size"> <a href="https://github.com/CommunityPro/portfolio-html/issues?q=is%3Aopen+is%3Aissue"> <img src="https://img.shields.io/github/issues-raw/Communitypro/portfolio-html?color=green"> </a> <a href="https://github.com/CommunityPro/portfolio-html/labels/good%20first%20issue"> <img src="https://img.shields.io/github/labels/CommunityPro/portfolio-html/good%20first%20issue"> </a> <a href="https://github.com/CommunityPro/portfolio-html/labels/help%20wanted"> <img src="https://img.shields.io/github/labels/CommunityPro/portfolio-html/help%20wanted"> </a> <a href="https://github.com/CommunityPro/portfolio-html/labels/bug"> <img src="https://img.shields.io/github/labels/Communitypro/portfolio-html/bug"> </a> <a href="https://github.com/CommunityPro/portfolio-html/labels/enhancement"> <img src="https://img.shields.io/github/labels/Communitypro/portfolio-html/enhancement"> </a> <a href="https://https://vercel.com/kimly888/portfolio-next-js/deployments"> <img src="https://img.shields.io/github/deployments/kimly888/portfolio-next.js/production?label=vercel&logo=vercel&logoColor=white"> </a> </p> <p align="center">Build your portfolio using this super easy template which uses Next.js. Free to use if you are a member of the community or a contributor to this project. If not, read our <a href="https://github.com/CommunityPro/portfolio-html/blob/main/REQUIREMENTS.md">requirements</a> if you plan on using this template for your portfolio.</p> <p align="center">This project is made from the tireless efforts of the community, so feel free to <a href= "https://www.buymeacoffee.com/evavic44">support</a> our work by contributing, staring ✨ the project or <a href="https://camo.githubusercontent.com/37a7cffb8b4d73c06dbfea643b9e783b144ed5383815c08bcffc9d40a1bee61c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f73706f6e736f722d3330333633443f7374796c653d666f722d7468652d6261646765266c6f676f3d4769744875622d53706f6e736f7273266c6f676f436f6c6f723d237768697465">sponsoring</a> us. 🙏🏽</p> <p align="center">If you would prefer to use this template in plain old HTML, CSS, and JS, then please use our other repository found<a href= "https://github.com/CommunityPro/portfolio-html">here</a>.</p> <p align="center"> <img src="https://forthebadge.com/images/badges/built-by-developers.svg"> <img src="https://forthebadge.com/images/badges/built-with-love.svg"> <img src="https://forthebadge.com/images/badges/ctrl-c-ctrl-v.svg"> <img src="https://forthebadge.com/images/badges/open-source.svg"> </p> <hr> <a href="/"><img src="https://user-images.githubusercontent.com/62628408/150613011-b78a7f5a-0af1-4312-aab0-0022e7258693.png" width="100%"></a> <a href="https://gitpod.io/https:/CommunityPro/portfolio-html"><img src="https://gitpod.io/button/open-in-gitpod.svg"></a> ## Design credit: - <a href="https://github.com/CommunityPro">Communitypro</a> - <a href="https://dribbble.com/shots/14385288-Portfolio-Landing-Page?utm_source=Clipboard_Shot&utm_campaign=oguzyagiz&utm_content=Portfolio%3A%20Landing%20Page&utm_medium=Social_Share&utm_source=Clipboard_Shot&utm_campaign=oguzyagiz&utm_content=Portfolio%3A%20Landing%20Page&utm_medium=Social_Share">Dribble Inspiration</a> - <a href="https://github.com/frankiefab100">Franklin U.O. Ohaegbulam</a> - <a href="https://openpeeps.com/">Open Peeps Illustration</a> by <a href="https://twitter.com/pablostanley">Pablo Stanley</a> ## How to Contribute Are you contributing to this project, please ensure all pull requests and contributions comply with our <a href="https://github.com/CommunityPro/portfolio-html/blob/main/CONTRIBUTING.md">guidelines.</a> Before making any changes, ensure you have raised an issue <a href="https://github.com/CommunityPro/portfolio-html/issues/new/choose">here</a>, unless it is a minimal change like Typo error then you can go right ahead. ## Folder Structure ```bash ├── .github │ ├── ISSUE_TEMPLATE │ │ ├── bug.md │ │ ├── feature.md │ ├── Pull_request_template.md ├── components │ ├── data │ │ ├── projects.json │ ├── elements │ │ ├── Button.jsx │ │ ├── Hamburger.jsx │ │ ├── Logo.jsx │ │ ├── ThemeToggle.jsx │ ├── layouts │ │ ├── Layout.jsx │ ├── modules │ │ ├── Footer.jsx │ │ ├── Hero.jsx │ │ ├── Navbar.jsx │ │ ├── ProjectCard.jsx │ │ ├── Projects.jsx ├── context │ ├── StateContext.js ├── pages │ ├── api │ ├── _app_.js │ ├── _document_.js │ ├── index.js ├── public │ ├── favicon │ │ ├── android-chrome-192x192 │ │ ├── android-chrome-512x512 │ │ ├── apple-touch-icon │ │ ├── favicon-16x16 │ │ ├── favicon-32x32 │ │ ├── favicon.ico │ │ ├── site.webmanifest │ ├── project │ │ ├── project-six.png │ │ ├── project-five.png │ │ ├── project-four.png │ │ ├── project-three.png │ │ ├── project-two.png │ │ ├── project-one.png │ ├── facebook-icon.svg │ ├── hashnode-icon.svg │ ├── github-icon.svg │ ├── linkedin-icon.svg │ ├── twitter-icon.svg │ ├── logo.png │ ├── moon.svg │ ├── sun.svg │ ├── profile-image.svg ├── styles │ ├── globals.css │ ├── utilities.css ├── eslintrc.json ├── .gitignore ├── jsconfig.json ├── next.config.js ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── package-lock.json ├── package.json ├── README.md └── REQUIREMENTS.md ``` <div align="center"> <h1>✨ How to Customize this Template ✨</h1> </div> This portfolio uses modern HTML5 semantic tags like article, header, footer and more for better accessibility and improve SEO, you can read more about that on Jemima's article: <a href="https://blog.jemimaabu.com/how-to-improve-your-seo-ranking">How to improve your SEO ranking</a>. Also learn about metatags and how to generate them for SEO optimization <a href="https://github.com/CommunityPro/portfolio-html/blob/main//Metatags.md">here</a>. The root page of this project is located at `/pages/index.js` This is the default page you see when you visit the site. Want to customize this template to suit your style, here are a few things you can change: ## 1. Logo The logo of this template is controlled by line below in the `Logo.jsx` component, replace the `/logo.png` with your logo link or replace the current logo image located in the public folder with yours and rename it to `logo.png` ```jsx <!-- Logo --> <h1 id="logo"> <a href="#"><img src="/logo.png" alt="Your Logo"></a> </h1> ``` ## 2. Navigation Links ```jsx <ul className={`nav-menu ${isActive && "active"}`}> <li> <a className="nav-link" href="#" onClick={handleMobileMenu}> PROJECTS </a> </li> <li> <a className="nav-link" href="#" onClick={handleMobileMenu}> CONTACT </a> </li> <li> <a className="nav-link" href="#" onClick={handleMobileMenu}> BlOG </a> </li> <li> <a className="nav-link btn btn-primary" href="#"> RESUME <i className="fas fa-arrow-right"></i> </a> </li> </ul> ``` Replace the `#` symbol with your respective link. Delete any `nav-link` that is not being used or edit the name with your own preferred link source. - The last navigation link is the highlighted yellow button on the template. Which is styled with the `btn` & `btn-primary` classes. ## 3. Profile Image Replace the icon or user profile with your profile image. Image can be found in the `Hero.jsx` component. ```jsx <Image className="profile-image" src="/profile-image.svg" width={150} height={150} alt="profile picture" /> ``` You can add the image locally by replacing it with the `/public/profile-image.png`. Or replace the `src` link in the `Hero.jsx` with your preferred image. I recommend you copy your GitHub profile image link, so the image changes anytime you update it on GitHub. ## 4. Name Edit the name on the welcome message with your own name. This line of text can be found in the `/docs/index.html` file. Replace `Jessica` with your own name. ```jsx <h1>Hi I'm Jessica</h1> ``` ## 5. Job Title Summarize what you do in five words and add it into the `<h2></h2>` line. Add the first two in the first `<h2>` element and add the remaining four on the next `<h2>` ```html <h2>Building digital</h2> <h2>products, brands, and experience.</h2> ``` ## 6. Job Description Update the job description with your information. 20 words recommended. ```jsx <p> A Frontend Developer and Visual Designer with experience in web design, brand identity and product design. </p> ``` ## 7. Connect With Me Replace the `#` on the connect with me button with a link. You can choose what link you want your visitors to go when they click this button. Social links, email address or phone number, it's completely up to you. ```jsx <a href="#" class="btn btn-secondary"> Connect With Me </a> ``` - Email: `<a href="mailto:user@gmail.com" className="btn btn-secondary">Connect With Me</a>` OR - Phone: `<a href="tel:+23400000000" className="btn btn-secondary">Connect With Me</a>` ## 8. Project This section showcases your projects using screenshots. It has 3 columns and 2 rows by default but you can add more columns according to your use case. The `.project` controls the number of columns and rows of the project cards. ```jsx <div href="" className="card"> <div className="project-info"> <div className="project-bio"> <h3>Project One</h3> <p>React, Redux, SASS</p> </div> <div className="project-link"> <a href="#" target="_blank"> <i className="fab fa-github"></i> </a> <a href="#" target="_blank"> <i className="fas fa-globe"></i> </a> </div> </div> </div> ``` To customize the cards, here are a few things you can change: ### Project Title ```jsx <h3>Project One</h3> ``` This is controlled by the `<h3></h3>` element. Edit the text and add your preferred project name. ### Project Stack This is where you display the tools/technologies used in building the project. Edit the `<p></p>` element with the specific tools or delete the line completely. ```jsx <p>React, Redux, SASS</p> ``` ### Project Link The project links are the icons on the top right of the project cards. One is the github link and the othe is the live link. You can paste the respective links into the empty `href` attributes. The icons are added using an icon library called <a href="fontawesome.com/">fontawesome</a> so changing this icon is super easy. ```jsx <a href="#"><i class="fab fa-github"></i></a> <a href="#"><i class="fas fa-globe"></i></a> ``` ## Project Styling The layout of the project cards is controlled by the `.project` class in the `/styles/globals.css` file. By using CSS `grid-template-columns`, the cards are outlined on three columns on desktop mode, two columns on tablet mode and one column on mobile view. ```css .project { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(250px, auto); grid-gap: 0.9rem; } ``` ## Social Links The footer links contain social icons that you can link to your specific social channels. By default the icons available are: `Facebook`, `Twitter`, `LinkedIn`, `GitHub`, `Hashnode` and the icons image are added locally to the assets folder, so you can add your own custom icon and link it. ```jsx <a href="mailto:communitypro47@gmail.com">communitypro47@gmail.com</a>; <div className="social"> <a href="#" target="_blank"> <Image src="/facebook-icon.svg" width={20} height={20} alt="Facebook" /> </a> <a href="#" target="_blank"> <Image src="/twitter-icon.svg" width={20} height={20} alt="Twitter" /> </a> <a href="#" target="_blank"> <Image src="/linkedin-icon.svg" width={20} height={20} alt="Linkedin" /> </a> <a href="#" target="_blank"> <Image src="/github-icon.svg" width={20} height={20} alt="GitHub" /> </a> <a href="#" target="_blank"> <Image src="/hashnode-icon.svg" width={20} height={20} alt="Hashnode" /> </a> </div>; ``` ## META Tags Use <a href="https://metatags.io/">Metatags.io</a> to generate meta tags for sharing your portfolio and for SEO benefits. ## Styling We are using plain `CSS` for this project and you can find that in the styles folder - style.css is the main file - utilities.css is where reusable styling will be. <h1>Examples</h1> <p>Here are examples of portfolios customized using this template, you can draw inspiration from this list or add yours.</p> <table> <tr> <!-- Start of column-1 --> <td> <a href="https://portfolio-next-js-lake-five.vercel.app/"> <img src="https://user-images.githubusercontent.com/62628408/150613011-b78a7f5a-0af1-4312-aab0-0022e7258693.png" width="100px"> <br/> <sub>Example 1</sub> </a> </td> <!-- End of column-1 --> <!-- Start of column-2 <td> <a href="https://portfolio-next-js-lake-five.vercel.app/"> <img src="https://user-images.githubusercontent.com/62628408/150613011-b78a7f5a-0af1-4312-aab0-0022e7258693.png" width="100px"> <br/> <sub>Example 2</sub> </a> </td> --> </tr> </table> ## Sponsor <div> <a href="https://www.buymeacoffee.com/evavic44"> <img width="150px" alt="bmc-button" src="https://user-images.githubusercontent.com/62628408/127788747-8850d386-fc61-4fff-b18f-8c5ee597be34.png"> </a> <img width="150px" height="100%" src="https://img.shields.io/badge/sponsor-30363D?style=for-the-badge&logo=GitHub-Sponsors&logoColor=#white"> </div> If you like this project, kindly star ⭐ and share this project. It means the world to us. You can also offer support by donating to keep this project going.
🌍 Open source portfolio template built with Next.js for developers to create their own portfolio website
community-project,css,css3,html,html5,javascript,landing-page,nextjs,portfolio,portfolio-ideas
2023-02-06T15:10:39Z
2023-03-19T06:31:54Z
2023-02-06T17:16:34Z
1
0
47
0
1
2
null
MIT
JavaScript
wallabyway/spatial-query-server
main
# spatial-query-server Spatial Query Service for Forge Viewer. Get minimal DBIDs for a floor/room/section-box ## Demo: - Forge Viewer Demo: https://spatial-query-server.cyclic.app/ - API endpoint: https://spatial-query-server.cyclic.app/api? ^parameters go here^ ### URL parameter inputs: - minPolyCount - minBoxSize - sectionBox : of the form [3040047,919000,9.1],[3140147,919900,15] - urn : urn of SVF2 asset - token : access token ## Example: https://spatial-query-server.herokuapp.com/api?minPolyCount=0&minBoxSize=1.5&sectionBox=[3040047,919000,9.1],[3140147,919900,15]&urn=dXJuOmFkc2sub2JqZWN0czpvcy5vYmplY3Q6YXV0b2NhZC13ZXMvSG9ydG9uJTIwUGxhemElMjAxMC4yNy4yMi5ud2Q&token=eyJhbGciOiJSUzI1NiIsImtpZCI6IlU3c0dGRldUTzlBekNhSzBqZURRM2dQZXBURVdWN2VhIn0.eyJzY29wZSI6WyJkYXRhOnJlYWQiXSwiY2xpZW50X2lkIjoiTmk5STVpSFM1QVpHTXB0b2NsbDFWWGdldXM4V2R1VUMiLCJhdWQiOiJodHRwczovL2F1dG9kZXNrLmNvbS9hdWQvYWp3dGV4cDYwIiwianRpIjoiQXpFR3FzQk9lUkdSSjE2TUhQUlhDWU5JZnpZTU8xN1pxSE43SnJCMEtyYmhucXg1Sk1KVFY1RGVCRUszNmVONSIsImV4cCI6MTY3NTgzNDA4MH0.KJyvkoUI6D7OvPSpMyofF3dypTZ7jEhcA74IB1cwmYExeJyXOgSeKxAonVAaf8-rXCK3iq5eIazzq6kPmX1JqYyALZr7srcOt0to3FDJ_83wplTbfL2WbEIXZdCoR3_4WGSnrKDc1lC62Vr6JrDUGIuraPePRLT_hB35WeFh0YUDLisaOZAXExwpklW8pDgKn7_D9h2mn78RsBnKw1P4inimbeuKDjpNjihNgVNJdwuMwGjet1ufmwyOurEJY4_YQvB5HddnJjS_aAaEHRQdy0enqauTktEDnQEmut6mt69uq9vYBh4WUp0Qfj8QkJutlEh89FvTkovZ2hNlqtE6nw
Spatial Query Service for Forge Viewer. Get minimal DBIDs for a floor/room/section-box
aabb,fastify,forge-viewer,javascript,nodejs,aabb-bvh
2023-02-08T00:59:31Z
2023-02-11T02:06:01Z
null
1
0
14
0
0
2
null
MIT
JavaScript
loganzartman/wavescape
master
# wavescape WIP interactive, GPU-accelerated fluid simulation using smoothed particle hydrodynamics. It can do all the simulation work on the GPU using WebGL2! It **doesn't** use WebGL2 Compute, which isn't widely supported. Instead, it does tricks with regular vertex and fragment shaders. [try it!](https://loganzartman.github.io/wavescape) ![a dam break scene where water sloshes from one side to the other](./img/promo.gif) ## controls - `space`: start/stop simulation - `s`: step forward in time (use while stopped) - `r`: reset - `click and drag`: touch fluid - click `settings` for some tweakable parameters! ## references - [Smoothed Particle Hydrodynamics Techniques for the Physics Based Simulation of Fluids and Solids](https://interactivecomputergraphics.github.io/SPH-Tutorial/) - [Smoothed Particle Hydrodynamics (Monaghan 1992)](https://www.researchgate.net/publication/230988821_Smoothed_Particle_Hydrodynamics) - [Batcher's odd-even mergesort](https://en.wikipedia.org/wiki/Batcher_odd%E2%80%93even_mergesort) - this one is tough and hard to find recent writing about, but these resources helped a little: - [GPU Gems 2 ch 46: Improved GPU Sorting](https://developer.nvidia.com/gpugems/gpugems2/part-vi-simulation-and-numerical-algorithms/chapter-46-improved-gpu-sorting) - [odd-even mergesort network visualizer](http://bekbolatov.github.io/sorting/) - neighbor search inspired by [Fast Fixed-radius Nearest Neighbors (Hoetzlein 2014)](https://on-demand.gputechconf.com/gtc/2014/presentations/S4117-fast-fixed-radius-nearest-neighbor-gpu.pdf) - a lot of detail is missing from the slides unfortunately - [SPH Particle Collisions for the Reduction of Particle Clustering, Interface Stabilisation and Wall Modelling](https://www.scirp.org/journal/paperinformation.aspx?paperid=87356) - [A generalized wall boundary condition for smoothed particle hydrodynamics](https://www.sciencedirect.com/science/article/pii/S002199911200229X) - this also provides some great details about their SPH implementation in general, and I referenced it frequently.
interactive fluid simulation in browser based on SPH, GPU-accelerated with WebGL2
javascript,simulation,sph,interactive,smoothed-particle-hydrodynamics,gpgpu,webgl,webgl2,gpu,typescript
2023-02-06T08:28:25Z
2023-08-20T00:43:21Z
null
1
0
159
7
0
2
null
MIT
TypeScript
Palumdo/moodle-mod_guestquiz
main
# Guest Quiz # Guest Quiz is a Moodle activity created to allow guest students from Moodle to make simple and light quiz without account in an "Open" course in Moodle. Nothing made by the guest is saved by the activity, all the processing of the quiz is made client side (on the student navigator). It's nothing more than old-style questions book where the answers are at the bottom of the page upside down. It's made to allow the student to evaluate himself by himself with the help of the quiz. The module uses a subset of the Moodle GIFT format. Only boolean, multichoice, number and short answers are supported. Text, missing word and matching are not. The parser of this module is also far less efficient than the Moodle one. It's the reason I call the supported format sGIFT. The s is for small, subset, sad, simpler, simplet... Whatever you like. I hope that it will be usable by everyone. Because they've no editor, you just copy paste a correct sGIFT format inside a text area. They've a simple playground for learning the sGIFT format in the settings page of the activity. It was developped with the KISS principle and I hope it is. More info in the WIKI : <https://github.com/Palumdo/moodle-mod_guestquiz/wiki/> ## License ## 2023 UCLouvain This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
Allow to create quiz accessible by guest in Moodle. Quiz is created from a subset of the GIFT question format
gift,quiz,javascript,moodle-plugin,php
2023-01-26T10:34:15Z
2023-05-09T12:15:28Z
null
1
0
19
0
2
2
null
NOASSERTION
PHP
crescendolab-open/parse-json
main
# @crescendolab/parse-json A user-friendly wrapper for `JSON.parse()`. ```ts // ✅ Returns type `JsonValue` which is stricter than `unknown`. // ✅ Fallback specified value is returned if `input` is not a valid JSON string. const output = parseJson(input, null); // ^? const output: JsonValue if (typeof output === "function") { output; // ^? const output: never } if (output === undefined) { output; // ^? const output: never } // ❌ Return with type `any`. // ❌ Might throw an error if `input` is not a valid JSON string. const vanillaOutput = JSON.parse(input); // ^? const vanillaOutput: any ``` ## Installation ```sh pnpm i @crescendolab/parse-json ``` ## Usage ```ts import { parseJson } from "@crescendolab/parse-json"; const input = await loadJson(); const output = parseJson(input); ``` ## Options ```ts parseJson(input, options); ``` ### `options.fallback` - Type: `any` Specify a fallback value to be returned if it fails to parse `input` as a JSON string. ```ts const input = "not a valid json string"; // ✅ Get `undefined` instead of throwing an error. const output = parseJson(input, { fallback: undefined }); ``` ### `options.parser` - Type: `(input: string) => JsonValue` Specify a custom parser function. For example, you can use [`json5`](https://github.com/json5/json5) for comments in json or [parse-json](https://github.com/sindresorhus/parse-json) for helpful error messages. ```ts import { parseJson } from "@crescendolab/parse-json"; import json5 from "json5"; const input = `{ // This is a comment "foo": "bar" }`; // ✅ This will not throw an error. const output = parseJson(input, { parser: json5.parse, }); ``` ## Create your own parser You can create a parser with a custom default options where the options are the same as the `options` argument of `parseJson()`. ```ts import { parseJson } from "@crescendolab/parse-json"; const myParser = parseJson.create(options); const myParser = parseJson.create({ fallback: undefined }); ``` ## License MIT © [Crescendo lab](https://www.cresclab.com/)
A user-friendly wrapper for JSON.parse().
json,javascript,typescript
2023-01-30T05:31:51Z
2024-01-03T09:34:45Z
null
1
0
3
0
0
2
null
MIT
TypeScript
shonebinu/sign_up_form
main
# sign_up_form I worked again in this project and made a [clone](https://github.com/shonebinu/sign_up_form/tree/odin_clone) of the example given in the TOP project brief. Switch the branch to `odin_clone` to see it. An easy 'sign up form' interface to learn about forms and validations. [Sign Up Form Demo](https://shonebinu.github.io/sign_up_form/) ![Sign Up Form Image](images/Screenshot%202023-02-21%20at%2019-52-20%20Sign-Up%20Form.png) ## Features - Responsive (Mobile, Tablet and Desktop). - Aesthetic Dark Interface (Inspired from Tailwind colors). - Validations, mainly the 'confirm password' input checks with 'password' input to see if they are both of same value, if not, set's custom validity and prevents the submit.
An easy 'sign up form' interface to learn about forms and validations.
form,html,javascript,css
2023-02-05T10:38:19Z
2024-04-14T11:39:11Z
null
1
0
27
0
0
2
null
null
CSS
Pa1mekala37/ReactJs-Hamburger-Menu
main
In this project, let's build a **Hamburger Menu** app by applying the concepts we have learned till now. ### Refer to the image below: <br/> <div style="text-align: center;"> <img src="https://assets.ccbp.in/frontend/content/react-js/hamburger-menu-output-v0.gif" alt="hamburger menu output" style="max-width:70%;box-shadow:0 2.8px 2.2px rgba(0, 0, 0, 0.12)"> </div> <br/> ### Design Files <details> <summary>Click to view</summary> - [Extra Small (Size < 576px) and Small (Size >= 576px)](https://assets.ccbp.in/frontend/content/react-js/hamburger-menu-about-sm-outputs.png) - [Medium (Size >= 768px), Large (Size >= 992px) and Extra Large (Size >= 1200px) - Home](https://assets.ccbp.in/frontend/content/react-js/hamburger-menu-home-lg-output.png) - [Medium (Size >= 768px), Large (Size >= 992px) and Extra Large (Size >= 1200px) - About](https://assets.ccbp.in/frontend/content/react-js/hamburger-menu-about-lg-output.png) - [Medium (Size >= 768px), Large (Size >= 992px) and Extra Large (Size >= 1200px) - Menu](https://assets.ccbp.in/frontend/content/react-js/hamburger-menu-popup-lg-output.png) - [Medium (Size >= 768px), Large (Size >= 992px) and Extra Large (Size >= 1200px) - Not Found](https://assets.ccbp.in/frontend/content/react-js/hamburger-menu-not-found-lg-output.png) </details> ### Set Up Instructions <details> <summary>Click to view</summary> - Download dependencies by running `npm install` - Start up the app using `npm start` </details> ### Completion Instructions <details> <summary>Functionality to be added</summary> <br/> The app must have the following functionalities - Initially, the Home Route should be displayed - When hamburger icon button in the header is clicked, then the popup should be opened <div style="text-align: center;"> <img src="https://assets.ccbp.in/frontend/content/react-js/hamburger-menu-popup-img.png" alt="popup" style="max-width:100%;box-shadow:0 2.8px 2.2px rgba(0, 0, 0, 0.12)"> </div> <br/> - When the **Home** is clicked, then the page should be navigated to the Home Route - When the **About** is clicked, then the page should be navigated to the About Route - When the close button is clicked, then the popup should be closed - When the website logo in the Header is clicked, then the page should be navigated to the Home Route </details> <details> <summary>Components Structure</summary> <br/> <div style="text-align: center;"> <img src="https://assets.ccbp.in/frontend/content/react-js/hamburger-menu-component-structure-breakdown-home.png" alt="component structure breakdown home" style="max-width:100%;box-shadow:0 2.8px 2.2px rgba(0, 0, 0, 0.12)"> </div> <br/> <div style="text-align: center;"> <img src="https://assets.ccbp.in/frontend/content/react-js/hamburger-menu-component-structure-breakdown-about.png" alt="component structure breakdown about" style="max-width:100%;box-shadow:0 2.8px 2.2px rgba(0, 0, 0, 0.12)"> </div> <br/> </details> <details> <summary>Implementation Files</summary> <br/> Use these files to complete the implementation: - `src/App.js` - `src/components/Header/index.js` - `src/components/Header/index.css` - `src/components/Home/index.js` - `src/components/Home/index.css` - `src/components/About/index.js` - `src/components/About/index.css` - `src/components/NotFound/index.js` - `src/components/NotFound/index.css` </details> ### Quick Tips <details close> <summary>Click to view</summary> <br> To build this project, take a look at the <a href='https://learning.ccbp.in/frontend-development/course?c_id=2f4192f7-7495-49ca-a6ce-6b74005e25f1&s_id=b01fca1c-aa5c-4d79-b81e-0220e7649bd0&t_id=416f0cab-8425-413b-9157-c7b4d4ae4467' target="_blank">React Popup</a> reading material - To style popup content use `.popup-content` class ```jsx <Popup modal trigger={ //write code here } className="popup-content" > //write code here </Popup> ``` </details> ### Important Note <details> <summary>Click to view</summary> <br/> **The following instructions are required for the tests to pass** - `Home` Route should consist of `/` in the URL path - `About` Route should consist of `/about` in the URL path - No need to use the `BrowserRouter` in `App.js` as we have already included in `index.js` - The hamburger icon button should have the `data-testid` as **hamburgerIconButton** - The close button in the popup should have the `data-testid` as **closeButton** - `GiHamburgerMenu` from react-icons should be used for **Hamburger Icon** in the Header - `IoMdClose` from react-icons should be used for **Close Icon** in the Popup - `AiFillHome` from react-icons should be used for **Home Icon** in the Popup - `BsInfoCircleFill` from react-icons should be used for **About Icon** in the Popup </details> ### Resources <details> <summary>Image URLs</summary> - [https://assets.ccbp.in/frontend/react-js/hamburger-menu-website-logo.png](https://assets.ccbp.in/frontend/react-js/hamburger-menu-website-logo.png) alt should be **website logo** - [https://assets.ccbp.in/frontend/react-js/home-sm-img.png](https://assets.ccbp.in/frontend/react-js/home-sm-img.png) alt should be **home** - [https://assets.ccbp.in/frontend/react-js/home-lg-img.png](https://assets.ccbp.in/frontend/react-js/home-lg-img.png) alt should be **home** - [https://assets.ccbp.in/frontend/react-js/about-sm-img.png](https://assets.ccbp.in/frontend/react-js/about-sm-img.png) alt should be **about** - [https://assets.ccbp.in/frontend/react-js/about-lg-img.png](https://assets.ccbp.in/frontend/react-js/about-lg-img.png) alt should be **about** - [https://assets.ccbp.in/frontend/react-js/not-found-img.png](https://assets.ccbp.in/frontend/react-js/not-found-img.png) alt should be **not found** </details> <details> <summary>Colors</summary> <br/> <div style="background-color: #dcdcdc; width: 150px; padding: 10px; color: black">Hex: #dcdcdc</div> <div style="background-color: #ffffff; width: 150px; padding: 10px; color: black">Hex: #ffffff</div> <div style="background-color: #616e7c; width: 150px; padding: 10px; color: black">Hex: #616e7c</div> </details> <details> <summary>Font-families</summary> - Roboto </details> > ### _Things to Keep in Mind_ > > - All components you implement should go in the `src/components` directory. > - Don't change the component folder names as those are the files being imported into the tests. > - **Do not remove the pre-filled code** > - Want to quickly review some of the concepts you’ve been learning? Take a look at the Cheat Sheets.
Hamburger Menu using React.js
css,html,javascript,jsx,npm-package,reactjs
2023-02-09T13:46:31Z
2023-02-09T13:47:00Z
null
1
0
1
0
0
2
null
null
JavaScript
sahsisunny/gittrackr
develop
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). ## Getting Started First, run the development server: ```bash npm run dev # or yarn dev # or pnpm dev ``` Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. ## Learn More To learn more about Next.js, take a look at the following resources: - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! ## Deploy on Vercel The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
This is a web application that allows you to manage your organization's GitHub issues and pull requests.
javascript,nextauth,nextjs,typescript
2023-02-08T08:42:11Z
2023-12-09T05:24:15Z
null
2
40
150
14
1
2
null
null
TypeScript
emp1211/pixel-art-app
main
React Pixel Art App =================== This 'pixel-art-app' repository holds the source code for a React web application that allows the user to "paint-by-number" a handful of pre-made pictures rendered on a 16x16 canvas of "pixel" blocks. Click on a color swatch below the canvas to choose the brush color. Color the "pixels" by matching the number of the paint swatch on the palette to the number on the canvas. The application also supports mouse dragging for coloring multiple pixels per mouse click. Explore the app live at: https://pixelle.netlify.app/ Screenshots: <p float="left" > <img src="pixel-screen-shot1.JPG" width="300" display="inline-block" /> <img src="pixel-screen-shot2.JPG" width="300" display="inline-block" /> </p> Features: * Dynamically generates canvas and palette from separate file of arrays, allowing easy addition of new paint-by-numbers and new color palettes * Font color (white or black) for palette swatches is automatically determined by a formula that calculates a brightness threshold * 'New Picture' button increments an index of the pictures, automatically loading a new paint-by-number and the correct color palette that corresponds to that picture, and resets all the pixels and brush color to white. The app can be run locally in a node.js environment. Simply clone the repository, navigate to the project directory (where the package.json is found) and use the command 'npm start' in the terminal. Copyright 2023 Erik M. Paffett
A React Pixel Art App where users can 'paint-by-number'
art,javascript,paint-by-number,pixel-art,react
2023-01-29T05:10:55Z
2023-02-18T16:33:26Z
null
1
1
21
0
0
2
null
null
JavaScript
gagan257/Earthly-task
main
null
Task : Create a landing page for sustainability starter kit for Earthly Sustainable Solutions Limited
bootstrap,css,html,javascript,jquery
2023-02-05T19:45:07Z
2023-02-08T14:08:28Z
null
1
0
4
0
0
2
null
null
CSS
Zastinian/hedystia.db
master
null
A database made by the company hedystia, easy to use
database,easy,encrypted,json,db,hedystia,discord,discordjs,javascript,typescript
2023-02-01T01:18:08Z
2024-05-20T04:06:28Z
null
1
0
48
0
0
2
null
null
TypeScript
BTF-Kabir-2020/Valentine_find_Love
main
# Valentine_finde_Love In the file html instead of 'Boys Five', 'Found!' You can put your desired name and text. شما به جای متن زیر میتونید اسم خودتون رو بزارید و فاند هم میتونید بنویسید پیدا شد. شما کلمه چک که انگلیسی هست رو هم میتونید عوض کنید برای مثل بجاش بنویسید بررسی یا هر چیزی که بخواید و حتی بیشتر از یک کلمه هم میتونه باشه و حتی میتونه دارای فاصله باشه کلماتتون. ![image](https://user-images.githubusercontent.com/101173470/215466201-509af426-8e69-4af6-9285-d2e58e08428f.png) ![v1](https://user-images.githubusercontent.com/101173470/215466595-d7d3fc8c-f227-4f2e-95e3-6c97f4347b9e.png) ![v2](https://user-images.githubusercontent.com/101173470/215466691-1457e65e-8396-4ae3-9b00-e1848ea9f473.png) ![v3](https://user-images.githubusercontent.com/101173470/215466759-7160bc4c-aa1d-48ad-ba12-7692e951f6ab.png)
null
html,css,javascript,js,love,sweetalert,valentine,site,web,website
2023-01-30T10:58:40Z
2024-05-21T11:38:37Z
null
1
0
12
0
0
2
null
null
HTML
LucianoGarcia1/Quiz-react
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)
The quiz was developed to test my knowledge of the origamid react course
css,es6,front-end,hooks,javascript,jqwery,reactjs,scss
2023-01-26T12:58:20Z
2023-01-26T13:03:25Z
null
1
0
2
0
0
2
null
null
JavaScript
gdkimaiyo/netflix
develop
# Netflix A MiniNetflix web application developed with Angular This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.1.3. ## Installation ### Set up the project on your PC - run **`git clone https://github.com/gdkimaiyo/netflix.git`** to clone the repository - **`cd`** into the project and on root folder, run **`yarn install`** or **`npm install`** to install dependencies ## Development server Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files. ## Code scaffolding Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`. ## Build Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. ## Running unit tests Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io). ## Running end-to-end tests Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities. ## Further help To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page. ## TODO ### User Story **As a User:** - [x] I should be able to view all movies: The Movie Image, Movie Title, and Year of Production. ( Use APIs e.g themoviedb API) - [x] I should be able to search for movie title with specific words. - [x] I should be able to click on a movie and it should display more details about the movie like Rated, Released, - Runtime, Genre, Director, Writer, Actors, Plot, Language, Country, Awards any other you want to display. - [x] I should be able to like movies / favourites and it should persist even if I refresh/reload the browser is (Use session storage) - [x] I should see favorites page that shows my favorite movies - [x] Show movie recomendations - [x] Repeat above for TV Shows **Bonus:** - [ ] Implement authentication in express js where as a user, I can persist my favorite movies forever and remove movies from my favorites list. Use any DB of your choice. ## License [MIT](https://github.com/gdkimaiyo/netflix/blob/master/LICENSE.md)
A MiniNetflix web application developed with Angular
andela-alc-challenge,angular,ant-design,javascript,mini-netflix,typescript
2023-02-01T07:40:21Z
2023-04-03T14:02:17Z
null
1
22
50
0
0
2
null
MIT
TypeScript
kauamath/Starbucks
master
<h1 align="center"> Starbucks </h1> <div align="center"> <img src="" alt=""> <h3 align="center"> <b>📱 Responsivo</b></h3> <img src="" alt=""> </div> ## 🚀 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML e CSS - JavaScript ## 💻 Projeto ## 👨🏻‍💻 Deploy <a target="_blank" href=""><b>CLICK PARA ACESSAR!</b></a> ## 🌎<i>Onde me encontrar:</i> <br> <div style="display: inline_block"> <a href="https://www.linkedin.com/in/kaua-medeiros/" target="_blank"><img src="https://img.shields.io/badge/-LinkedIn-%230077B5?style=for-the-badge&logo=linkedin&logoColor=white"></a> <a href = "mailto:contato.kauamedeiros@gmail.com" target="_blank"><img src="https://img.shields.io/badge/-Gmail-%23333?style=for-the-badge&logo=gmail&logoColor=white" target="_blank"></a> <a href="https://www.instagram.com/k.matheus/" target="_blank"><img src="https://user-images.githubusercontent.com/75697499/179569889-2a993690-1c1d-4c3c-a89e-775aee94a742.svg"></a> </div>
Projeto de Landing page feito com HTML, JavaScript, CSS
css3,html5,javascript
2023-02-01T22:02:05Z
2023-07-11T19:07:36Z
null
1
0
9
0
0
2
null
null
HTML
shivlloyd/markSeven-valyrian-translation-app
main
# Valyrian Translation App This repository contains the code for a Valyrian Translation App. The Valyrian Translation App allows users to enter a phrase or sentence in English and get the corresponding translation in High Valyrian, the fictional language created by George R.R. Martin for his "Game Of Thrones" series. ## Features - User can input an English phrase or sentence and get its corresponding translation in High Valyrian. - The translation is generated using an API from [funtranslations.com](https://funtranslations.com/). - The translation is displayed on the webpage. - The webpage has a responsive design that adapts to different screen sizes. ## Technologies The Valyrian Translation App was developed using: - HTML - CSS - JavaScript ## Usage To use the Valyrian Translation App: 1. Clone this repository to your local machine. 2. Open the `index.html` file in your web browser. 3. Enter the English phrase or sentence you want to translate in the input field and click the "Translate To Valyrian" button. 4. The translation will be displayed on the webpage. ### OR [Click here ](https://m7-valyrian-translate.netlify.app/)to see the app in action. ## Credits The Valyrian Translation App was developed by [Shivam Kumar](https://github.com/shivlloyd) as part of the [MarkSeven project](https://github.com/shivlloyd/markSeven-project). The translation API is provided by [funtranslations.com](https://funtranslations.com/).
App to convert English into Valyrian Language
css,html,javascript,gameofthrones
2023-02-02T11:22:16Z
2023-02-27T11:51:16Z
null
1
0
16
0
0
2
null
null
CSS
Rafa-KozAnd/Ignite_Node.js_Activity_02
main
<p align="center"> <img src="http://img.shields.io/static/v1?label=STATUS&message=Concluded&color=blue&style=flat"/> <img alt="GitHub language count" src="https://img.shields.io/github/languages/count/Rafa-KozAnd/Ignite_Node.js_Activity_02"> <img alt="GitHub language count" src="https://img.shields.io/github/languages/top/Rafa-KozAnd/Ignite_Node.js_Activity_02"> <img alt="GitHub repo file count" src="https://img.shields.io/github/directory-file-count/Rafa-KozAnd/Ignite_Node.js_Activity_02"> <img alt="GitHub repo size" src="https://img.shields.io/github/repo-size/Rafa-KozAnd/Ignite_Node.js_Activity_02"> <img alt="GitHub language count" src="https://img.shields.io/github/license/Rafa-KozAnd/Ignite_Node.js_Activity_02"> </p> # Ignite_Node.js_Activity_02 Node JS activity done with 'Rocketseat' Ignite course. ("Chapter II") ## 💻 Sobre o capítulo II - Iniciando a API. Aqui aprenderemos a criar aplicações utilizando TypeScript seguindo padrões de código e princípios do SOLID. Aprenderemos conceitos importantes como casos de uso, repositórios, models, streams do Node.js e documentação de APIs com Swagger.
Node JS activity done with 'Rocketseat' Ignite course. ("Chapter II")
express,ignite,ignite-nodejs,ignite-rocketseat,javascript,nodejs,rocketseat,css,css3,html
2023-02-03T01:13:29Z
2023-04-20T19:16:24Z
null
1
0
3
0
0
2
null
null
HTML
xiangyi-zhou/Travel-Booking-Website
master
# Yichang Travel Booking Website - Front End live version: https://yichang-travel.netlify.app/ Yichang Travel Booking Website is a platform designed to facilitate travel bookings for Yichang city, providing users with a seamless experience for planning and organizing their trips. ## Screenshots <img src="images/travel-img-1.png" style="width: 45%" >|<img src="images/travel-img-2.png" style="width: 45%"> <img src="images/travel-img-3.png" style="width: 45%" >|<img src="images/travel-img-4.png" style="width: 45%"> ## Getting Started These instructions will help you get a copy of the project up and running on your local machine for development and testing purposes. ### Prerequisites Before you start, you will need to have the following software installed on your machine: - Node.js (version 12.0.0 or higher) - npm (version 6.0.0 or higher) If you don't have [Node.js](https://nodejs.org) and [npm](https://www.npmjs.com/get-npm) installed, you can download them from the official websites. ### Installing To install the project, follow these steps: 1. Clone the repository 2. Change into the project directory 3. Install the dependencies: ```console npm install ``` ### Running To start the development server, run npm start in the project directory. ```console npm start ``` This will start the server and open the app in your default web browser at http://localhost:3000. ### Building To create a production build of the app, run npm run build. ```console npm run build ``` This will create an optimized build in the 'build' directory. ## Built With - HTML - CSS - JavaScript - Bootstrap - The CSS framework used for styling - React.js - The JavaScript library used to build the user interface ## Disclaimer This project is solely for demonstration purposes, and not intended for commercial use.
The front-end of a travel booking website using HTML, CSS, JavaScript and frameworks such as React.js
css,html,javascript,reactjs
2023-01-27T10:10:09Z
2023-06-17T22:56:45Z
null
1
0
28
0
0
2
null
null
JavaScript
andy-goryachev/RNotebook
main
null
Interactive notebook desktop application, uses Mozilla Rhino javascript engine.
javascript,notebook,swing,desktop-application,java,interactive,java-swing,mozilla-rhino
2023-01-29T03:55:48Z
2023-01-29T05:18:28Z
null
1
0
224
0
0
2
null
Apache-2.0
Java
vikas917477/Python-Assignments
main
Assignments Projects
First Step In The World Of AI.
data-mining,data-science,data-structures,data-visualization,bootstrap,css,django-framework,html,javascript,python
2023-02-02T09:12:39Z
2023-03-26T17:06:00Z
null
1
0
16
0
0
2
null
null
Jupyter Notebook
daoraCode/themoviedb
dev
# 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 the browser. The page will reload if you make edits.\ You will 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/).
A React app using TheMovieDB API - ranking of the most popular movie productions
axios,frontend,react,react-router-dom,api,javascript,typescript
2023-02-09T12:14:31Z
2023-03-10T11:43:39Z
null
4
14
60
0
2
2
null
null
TypeScript
mai-ogiso/Ghibli_Movies_App
main
# Ghibli Movies App Do you love Ghibli movies? In this app, you can compare the English version with the original (Japanese) one. [Ghibli_Movie_Short.webm](https://user-images.githubusercontent.com/95740190/202062532-6c75efde-77f1-4852-9ce0-969f099329d7.webm) ## How It's Made: **Tech used:** HTML, CSS, vanilla JavaScript, and Node.js (for implementing the serverless function on Netlify). ## Optimizations For those who are big fans of Ghibli movies and want to learn English or Japanese, this app could be a great tool for language learning. Example: - "spirit away" in English --> "神隠し" (Kamikakushi) in Japanese - "princess" in English --> "姫" (hime) in Japanese When I improve this app, I would add a dictionary function that can compare/translate English with Japanese. ## Lessons Learned: 1. While creating this app, I learned about Object-Oriented Programming (OOP) and asynchronous programming concepts such as async/await and promises. 2. I developed this app using the OOP concept, with a focus on encapsulation to create separate English and Japanese versions of the object. In case there is a need to add new movie items to this app, the code can be easily modified. 3. After completing the development of this app, I deployed it on Netlify and gained experience in using serverless functions. ## System Architecture: 1. To maintain the security of my API key, I stored it on Netlify, making it hidden and secure. 2. I used a serverless function on Netlify to retrieve the API key, ensuring a secure and seamless integration. ![system_diagram drawio](https://user-images.githubusercontent.com/95740190/220740788-8b9d1086-6fea-4b84-9b30-e65c6d845317.svg)
Do you love Ghibli movies? In this app, you can compare the English version with the original (Japanese) one.
css,ghibli,html,javascript,tmdb-api,animation,ghibli-fans
2023-02-08T19:56:01Z
2023-02-22T19:40:05Z
null
1
4
29
0
0
2
null
null
JavaScript
fshmidt/Game-Site
main
# Мини-игра с регистрацией Eugenes.world <!-- ToC start --> # Содержание 1. [Описание](#Описание) 1. [Реализация](#Реализация) 1. [Endpoints](#Endpoints) 1. [Запуск](#Запуск) 1. [Примеры](#Примеры) <!-- ToC end --> # Описание Сайт с игрой на зрительную память, написанной на JavaScript, Сервисом Аутентификации и Авторизации, написанном на Vue3, backend-ом, написанном на Golang, через который оба фронта подключаются к контейнезированной бд на Postgres, а так же Vue3 подключается к контейнезированному Redis и облачному хранилищу Google Cloud. Все 6 контейнеров общаются через reverse-proxy. Посмотреть и поиграть: [eugenes.world](http://eugenes.world). # Реализация - Следование дизайну REST API. - Подход "Чистой Архитектуры" и техника внедрения зависимости. - Частичное покрытие юнит-тестами. - Работа с фреймворком [gin-gonic/gin](https://github.com/gin-gonic/gin). - Работа с СУБД Postgres с использованием библиотеки [sqlx](https://github.com/jmoiron/sqlx) и написанием SQL запросов. - Работа с Redis для хранения токенов авторизации. - Реализация коротких одноразовых и долгих обновляемых токенов авторизации. - Работа с JWT. - Работа с API Google Cloud. - SPA-приложение для авторизации и редактирования аватарки с использованием фрейворка Vue3. - Запуск из Docker. **Структура проекта:** ``` . ├── pkg │ ├── handler // обработчики запросов │ │ └── middleware // middleware для отслеживания авторизации │ ├── service // бизнес-логика │ └── repository // взаимодействие с БД и облачным хранилищем ├── cmd // точка входа в приложение ├── migrations // SQL файлы с миграциями ├── models // модели и интерфейсы │ ├── apperrors // обработчики ошибок │ └── mocks // моки ├── account-client // SPA-приложение для Авторизации на Vue3 ├── parallax // html/Js/CSS игра-сайт и использованием эффекта parallax ``` # Endpoints - GET /api/account/me - получение сведений о пользователе - Тело запроса: - email - почта пользователя - password - хешированный пароль пользователя - GET /api/account/topscorers - получение списка ТОП-7 пользователей по результатам игры - PUT /api/account/details - изменение данных пользователя - Тело запроса: - email - почта пользователя(обязательно) - username - имя пользователя - score - результат пользователя - image_url - ссылка на аватар пользователя - website - сайт пользователя - password - хэшированный пароль пользователя - POST /api/account/tokens - обновление 3-хдневного токена - Тело запроса: - refreshToken - 3-хдневный обновляемый авторизационный токен - POST /api/account/image - загрузка картинки пользователя - Тело запроса: - form-data - imageFile - файл картинки - POST /api/account/signout - выход пользователя с сайта, удаление всех текущих авторизационных токенов - Тело запроса: - refreshToken - 3-хдневный обновляемый авторизационный токен - POST /api/account/signup - регистратрация нового пользователя - Тело запроса: - email - почта пользователя - username - имя пользователя - password - хэшированный пароль пользователя - POST /api/account/signin - вход пользователя в свою учетную запись - Тело запроса: - email - почта пользователя - password - хэшированный пароль пользователя - DELETE /api/account/image - удаление картинки пользователя # Запуск ``` docker compose up ``` Если приложение запускается впервые, необходимо инициировать создание приватного и публичного ключа и запустить миграции к базе данных: ``` make init ``` # Примеры Запросы сгенерированы из Postman. ### 1. GET /api/account/me **Тело ответа:** ``` { "user": { "uid": "7327af01-c8bc-466c-9bfa-fa144bdb2f77", "email": "bob@bob.com", "username": "dob", "imageUrl": "", "website": "", "score": 0 } } ``` ### 2. GET /api/account/topscorers **Запрос:** **Тело ответа:** ``` { "topscorers": [ { "uid": "00000000-0000-0000-0000-000000000000", "email": "", "username": "bob", "imageUrl": "", "website": "", "score": 42 }, { "uid": "00000000-0000-0000-0000-000000000000", "email": "", "username": "tom", "imageUrl": "", "website": "", "score": 20 }, { "uid": "00000000-0000-0000-0000-000000000000", "email": "", "username": "dob", "imageUrl": "", "website": "", "score": 8 } ] } ``` ### 3. PUT /api/account/details **Тело запроса:** ``` { "email": "bob@bob.com", "score" : 100 } ``` **Тело ответа:** ``` { "user": { "uid": "7327af01-c8bc-466c-9bfa-fa144bdb2f77", "email": "bob@bob.com", "username": "", "imageUrl": "", "website": "", "score": 100 } } ``` ### 3. POST /api/account/signup **Тело запроса:** ``` { "username": "bob", "email": "bob@bob.com", "password":"password" } ``` **Тело ответа:** ``` { "tokens": { "idToken": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjp7InVpZCI6IjczMjdhZjAxLWM4YmMtNDY2Yy05YmZhLWZhMTQ0YmRiMmY3NyIsImVtYWlsIjoiYm9iQGJvYi5jb20iLCJ1c2VybmFtZSI6ImRvYiIsImltYWdlVXJsIjoiIiwid2Vic2l0ZSI6IiIsInNjb3JlIjowfSwiZXhwIjoxNjc3MzA4Nzc5LCJpYXQiOjE2NzczMDc4Nzl9.gV8X4FrOW1KmFq4h-J2vGyPQio0zb2bNmZCLZxZCoierwL9BFf9_f3e0DqoT-D3X6rVLmsZigrIw94nmbqdLO66Niil69c6oCR1gWA4aJNAdJZ38d3BgXaABvRsmgwTvAXcbqahA3nU7vObm9oEL5Dg6ENBInybFPhY6rJUb_nNT7yuEWmjOKyxbb9yorqDFYSRMdWOWddQ0netS2xJCW4S382dC_g6InJlCdfSdLABFNavXEpIgsMf0O0KKWsPTJ_JlatIQIZpLfu-ItJER5NHzivXCLJpMWjGjUqEX7RnGBLzIhZ75Ecl3euqbW4Nbt8VrOYHP4VW8m3dUmmi4pw", "refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1aWQiOiI3MzI3YWYwMS1jOGJjLTQ2NmMtOWJmYS1mYTE0NGJkYjJmNzciLCJleHAiOjE2Nzc1NjcwNzksImp0aSI6Ijc5Y2ZlNTViLTM5M2YtNDY3MS1iNDNhLWU5MDY4YzNjN2EzNCIsImlhdCI6MTY3NzMwNzg3OX0.k9uEVIovZulwAr3pw0-2EerHaaPS7-wZV0Diat86LPE" } } ``` ### 4. POST /api/account/signout **Тело ответа:** ``` { "message": "user signed out successfully!" } ``` ### 5. POST /api/account/signin **Тело запроса:** ``` { "email": "bob@bob.com", "password":"password" } ``` **Тело ответа:** ``` { "tokens": { "idToken": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjp7InVpZCI6IjczMjdhZjAxLWM4YmMtNDY2Yy05YmZhLWZhMTQ0YmRiMmY3NyIsImVtYWlsIjoiYm9iQGJvYi5jb20iLCJ1c2VybmFtZSI6IiIsImltYWdlVXJsIjoiIiwid2Vic2l0ZSI6IiIsInNjb3JlIjoxMDB9LCJleHAiOjE2NzczMDk2NTAsImlhdCI6MTY3NzMwODc1MH0.Kl6FFDaomn3I0N6o9Bp10kAo3PfTOKMGWpkiEomW9ocFuNQdvdaR35CjyJ6bzQSTCtOp_iZ8-gVFzIwQ1R_CIufsYqhwEgvxk6wLNkis8sEDDW64wgSU93hbN91TJ-RI8ElDnCmkBtRHlHHVjJjWp5EjkEs9uZM8gmCydMgJp1ML9mkgaKdq6tnjpDCQDDsjx_f21XoPmSeU8B-j1ZInCUPY4h-Xl2xZeNYwzbHn7-QDrRbiAFxjaEWbRs7DRaKOlevctRybtyjVMex23_f_yTelWip7XwYB1yu6F37cculjF_Zn6d_aveAb0ptTiLVK5AWPzkr7aUwYcEtvavFTmA", "refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1aWQiOiI3MzI3YWYwMS1jOGJjLTQ2NmMtOWJmYS1mYTE0NGJkYjJmNzciLCJleHAiOjE2Nzc1Njc5NTAsImp0aSI6IjEwZjE1MzAwLWZlYTctNGIzNC05MTdmLTkzMzZkM2FmM2Y2YSIsImlhdCI6MTY3NzMwODc1MH0.DWRyzwl35IipuyfJ6-oz0GnXm6Bvz-JD5lxpRhp_jX0" } } ``` ### 6. POST /api/account/tokens **Тело запроса:** ``` { "refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1aWQiOiI3MzI3YWYwMS1jOGJjLTQ2NmMtOWJmYS1mYTE0NGJkYjJmNzciLCJleHAiOjE2Nzc1Njc5NTAsImp0aSI6IjEwZjE1MzAwLWZlYTctNGIzNC05MTdmLTkzMzZkM2FmM2Y2YSIsImlhdCI6MTY3NzMwODc1MH0.DWRyzwl35IipuyfJ6-oz0GnXm6Bvz-JD5lxpRhp_jX0" } ``` **Тело ответа:** ``` { "tokens": { "idToken": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjp7InVpZCI6IjczMjdhZjAxLWM4YmMtNDY2Yy05YmZhLWZhMTQ0YmRiMmY3NyIsImVtYWlsIjoiYm9iQGJvYi5jb20iLCJ1c2VybmFtZSI6IiIsImltYWdlVXJsIjoiIiwid2Vic2l0ZSI6IiIsInNjb3JlIjoxMDB9LCJleHAiOjE2NzczMDk3ODAsImlhdCI6MTY3NzMwODg4MH0.OQW0MPD3QLf58RB404vVWMpbhaJPy0-E36wHVof25YYK9MDVnDLmJ6Vyv3WAeV6Byjq1XgDE23bT6rv7gn8MQXNPiVdpIqdWLEorgwerd4Af35OGcITrInRyCHG02jGBqpShXmMGDqLDZLDkuaUVA4X1ed1b_0OydmuenanY4nDFxAzPYmjWcjIOKdvERvLpCGGjbj4b2FtRnlxETdSdjdEUTs4dnA-HjTuMVX-bIII1SbT6ii6wTnZRjkp8MDfgXCzycVI5ndjt-iL_ce8aXsz-F3RXh7kyOTCwu9gUsAr9V2hVH2dxc-ojyyIiXNPHEtgCSe1DDe1GBsevbY4IFA", "refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1aWQiOiI3MzI3YWYwMS1jOGJjLTQ2NmMtOWJmYS1mYTE0NGJkYjJmNzciLCJleHAiOjE2Nzc1NjgwODAsImp0aSI6IjgzYzgzN2YxLTNkNDMtNDhjOC05NDUyLTk1ZjEyNTQ0NjM4MiIsImlhdCI6MTY3NzMwODg4MH0.6V-IAKAxzSRS2RupOg29iTHzKzNTCNK_9mxIAaVeYVY" } } ``` ### 7. POST /api/account/image **Тело запроса:** ``` form-data - imageFile ``` **Тело ответа:** ``` { "imageUrl": "https://storage.googleapis.com/gamesite_profile_images/d0b377db-f504-40ea-9866-130bc410a48c", "message": "success" } ``` ### 8. DELETE /api/account/image **Тело ответа:** ``` { "message": "success" } ```
6 containerized services (Go backend, Postgres DB, Redis DB, Vue3 Account client, html/js/css Game App & Traefik) work together for Autentificate, Authorize, Update Profile details, Save profile picture in Google Cloud Storage & Edit it at Frontend side. Now there's a second gaming Front-end.
api,docker-compose,full-stack,gin,golang,google-cloud-storage,jwt-authentication,makefile,postgresql,redis
2023-02-08T17:10:48Z
2023-02-25T07:15:15Z
null
1
0
5
0
0
2
null
null
JavaScript
TylrPopcorn/The-Grid-Class-Based-
main
# The-Grid (CLASS BASED) Created using React.js This is a practice example using class based components in React.js -- -- -- **HOW TO PLAY:** 1. Simply use the keypad to move the letter "T" in any direction. 2. Count up how many times you can move the hexagon. 3. After you have finished, submit your result using the form. <img width="787" alt="Screenshot 2023-02-10 at 4 47 23 PM" src="https://user-images.githubusercontent.com/104395322/218205114-b60b64f8-d942-4c66-81cf-3fed0695f81d.png"> Check out the **funcatonal based** grid: https://github.com/TylrPopcorn/The-Grid-Functional-based-
A grid application built using class based react.js components
action-creators,css,html,javascript,reactjs,reducer,redux,class-based-components
2023-02-06T13:10:12Z
2023-02-13T12:52:54Z
null
1
0
20
0
0
2
null
null
JavaScript
mithunsen04/Shop.com_Clone
main
# Shop.com_Clone
This is the clone of Shop.com which provide deals on clothes, beauty, shoes & electronics
bootstrap,css,html,javascript,npm,telwind-css
2023-02-04T19:05:35Z
2023-02-12T11:31:35Z
null
4
5
20
0
0
2
null
null
HTML
dericking01/Vose
master
# Vose This is a hotel's website
This is a hotel's website
bootstrap5,html-css,javascript
2023-02-03T18:22:11Z
2023-02-03T18:24:03Z
null
1
0
2
0
0
2
null
MIT
CSS
InnocentRoot/SieveOfEratosthenes
main
# Sieve of Eratosthenes >Sift the Two's and Sift the Three's: The Sieve of Eratosthenes. When the multiples sublime, The numbers that remain are Prime. [Wikipedia](https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes). # How to compile and run 1. Clone the repository `git clone https://github.com/InnocentRoot/SieveOfEratosthenes`. 2. Install dependencies `cd SieveOfEratosthenes && yarn install` 4. Run `yarn run dev`
null
algorithm,javascript,sieve-of-eratosthenes,sieve-of-eratosthenes-prime-numbers,sieveoferatosthenes,svelte
2023-02-04T22:40:55Z
2023-02-15T00:12:57Z
null
2
1
8
0
1
2
null
MIT
Svelte
Inna-Mykytiuk/goit-js-hw-08
main
# Parcel template Этот проект был создан при помощи Parcel. Для знакомства и настройки дополнительных возможностей [обратись к документации](https://parceljs.org/). ## Подготовка нового проекта 1. Убедись что на компьютере установлена LTS-версия Node.js. [Скачай и установи](https://nodejs.org/en/) её если необходимо. 2. Склонируй этот репозиторий. 3. Измени имя папки с `parcel-project-template` на имя своего проекта. 4. Создай новый пустой репозиторий на GitHub. 5. Открой проект в VSCode, запусти терминал и свяжи проект с GitHub-репозиторием [по инструкции](https://docs.github.com/en/get-started/getting-started-with-git/managing-remote-repositories#changing-a-remote-repositorys-url). 6. Установи зависимости проекта в терминале командой `npm install` . 7. Запусти режим разработки, выполнив команду `npm start`. 8. Перейди в браузере по адресу [http://localhost:1234](http://localhost:1234). Эта страница будет автоматически перезагружаться после сохранения изменений в файлах проекта. ## Файлы и папки - Все паршалы файлов стилей должны лежать в папке `src/sass` и импортироваться в файлы стилей страниц. Например, для `index.html` файл стилей называется `index.scss`. - Изображения добавляй в папку `src/images`. Сборщик оптимизирует их, но только при деплое продакшн версии проекта. Все это происходит в облаке, чтобы не нагружать твой компьютер, так как на слабых машинах это может занять много времени. ## Деплой Для настройки деплоя проекта необходимо выполнить несколько дополнительных шагов по настройке твоего репозитория. Зайди во вкладку `Settings` и в подсекции `Actions` выбери выбери пункт `General`. ![GitHub actions settings](./assets/actions-config-step-1.png) Пролистай страницу до последней секции, в которой убедись что выбраны опции как на следующем изображении и нажми `Save`. Без этих настроек у сборки будет недостаточно прав для автоматизации процесса деплоя. ![GitHub actions settings](./assets/actions-config-step-2.png) Продакшн версия проекта будет автоматически собираться и деплоиться на GitHub Pages, в ветку `gh-pages`, каждый раз когда обновляется ветка `main`. Например, после прямого пуша или принятого пул-реквеста. Для этого необходимо в файле `package.json` отредактировать поле `homepage` и скрипт `build`, заменив `your_username` и `your_repo_name` на свои, и отправить изменения на GitHub. ```json "homepage": "https://your_username.github.io/your_repo_name/", "scripts": { "build": "parcel build src/*.html --public-url /your_repo_name/" }, ``` Далее необходимо зайти в настройки GitHub-репозитория (`Settings` > `Pages`) и выставить раздачу продакшн версии файлов из папки `/root` ветки `gh-pages`, если это небыло сделано автоматически. ![GitHub Pages settings](./assets/repo-settings.png) ### Статус деплоя Статус деплоя крайнего коммита отображается иконкой возле его идентификатора. - **Желтый цвет** - выполняется сборка и деплой проекта. - **Зеленый цвет** - деплой завершился успешно. - **Красный цвет** - во время линтинга, сборки или деплоя произошла ошибка. Более детальную информацию о статусе можно посмотреть кликнув по иконке, и в выпадающем окне перейти по ссылке `Details`. ![Deployment status](./assets/status.png) ### Живая страница Через какое-то время, обычно пару минут, живую страницу можно будет посмотреть по адресу указанному в отредактированном свойстве `homepage`. Например, вот ссылка на живую версию для этого репозитория [https://goitacademy.github.io/parcel-project-template](https://goitacademy.github.io/parcel-project-template). Если открывается пустая страница, убедись что во вкладке `Console` нет ошибок связанных с неправильными путями к CSS и JS файлам проекта (**404**). Скорее всего у тебя неправильное значение свойства `homepage` или скрипта `build` в файле `package.json`. ## Как это работает ![How it works](./assets/how-it-works.png) 1. После каждого пуша в ветку `main` GitHub-репозитория, запускается специальный скрипт (GitHub Action) из файла `.github/workflows/deploy.yml`. 2. Все файлы репозитория копируются на сервер, где проект инициализируется и проходит сборку перед деплоем. 3. Если все шаги прошли успешно, собранная продакшн версия файлов проекта отправляется в ветку `gh-pages`. В противном случае, в логе выполнения скрипта будет указано в чем проблема.
null
css,javascript,parcel,sass
2023-01-29T08:07:52Z
2023-02-26T13:05:33Z
null
1
0
11
0
0
2
null
null
JavaScript
vikarmaulanaarrisyad/sistem-informasi-inventory-gudang-spbu-laravel
main
<p align="center"><a href="https://laravel.com" target="_blank"><img src="https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg" width="400" alt="Laravel Logo"></a></p> <p align="center"> <a href="https://github.com/laravel/framework/actions"><img src="https://github.com/laravel/framework/workflows/tests/badge.svg" alt="Build Status"></a> <a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/dt/laravel/framework" alt="Total Downloads"></a> <a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/v/laravel/framework" alt="Latest Stable Version"></a> <a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/l/laravel/framework" alt="License"></a> </p> ## About Laravel Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as: - [Simple, fast routing engine](https://laravel.com/docs/routing). - [Powerful dependency injection container](https://laravel.com/docs/container). - Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage. - Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent). - Database agnostic [schema migrations](https://laravel.com/docs/migrations). - [Robust background job processing](https://laravel.com/docs/queues). - [Real-time event broadcasting](https://laravel.com/docs/broadcasting). Laravel is accessible, powerful, and provides tools required for large, robust applications. ## Learning Laravel Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch. If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 2000 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library. ## Laravel Sponsors We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel [Patreon page](https://patreon.com/taylorotwell). ### Premium Partners - **[Vehikl](https://vehikl.com/)** - **[Tighten Co.](https://tighten.co)** - **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** - **[64 Robots](https://64robots.com)** - **[Cubet Techno Labs](https://cubettech.com)** - **[Cyber-Duck](https://cyber-duck.co.uk)** - **[Many](https://www.many.co.uk)** - **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)** - **[DevSquad](https://devsquad.com)** - **[Curotec](https://www.curotec.com/services/technologies/laravel/)** - **[OP.GG](https://op.gg)** - **[WebReinvent](https://webreinvent.com/?utm_source=laravel&utm_medium=github&utm_campaign=patreon-sponsors)** - **[Lendio](https://lendio.com)** ## Contributing Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions). ## Code of Conduct In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct). ## Security Vulnerabilities If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed. ## License The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
Aplikasi Sistem Informasi Inventory Gudang SPBU ini dibangun menggunakan framework Laravel versi 9 dengan PHP Versi 8.1 versi terbaru.
adminlte,bootstrap,javascript,jquery-ajax,laravel9
2023-01-29T12:47:08Z
2023-01-31T08:55:23Z
null
1
0
2
0
0
2
null
null
PHP
jurandi1/desafios-7daysOfCode-logica-js
main
![logo](https://user-images.githubusercontent.com/105133847/216786665-d771e31b-ae29-467f-ad9e-1b9f38ae9e8b.png#vitrinedev) <h2 align="left"> #7DaysOfCode: Um mergulho em Lógica de Programação com JavaScript </h2> <h2>Índice</h2> * [Introdução](#Introdução) * [Desafio 1](#Desafio-1) * [Desafio 2](#Desafio-2) * [Desafio 3](#Desafio-3) * [Desafio 4](#Desafio-4) * [Desafio 5](#Desafio-5) * [Desafio 6](#Desafio-6) * [Desafio 7](#Desafio-7) * [Ferramentas utilizadas](#Ferramentas-utilizadas) * [Acesso ao projeto completo](#Acesso-ao-projeto-completo) * [Abrir e rodar o projeto](#Abrir-e-rodar-o-projeto) * [Desenvolvedor](#Desenvolvedor) <h2>Introdução</h2> O projeto consiste em 7 desafios de Lógica com Javascript propostos pela instrutora [Rafaella Ballerini](https://github.com/rafaballerini) da [Alura](https://cursos.alura.com.br/formacao-programacao-v123948). Criei algoritmos para resolver os problemas usando variáveis, condicionais e estruturas de loop. Utilizei pastas para separar cada desafio no código e abaixo você pode conferir cada um deles e seu funcionamento, reproduzi alguns vídeos mostrando os projetos em execução. <h2>Desafio 1</h2> Lógica JS 1/7: Operações Booleanas Este desafio consiste em treinar a operação de igualdade entre valores usando a comparação ideal para obter o melhor retorno. ![desafio1](https://user-images.githubusercontent.com/105133847/216788334-71463620-e166-43f8-97e2-cdd5e2a6200c.PNG) Você pode acessar o código fonte desse desafio clicando [Aqui](https://github.com/jurandi1/Desafios-7DaysOfCode-Logica-JS/blob/main/desafio1-operacoes-booleanas/app.js). Para saber mais sobre como o problema foi resolvido clique [aqui](https://www.alura.com.br/artigos/operadores-matematicos-em-javascript?gclid=Cj0KCQiA_8OPBhDtARIsAKQu0gYUqZqgonpXyEP1_hpUl58wYAk_P3Ze4VWrxo9ftkFW9CLYOMyjO1caAlrzEALw_wcB&utm_source=ActiveCampaign&utm_medium=email&utm_content=%237DaysOfCode+-+L%C3%B3gica+JS+1%2F7%3A+Opera%C3%A7%C3%B5es+Booleanas&utm_campaign=%5BALURA+%237days+Of+Code%5D+%28L%C3%B3gica+de+Programa%C3%A7%C3%A3o+-+JavaScript%29+Dia+1%3A+Comparando+Valores&vgo_ee=M0Vn3BPYFjtqTG9U43MIOL35hO7C%2FF3J%2FgQB9Uu3XAY%3D). <h2>Desafio 2</h2> Lógica JS 2/7: Variáveis Sabe quando você se cadastra em um site e, logo em seguida, quando faz o seu login, ele já te chama pelo seu nome? Está foi a proposta do desafio e é o que foi feito aqui utilizando as variáveis do JavaScript. Abaixo segue um vídeo demonstrando o código em execução: https://user-images.githubusercontent.com/105133847/216789635-d81f3e31-e995-4d4d-abd4-ec96c3242c54.mp4 Você pode acessar o código do projeto clicando [aqui](https://github.com/jurandi1/Desafios-7DaysOfCode-Logica-JS/blob/main/desafio2-variaveis/app.js) <h2>Desafio 3</h2> Lógica JS 3/7: Fluxo de decisão Neste desafio foi utilizado estruturas de controle de fluxo. Esse jeito complicado de falar só quer dizer que, assim como nos jogos, a história que você montar precisa se adaptar às respostas dadas por quem está jogando. Assim como no projeto anterior, fazemos algumas perguntas ao usuário só que alterando o final conforme a resposta informada. Abaixo segue um vídeo demonstrando o código em execução: https://user-images.githubusercontent.com/105133847/216789691-979e5bd6-1332-44c3-9de5-a46ec01e8a7d.mp4 Você pode acessar o código do projeto clicando [aqui](https://github.com/jurandi1/Desafios-7DaysOfCode-Logica-JS/blob/main/desafio3-fluxo-de-decisao/app.js). <h2>Desafio 4</h2> Lógica JS 4/7: Fluxo de decisão Você já brincou de tentar adivinhar o número que seu amigo ou amiga estava pensando? Neste desafio foi construido um código que faz exatamente isso. Mas agora, o jogo vai ser contra o próprio computador! Criar um programa que começa com um valor específico pré-definido entre 0 a 10 para o número que você vai adivinhar (7, por exemplo). Caso erre, teremos mais 2 tentativas. O código foi construído utlizizando [estruturas de repetição](https://developer.mozilla.org/pt-BR/docs/Web/JavaScript/Guide/Loops_and_iteration?utm_source=ActiveCampaign&utm_medium=email&utm_content=%237DaysOfCode+-+L%C3%B3gica+JS+4%2F7%3A+%F0%9F%91%A9%F0%9F%8F%BD%E2%80%8D%F0%9F%92%BB+Mais+loops+e+randomiza%C3%A7%C3%A3o&utm_campaign=%5BALURA+%237days+Of+Code%5D+%28L%C3%B3gica+de+Programa%C3%A7%C3%A3o+-+JavaScript%29+Dia+4%3A+Mais+loops+e+randomiza%C3%A7%C3%A3o) e a função [Math.random()](https://developer.mozilla.org/pt-BR/docs/Web/JavaScript/Reference/Global_Objects/Math/random?utm_source=ActiveCampaign&utm_medium=email&utm_content=%237DaysOfCode+-+L%C3%B3gica+JS+4%2F7%3A+%F0%9F%91%A9%F0%9F%8F%BD%E2%80%8D%F0%9F%92%BB+Mais+loops+e+randomiza%C3%A7%C3%A3o&utm_campaign=%5BALURA+%237days+Of+Code%5D+%28L%C3%B3gica+de+Programa%C3%A7%C3%A3o+-+JavaScript%29+Dia+4%3A+Mais+loops+e+randomiza%C3%A7%C3%A3o). Abaixo segue um vídeo demonstrando o código em execução: https://user-images.githubusercontent.com/105133847/216792991-31373d1a-0c60-4ef3-a633-ec7aecbfd561.mp4 Você pode acessar o código do projeto clicando [aqui](https://github.com/jurandi1/Desafios-7DaysOfCode-Logica-JS/blob/main/desafio4-loops-e-randomizacao/app.js). <h2>Desafio 5</h2> Lógica JS 5/7: Arrays e coleções Sabe quando você vai no supermercado com uma lista de compras e acaba ficando indo e voltando nos mesmos corredores até completar a lista? Você precisa de uma maçã e vai para a área de frutas. O próximo item é um leite e você segue para os laticínios. Mas em seguida você anotou a pêra, e precisa novamente retornar para a área de frutas. Construí um código que organiza cada item listando eles conforme a sua categoria, utilizando [Arrays](https://developer.mozilla.org/pt-BR/docs/Web/JavaScript/Reference/Global_Objects/Array?utm_source=ActiveCampaign&utm_medium=email&utm_content=%237DaysOfCode+-+L%C3%B3gica+JS+5%2F7%3A+Arrays+e+cole%C3%A7%C3%B5es&utm_campaign=%5BALURA+%237days+Of+Code%5D+%28L%C3%B3gica+de+Programa%C3%A7%C3%A3o+-+JavaScript%29+Dia+5%3A+Arrays+e+cole%C3%A7%C3%B5es) para melhor resolver o problema. Abaixo segue um vídeo demonstrando o código em execução: https://user-images.githubusercontent.com/105133847/216790856-396e2078-bed9-4b94-a0d6-b6dac9826f09.mp4 Você pode acessar o código do projeto clicando [aqui](https://github.com/jurandi1/Desafios-7DaysOfCode-Logica-JS/blob/main/desafio5-arrays-e-colecoes/app.js). <h2>Desafio 6</h2> Lógica JS 6/7: Remoção de Arrays Reaproveitando o programa mostrado a cima que criei para montar a sua lista de compras. Ainda trabalhando com arrays, outra operação muito comum, além de adicionar itens na lista é a de remoção de itens da lista e é que foi feito. Utilizando o método .indexOf(elemento) para complementar o código e adicionar a função remover ao nosso projeto. Abaixo segue um vídeo demonstrando o código em execução: https://user-images.githubusercontent.com/105133847/216791338-d02bd4fb-6d8e-45c0-91da-ec429655c855.mp4 Você pode acessar o código do projeto clicando [aqui](https://github.com/jurandi1/Desafios-7DaysOfCode-Logica-JS/blob/main/desafio6-arrays/app.js). <h2>Desafio 7</h2> Lógica JS 7/7: Funções em Javascript Você já parou para pensar como uma calculadora funciona? Ela pede para você digitar um número, depois você seleciona um tipo de operação, um outro número, e ela faz sozinha o cálculo para te mostrar o resultado! Neste último desafio,criei minha própria calculadora, com as opções de soma, subtração, multiplicação, divisão, resto da divisão e sair. Onde cada operação foi desenvolvida com uma função diferente no código. Saiba mais sobre [funções](https://developer.mozilla.org/pt-BR/docs/Web/JavaScript/Guide/Functions?utm_source=ActiveCampaign&utm_medium=email&utm_content=%237DaysOfCode+-+L%C3%B3gica+JS+7%2F7%3A+Fun%C3%A7%C3%B5es+em+Javascript&utm_campaign=%5BALURA+%237days+Of+Code%5D+%28L%C3%B3gica+de+Programa%C3%A7%C3%A3o+-+JavaScript%29+Dia+7%3A+Fun%C3%A7%C3%B5es+em+Javascript). Abaixo segue um vídeo demonstrando o código em execução: https://user-images.githubusercontent.com/105133847/216791961-b9dbbf3e-91db-4021-a3c7-ecb84e900f88.mp4 Você pode acessar o código do projeto clicando [aqui](https://github.com/jurandi1/Desafios-7DaysOfCode-Logica-JS/blob/main/desafio7-funcoes/app.js). <h2>Ferramentas utilizadas</h2> <a href="https://github.com/jurandi1/Desafios-7DaysOfCode-Logica-JS"> <img align="center" alt="Junior-Js" height="30" width="40" src="https://raw.githubusercontent.com/devicons/devicon/master/icons/javascript/javascript-plain.svg"> <a href="https://github.com/jurandi1/Desafios-7DaysOfCode-Logica-JS"> <img align="center" alt="Junior-HTML" height="30" width="40" src="https://raw.githubusercontent.com/devicons/devicon/master/icons/html5/html5-original.svg"> <a href="https://github.com/jurandi1/Desafios-7DaysOfCode-Logica-JS"> <img align="center" alt="Junior-CSS" height="30" width="40" src="https://raw.githubusercontent.com/devicons/devicon/master/icons/css3/css3-original.svg"> <a href="https://github.com/jurandi1/Desafios-7DaysOfCode-Logica-JS"> <img align="center" alt="Junior-CSS" height="30" width="40" src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/vscode/vscode-original.svg"> <h2>Acesso ao projeto completo</h2> Você pode [baixá-lo](https://github.com/jurandi1/Desafios-7DaysOfCode-Logica-JS/archive/refs/heads/main.zip). <h2>Abrir e rodar o projeto</h2> Após baixar o projeto, você pode acessa-lo localizando na pasta de cada desafio o arquivo index.html. Então o projeto será aberto no seu navegador padrão e você pode testar o projeto desenvolvido e suas funcionalidades. <h2>Desenvolvedor</h2> [<img src="https://user-images.githubusercontent.com/105133847/215238362-763c8d76-55d2-4fd0-8b5f-f7080fbc4114.jpg" width=115><br><sub>Jurandi Junior</sub>](https://github.com/jurandi1)
O projeto consiste em 7 desafios de Lógica de programação com a linguagem de programação Javascript propostos na Alura.
css,html,javascript,vitrinidev,alura
2023-02-03T00:55:55Z
2023-02-21T23:34:12Z
null
1
0
13
0
1
2
null
null
JavaScript
nirav-r-p/anyRadix.github.io
main
# Number System conversion The Number Conversion System application that allows users to convert numbers from one numeral system to another. It currently supports the following numeral systems: * Binary (base 2) * Decimal (base 10) * Octal (base 8) * Hexadecimal (base 16) * Also between 2 to 16 *** This website support floating point conversion. # ScreenShorts ![Number-conversion](https://user-images.githubusercontent.com/102569690/235364006-13853cbb-a72f-4dec-905b-2e15819f0266.png) ## Example ![Number-conversion1](https://user-images.githubusercontent.com/102569690/235364086-8e26c40b-8ac3-4589-b795-6c02e6163cd8.png) Hear also right side of screen you can see full conversion in step wise. <br> In near future I also add conversion for nagetive number system and compliment of number system(ex: 1's ,2's compliment)
A simple website that shows how a number system works and how to convert one number system to another in step-wise steps
css,html5,javascript,logical-programming
2023-02-02T17:50:48Z
2023-04-30T16:57:05Z
null
1
0
15
0
0
2
null
null
JavaScript
YetNT/ump
main
# Useless Math Package I mean.. Do you really need this soon to be multi mathemetically functioning package? (if that even makes sense) # Installation ```bash npm i @yetnt/ump sudo npm install @yetnt/ump yarn add @yetnt/ump ``` > _It's suggested you don't install from github itself as I'm consistently commiting to the project you'll need to update everyday and because some code breaks because i'm editing it so just get it from npm :+1:_ ```js const Ump = require("@yetnt/ump"); Ump.primeFactorize(); ``` or ```js const { primeFactorize } = require("@yetnt/ump"); primeFactorize(); ``` # Features ## `primeFactorize` Prime Factorization ### Parameters - `num`: The number to be factorized ```js const { primeFactorize } = require("@yetnt/ump"); primeFactorize(50); // [2, 5, 5] primeFactorize(5000); // [2, 2, 2, 5, 5, 5, 5] primeFactorize(93928893); // [3, 17, 103, 17881] primeFactorize(3); // [3] ``` ## Ratio(s) ### `dinRatio` Divide `x` in the ratio of `y`:`z` #### Parameters - `x`: Dividend - `y`: The ratio value for y - `z`: The ratio value for z - `round`**(optional)**: Round off to 2 decimal places ```js const { dinRatio } = require("@yetnt/ump"); dinRatio(500, 3, 2); // [300, 200] dinRatio(456.93, 12, 5); // [ 322.5388235294118, 134.39117647058825 ] dinRatio(456.93, 12, 5, true); // ['322.54', '134.39'] ``` ### `propRatio` Direct Proportion (equivalent ratios) Calculates the proportional value of `x`, `y`, and `z` in a ratio. #### Parameters - `x`: The x value in the ratio - `y`: The y value in the ratio - `z`: The z value in the ratio - `which`**(optional)**: Switch unknown value and z ```js const { propRatio } = require("@yetnt/ump"); propRatio(2, 4, 6, true); // 12 /* x : y z : ? in this case: 2 : 4 6 : ? */ propRatio(2, 6, 12); // 4 /* x : y ? : z in this case 2 : 6 ? : 12 */ ``` ## Conversion ### Parameters The parameters stay the same for every function. - `n`: The value to be converted - `from`: Current area unit -`to`: Area unit to convert to. Each function comes with it's own enums for the area unit strings. ### Distance ```js const { Convert, Distance } = require("@yetnt/ump"); Convert.distance(12, Distance.Millimeter, Distance.Centimeter); // 1.2 Convert.distance(1, Distance.Inch, Distance.Centimeter); // 2.54 Convert.distance(98, Distance.NauticalMile, Distance.Nanometer); // 1852000000000 ``` ### Area ```js const { Convert, Area } = require("@yetnt/ump"); Convert.area(34, Area.SquareCentimetre, Area.SquareInch); // 5.27001054002108 Convert.area(34, "cm2", "inch2"); // 5.27001054002108 Convert.area(490, Area.Hectare, Area.SquareFoot); // 52743183.75079384 ``` ### Volume ```js const { Convert, Volume } = require("@yetnt/ump"); Convert.volume(34, Volume.CubicCentimeter, Volume.CubicInch); // 2.0748027411805627 Convert.volume(34, "cm3", "inch3"); // 2.0748027411805627 Convert.volume(490, Volume.Quart, Volume.Liter); // 463.71297 ``` ### Temperature ```js const { Convert } = require("@yetnt/ump"); Convert.temp(1, "K", "C"); // 1 Kelvin to Celsius = -272.15 Convert.temp(1, "Fahrenheit", "kelvin"); // 1 Fahrenheit to kelvin = 255.92777777777775 Convert.temp(1, "c", "f"); // 1 Celsius to Fahrenheit = 33.8 ``` ### Data ```js const { Convert, Data } = require("@yetnt/ump"); Convert.data(15, Data.Kibibyte, Data.Tebibyte); // 1.396983862272e-8 Convert.data(20, Data.Gigabyte, Data.Kilobyte); // 20000000 Convert.data(1, Data.Terabyte, Data.Bit); //8000000000000 ``` ## Pattterns The functions stay mostly the same for all the pattern stuff, just with different parameters depending on the pattern. ### Linear Patterns #### `findNthTerm` - `num1`: The first number in the sequence - `num2`: The second number in the sequence - `num3`: The third number in the sequence - `returnSimplified`**(optional)**: Return the simplified formula of **Tn = dn+c** rather than **Tn = a + (n - 1) \* d** #### `findTerm` Find the a term in the sequence. - `n`: The term position in the sequence - `d`: The difference - `a`: First number in sequence. The formula for this is **Tn = a + (n - 1) \* d**. If you prefer to use **Tn = dn+c**, then `a` is `c` ```js const { LinearPattern } = require("@yetnt/ump"); let nthTerm = LinearPattern.findNthTerm(10, 20, 30); console.log(nthTerm); // { a: 10, d: 10, formula: '10 + (n - 1) * 10' } LinearPattern.findTerm(90, nthTerm.d, nthTerm.a); // USING SIMPLIFIED FORMULA let nthTerm = LinearPattern.findNthTerm(10, 20, 30, true); console.log(nthTerm); // { c: 10, d: 10, formula: '10 + (n - 1) * 10' } LinearPattern.findTerm(90, nthTerm.d, nthTerm.c); ``` #### `findTerms` Returns an array of the pattern starting at term `n` and ending at term `nn` - `n`: The term to start at - `nn`: The term to end at - `d`: The difference - `a`: First number in sequence. The formula for this is **Tn = a + (n - 1) \* d**. If you prefer to use **Tn = dn+c**, then `a` is `c` ```js const { LinearPattern } = require("@yetnt/umo"); const a = LinearPattern.findTerms(1, 10, 1, 1); console.log(a); // [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] ``` ### Geometric Patterns #### `findNthTerm` - `num1`: The first number in the sequence - `num2`: The second number in the sequence - `num3`: The third number in the sequence #### `findTerm` Find a term in the sequence - `n`: The term number - `a`: The first term - `r`: The constant ratio ```js const { GeometricPattern } = require("@yetnt/ump"); let nthTerm = GeometricPattern.findNthTerm(2, 4, 8); console.log(nthTerm); // { a: 2, r: 2, formula: '2 * 2^(n - 1)' } GeometricPattern.findTerm(20, nthTerm.a, nthTerm.r); // 1048576 ``` #### `findTerms` Returns an array of the pattern starting at term `n` and ending at term `nn` - `n`: The term to start at - `nn`: The term to end at - `a`: The first term - `r`: Constant Ratio ```js const { GeometricPattern } = require("@yetnt/ump"); const a = GeometricPattern.findTerms(1, 10, 1, 2); console.log(a); // [1, 2, 4, 8, 16, 32, 64, 128, 256, 512] ``` ### Quadratic Patterns #### `findNthTerm` - `num1`: The first number in the sequence - `num2`: The second number in the sequence - `num3`: The third number in the sequence #### `findTerm` Find a term in the sequence - `n`: The term number - `a`: Quadratic coefficient (_`a`n² + bn + c_) - `b`: Linear coefficient (_an² + `b`n + c_) - `c`: Constant term / y-intercept (_an² + bn + `c`_) ```js const { QuadraticPattern } = require("@yetnt/ump"); let nthTerm = QuadraticPattern.findNthTerm(139, 184, 235); console.log(nthTerm); // { a: 3, b: 36, c: 100, formula: '(3n^2) + (36n) + 100' } QuadraticPattern.findTerm(20, nthTerm.a, nthTerm.b, nthTerm.c); // 2020 ``` #### `findTerms` Returns an array of the pattern starting at term `n` and ending at term `nn` - `n`: The term to start at - `nn`: The term to end at - `a`: Quadratic coefficient (_`a`n² + bn + c_) - `b`: Linear coefficient (_an² + `b`n + c_) - `c`: Constant term / y-intercept (_an² + bn + `c`_) ```js const { QuadraticPattern } = require("@yetnt/ump"); const a = QuadraticPattern.findTerms(1, 10, 1, 2, 7); console.log(a); // [10, 15, 22, 31, 42, 55, 70, 87, 106, 127] ``` ## `gcd` Greatest Common Divisor (Highest Common Factor) ### Parameters - `a`: 1dt number - `b`: 2nd number ```js const { gcd } = require("@yetnt/ump"); gcd(56, 24); // 8 ``` ## Statistics ### Parameters These all take in an array of numbers. - `arr`: Array of numbers. ### Mean Average ```js const { Stats } = require("@yetnt/ump"); Stats.mean([1, 1, 2, 6, 7, 8, 3, 5, 5, 1]); // 3.9 ``` ### Median Middle number ```js const { Stats } = require("@yetnt/ump"); Stats.median([1, 1, 2, 6, 7, 8, 3, 5, 5, 1]); //2.5 ``` ### Mode Number that occurs the most ```js const { Stats } = require("@yetnt/ump"); Stats.mode([1, 1, 2, 6, 7, 8, 3, 5, 5, 1]); // [ 1 ] ``` ### Range Max - Min ```js const { Stats } = require("@yetnt/ump"); Stats.range([1, 1, 2, 6, 7, 8, 3, 5, 5, 1]); // 7 ``` ### Sum Sum of all the numbers. ```js const { Stats } = require("@yetnt/ump"); Stats.sum([1, 1, 2, 6, 7, 8, 3, 5, 5, 1]); // 39 ``` # Releases [Github](https://github.com/Yetity/ump/releases) \ **[Latest](https://github.com/Yetity/ump/releases/latest)** # Links - [Github](https://github.com/Yetity/ump) - [NPM](https://npmjs.com/package/@yetnt/ump) # Contributors ## Main/Owner/Creator of package - YetNT - [Discord](https://discordapp.com/users/671549251024584725) - [Github](https://github.com/Yetity) - [NPM](https://npmjs.com/~yetnt) ## others - 202291 - _Improved PrimeFactorize, by removing feature that does not work._ - _Removed Imperal V Metric terms in favour of Enums_ ![UMP](./ump-banner.png)
These utils are useless
area,distance,factorization,factors,javascript,math,numbers,prime,rate,ratio
2023-02-04T05:47:16Z
2024-03-09T10:40:46Z
2024-03-09T10:40:46Z
2
2
133
0
1
2
null
MIT
TypeScript
Lancelot-SO/Leaderboard_project
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! --> <div align="center"> <!-- You are encouraged to replace this logo with your own! Otherwise you can also remove it. --> <br/> <h3><b>Leaderboard</b></h3> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#triangular_flag_on_post-deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [❓ FAQ (OPTIONAL)](#faq) - [📝 License](#license) # 📖 [Leaderboard_project] <a name="about-project"></a> ## 🛠 Built With <a name="VSCode, Git and Github"></a> ### Tech Stack <a name="Html, Webpack, Gitflow, Linters, Css and JavaScript"></a> <details> <summary>Client side is the language used to develop the project </summary> <ul> <li><a href="https://html.com/">Html</a></li> <li><a href="https://javascript.com/">JavaScript</a></li> <li><a href="https://csstricks.com/">Css</a></li> </ul> </details> <details> <summary>Server helps to host the project on a localhost </summary> <ul> <li><a href="https://webpack.js.org/guides/development/#using-webpack-dev-server">Webpack-dev-server</a></li> </ul> </details> <details> <summary>Database</summary> <ul> <li><a href="#">Database</a></li> </ul> </details> ### Key Features <a name="key-features"></a> - **[Submit feature]** - **[Refresh feature]** - **[Recent scores feature]** <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link](https://lancelot-so.github.io/Leaderboard_project/) <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: - Browser - git - code editor ### Setup Clone this repository to your desired folder: - git clone git@github.com:Lancelot-SO/Leaderboard_project.git - Navigate to the Leaderboard_project with this command - cd Leaderboard_project ### Install Install this project with: - $ npm install webpack webpack-cli --save-dev - $ npx webpack - $ npm run build ### Usage To run the project, execute the following command: - $ npm start ### Run tests To run tests, run the following command: - $ npm run build ### Deployment You can deploy this project using: - Github pages <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 👥 Authors <a name="authors"></a> 👤 **Felix Sowah** - GitHub: [@githubhandle](https://github.com/Lancelot-SO) - Twitter: [@twitterhandle](https://twitter.com/Lancelot_hans) - LinkedIn: [LinkedIn](www.linkedin.com/in/felix-sowah) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🔭 Future Features <a name="future-features"></a> - [ ] **[Refresh data feature]** - [ ] **[User data display feature]** - [ ] **[Working Submit data feature]** <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🤝 Contributing <a name="contributing"></a> 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 reuse it and give me an acknowledgement to motivate me to do more. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank my family for their undying support and a few friends who helped me. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## ❓ FAQ (OPTIONAL) <a name="faq"></a> - **[Can a user see data inputed]** - [Yes, data will be displayed in the recent scores for user to see] - **[Will there be an option to delete data]** - [There won't be an option to delete data] <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>
This is a project where one enters a score and username then the score is displayed on the UI with the username
html-css,javascript
2023-01-31T08:06:05Z
2023-02-07T07:24:37Z
null
1
4
17
2
0
2
null
MIT
JavaScript
perestaj/Marbles
main
# Marbles Sample Marbles game written with ionic framework and React ##### Application development / testing ```sh $ npm install $ ionic serve ```
Sample Marbles game written with ionic framework and React
es6-javascript,game-2d,ionic,ionic-framework,javascript,react,typescript
2023-02-05T21:55:55Z
2023-02-05T22:09:56Z
null
1
0
2
0
0
2
null
MIT
TypeScript
GdoubleA/Scroll-Gallery
master
null
Scroll Gallery
css,gallery,html,images,javascript,parallax,scroll
2023-01-27T18:08:20Z
2023-01-27T18:18:26Z
null
1
0
2
0
0
2
null
null
HTML
Zubogain/udemy-parser
main
![repository logo](./.github/logo.png) [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2FZubogain%2Fudemy-parser.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2FZubogain%2Fudemy-parser?ref=badge_shield) ## Overview Parser of categories, subcategories and topics in all languages for udemy. ## Licence [MIT](https://github.com/Zubogain/sequelize-service/blob/main/LICENSE) [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2FZubogain%2Fudemy-parser.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2FZubogain%2Fudemy-parser?ref=badge_large)
Parser of categories, subcategories and topics in all languages for udemy.
cli,faker,javascript,nodejs,parser,puppeteer,udemy,xlsx
2023-01-27T04:58:58Z
2023-01-31T11:51:54Z
null
2
1
5
0
1
2
null
GPL-3.0
JavaScript
Zien-Alhawshi/Netflix-clone
main
null
Netflix clone website
firebase,firebase-auth,firestore,html5,javascript,react,sass
2023-01-27T09:26:45Z
2023-02-13T00:21:41Z
null
1
0
37
0
0
2
null
null
JavaScript
Safin-Ali/easy-pay-bills
main
# **Programming Hero Skill Assessment** # **NOTE** > This Web App Used My Own Created All Components & Hooks, Packages; Just (Toastify Used External Package For Saving Time Otherwise I will be create that) *** ## **Easy Pay** ### This web application supported features - Resuble Component - Dashboard Page Protected - User `Emaill & Pass Encrypting` by JWT Mechanism - Animation Modal Component - `Add, Post, Patch, Delete` --Web API Implement - Instant Update `Cached Data` - Data presenting `Descending` order - `Pagination` Component - Show `Popup` by API `Response` - Simple Form `Validation` - `Dynamic Form` Data return - `Modern Lazy Loading Skeleton Implement` - Search by `keywords` from the databage # **Visit [Easy Pay](https://easy-pay-bill.vercel.app/)**
This is a Skill Assessment Task
axios,css3,express,html5,javascript,jsonwebtoken,react-hooks,react-router,reactjs,tailwindcss
2023-01-28T19:01:08Z
2023-01-30T15:44:01Z
null
1
0
37
0
0
2
null
null
JavaScript
DenZaiyy/BrasserieIMHOFF
master
null
A small project build in 2days, for an exercice to make a website to a commercial person
css3,html5,javascript
2023-01-30T17:14:09Z
2023-02-14T00:49:07Z
null
2
3
18
1
0
2
null
null
HTML
juangonzalezdla/news-homepage
main
# Frontend Mentor - News homepage ![Design preview for the News homepage coding challenge](./design/desktop-preview.jpg) ## Welcome! 👋 Thanks for checking out this front-end coding challenge. [Frontend Mentor](https://www.frontendmentor.io) challenges help you improve your coding skills by building realistic projects. **To do this challenge, you need a good understanding of HTML and CSS, and basic JavaScript.** ## The challenge Your challenge is to build out this news website homepage and get it looking as close to the design as possible. You can use any tools you like to help you complete the challenge. So if you've got something you'd like to practice, feel free to give it a go. Your users should be able to: - View the optimal layout for the interface depending on their device's screen size - See hover and focus states for all interactive elements on the page Want some support on the challenge? [Join our Slack community](https://www.frontendmentor.io/slack) and ask questions in the **#help** channel. ## Where to find everything Your task is to build out the project to the designs inside the `/design` folder. You will find both a mobile and a desktop version of the design. The designs are in JPG static format. Using JPGs will mean that you'll need to use your best judgment for styles such as `font-size`, `padding` and `margin`. If you would like the design files (we provide Sketch & Figma versions) to inspect the design in more detail, you can [subscribe as a PRO member](https://www.frontendmentor.io/pro). All the required assets for this project are in the `/assets` folder. The images are already exported for the correct screen size and optimized. We also include variable and static font files for the required fonts for this project. You can choose to either link to Google Fonts or use the local font files to host the fonts yourself. Note that we've removed the static font files for the font weights that aren't needed for this project. There is also a `style-guide.md` file containing the information you'll need, such as color palette and fonts. ## Building your project Feel free to use any workflow that you feel comfortable with. Below is a suggested process, but do not feel like you need to follow these steps: 1. Initialize your project as a public repository on [GitHub](https://github.com/). Creating a repo will make it easier to share your code with the community if you need help. If you're not sure how to do this, [have a read-through of this Try Git resource](https://try.github.io/). 2. Configure your repository to publish your code to a web address. This will also be useful if you need some help during a challenge as you can share the URL for your project with your repo URL. There are a number of ways to do this, and we provide some recommendations below. 3. Look through the designs to start planning out how you'll tackle the project. This step is crucial to help you think ahead for CSS classes to create reusable styles. 4. Before adding any styles, structure your content with HTML. Writing your HTML first can help focus your attention on creating well-structured content. 5. Write out the base styles for your project, including general content styles, such as `font-family` and `font-size`. 6. Start adding styles to the top of the page and work down. Only move on to the next section once you're happy you've completed the area you're working on. ## Deploying your project As mentioned above, there are many ways to host your project for free. Our recommend hosts are: - [GitHub Pages](https://pages.github.com/) - [Vercel](https://vercel.com/) - [Netlify](https://www.netlify.com/) You can host your site using one of these solutions or any of our other trusted providers. [Read more about our recommended and trusted hosts](https://medium.com/frontend-mentor/frontend-mentor-trusted-hosting-providers-bf000dfebe). ## Create a custom `README.md` We strongly recommend overwriting this `README.md` with a custom one. We've provided a template inside the [`README-template.md`](./README-template.md) file in this starter code. The template provides a guide for what to add. A custom `README` will help you explain your project and reflect on your learnings. Please feel free to edit our template as much as you like. Once you've added your information to the template, delete this file and rename the `README-template.md` file to `README.md`. That will make it show up as your repository's README file. ## Submitting your solution Submit your solution on the platform for the rest of the community to see. Follow our ["Complete guide to submitting solutions"](https://medium.com/frontend-mentor/a-complete-guide-to-submitting-solutions-on-frontend-mentor-ac6384162248) for tips on how to do this. Remember, if you're looking for feedback on your solution, be sure to ask questions when submitting it. The more specific and detailed you are with your questions, the higher the chance you'll get valuable feedback from the community. ## Sharing your solution There are multiple places you can share your solution: 1. Share your solution page in the **#finished-projects** channel of the [Slack community](https://www.frontendmentor.io/slack). 2. Tweet [@frontendmentor](https://twitter.com/frontendmentor) and mention **@frontendmentor**, including the repo and live URLs in the tweet. We'd love to take a look at what you've built and help share it around. 3. Share your solution on other social channels like LinkedIn. 4. Blog about your experience building your project. Writing about your workflow, technical choices, and talking through your code is a brilliant way to reinforce what you've learned. Great platforms to write on are [dev.to](https://dev.to/), [Hashnode](https://hashnode.com/), and [CodeNewbie](https://community.codenewbie.org/). We provide templates to help you share your solution once you've submitted it on the platform. Please do edit them and include specific questions when you're looking for feedback. The more specific you are with your questions the more likely it is that another member of the community will give you feedback. ## Got feedback for us? We love receiving feedback! We're always looking to improve our challenges and our platform. So if you have anything you'd like to mention, please email hi[at]frontendmentor[dot]io. This challenge is completely free. Please share it with anyone who will find it useful for practice. **Have fun building!** 🚀
News homepage | Challenge by Frontend mentor | Mobile first design
css,html,javascript,mobile-first,frontend-mentor,news-homepage-main
2023-01-31T21:20:20Z
2023-02-17T19:37:07Z
null
1
0
12
0
0
2
null
null
HTML
codeXXripper/Bank-System-Sim
master
# 🏦 Bank System Simulator 💰 Simple javascript website which is built with vanila javascript. ## Javascript Concepts used in this website * Number (conversion, parsing, Math methods, reminder operator, underscore operator) * Date (using the new keyword on Date, calculations on date builting methods * Intl (Internationalization API) * setTimeout and setInterval See what it look like and play around it, just follow [this link](https://welcome-to-js-bank.onrender.com). ### Functions of the system * Transfer to another user * Loan from the bank * Close Account ![Bankist-flowchart](https://user-images.githubusercontent.com/56386562/216535789-24c7e0ab-1f32-4f71-beed-b2051b8de602.png) ## Test User and pin to login to the system <em > ⚠️ It has timer of five minutes , and within this time if there is no transcation processed the system will log you out from it.⚠️ </em> <b>user1: js , pin: 1111<b> <b>user2: jd , pin: 2222<b> ![Bank system Simulator](https://user-images.githubusercontent.com/56386562/216533411-daad4c84-0d71-4d7f-a88d-e44d06bf9d4d.png) ### Built With * HTML * CSS * JavaScript <!-- GETTING STARTED --> ## Getting Started To get a local copy up and running follow these simple steps: 1. Clone the repo ```sh git clone https://github.com/codeXXripper/Bank-System-Sim ``` 2. Enjoy! <!-- CONTRIBUTING --> ## Contributing Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**. 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 <!-- LICENSE --> ## License Distributed under the MIT License. See `LICENSE` for more information. <!-- CONTACT --> ## Contact [LinkedIn](https://www.linkedin.com/in/israel-fitsum/)
A simple bank website which have simple bank functionalities. Built In with vanilla Javascript
css3,html-css-javascript,html5,javascript,vanila-javascript
2023-02-01T03:42:23Z
2023-02-03T08:30:18Z
null
1
0
10
0
0
2
null
null
JavaScript
ronthetech/bmi-calc-solidstart
main
# BMI Calculator The Body Mass Index (BMI) is a measurement of body fat using height and weight. To calculate BMI you would divide the body mass by the square of the body height. Metric BMI Equation: `weight (kg) / [height (m)] ** 2 OR` `[weight (kg) / height (cm) / height (cm)] * 10,000` Imperial/English BMI Equation: `weight (lb) / [height (in)] ** 2 * 703` Or you can use the calculator [here](https://bmi-calculator-solid.vercel.app). ![BMI Calculator](https://github.com/ronthetech/bmi-calc-solidstart/blob/main/src/assets/bmi-calc/1.png?raw=true)
A BMI (Body Mass Index) Calculator built with Solidjs and TypeScript
javascript,solidjs,typescript,vitejs,calculator
2023-02-05T16:25:23Z
2023-02-05T22:19:46Z
null
1
1
20
0
0
2
null
null
TypeScript