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 / wordpress-genesis.md
Last active February 6, 2017 10:45
Learning Wordpress genesis

Tips and Tricks while learning Genesis Theme Framework

Sample code to remove loop

add_action('genesis_meta','quick_tips_meta');

function quick_tips_meta(){
@sibinx7
sibinx7 / sublime-text.md
Created February 10, 2017 13:28
Sublime settings
{
	"auto_complete_commit_on_tab": true,
	"caret_style": "solid",
	"default_line_ending": "LF",
	"draw_white_space": "all",
	"enable_tab_scrolling": false,
	"ensure_newline_at_eof_on_save": true,
	"file_exclude_patterns":
	[
@sibinx7
sibinx7 / react-redux-resource.md
Last active June 27, 2018 05:15
Learn React and React resources

Why is React so popular?

React helps developers build applications by helping manage application state. It's simple, declarative, and composable. React is not a traditional MVC framework. React is really only interested in building user interfaces. Some have called it the "V" in MVC, but that's a little misleading. React sees the world much differently from traditional MVC frameworks. As more application logic started moving toward the client, many application developers wanted to apply some kind of structure to their front-end JavaScript. So we started applying a paradigm that we understood from the server (MVC) and apply it to the browser. The problem with this approach is that the browser environment is very different from the server. React acknowledges that client-side applications are really a collection of UI components that should react to events like user interaction.

React encourages building applications out of self-contained, reusable components that only care about a small piece of the UI. M

@sibinx7
sibinx7 / advanced-css.md
Last active April 24, 2020 02:39
CSS Advanced styles and CSS3

CSS 3 and Advanced CSS Styles

Variables, Loop and helpers

Persist focus for parent element while focus goes to child element, Focus for Form while actual focus goes to form elements, like input, select, textarea

@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
@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 / awesome-js-style-plugins.md
Last active August 20, 2017 06:07
List of awesome Jquery CSS plugins
@sibinx7
sibinx7 / wordpress-tutorials.md
Last active March 4, 2021 05:27
Wordpress Advanced Tutorials
@sibinx7
sibinx7 / git-tutorial.md
Last active August 24, 2019 11:33
Git tutorials