Skip to content

Instantly share code, notes, and snippets.

View helloanoop's full-sized avatar

Anoop M D helloanoop

View GitHub Profile
@helloanoop
helloanoop / .bash_rc
Created September 1, 2017 13:38
My Bash Aliases
alias gs='git status';
alias gd='git diff';
alias gpm='git push origin master';
alias b='npm run build';
alias t='npm test';
{
"color_scheme": "Packages/Color Scheme - Default/Slush & Poppies.tmTheme",
"font_size": 12,
"theme": "Soda Light 3.sublime-theme",
"draw_indent_guides": false,
"font_face": "Consolas",
"highlight_line": true,
"line_padding_bottom": 4,
"line_padding_top": 4,
"translate_tabs_to_spaces": true,
{
"color_scheme": "Packages/Theme - Spacegray/base16-ocean.dark.tmTheme",
"draw_indent_guides": false,
"font_face": "Consolas",
"font_size": 13,
"highlight_line": true,
"ignored_packages":
[
"JSLint",
"Vintage"
@helloanoop
helloanoop / DateFormatter.java
Created August 25, 2016 23:03
DateFormatter Example in Java
import java.time.format.DateTimeFormatter;
import java.util.Date;
import java.time.Instant;
import java.time.ZoneId;
import java.time.ZonedDateTime;
public class DateFormatter{
public static void main(String []args){
System.out.println("Hello World 2");
<?php
class Animal {
public function setName($name){
$this->name = $name;
}
public function getName(){
return $this->name;
}