Skip to content

Instantly share code, notes, and snippets.

View acesaif's full-sized avatar
🎯
Focusing

Mohammed Saifuddin acesaif

🎯
Focusing
View GitHub Profile
@acesaif
acesaif / installing-oh-my-zsh-fedora.md
Created May 5, 2018 13:34 — forked from jshcrowthe/installing-oh-my-zsh-fedora.md
Installing Oh My ZSH oh Fedora (2015 CIT 325 Image)

Installing oh-my-zsh on Fedora (for DB class images)

Oh-my-zsh is an extension of the traditional z shell that is extensible via community created plugins (Plugins found here: oh-my-zsh github repo). It is, in my opinion, a breath of fresh air in comparison to the traditional bash shell.

DO THE FOLLOWING IN ORDER

Installing ZSH (using yum)

The first step for this install is getting zsh we will do this via yum. From your terminal:

#!/bin/sh
# Sublime Text 3 Install (last update: Monday 13 March 2017)
#
# No need to download this script, just run it on your terminal:
#
# curl -L git.io/sublimetext | sh
# Detect the architecture
@acesaif
acesaif / opencv_basic.py
Created August 21, 2017 15:44 — forked from bikz05/opencv_basic.py
Basic Image Processing operations using OpenCV and Python
import cv2
import argparse
# Download the image used for this tutorial from here.
# http://goo.gl/jsYXl8
# Read the image
ap = argparse.ArgumentParser();
ap.add_argument("-i", "--image", required = True, help = "path to the image file");
args = vars(ap.parse_args());
@acesaif
acesaif / README-Template.md
Created August 15, 2017 15:30 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@acesaif
acesaif / index.html
Created April 29, 2017 12:59
Wikipedia
<div class="container text-center">
<br /><br /><br /><br /><h1>Wikipedia</h1><br />
<div class="row">
<div class="col-md-12">
<input placeholder="Search Wikipedia - Knowledge"class="form-control" id="searchwikipedia"/><br />
</div>
<ul class="list-unstyled">
<li id = "wiki" class="btn btn-default wiki">Wikipedia Search</li>
<a href="https://en.wikipedia.org/wiki/Special:Random" target="_blank" class="btn btn-default random">I'm Feeling Lucky!</a>
</ul>
@acesaif
acesaif / index.html
Last active April 28, 2017 04:07
LocalWeather
<div class="container text-center">
<br /><h1>Local Weather Application</h1><br />
<div>
<div class="row">
<br /><ul class="list-unstyled">
<div class="col-xs-3">
<div>
<b><li id="city" class="btn btn-default"></li></b><br />
<p>Location</p>
</div>
@acesaif
acesaif / index.html
Created April 26, 2017 12:12
Quoter
<div class= "container">
<div class="Quote-Box">
<link href="https://fonts.googleapis.com/css?family=Cinzel" rel="stylesheet">
<h1><br><b>Quote Machine</b></h1>
<link href="https://fonts.googleapis.com/css?family=Macondo" rel="stylesheet">
<h3><b>RANDOM QUOTE GENERATOR!</b></h3><br>
<div class="panel panel-default text-center">
<div class="panel-body">
<link href="https://fonts.googleapis.com/css?family=Philosopher" rel="stylesheet">
<p id="quote" class="quoteDesign"></p>
@acesaif
acesaif / index.html
Last active April 19, 2017 04:22
Rock Paper Scissors
<link href="https://fonts.googleapis.com/css?family=Macondo" rel="stylesheet">
<h1>ROCK - PAPER - SCISSORS</h1>
<h3> ... A Game by AceSaif ... </h3>
<h4>This game is completely powered by JavaScript which is a powerful Web Application Language.</h4>
<h4>Ergo I present this game as a tribute to every lad who plays this ...</h4>
<h5> ... Thank You ... </h5>