Skip to content

Instantly share code, notes, and snippets.

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

Nate Fonseka nfons

🏠
Working from home
View GitHub Profile
@nfons
nfons / php.ini
Created August 27, 2011 14:29
my PHP ini
[PHP]
;;;;;;;;;;;;;;;;;;;
; About php.ini ;
;;;;;;;;;;;;;;;;;;;
; PHP's initialization file, generally called php.ini, is responsible for
; configuring many of the aspects of PHP's behavior.
; PHP attempts to find and load this configuration from a number of locations.
; The following is a summary of its search order:
apiVersion: v1
kind: ReplicationController
metadata:
name: nginx-ingress-controller
labels:
k8s-app: nginx-ingress-lb
spec:
replicas: 1
selector:
k8s-app: nginx-ingress-lb
var out = Date.now();
exports.handler = (event, context, callback) => {
// TODO implement
var intime = Date.now();
console.log(out);
console.log(intime);
callback(null, 'Hello from Lambda');
};
var syncDep;
/**
assume this is a expensive(ish) HTTP call.
*/
function getLottery() {
return new Promise((resolve, reject) =>{
setTimeout(function() {
syncDep = [1,22,34,56,5];
resolve(syncDep);
@nfons
nfons / basefily.js
Created April 12, 2018 15:20
before minify
var longvariable = "myname"
var longArray = [1,2,3,4,5,6]
//some comment about functionality perhaps?
for(var index = 0; index < 6; index++){
console.log(longArray[index]);
}
var index,longvariable="myname",longArray=[1,2,3,4,5,6] for(index=0;6>index;index++)console.log(longArray[index])
for(var o="myname",a=[1,2,3,4,5,6],e=0;e<6;e++)console.log(a[e]);
@nfons
nfons / orders.js
Last active May 21, 2018 15:22
orders.module.js
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([["orders-orders-module"],{
/***/ "./src/app/orders/order-list/order-list.component.css":
/*!************************************************************!*\
!*** ./src/app/orders/order-list/order-list.component.css ***!
\************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = ""
@nfons
nfons / service.yaml
Created December 13, 2018 19:48
Service.yaml
apiVersion: v1
kind: Service
metadata:
name: helloweb
labels:
app: hello
spec:
selector:
app: hello
tier: web
apiVersion: v1
kind: Service
metadata:
name: helloweb
labels:
app: hello
spec:
selector:
app: hello
tier: web