Skip to content

Instantly share code, notes, and snippets.

View jehadassaf's full-sized avatar

Jehad Assaf jehadassaf

View GitHub Profile
@jehadassaf
jehadassaf / hyper.js
Created February 14, 2018 08:51
Hyper configuration
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// Choose either "stable" for receiving highly polished,
// or "canary" for less polished but more frequent updates
updateChannel: 'stable',
@jehadassaf
jehadassaf / collectd.conf
Last active July 25, 2017 07:02 — forked from tnolet/gist:7361441
Install latest collectd on RHEL 6.x
Hostname "friendly_name@hostname_with_underscores"
FQDNLookup false
Interval "10"
Timeout 2
ReadThreads 5
LoadPlugin cpu
LoadPlugin df
LoadPlugin load
@jehadassaf
jehadassaf / after.sh
Last active February 26, 2018 16:54
Add extra stuff to Homestead
#!/bin/sh
# If you would like to do some extra provisioning you may
# add any commands you wish to this file and they will
# be run after the Homestead machine is provisioned.
echo "Updating repositories..."
apt-get -qq update
echo "Disabling XDebug..."
phpdismod xdebug
@jehadassaf
jehadassaf / Preferences.sublime-settings
Created September 24, 2015 07:45
Sublime Text 3 preferences
{
"ignored_packages":
[
"Vintage"
],
"font_face": "Source Code Pro",
"font_size": 12,
"line_padding_top": 2,
"line_padding_bottom": 2,
@jehadassaf
jehadassaf / Vagrantfile
Last active May 30, 2016 11:07
My Vagrant Setup
require 'json'
require 'yaml'
VAGRANTFILE_API_VERSION = "2"
confDir = $confDir ||= File.expand_path("~/.homestead")
homesteadYamlPath = confDir + "/Homestead.yaml"
homesteadJsonPath = confDir + "/Homestead.json"
afterScriptPath = confDir + "/after.sh"
aliasesPath = confDir + "/aliases"