Skip to content

Instantly share code, notes, and snippets.

View trkrameshkumar's full-sized avatar

Ramesh Kumar T trkrameshkumar

View GitHub Profile
@trkrameshkumar
trkrameshkumar / request.js
Created November 24, 2017 10:14 — forked from sheharyarn/request.js
Axios Request Wrapper for React
/**
* Axios Request Wrapper
* ---------------------
*
* @author Sheharyar Naseer (@sheharyarn)
* @license MIT
*
*/
import axios from 'axios'
module.exports = function( grunt ) {
grunt.initConfig({
'http-server': {
'dev': {
root: "..",
port: 8080,
host: "0.0.0.0",
cache: 0,
@trkrameshkumar
trkrameshkumar / selection_sort.rb
Created May 1, 2017 05:26
Selection sort in ruby
def selection_sort array
(array.length-1).times do |i|
minindex = i
minvalue = array[i]
(i).upto(array.length-1) do |j|
if array[j] < minvalue
minindex = j
minvalue = array[j]
end
@trkrameshkumar
trkrameshkumar / bubble_sort.rb
Last active April 29, 2017 13:44
Bubble sort in Ruby
def bubble_sort array
(array.length-1).times do |i|
(array.length-1-i).times do |j|
if array[j] > array[j+1]
array[j], array[j+1]=array[j+1], array[j]
end
end
end
array
end
#First you have add the following gems to your Gemfile
gem 'aws-sdk', '< 2.0'
gem 'zip'
gem 'whenever'
#Created a new file at lib/tasks/backup.rake and add the following
desc "PG Backup"
namespace :pg do
task :backup => [:environment] do
@trkrameshkumar
trkrameshkumar / db.go
Created September 6, 2015 07:19
Get get number of rows using sql in golang
package main
import (
"database/sql"
"fmt"
_ "github.com/lib/pq"
)
const (
DB_USER = "ramesh"
@trkrameshkumar
trkrameshkumar / godlist
Created March 21, 2015 08:39
God file for sidekiq with email notification from gmail (gmail smtp)
RAILS_ROOT = File.expand_path('../', __dir__)
def default_process_monitoring(w, w.name)
# determine the state on startup
w.transition(:init, { true => :up, false => :start }) do |on|
on.condition(:process_running) do |c|
c.running = true
end
end
@trkrameshkumar
trkrameshkumar / select2 ajax example with formated result
Created October 25, 2014 10:52
select2 ajax example with formated result
$("#selector").select2({
width: "200px",
placeholder: "Search for a item",
minimumInputLength: 3,
ajax: {
url: "/url",
dataType: "json",
data: function(term, page) {
return {
q: term,