Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View kriscarilloxyz's full-sized avatar
🇵🇭
Pinas UTC +8

Kris Carillo kriscarilloxyz

🇵🇭
Pinas UTC +8
View GitHub Profile
@kriscarilloxyz
kriscarilloxyz / mongo-docker.bash
Created May 6, 2021 07:11 — forked from davideicardi/mongo-docker.bash
Running mongodb inside a docker container (with mongodb authentication)
# Create a container from the mongo image,
# run is as a daemon (-d), expose the port 27017 (-p),
# set it to auto start (--restart)
# and with mongo authentication (--auth)
# Image used is https://hub.docker.com/_/mongo/
docker pull mongo
docker run --name YOURCONTAINERNAME --restart=always -d -p 27017:27017 mongo mongod --auth
# Using the mongo "localhost exception" (https://docs.mongodb.org/v3.0/core/security-users/#localhost-exception)
# add a root user
@kriscarilloxyz
kriscarilloxyz / margin_padding_helper.css
Created November 20, 2018 12:22 — forked from prasofty/margin_padding_helper.css
Margin Padding Helper CSS
.p-0 {
padding: 0px;
}
.p-3 {
padding: 3px;
}
.p-5 {
padding: 5px;
"""
A script that loads a GitHub repositories info and updates a Firebase database with it.
You will require the following database rules:
{
"rules": {
"repositories": {
".write": "auth != null",
".read": true
@kriscarilloxyz
kriscarilloxyz / cd-aws-s3-wercker.md
Created April 24, 2018 12:56 — forked from NicolasRitouet/cd-aws-s3-wercker.md
How to automate deployment on AWS S3 with bitbucket (or github) and wercker

This tutorial explains how to deploy automatically from bitbucket (or github) to AWS S3.

Create a bitbucket repository (public or private).

Add this repo on Wercker

  • Go to Create Application
  • Select use bitbucket (or github)
  • Choose your repo
  • For the next questions, choose the default answers
@kriscarilloxyz
kriscarilloxyz / api.py
Created February 28, 2018 18:57 — forked from alanhamlett/api.py
Serialize SQLAlchemy Model to dictionary (for JSON output) and update Model from dictionary attributes.
import uuid
import wtforms_json
from sqlalchemy import not_
from sqlalchemy.dialects.postgresql import UUID
from wtforms import Form
from wtforms.fields import FormField, FieldList
from wtforms.validators import Length
from flask import current_app as app
from flask import request, json, jsonify, abort