Skip to content

Instantly share code, notes, and snippets.

View abarcenas29's full-sized avatar
🎯
Focusing

Aldrich Allen Barcenas abarcenas29

🎯
Focusing
  • Manulife IT Delivery Services Asia
  • Philippines
  • X @abarcenas29
View GitHub Profile

Keybase proof

I hereby claim:

  • I am abarcenas29 on github.
  • I am solidad (https://keybase.io/solidad) on keybase.
  • I have a public key ASDMCdAdOcXyW9EuLiDnLhSZu1BsAfPPJ6HbuHfY8qMsdAo

To claim this, I am signing this object:

@abarcenas29
abarcenas29 / solution.sad.md
Created February 20, 2020 12:28
Solution SAD

Business Process Proposal

Loan Computation - Auto Generated Computation

Since computerized na yung information. Hindi na need ng mga teller hanapin yung mga records niya para i compute yung dapat i compute para sa member. Kaya nga sa Loan Form pag nag tataype computed na agad yung service charge net pay etc at yung mga available shares ng mga co-member.

Verification on member and loans - On Demand Data Validation

@abarcenas29
abarcenas29 / react.cheetsheet.md
Created February 18, 2020 12:06
React Cheatsheet

Cheat Sheet

  • Eto ang component
<Component />
  • Eto ang property component
<Component
 prop
@abarcenas29
abarcenas29 / cloudSettings
Created November 21, 2017 01:48
Visual Studio Code Settings Sync Gist
{"lastUpload":"2017-11-21T01:47:56.825Z","extensionVersion":"v2.8.6"}
function getRandomInRange(from, to, fixed) {
return (Math.random() * (to - from) + from).toFixed(fixed) * 1;
// .toFixed() returns string, so ' * 1' is a trick to convert to number
}
// https://stackoverflow.com/questions/6878761/javascript-how-to-create-random-longitude-and-latitudes
@abarcenas29
abarcenas29 / nginx-ssl.conf
Created March 13, 2016 15:13 — forked from 1Conan/nginx-ssl.conf
Configuration to get an A+ on the Qualys SSL Labs test with fast performing and low overhead SSL ciphers. Works in combination with nginx 1.9.8 full and OpenSSL v1.0.2d.
#NOTES
# http2 works only if you compiled nginx with "--with-http_v2_module"!
# If you need help on compiling nginx with http2 please refer to this link
# https://www.m00nie.com/2015/01/install-nginx-and-pagespeed/
#www to root redirect
server {
listen 80;
listen [::]:80;
listen 443 ssl http2;