Skip to content

Instantly share code, notes, and snippets.

View OsamaShabrez's full-sized avatar
💭
Turning ☕ and 🍕 into software 🤓

Osama Shabrez OsamaShabrez

💭
Turning ☕ and 🍕 into software 🤓
View GitHub Profile
@OsamaShabrez
OsamaShabrez / ResetLaunchpadIconSize
Created March 25, 2016 11:45
How To Change Launchpad Icon Size in OS X
# to update columns
defaults write com.apple.dock springboard-columns -int <number / 9>
# to update rows
defaults write com.apple.dock springboard-rows -int <number / 5>
# reset dock icons to default positions
defaults write com.apple.dock ResetLaunchPad -bool TRUE
# restart dock
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->
@OsamaShabrez
OsamaShabrez / show-hide-files-osx
Created March 12, 2015 17:49
Quickly show/hide hidden files in mac osx
Open a terminal and paste this command
defaults write com.apple.finder AppleShowAllFiles YES
Press return and relaunch finder
To hide these files again follow the same steps replaing terminal
command with
defaults write com.apple.finder AppleShowAllFiles NO
@OsamaShabrez
OsamaShabrez / _flash_messages.html.erb
Created January 19, 2015 11:14
Rails flash message using Twitter Bootstrap 3
<% flash.each do |type, message| %>
<div class="alert <%= alert_class_for(type) %> alert-dismissable fade in">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
<%= message %>
</div>
<% end %>
@OsamaShabrez
OsamaShabrez / MyTemporaryPlugin.php
Created January 3, 2015 18:35
A temporary Plugin I created to keep small php snippets independent of theme functions.php file
<?php
/**
* Plugin Name: MyTemporaryPlugin
* Plugin URI: http://OsamaShabrez.com
* Description: This is small temporary plugin created to keep small php codes idependent of theme or other plugin files
* Version: 1.0.1
* Author: Muhammad Osama Shabrez
* Author URI: http://OsamaShabrez.com
* Network: false
* License: GPL2