Skip to content

Instantly share code, notes, and snippets.

View z11h's full-sized avatar
🌍
=)

zakaria ridouh z11h

🌍
=)
View GitHub Profile
@z11h
z11h / header.html
Last active August 4, 2016 04:53
Awesome Mobile Features for Mobile Sites
<title>TITLE HERE</title>
<meta name="description" content="DESCRIPTION ">
<!-- Mobile features -->
<link rel="apple-touch-startup-image" href="favicon.ico">
<link rel="icon" type="image/png" href="favicon.ico">
<link rel="apple-touch-icon" type="image/png" href="favicon.ico">
<link rel="icon" sizes="144x144" href="favicon.ico">
<link rel="icon" sizes="192x192" href="favicon.ico">
@z11h
z11h / body.css
Created April 2, 2016 21:17
Some pretty cool CSS props that are used in Butter project 😄
body{
cursor: default;
-webkit-font-smoothing: subpixel-antialiased;
-webkit-touch-callout: none;
-webkit-user-select: none;
-webkit-user-drag: none;
text-rendering: optimizelegibility;
img {
pointer-events: none;
}
@z11h
z11h / brew.sh
Created April 8, 2016 03:26
Install Homebrew!
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
@z11h
z11h / cask.sh
Created April 8, 2016 04:59
Install Brew Cask
brew tap caskroom/cask
@z11h
z11h / caskversions.sh
Created April 8, 2016 05:03
Cask versions installations
brew tap caskroom/versions
@z11h
z11h / apt-get.sh
Last active April 28, 2016 02:37
list of quick start commands on a new download of Ubuntu (or a similar distro)
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
sudo apt-get install git python vlc steam google-chrome-stable libreoffice
@z11h
z11h / binarySearchTree.py
Created July 16, 2019 22:09 — forked from jakemmarsh/binarySearchTree.py
a simple implementation of a Binary Search Tree in Python
class Node:
def __init__(self, val):
self.val = val
self.leftChild = None
self.rightChild = None
def get(self):
return self.val
def set(self, val):