Skip to content

Instantly share code, notes, and snippets.

@dbadawi
dbadawi / index.md
Created February 28, 2016 14:57 — forked from rstacruz/index.md
Rails models cheatsheet

Rails Models

Generating models

$ rails g model User

Associations

belongs_to

has_one

@dbadawi
dbadawi / test.html
Created June 25, 2017 04:22
html test
<html>
<script>
alert("hello");
</script>
</html>
@dbadawi
dbadawi / ssl_puma.sh
Created February 13, 2018 04:18 — forked from tadast/ssl_puma.sh
localhost SSL with puma
# 1) Create your private key (any password will do, we remove it below)
$ cd ~/.ssh
$ openssl genrsa -des3 -out server.orig.key 2048
# 2) Remove the password
$ openssl rsa -in server.orig.key -out server.key
@dbadawi
dbadawi / facebook.rb
Created August 4, 2018 14:34 — forked from a14m/facebook.rb
Gist for manually OAuth2 facebook for Rails APIs
# lib/omniauth/facebook.rb
require 'httparty'
module Omniauth
class Facebook
include HTTParty
# The base uri for facebook graph API
base_uri 'https://graph.facebook.com/v2.3'