Skip to content

Commit 055ea8c

Browse files
author
Pritom Gogoi
committed
add new projects
1 parent ae695d0 commit 055ea8c

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def home():
6868
# stats routes
6969
@app.route("/stats")
7070
def stats():
71-
all_info = userInfo.query.all()
71+
all_info = userInfo.query.order_by(desc(userInfo.pr_count)).all()
7272
return render_template("stats.html", data=current_user, info=all_info)
7373

7474
@app.route("/stats/<int:id>", methods = ["GET"])

project.py

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,22 @@ def __init__(self, level, title, desc, mentor, tags, slack, url):
5454
"https://join.slack.com/t/scrape-site-face/shared_invite/enQtNTQwNzczNDc4NjQ1LWM2ZjRlZGEwMjQzMmMwYzg1NTA0ZDU2MmQxMmE0ZDhmMDczY2U0OTliMDczNjcyZmU4MzNmYmQyNTBiMDdmMGY",
5555
"https://github.com/bitoverflow-in/scrape-site-face")
5656

57+
youtubemp3 = Project(
58+
"Mainstream",
59+
"Youtube-MP3-GUI",
60+
"Design a GUI for a youtube to mp3 converter script. The script is written using python and the GUI is to be developed using tkinter GUI library. ",
61+
"Pritom Gogoi",
62+
[{"py":"Python"}, {"gui":"GUI"}, {"tk":"Tkinter"}, {"yt":"Youtube-DL"}],
63+
"https://join.slack.com/t/youtube-mp3-gui/shared_invite/enQtNTQxOTEwNzYzNDc5LWZiNGVjOTc5N2ZiNDJjZmI1NWE5OGYwNWZkYzM0Mzc1ZmM0NmYyY2RlMzRlYmZjNjgxZWRmMTZmMjA1OGFjYWU",
64+
"https://github.com/bitoverflow-in/youtube-mp3-gui")
65+
66+
learntk = Project(
67+
"Beginner",
68+
"Learn Tkinter",
69+
"Learn the Basics of making GUI using tkinter and implement it in making designs for On-screen Keyboard and TV Remote",
70+
"Pritom Gogoi",
71+
[{"py":"Python"}, {"gui":"GUI"}, {"tk":"Tkinter"}],
72+
"https://join.slack.com/t/learn-tkinter/shared_invite/enQtNTQwMjQ1NjMyMTI5LWI1ZmNkZTAwZjZmZjlkZmJhNWI0OGM5NGE1NmJhMDhkNzBjNjVkMTUyMzVhMWUwZGNmMjQ1MGJmYWQ2ZDhmMjY",
73+
"https://github.com/bitoverflow-in/learn-tkinter")
5774

58-
projectList = [hello, snake, calc, stan, scrape]
75+
projectList = [hello, scrape, snake, calc, stan, learntk, youtubemp3]

static/css/pills.css

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,19 @@
5353
.console{
5454
background-color: rgb(202, 184, 78);
5555
color: #fff;
56+
}
57+
58+
.gui{
59+
background-color: rgb(202, 78, 165);
60+
color: #fff;
61+
}
62+
63+
.tk{
64+
background-color: rgb(86, 78, 202);
65+
color: #fff;
66+
}
67+
68+
.yt{
69+
background-color: rgb(138, 202, 78);
70+
color: #fff;
5671
}

0 commit comments

Comments
 (0)