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 / odi_keygen.py
Created September 7, 2024 14:59 — forked from rajkosto/odi_keygen.py
ODI SFP XPON stick MAC_KEY generator
#!/usr/bin/env python3
#ODI DFP-34X-2C2 MAC_KEY key generator by rajkosto
import sys
import string
import hashlib
args = sys.argv
if len(args) != 2:
sys.exit("Usage: odi_keygen.py YOURMACADDR")
@toidang92
toidang92 / notes.md
Created July 22, 2024 10:54 — forked from arthur-e/notes.md
Ubuntu for GIS Installation and Setup

Post-Installation Fixes and Setup

# Install compilers and linking tools; other tools
sudo apt-get install g++ swig curl build-essential python-all-dev

# Install package manager
sudo apt-get install synaptic

# Install Unity customization tool

sudo apt-get install unity-tweak-tool

@toidang92
toidang92 / README.md
Created April 25, 2024 00:54 — forked from jesster2k10/README.md
JWT Auth + Refresh Tokens in Rails

JWT Auth + Refresh Tokens in Rails

This is just some code I recently used in my development application in order to add token-based authentication for my api-only rails app. The api-client was to be consumed by a mobile application, so I needed an authentication solution that would keep the user logged in indefinetly and the only way to do this was either using refresh tokens or sliding sessions.

I also needed a way to both blacklist and whitelist tokens based on a unique identifier (jti)

Before trying it out DIY, I considered using:

@toidang92
toidang92 / nginx.conf
Created June 24, 2023 10:03 — forked from tolitius/nginx.conf
openresty (nginx + lua): redis connection pooling
worker_processes 1;
error_log logs/error.log;
events {
worker_connections 1024;
}
http {
init_worker_by_lua_block {
redis = require("resty.redis")
}
server {
@toidang92
toidang92 / letsencrypt_2017.md
Created March 4, 2018 09:28 — forked from cecilemuller/letsencrypt_2020.md
How to setup Let's Encrypt for Nginx on Ubuntu 16.04 (including IPv6, HTTP/2 and A+ SLL rating)

How to setup Let's Encrypt for Nginx on Ubuntu 16.04 (including IPv6, HTTP/2 and A+ SLL rating)

There are two main modes to run the Let's Encrypt client (called Certbot):

  • Standalone: replaces the webserver to respond to ACME challenges
  • Webroot: needs your webserver to serve challenges from a known folder.

Webroot is better because it doesn't need to replace Nginx (to bind to port 80).

In the following, we're setting up mydomain.com. HTML is served from /var/www/mydomain, and challenges are served from /var/www/letsencrypt.

@toidang92
toidang92 / _form.html.erb
Created December 25, 2017 10:44 — forked from gilcierweb/_form.html.erb
Upload image crop with Ruby and Rails, CarrierWave and Cropper.js
#app/views/businesses/_form.html.erb
<%= form_with(model: business, scope: :business, local: true, :html => {multipart: true}) do |form| %>
<div class="row">
<div class="col-md-12">
<%= form.file_field :logo_image, id: :business_logo_image %>
<%= form.label :logo_image, class: 'upload' do %>
<i class="material-icons">file_upload</i>
<span>Choose image</span>
@toidang92
toidang92 / omniauth_dynamic_setup.md
Created February 27, 2017 13:14 — forked from jiggneshhgohel/omniauth_dynamic_setup.md
Omniauth Dynamic Setup Custom Params Custom Callback

/config/initializers/omniauth.rb

def provider_facebook
  'facebook'
end

def facebook_opts
  my_model_obj = MyModelService.find_by_provider_name(provider_facebook)
@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