Skip to content

Instantly share code, notes, and snippets.

View maze-runnar's full-sized avatar
🤞
your shadows know me

Sundaram Dubey maze-runnar

🤞
your shadows know me
  • Swiggy
View GitHub Profile
@prologic
prologic / LearnGoIn5mins.md
Last active June 20, 2024 04:04
Learn Go in ~5mins
@maze-runnar
maze-runnar / media-query.css
Created March 11, 2020 07:41 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS

Sundaram Dubey | @maze-runnar | Codeheat - 2019

Overview:

I am Sundaram Dubey, Pre-final year CSE undergraduate at HBTU, Kanpur.
My main goal of this period was to focus on making the Eventyay platform more stable for new users.
I also contributed to badgeyay and in fossasia.org website in period of codeheat-2019.

Notable Work during code-heat :

  • Introducing cropper in eventyay for speaker and session form
  • Improving quality of image before sending to server
  • Making the CFS & Session/Speakers Form bug free.
  • Linkedin was not showing on speakers info
@Bye-lemon
Bye-lemon / Doxyfile
Created December 13, 2018 12:29
Doxygen C Project Config
# Doxyfile 1.8.14
# This file describes the settings to be used by the documentation system
# doxygen (www.doxygen.org) for a project.
#
# All text after a double hash (##) is considered a comment and is placed in
# front of the TAG it is preceding.
#
# All text after a single hash (#) is considered a comment and will be ignored.
# The format is:
@illume
illume / flask_matplotlib.py
Last active September 21, 2022 02:14
Shows how to use flask and matplotlib together.
""" Shows how to use flask and matplotlib together.
Shows SVG, and png.
The SVG is easier to style with CSS, and hook JS events to in browser.
python3 -m venv venv
. ./venv/bin/activate
pip install flask matplotlib
python flask_matplotlib.py
"""
@bradtraversy
bradtraversy / docker-help.md
Last active June 16, 2024 19:34
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@hereismari
hereismari / msi-gtx1060-ubuntu-18.04-deeplearning.md
Last active December 3, 2023 17:14
Setting up a MSI laptop with GPU (gtx1060), Installing Ubuntu 18.04, CUDA, CDNN, Pytorch and TensorFlow
@Cartexius
Cartexius / install_gtest_ubuntu.md
Last active May 28, 2024 06:01
Install gtest in Ubuntu
@tzmartin
tzmartin / embedded-file-viewer.md
Last active June 20, 2024 07:38
Embedded File Viewer: Google Drive, OneDrive

Office Web Apps Viewer

('.ppt' '.pptx' '.doc', '.docx', '.xls', '.xlsx')

http://view.officeapps.live.com/op/view.aspx?src=[OFFICE_FILE_URL]

<iframe src='https://view.officeapps.live.com/op/embed.aspx?src=[OFFICE_FILE_URL]' width='px' height='px' frameborder='0'>
</iframe>

OneDrive Embed Links

@YuMS
YuMS / update-git.sh
Created June 29, 2016 09:28
Update git to latest version on Ubuntu
#!/bin/bash
sudo add-apt-repository -y ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git -y