Skip to content

Instantly share code, notes, and snippets.

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

Saravanan Rajaraman SaravananRajaraman

💭
I may be slow to respond.
  • Standard Chartered GBS
  • Chennai
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@SaravananRajaraman
SaravananRajaraman / git-commit-log-stats.md
Created July 5, 2018 13:43 — forked from eyecatchup/git-commit-log-stats.md
Some commands to get git commit log statistics for a repository on the command line.

git commit stats

Commands to get commit statistics for a Git repository from the command line -
using git log, git shortlog and friends.




@SaravananRajaraman
SaravananRajaraman / build.gradle
Last active June 11, 2018 05:05 — forked from albinmathew/build.gradle
An example configuration for proguard-rules.pro
android {
compileSdkVersion 22
buildToolsVersion "22.0.0"
defaultConfig {
applicationId "com.abc.example"
minSdkVersion 16
targetSdkVersion 22
versionCode 1
versionName "1.0"
@SaravananRajaraman
SaravananRajaraman / controllers.application.js
Last active January 4, 2018 11:16
ember initiaizers vs service
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
welcome: Ember.inject.service('welcome-service'),
init(){
console.log(this.get('welcome').name, this.get('foo').name);
}
});
@SaravananRajaraman
SaravananRajaraman / README.md
Last active September 20, 2018 12:54 — forked from stuart11n/gist:9628955
Git

Git tips

Git Basics

First things first, Try this git basics challenges @ try.github.io

--

One time setup of the Username and Email ID

@SaravananRajaraman
SaravananRajaraman / variable_naming_conventions.md
Created November 29, 2017 10:36
variable naming conventions

There are three different way the variable naming convention we follow.

  • Camel case

Camel case: numberOfPeople

A series of words, with each intermeidiate word started with a capital letter. Called "Camel Case" because the capital letters make it look like the humps of a camel.

  • Kebab case
@SaravananRajaraman
SaravananRajaraman / Developer reading list.md
Last active September 20, 2018 12:55
Developer reading list
  • Screen a capture and convert to gif on windows using Licecap
  • Prevent the unnecessary git commit using commit lint
@SaravananRajaraman
SaravananRajaraman / Ember_Questions.md
Last active November 22, 2017 05:04
Ember_Questions.md

What is ember ?

What is ember-cli ?

What is Mixins & Services and its diff ?

What is Helpers ?

Component Lifecycle hooks?