Skip to content

Commit

Permalink
Merge pull request avinash201199#143 from ikabir21/main
Browse files Browse the repository at this point in the history
Ubuntu 22.04 Web Simulation Portfolio
  • Loading branch information
avinash201199 committed Oct 12, 2022
2 parents 381746e + e27e2ff commit 70ea291
Show file tree
Hide file tree
Showing 120 changed files with 44,253 additions and 0 deletions.
33 changes: 33 additions & 0 deletions ikabir/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"plugin:react/recommended",
"eslint:recommended",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"react/jsx-filename-extension": [1, {
"extensions": [".js", ".jsx"]
}],
"react/react-in-jsx-scope": "off",
"no-unused-vars": [1, {
"vars": "all",
"args": "after-used",
"ignoreRestSiblings": false
}]
}
}
34 changes: 34 additions & 0 deletions ikabir/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

### React ###
frontend/
backend/

# dependencies
node_modules/
/.pnp
.pnp.js

# testing
/coverage

# production
build/

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

### Django ###
*.log
*.pot
*.pyc
__pycache__/
/static
21 changes: 21 additions & 0 deletions ikabir/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2022 Ichan Kabir

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
26 changes: 26 additions & 0 deletions ikabir/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[![Netlify Status](https://api.netlify.com/api/v1/badges/773e8526-2882-49ef-b807-f9227e95e845/deploy-status)](https://app.netlify.com/sites/fabbl/deploys)

# Ichan Kabir's Portfolio [Live Here!](https://www.ichankabir.tech/)

## Introduction
This project is a web simulation of Ubuntu 22.04 OS.

## Key Features

- [x] It has features exactly like Ubuntu OS 220.04
- [x] Terminal (must try)
- [x] Authentication (automatic)
- [x] Different Ubuntu Apps like VSCode, Firefox, Gedit, SPotify, Calendar, etc..
- [x] Fully responsive
- [ ] Working on improving and adding more features
#### Language and Libraries

- React JS
- React Context (for managing and centralizing application state)
- Material UI (for User Interface)
- moment


## License
- Author - [Ichan Kabir](https://github.com/ikabir21)
- This project is [MIT](https://github.com/ikabir21/portfolio/blob/main/LICENSE) licensed.
Loading

0 comments on commit 70ea291

Please sign in to comment.