Skip to content

Instantly share code, notes, and snippets.

View sibinx7's full-sized avatar
🏠
Working from home

Sibin Xavier sibinx7

🏠
Working from home
View GitHub Profile
@sibinx7
sibinx7 / angular-4-learning.md
Last active December 27, 2017 05:43
Angular 4 learning snippets, codes

Angular JS 4(2)

  • Angular 4 Basic
  • Angular 4 Routing ( Child, Guards, Events )
  • Angular 4 Template, Component
  • Angular 4 Service/Directive
  • Implementation with Rails, Laravel
  • Angular 4 Advanced
  • Angular 4 Sample applications
  • Profile using Angular 4 Sample
@sibinx7
sibinx7 / development.md
Last active June 15, 2018 05:13
Development Setup

LAMP Setup

Install PHP, Apache, MySQL on Linux machine

Apache

sudo apt-get update
sudo apt-get install apache2
@sibinx7
sibinx7 / database.md
Last active October 10, 2017 17:59
Database helpers

Postgres

Permission issues

  • Goto etc/postgres/postgresql-version/pg_hba.config
  • Change peer/md5/anything to trust

Dump postgresql Database

pg_dump -Fc -U <username> -d <database> > /<path><filename>
@sibinx7
sibinx7 / git-tutorial.md
Last active August 24, 2019 11:33
Git tutorials
@sibinx7
sibinx7 / wordpress-tutorials.md
Last active March 4, 2021 05:27
Wordpress Advanced Tutorials
@sibinx7
sibinx7 / awesome-js-style-plugins.md
Last active August 20, 2017 06:07
List of awesome Jquery CSS plugins
@sibinx7
sibinx7 / custom-sass.md
Created February 16, 2017 10:56
Useful mixins, styles

Mixins

/*******************************************
*       COMMON MIXINS AND KEYFRAMES        *
*******************************************/

@mixin c-border-radius($top-right,$bottom-right,$bottom-left,$top-left){
  -webkit-border-top-right-radius: $top-right;
  -webkit-border-bottom-right-radius: $bottom-right;
  -webkit-border-bottom-left-radius: $bottom-left;
@sibinx7
sibinx7 / rails-learning-resource.md
Last active December 20, 2017 04:49
Rails tutorial links

Rails Learning

Objectives

  • Learn authetication
  • Learn rake tasks
  • Learn Testing
  • Learn APIS
  • Learn popular gems
  • Learn about how to scale Ruby On Rails application
  • Realtime chatting