Skip to content

Instantly share code, notes, and snippets.

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

Dominador Garcia III domzgarcia

🏠
Working from home
View GitHub Profile
version: "3.2"
services:
omis:
build:
context: ./docker-config-app
labels:
maintainer: "boomer"
args:
APP_IP: ${APP_IP}
/* Under minified css inside style tag */
.carousel-footer {pointer-events: none;-webkit-touch-callout: none; -webkit-user-select: none;-khtml-user-select: none; -moz-user-select: none; -ms-user-select: none;user-select: none;}
@media screen and (min-width: 1024px){
html,body{height: 100%;}
#Project {min-height:initial;height: 100%;position: relative;}
.carousel-wrap, .carousel-wrap .cont,
div[class^='carousel-banner-group-'] {position: relative;min-height: initial;height: 100%;}
.slick-prev, .slick-next {top: 40%; transform: translateY(-60%);z-index: 20;}
.carousel-footer {height: initial; padding-bottom: 50px;}
@domzgarcia
domzgarcia / html_for_international_calling coes.htm
Created June 11, 2022 08:57 — forked from andyj/html_for_international_calling coes.htm
HTML <select> international calling codes for each country
<!-- country codes (ISO 3166) and Dial codes. -->
<select name="countryCode" id="">
<option data-countryCode="GB" value="44" Selected>UK (+44)</option>
<option data-countryCode="US" value="1">USA (+1)</option>
<optgroup label="Other countries">
<option data-countryCode="DZ" value="213">Algeria (+213)</option>
<option data-countryCode="AD" value="376">Andorra (+376)</option>
<option data-countryCode="AO" value="244">Angola (+244)</option>
<option data-countryCode="AI" value="1264">Anguilla (+1264)</option>
<option data-countryCode="AG" value="1268">Antigua &amp; Barbuda (+1268)</option>
Website inspiration
http://staging.odds.com.au/
@domzgarcia
domzgarcia / timestamps.js
Last active December 15, 2020 19:41
Freelance Sept 26-2020
Hours:
1. 10/19/2020: 48hrs * 225/1hr
2. 11/03/2020: 16hrs * 225/1hr
3. 11/14/2020: 22hrs * 225/1hr
4. 11/20/2020: 16hrs * 225/1hr
5. 11/25/2020: 24hrs(3days) * 225/1hr
-----------------------------------------------
126hrs - P28,350
(NEW)
[Dags-Account]
(Sofa)
22,500
800 23,300 / 2 = 11650
(Pagawa)
17,300 - Materials #1,#2,#3 - labor
2,300 - Materials #4
500 - Bulkasil
1200 - labor
2400 - Sink
const app = require('express')();
const https = require('https');
// const server = require('http').Server(app);
const fs = require('fs');
var privateKey = fs.readFileSync('./localhost.key', 'utf8');
var certificate = fs.readFileSync('./localhost.crt', 'utf8');
var creds = {key: privateKey, cert: certificate};