Skip to content

Instantly share code, notes, and snippets.

View retgoat's full-sized avatar
💭
😣

Roman retgoat

💭
😣
View GitHub Profile
@retgoat
retgoat / how-to-install-ruby-oci8.md
Last active August 29, 2015 14:27 — forked from peterhellberg/how-to-install-ruby-oci8.md
Install of ruby-oci8 for 10.9/OSX Mavericks

Install of ruby-oci8 for 10.9/OSX Mavericks - step-by-step:

  1. Go here: http://www.oracle.com/technetwork/topics/intel-macsoft-096467.html
  2. Download the 64bit versions of instantclient-sqlplus, instantclient-sdk, instantclient-basic - the 32bit versions do not work with OSX 10.9
  3. Create directories at /opt/oracle
  4. Unzip instantclient-basic first, move to /opt/oracle (should add a folder - something like /opt/oracle/instantclient_11_2/)
  5. Unzip instantclient-sdk and move its contents to /opt/oracle/instantclient_11_2/
  6. Unzip instantclient-sqlplus and move its contents /opt/oracle/instantclient_11_2/
  7. Open Terminal (if you haven't already) and type...
  8. DYLD_LIBRARY_PATH=/opt/oracle/instantclient_11_2 export DYLD_LIBRARY_PATH
@retgoat
retgoat / dispatcher.erl
Last active November 2, 2015 06:53 — forked from dry/dispatcher.erl
Moochiweb router example
-module (dispatcher).
-export ([dispatch/2, convert_method_to_action/1]).
dispatch(_,[]) -> none;
dispatch(Req, [{Regexp, Handler}|T]) ->
"/" ++ Path = Req:get(path),
Method = Req:get(method),
# backported from rails 4 to use inside rails 3
# if you're using rails 4, you do not actually need this.
module ActiveSupport
class Logger < ::Logger
# extend ActiveSupport::TaggedLogging
# Broadcasts logs to multiple loggers. Returns a module to be
# `extended`'ed into other logger instances.
def self.broadcast(logger)
Module.new do
define_method(:add) do |*args, &block|
@retgoat
retgoat / examples
Last active April 27, 2016 09:56
OAuth with Koala
GET http://localhost:3000/fb/fb_code
RESPONSE
{"redirect_url":"https://www.facebook.com/dialog/oauth?client_id=893637180663238\u0026redirect_uri=http%3A%2F%2Flocalhost%3A3000%2Ffb%2Fcallback"}
----
redirect to https://www.facebook.com/dialog/oauth?client_id=893637180663238\u0026redirect_uri=http%3A%2F%2Flocalhost%3A3000%2Ffb%2Fcallback
redirect to callback_url
GET http://localhost:3000/fb/callback?code=FB_AUTH_CODE
RESPONSE
{"access_token":"FB_ACCESS_TOKEN"}
@retgoat
retgoat / gist:de7fa6601df61993002490fb72a25003
Created November 29, 2016 07:50
Rails : skip all before filters
skip_filter *_process_action_callbacks.map(&:filter), :only => [:action_goes_here]
@retgoat
retgoat / time_travel_trigger.sql
Created May 29, 2017 08:28 — forked from myitcv/time_travel_trigger.sql
Trigger-based equivalent of old PostgreSQL time travel module - see http://blog.myitcv.org.uk/2014/02/25/row-level-version-control-with-postgresql.html for more details
/*
Copyright (c) 2015 Paul Jolly <paul@myitcv.org.uk)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

Flat an array without using Array#flatten method

Ruby

ary = [[1, 2, [3], []], 4]

Recursion

ary.flat_map{|element| element.kind_of?(Array) ? element.flat_map{|i| i} : element }

Pry Cheat Sheet

Command Line

  • pry -r ./config/app_init_file.rb - load your app into a pry session (look at the file loaded by config.ru)
  • pry -r ./config/environment.rb - load your rails into a pry session

Debugger

@retgoat
retgoat / plain.ex
Last active August 12, 2017 04:51
postgrex
def get_specific_version(id, version, scope) do
datetime = Timex.parse!(version, "%FT%T.%fZ", :strftime)
|> Timex.shift(seconds: -1)
|> Timex.to_datetime
q = """
SELECT #{version_fields()} FROM #{table()}
WHERE id = $1::integer AND sys_period @> $2::timestamptz AND scope @> $3::ltree
UNION ALL
SELECT #{version_fields()} from #{history_table()}
WHERE id = $1::integer AND sys_period @> $2::timestamptz AND scope @> $3::ltree;
@retgoat
retgoat / 1-indirect_uses_tracker.ex
Created December 18, 2017 04:49 — forked from christhekeele/1-indirect_uses_tracker.ex
A way to track when modules are used in Elixir, and an example adapter/plugin architecture built on top.
# For simpler use cases, see the UsesTracker instead:
# https://gist.github.com/christhekeele/e858881d0ca2053295c6e10d8692e6ea
###
# A way to know, at runtime, what modules a module has used at compile time.
# In this case, you include `IndirectUsesTracker` into a module. When that module gets
# used in some other module, it makes that module registerable under a namespace of your choosing.
# When the registerable module is used into a third module, that third module will know at runtime which
# registerables were `use`d in it at compile time, via a function titled after the namespace.