Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
7c5c685
Merge pull request #1 from samiulice/day-1/simple-calculator
samiulice May 18, 2025
8b23ce1
setup deploy page for holding all project directories in a single file
samiulice May 18, 2025
4a4eaba
Merge pull request #2 from samiulice/deploy
samiulice May 18, 2025
43602bd
feat: index.html moved to main branch, deploy branch deleted
samiulice May 18, 2025
9f8bbc4
Merge branch 'main' of https://github.com/samiulice/selise-workshop
samiulice May 18, 2025
b277066
Delete deploy directory
samiulice May 18, 2025
c7311cc
fix:URL to basic calulator project corrected
samiulice May 18, 2025
df2064e
Merge branch 'main' of https://github.com/samiulice/selise-workshop
samiulice May 18, 2025
419e94a
Merge pull request #3 from samiulice/day-1/simple-calculator
samiulice May 18, 2025
acca185
Merge pull request #4 from samiulice/day-1/simple-calculator
samiulice May 18, 2025
b832558
initialized final project. Poll-and-voting-system
samiulice May 21, 2025
9c2d428
Merge pull request #5 from samiulice/day-3/polling-voting-platform
samiulice May 21, 2025
df1842d
Routing in public site has completed
samiulice May 22, 2025
01dd520
Merge pull request #6 from samiulice/poll-sync
samiulice May 22, 2025
24afdad
link of poll-sync app added to showcase
samiulice May 22, 2025
9f7cc3f
live preview link added in the readme file
samiulice May 22, 2025
cab976a
Create jekyll-gh-pages.yml
samiulice May 22, 2025
30c94e6
title correction
samiulice May 22, 2025
71e9390
Delete .github/workflows directory
samiulice May 22, 2025
715ece8
Merge franch 'main' of https://github.com/samiulice/selise-workshop
samiulice May 22, 2025
2f99eb7
reademe file updated
samiulice May 23, 2025
17ce1e4
readme file updated
samiulice May 23, 2025
dd218bc
full stack project completed as selise workshop project
samiulice Jun 25, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
# selise-workshop
This public repository is maintained as part of the SELISE Workshop and serves as a centralized location for daily hands-on tasks and exercises.

#### Live Preview
```
https://samiulice.github.io/selise-workshop/

```
42 changes: 0 additions & 42 deletions day-1/simple-calculator/README.md

This file was deleted.

Binary file removed day-1/simple-calculator/calculatorUI.png
Binary file not shown.
43 changes: 0 additions & 43 deletions day-1/simple-calculator/index.html

This file was deleted.

104 changes: 0 additions & 104 deletions day-1/simple-calculator/script.js

This file was deleted.

85 changes: 0 additions & 85 deletions day-1/simple-calculator/styles.css

This file was deleted.

71 changes: 71 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SELISE Workshop</title>
<style>
body {
font-family: 'Inter', sans-serif;
background: #f4f4f5;
color: #1f2937;
display: flex;
flex-direction: column;
align-items: center;
padding: 40px 20px;
}

h1 {
font-size: 1.8rem;
margin-bottom: 24px;
color: #111827;
}

nav {
display: flex;
flex-wrap: wrap;
gap: 16px;
justify-content: center;
}

a.link {
position: relative;
font-size: 1rem;
font-weight: 500;
color: #374151;
text-decoration: none;
padding: 4px 6px;
transition: color 0.3s ease;
}

a.link::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 2px;
background-color: #3b82f6;
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s ease;
}

a.link:hover {
color: #2563eb;
}

a.link:hover::after {
transform: scaleX(1);
}
</style>
</head>
<body>
<h1>SELISE Workshop</h1>
<nav>
<a href="day-1/simple-calculator/index.html" class="link">Basic Calculator</a>
<a href="poll-sync/src/index.html" class="link">Poll Sync</a>

</nav>
</body>
</html>
7 changes: 7 additions & 0 deletions poll-sync-api/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
PORT=4201
NODE_ENV=development
APP_NAME=PollSyncAPI
JWT_SECRET=2d9271d0cbd4429f9ab598c7f098543db15c4dc4c25c55b9b90e413f4a6b7f12
JWT_EXPIRE=1d
# MONGO_URI="mongodb+srv://samiul-laptop:jcR4IEo0nu7JxjoG@cluster0.sxaunoi.mongodb.net/?retryWrites=true&w=majority&appName=Cluster0"
MONGO_URI="mongodb://localhost:27017/poll-sync-v1"
16 changes: 16 additions & 0 deletions poll-sync-api/node_modules/.bin/acorn

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading