This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Board | |
| def initialize(text) | |
| @text = text | |
| end | |
| def display | |
| @text | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/bash | |
| apm install markdown-preview | |
| apm install language-ruby | |
| apm install autocomplete-ruby | |
| # Lets you maintain long history of items you copied in past using `CTRL + SHIFT + v` | |
| apm install clipboard-history | |
| apm install goto-definition |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| syntax "markdown" "\.md$" "\.markdown$" | |
| ## Quotations | |
| color cyan "^>.*" | |
| ## Emphasis | |
| color green "_[^_]*_" | |
| color green "\*[^\*]*\*" | |
| ## Strong emphasis |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git filter-branch --commit-filter \ | |
| 'if [ "$GIT_AUTHOR_EMAIL" = "old_email" ]; then \ | |
| export GIT_AUTHOR_NAME="Shiva Bhusal";\ | |
| export GIT_AUTHOR_EMAIL=new_emil;\ | |
| export GIT_COMMITTER_NAME="Shiva Bhusal";\ | |
| export GIT_COMMITTER_EMAIL="[email protected]";\ | |
| fi;\ | |
| git commit-tree "$@"' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # include all the preexisting configs | |
| include "/usr/share/nano/*.nanorc" | |
| set linenumbers | |
| set tabsize 4 | |
| set tabstospaces |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <assert.h> | |
| int* getSum(int a, int b){ | |
| /* Local var stored in `heap` instead of `stack` */ | |
| int* sum = malloc(sizeof(int)); | |
| *sum = a + b; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include "../cspec/cspec.c" | |
| // Withour this line, compiler wont compile your code. | |
| // error: `some_var_declared_somewhere` undeclared (first use in this function) | |
| extern int some_var_declared_somewhere; | |
| void test_runner(void); | |
| void main(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include "../cspec/cspec.c" | |
| int * some_function(){ | |
| static int fun_call_counter = 0; | |
| fun_call_counter++; | |
| return &fun_call_counter; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import {combineReducers, createStore} from 'redux'; | |
| const usersReducer = (usersState = [], action) => { | |
| const new_state = Object.assign([], usersState); | |
| switch (action.type) { | |
| case 'UPDATE_USER': { | |
| var updateable_record = new_state.find((item) => item.id === action.payload.id); | |
| new_state[new_state.indexOf(updateable_record)] = Object.assign({}, updateable_record, action.payload); | |
| break; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| GIT | |
| remote: git://github.com/spree-contrib/spree_mail_settings.git | |
| revision: d416a1e355893bda625ed5bea187d39526aa52f9 | |
| branch: 3-0-stable | |
| specs: | |
| spree_mail_settings (3.0.0) | |
| spree_backend (~> 3.0.0) | |
| GIT | |
| remote: git://github.com/spree/spree_auth_devise.git |