{{post.title}}
15 |{{post.content}}17 |
├── .gitattributes ├── .gitignore ├── Procfile ├── README.md ├── app.db ├── app.py ├── config.py ├── manage.py ├── migrations ├── README ├── __pycache__ │ └── env.cpython-37.pyc ├── alembic.ini ├── env.py ├── script.py.mako └── versions │ ├── 4f8bbe94127a_.py │ └── __pycache__ │ └── 4f8bbe94127a_.cpython-37.pyc ├── model.py ├── requirements.txt ├── screenshots ├── darkmain.png ├── main.png ├── play.png └── profile.png ├── static ├── css │ ├── card.css │ ├── login.css │ ├── post.css │ ├── profile.css │ ├── slider.css │ └── styles.css ├── img │ ├── error.jpg │ ├── errordark.jpg │ ├── favicons.png │ ├── games │ │ ├── atari.png │ │ ├── mine.png │ │ ├── pong.png │ │ └── snake.png │ ├── logo.png │ ├── post │ │ ├── apoc.jfif │ │ ├── ava.jfif │ │ ├── blank.jfif │ │ ├── ceaser.jfif │ │ ├── check.jfif │ │ ├── cube.jpg │ │ ├── echo.png │ │ ├── end.png │ │ ├── feel.jfif │ │ ├── fine.jfif │ │ ├── fire.png │ │ ├── hero.png │ │ ├── iron.jpg │ │ ├── liam.jfif │ │ ├── light.jfif │ │ ├── lion.jfif │ │ ├── mac.jpg │ │ ├── main.jpg │ │ ├── pic.jpg │ │ ├── pose.jfif │ │ ├── real.jfif │ │ └── viva.jfif │ ├── prof.jpg │ ├── profile │ │ ├── cloud.jpg │ │ ├── dark.jfif │ │ ├── fire.jpg │ │ ├── gun.jpg │ │ ├── mini.jpg │ │ ├── moon.jpg │ │ ├── poly.jpg │ │ ├── power.jpg │ │ ├── profile.jpg │ │ ├── set.jpg │ │ └── vib.jpg │ └── sketch.jpg └── js │ ├── clocktime.js │ ├── games │ ├── atari.js │ ├── mine.js │ ├── pong.js │ └── snake.js │ ├── quote.js │ └── quotes.txt └── templates ├── 404.html ├── about.html ├── addvideo.html ├── admin.html ├── base.html ├── changepassword.html ├── config.json ├── createaccount.html ├── delete.html ├── deleteaccount.html ├── deletegame.html ├── deletevideo.html ├── edit.html ├── editblog.html ├── editgame.html ├── editor.html ├── editprofile.html ├── editvideo.html ├── games ├── fullsc.html └── playgame.html ├── index.html ├── login.html ├── play.html ├── postblog.html ├── profile.html ├── upload.html └── video.html /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | rough.py 2 | rough.html 3 | requirement.txt 4 | *.pyc 5 | verify.html 6 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python manage.py runserver --host 0.0.0.0 --port ${PORT} 2 | init: python manage.py db init 3 | migrate: python manage.py db migrate 4 | upgrade: python manage.py db upgrade 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
A social blog 💻 platform for nerds 🤓 📕 Visit website
Look like you lost in the void.
26 | 27 |Hi there! I'm an aspiring programmer (or atleast what i think so).
14 |The few things that i like
15 |Competitive programming
Game development and 3D graphic designing
Linear algebra and Calculus
Poetry and Literature
If you like my Blog, you can follow me on github
26 |{{post.content}}17 |
{{user.about}}
22 |