Skip to content

Instantly share code, notes, and snippets.

View toidang92's full-sized avatar

Bá Tới toidang92

  • Hồ Chí Minh City
  • 08:38 (UTC +07:00)
  • LinkedIn in/toidang92
View GitHub Profile
@toidang92
toidang92 / scope.php
Created February 25, 2017 14:29 — forked from Hypnopompia/scope.php
Facebook Permissions
<?php
$scope = "";
// From: https://developers.facebook.com/docs/authentication/permissions/
/*********************
* User and Friends Permissions
* You can ask for the following permissions for users and friends in the scope parameter as part of the authentication process.
* If you are using the Enhanced Auth Dialog, the following permissions are not user-revokable within the authentication flow.
* If you request these permissions from the user as part of first-time authentication, the user must grant these permissions
@toidang92
toidang92 / base_controller.rb
Created February 16, 2017 20:47 — forked from dhoelzgen/base_controller.rb
CORS in Rails 4 APIs
class API::V1::BaseController < ApplicationController
skip_before_filter :verify_authenticity_token
before_filter :cors_preflight_check
after_filter :cors_set_access_control_headers
def cors_set_access_control_headers
headers['Access-Control-Allow-Origin'] = '*'
headers['Access-Control-Allow-Methods'] = 'POST, GET, PUT, DELETE, OPTIONS'
@toidang92
toidang92 / unaccent.sql
Created December 11, 2016 02:51 — forked from derencius/unaccent.sql
Unaccent PostgreSQL 8.4
-- Adjust this setting to control where the objects get created.
SET search_path = public;
-- Standalone 'unaccent' function
CREATE OR REPLACE FUNCTION unaccent (text) RETURNS text
AS '/usr/lib64/pgsql/unaccent'
LANGUAGE C IMMUTABLE STRICT;
-- New 'unaccentdict' dictionary for text search indexer
OS=`echo \`uname\` | tr '[:upper:]' '[:lower:]'`
AURL="https://gist.githubusercontent.com/hightemp/5071909/raw/"
ANAME=".bash_aliases"
TMPAPATH="/tmp/$ANAME"
HOMEAPATH="~/$ANAME"
[ "$OS" = "windowsnt" ] && OS_WIN="yes"
[ "$OS" = "darwin" ] && OS_MAC="yes"
[ "$OS" = "linux" ] && OS_LIN="yes"
@toidang92
toidang92 / doc.md
Created November 6, 2016 17:56 — forked from oelmekki/doc.md
Rails + Browserify + React + es7

1. Gemfile

gem 'browserify-rails', '1.5.0' # until fix: https://github.com/browserify-rails/browserify-rails/issues/101
gem 'react-rails'

Browserify-rails allows to use browserify within assets pipeline. React-rails is here only to allow to use #react_component (and thus, prerendering).

Note that jquery-rails can be removed from Gemfile, the npm version of jquery and jquery-ujs will be used instead.

{
"always_show_minimap_viewport": true,
"bold_folder_labels": true,
"caret_style": "phase",
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme",
"detect_indentation": false,
"fade_fold_buttons": false,
"flatland_square_tabs": true,
"font_size": 13,
"highlight_line": true,
@toidang92
toidang92 / redis.conf
Created October 16, 2016 21:27 — forked from luugiathuy/redis.conf
Redis configuration file
# Redis configuration file example
# Note on units: when memory size is needed, it is possible to specify
# it in the usual form of 1k 5GB 4M and so forth:
#
# 1k => 1000 bytes
# 1kb => 1024 bytes
# 1m => 1000000 bytes
# 1mb => 1024*1024 bytes
# 1g => 1000000000 bytes

Best Practices for Azure Redis

Below are a set of best practices that I recommend for most customers. This information is based on my experience helping hundreds of Azure Redis customers investigate various issues.

##Configuration and Concepts

  1. Use Standard or Premium Tier for Production systems. The Basic Tier is a single node system with no data replication and no SLA. Also, use at least a C1 cache. C0 caches are really meant for simple dev/test scenarios since they have a shared CPU core, very little memory, are prone to "noisy neighbor", etc.
  2. Remember that Redis is an In-Memory data store. Read this article so that you are aware of scenarios where data loss can occur.
  3. Develop your system such that it can handle connection blips due to patching and failover.
  4. Configure your [
@toidang92
toidang92 / increase_swap.sh
Created October 10, 2016 16:15 — forked from shovon/increase_swap.sh
Increasing swap size. Only tested on the ubuntu/trusty64 Vagrant box. CREDIT GOES TO ---> http://jeqo.github.io/blog/devops/vagrant-quickstart/
#!/bin/sh
# size of swapfile in megabytes
swapsize=8000
# does the swap file already exist?
grep -q "swapfile" /etc/fstab
# if not then create it
if [ $? -ne 0 ]; then
@toidang92
toidang92 / video-events-lamba-function.js
Created October 8, 2016 19:06 — forked from adamrneary/video-events-lamba-function.js
A simple function for Amazon Lambda
var Firebase = require('firebase');
var async = require('async');
// Extract data from the kinesis event
exports.handler = function(event, context) {
// This function abstracts the expected structure of any Kinesis payload,
// which is a base64-encoded string of a JSON object, passing the data to
// a private function.
function handlePayload(record, callback) {