Skip to content

Instantly share code, notes, and snippets.

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

Rashmi Yadav raysrashmi

🏠
Working from home
View GitHub Profile
<TextInput
type="text"
id="First name"
placeholder="Enter first name"
{...register('firstName')}
/>
service: social-feeds
provider:
name: aws
runtime: nodejs8.10
stage: dev
region: eu-west-1
environment:
SOCIAL_FEED_TWITTER_TABLE: "twitter-feed-${self:service}-${opt:stage, self:provider.stage}"
iamRoleStatements:
- Effect: Allow
@raysrashmi
raysrashmi / Todoapp
Last active September 5, 2016 13:45
import React, { Component } from 'react';
import { createStore, applyMiddleware, combineReducers, compose } from 'redux';
import Provider from 'react-redux';
import thunk from 'redux-thunk';
import TodoList from '../containers/TodoList';
import reducers from '../reducers';
import init from '../actions/ListActions';
class TodoAppClinet extends Component {
sphinx_scope(:ny_ca_and_ma_only) do
{:conditions => {:state => ['MA', 'CA', 'NY']}}
end
define_index do
indexes name, :sortable => true, :infixes => true
indexes nickname, :sortable => true, :infixes => true
indexes city_code
indexes address
indexes state
indexes city, :sortable => true, :infixes => true
set_property :enable_star => 1 # Both are needed to allow stars in search
set_property :min_prefix_len => 1 # Both are needed to allow stars in search
@raysrashmi
raysrashmi / Olark
Last active October 28, 2015 15:13
<!-- begin olark code -->
<script data-cfasync="false" type='text/javascript'>
<% unless I18n.locale == :sv -%>
olark.configure('locale.feedback_survey_question_chat_text', 'How satisfied were you with this chat?');
olark.configure('locale.feedback_survey_question_operator_intelligence_text', 'How knowledgeable was the chat agent?');
olark.configure('locale.feedback_survey_question_operator_speed_text', 'How responsive was the chat agent?');
olark.configure('locale.feedback_survey_question_operator_attitude_text', 'How friendly was the chat agent?');
olark.configure('locale.feedback_survey_question_1_text', 'Question 1 of 5');
params[:user] = {:name => 'Foo',:email => 'foo@example.com'}
@user = User.new(params[:user])
config.active_record.whitelist_attributes = true
class BooksController < ApplicationController
def create
@book = Book.new(params[:book], as : current_user.try(:admin) ? :admin : :user)
respond_to do |format|
if @book.save
format.html { redirect_to @book notice 'Book was successfully created.' }
else
format.html { render action : "new" }
end
end
class Book < ActiveRecord::Base
attr_accessible :name, :public, :author
end