Skip to content

Instantly share code, notes, and snippets.

View tuladhasum's full-sized avatar
🎯
Focusing

Sumit Tuladhar tuladhasum

🎯
Focusing
View GitHub Profile
@tuladhasum
tuladhasum / flask_matplotlib.py
Created March 31, 2020 04:26 — forked from illume/flask_matplotlib.py
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
"""
@tuladhasum
tuladhasum / ssh.md
Created September 15, 2019 15:17 — forked from bradtraversy/ssh.md
SSH & DevOps Crash Course Snippets

SSH Cheat Sheet

This sheet goes along with this SSH YouTube tutorial

Login via SSH with password (LOCAL SERVER)

$ ssh [email protected]

Create folder, file, install Apache (Just messing around)

$ mkdir test

$ cd test

@tuladhasum
tuladhasum / git-branching.md
Last active June 8, 2019 08:38
Git Branching

Git Branching

Feature branch

Creating a feature branch

May branch off from: develop

Must merge back into:

@tuladhasum
tuladhasum / docker_wordpress.md
Created February 12, 2019 16:43 — forked from bradtraversy/docker_wordpress.md
Docker Compose FIle For Wordpress, MySQL & phpmyadmin

Wordpress & Docker

This file will setup Wordpress, MySQL & PHPMyAdmin with a single command. Add the code below to a file called "docker-compose.yaml" and run the command

$ docker-compose up -d

# To Tear Down
$ docker-compose down --volumes
@tuladhasum
tuladhasum / bash-cheatsheet.sh
Created October 25, 2016 13:37 — forked from LeCoupa/bash-cheatsheet.sh
Bash CheatSheet for UNIX Systems
#!/bin/bash
#####################################################
# Name: Bash CheatSheet for Mac OSX
#
# A little overlook of the Bash basics
#
# Usage:
#
# Author: J. Le Coupanec
# Date: 2014/11/04
@tuladhasum
tuladhasum / The Technical Interview Cheat Sheet.md
Last active August 29, 2015 14:28 — forked from tsiege/The Technical Interview Cheat Sheet.md
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

Studying for a Tech Interview Sucks, so Here's a Cheat Sheet to Help

This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.

Data Structure Basics

###Array ####Definition:

  • Stores data elements based on an sequential, most commonly 0 based, index.
  • Based on tuples from set theory.
@tuladhasum
tuladhasum / fix.php
Last active August 29, 2015 14:21
Fixing Curly Quotes and Em Dashes in PHP
//http://snipe.net/2008/12/fixing-curly-quotes-and-em-dashes-in-php/
function convert_smart_quotes($string)
{
$search = array(chr(145),
chr(146),
chr(147),
chr(148),
chr(151));
$replace = array("'",