Skip to content

Instantly share code, notes, and snippets.

View khesayed's full-sized avatar
💭
I may be slow to respond.

Khalid A. Khalil khesayed

💭
I may be slow to respond.
View GitHub Profile
@khesayed
khesayed / deployment_guide.md
Created May 2, 2020 02:41 — forked from vicgonvt/deployment_guide.md
Deployment Guide for Ubuntu Server from Scratch with Laravel
@khesayed
khesayed / jenikns_ci_on_osx.md
Created February 5, 2017 08:49 — forked from ostinelli/jenkins_ci_on_osx.md
Setup Jenkins CI on OSX.

Jenkins CI on OSX

Instructions on how to setup a secured Jenkins CI on a Mac.

Download & Install dependencies

All of these operations are done with your admin user.

Developer tools

Install the command line developer tools.

@khesayed
khesayed / package.json
Created December 7, 2016 10:44 — forked from addyosmani/package.json
npm run-scripts boilerplate
{
"name": "my-app",
"version": "1.0.0",
"description": "My test app",
"main": "src/js/index.js",
"scripts": {
"jshint:dist": "jshint src/js/*.js",
"jshint": "npm run jshint:dist",
"jscs": "jscs src/*.js",
"browserify": "browserify -s Validating -o ./dist/js/build.js ./lib/index.js",
@khesayed
khesayed / HTML5
Last active January 24, 2017 07:19
HTML 5 Master page
<!DOCTYPE HTML>
<html>
<head>
<title>title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" >
<meta name="description" content="description" />
<meta name="keywords" content="keywords" />
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
@khesayed
khesayed / gist:4480657
Created January 8, 2013 02:49
Remove / unset Drupal 7 js settings
<?php
function THEMENAME_js_alter(&$js){
unset($js['settings']);
}
?>