Skip to content

Instantly share code, notes, and snippets.

View tomysmile's full-sized avatar

Tomy Ismail tomysmile

  • NITOZA
  • Dubai
View GitHub Profile
@tomysmile
tomysmile / tools-colormatcher.md
Last active April 3, 2024 13:41
Tools: Web Tools, Website and Utilities

Web Tools, Website and Utilities

Color Matcher

  • ColourLovers http://www.colourlovers.com/palette/174686/She_Is_French_Yes
@tomysmile
tomysmile / mac-setup-redis.md
Last active March 18, 2024 22:12
Brew install Redis on Mac

type below:

brew update
brew install redis

To have launchd start redis now and restart at login:

brew services start redis
@tomysmile
tomysmile / memcached_macosx.md
Created April 26, 2016 13:27
Installing memcached on Mac with Homebrew and Lunchy

Installing memcached on Mac with Homebrew and Lunchy

This is a quick guide for installing memcached on a Mac with Homebrew, and starting and stopping it with Lunchy. I hope this tutorial will get your memcached up and running in no time.

Step 1 — Install Homebrew

Installing Homebrew is super easy. Just paste this in your terminal —

$ ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
@tomysmile
tomysmile / gammu-install-osx.md
Last active January 14, 2024 03:24
Gammu: Install on OSX 10.11 with Wavecom Modem M1306B

Configuring Gammu for Mac OSX 10.11

Requirements

Step by step:

  • Type below command :
@tomysmile
tomysmile / rpi-installation-01-osx.md
Last active November 24, 2023 17:04
Raspberry Pi Installation using Mac OSX

Raspberry Pi Installation using Mac OSX

Installing Raspbian

First we need to download raspbian, you can grab the latest version at https://www.raspberrypi.org/downloads/

Direct url: http://downloads.raspberrypi.org/raspbian_latest

Now we need unzip the file: 2016-02-06-raspbian-jessie.zip: unzip 2016-02-06-raspbian-jessie.zip

@tomysmile
tomysmile / setup-vagrant-macosx.md
Created April 26, 2016 05:54
How to Install Virtualbox and Vagrant on MacOSX

Install Virtualbox && Vagrant for MacOSX

Vagrant uses Virtualbox to manage the virtual dependencies. You can directly download virtualbox and install or use homebrew for it.

$ brew cask install virtualbox

Now install Vagrant either from the website or use homebrew for installing it.

@tomysmile
tomysmile / memcached_xampp.md
Created April 26, 2016 14:13
XAMPP with Memcached extension

Here are the steps that should be followed when you install memcache.

start your xampp. click on 'config' and open php.ini file. search for

;extension=php_memcache.dll

If not found add

@tomysmile
tomysmile / ionic-01-setup-machine.md
Last active September 16, 2023 17:29
Ionic: Development Roadmap

Ionic Development Setup for Mac, Linux and Windows

Installing Node.js

Mac

Option 1) Using HomeBrew

Open terminal and type :

@tomysmile
tomysmile / rpi-configure-locales.md
Last active June 29, 2023 14:37
Raspberry Pi: Reconfigure Locales

Reconfigure your RPi Locales

First you need to install the locales you want:

sudo dpkg-reconfigure locales

Then refresh your current environment:

@tomysmile
tomysmile / laravel-add-createdby.md
Created January 11, 2016 07:49
Laravel: Adding Created_By
<?php

namespace App;

use Auth;
use Illuminate\Database\Eloquent\Model as Eloquent;

class BaseModel extends Eloquent{