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 / 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
@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
from selenium import webdriver
import time
fb_page_post = "https://mbasic.facebook.com/FilipinoChannelonline/photos/a.868812129879437.1073741828.862963130464337/1743889889038319/?type=3&permPage=1"
fb_link = "https://mbasic.facebook.com/login/?ref=dbl&fl&refid=8"
user = input("username: ")
pwd = input("password: ")
driver = webdriver.Chrome()
"""
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 / sample.spec
Created November 18, 2018 07:27
Include pandas in pyinstaller
# -*- mode: python -*-
block_cipher = None
a = Analysis(['sample.py'],
pathex=['C:\\Users\\bacon\\menudo\\clients\\kenan-erol\\kenan-erol-tasks'],
binaries=[],
datas=[],
@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;
<!DOCTYPE html>
<html lang="en">
<?php include('config.php') ?>
<?php include('components/header.php') ?>
<body>
<div id="particles-js"></div>
<?php include('components/navigation/default.php') ?>
@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