Skip to content

Instantly share code, notes, and snippets.

View jimishio's full-sized avatar
🎯
Focusing

Jimish Parekh jimishio

🎯
Focusing
  • Ahmedabad, India
View GitHub Profile
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1140 720" style="enable-background:new 0 0 1140 720;" xml:space="preserve">
<style type="text/css">
.st0{opacity:0.14;}
.st1{fill:#60D661;}
.st2{fill:#3D5663;}
.st3{fill:#FFFAEF;}
.st4{fill:#7998A3;}
@jimishio
jimishio / alpha-numeric-increment.js
Last active January 2, 2018 06:04
Alpha Numeric Incremental Javascript
function incAlphaNumeric(c) {
var u = c.toUpperCase();
var p = "";
var q = "";
var incrementalSign = 1;
var incrementalCounter = 1;
var initialLength = u.length;
var appender = "";
if(u.length > 0){
while(incrementalSign == 1){
@jimishio
jimishio / ubuntu-compass-ruby
Created March 11, 2016 08:02 — forked from stephanetimmermans/ubuntu-compass-ruby
Install Compass+Ruby on Ubuntu 14.04
#https://gorails.com/setup/ubuntu/14.04
sudo apt-get update
sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties
sudo apt-get install libgdbm-dev libncurses5-dev automake libtool bison libffi-dev
curl -L https://get.rvm.io | bash -s stable
source ~/.rvm/scripts/rvm
echo "source ~/.rvm/scripts/rvm" >> ~/.bashrc
rvm install 2.1.2
rvm use 2.1.2 --default