Skip to content

Instantly share code, notes, and snippets.

View olivatooo's full-sized avatar
💭
anyway this cake is great, it's so delicious and moist

Gabriel Olivato olivatooo

💭
anyway this cake is great, it's so delicious and moist
View GitHub Profile
.app a {
color: #5294E2
}
.titlebar {
height: 5px
}
.guilds-wrapper {
background: #2a2f38
}
.guilds-wrapper .guilds .guild+.guild {
@arikfr
arikfr / README.md
Last active April 26, 2024 10:07
Setting up HTTPS with LetsEncrypt for Redash Docker Deployment
  1. Make sure the domain you picked points at the IP of your Redash server.
  2. Switch to the root user (sudo su).
  3. Create a folder named nginx in /opt/redash.
  4. Create in the nginx folder two additional folders: certs and certs-data.
  5. Create the file /opt/redash/nginx/nginx.conf and place the following in it: (replace example.redashapp.com with your domain name)
    upstream redash {
        server redash:5000;
    }
    
@otavionetoca
otavionetoca / TableToStringifiedJSON.lua
Last active April 23, 2021 16:26
TableToStringifiedJSON
function TableToStringifiedJSON(table)
if type(table) ~= "table" then
Package:Log("[UTILS] Param expected as type table")
return
end
local stringified = ""
for k, _ in pairs(table) do
if type(k) == "table" then
TableToStringifiedJSON(k)