Skip to content

Instantly share code, notes, and snippets.

View raelgc's full-sized avatar
🏠
Working from home

Rael Gugelmin Cunha raelgc

🏠
Working from home
View GitHub Profile
@raelgc
raelgc / cors.rb
Last active February 4, 2024 13:08
Rack Cors configuration for Vite
# TODO: Add production URLs to the list
# Use '*' if you want expose the API to the world
accept = [
'http://127.0.0.1:5173', # Dev Frontend
'http://localhost:5173', # Dev Frontend
'http://127.0.0.1:5174', # Dev Frontend
'http://localhost:5174', # Dev Frontend
]
Rails.application.config.middleware.insert_before 0, Rack::Cors do
@raelgc
raelgc / afterSubmitContacts.html
Last active March 1, 2017 23:29
CloudSponge Webhook + Zapier Example
<!DOCTYPE html>
<html>
<head>
<!--
Include the script anywhere on your page, usually in the head
(don't forget to replace `localhost-only` with your own CloudSponge Widget Key)
-->
<script src="//api.cloudsponge.com/widget/localhost-only.js"></script>
<script>
@raelgc
raelgc / CloudSponge+Drupal.md
Last active February 7, 2017 18:26
CloudSponge + Drupal.org

Integrate CloudSponge in Drupal.org

Drupal.org users can easily integrate CloudSponge in Drupal.org using the CloudSponge Drupal module.

If for some reason, users cannot use the above module, there is another alternative: use the CloudSponge widget including our simple snipet in a full HTML page. To achieve this, we'll insert the CloudSponge JavaScript library in the default theme.

Compared to Drupal 6, Drupal 7 platform has changed the way to support JavaScript in the pages and introduced several new techniques that allow users to embed JavaScript in Drupal site's pages.

In the follow steps, we'll reproduce the instructions in a new Drupal instance to embed the CloudSponge widget.

@raelgc
raelgc / CloudSponge+Wiz.md
Last active September 20, 2016 18:15
CloudSponge+Wix.com

Integrate CloudSponge in Wix.com

The goal of this document is to provide a simple guide to help Wix.com users to embed the CloudSponge widget.

Wix platform do not support direct JavaScript on pages, only in an iframe. So we've created a sample Wix page to display how embed the CloudSponge widget.

In the follow steps, we'll reproduce the instructions in a new Wix page to embed the CloudSponge widget.

1. Add an iframe to your page

@raelgc
raelgc / Install MSOffice on Ubuntu.md
Last active February 26, 2024 03:10
Install MSOffice on Ubuntu

Install Microsoft Office 2010 on Ubuntu

Requirements

We'll install MSOffice using the PlayOnLinux wizard. Additionally, MSOffice requires samba and winbind to properly work.

So, if not installed, install them:

sudo apt-get install playonlinux samba winbind
@raelgc
raelgc / Email Server (Windows Only).md
Last active April 9, 2024 18:58
Setup a Local Only Email Server (Windows Only)
@raelgc
raelgc / Email Server (Linux, Unix, Mac).md
Last active April 8, 2024 06:01
Setup a Local Only SMTP Email Server (Linux, Unix, Mac)

Setup a Local Only SMTP Email Server (Linux, Unix, Mac)

1 - Point localhost.com to your machine

Most of programs will not accept an email using just @localhost as domain. So, edit /etc/hosts file to make the domain localhost.com point to your machine, including this content to the file:

127.0.0.1 localhost.com

2 - Install Postfix

@raelgc
raelgc / Bash Git color config.txt
Last active December 15, 2015 01:09
Simple and util .bashrc colors to use with git projects.
# Friendly Color Names
Black="\[\033[0;30m\]"
Dark_Gray="\[\033[1;30m\]"
Blue="\[\033[0;34m\]"
Light_Blue="\[\033[1;34m\]"
Green="\[\033[0;32m\]"
Light_Green="\[\033[1;32m\]"
Cyan="\[\033[0;36m\]"
Light_Cyan="\[\033[1;36m\]"
Red="\[\033[0;31m\]"