- http://platesphp.com/
- http://route.thephpleague.com/
- http://container.thephpleague.com/
{
"require": {
"phroute/phroute": "^2.1",
"guzzlehttp/guzzle": "^6.2",
"illuminate/database": "^5.3"
}
}At LinuxCon Europe in Berlin I gave a talk about Kubernetes titled "Why I love Kubernetes? Top 10 reasons." The response was great, and several folks asked me to write a blog about it. So here it is, with the first five reasons in this article and the others to follow. As a quick introduction, Kubernetes is "an open-source system for automating deployment, scaling and management of containerized applications" often referred to as a container orchestrator.
Adafruit Industries, Unique & fun DIY electronics and kits Teensy 3.6 without headers ID: 3266 - The awesome new Teensy 3.6 is a small, breadboard-friendly development board designed by Paul Stoffregen and PJRC. Teensy 3.6 brings a low-cost 32-bit ARM Cortex-M4 platform to hobbyists, students and engineers, using an adapted version of the Arduino IDE (Teensyduino) or programming directly in C language. Teensy 3.6 is an
One of the most important parts of any operating system is the boot loader. Learn more about Linux's boot loader, GRUB2, and how to customize it.
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<script type="text/javascript">
"use strict";
var acme = {
emlpeado : {
ojos: "verdes",
pelo: "negro",
},
colorPelo: function() {
console.log(this.emlpeado.pelo);
},
colorOjos: function() {
console.log(this.emlpeado.ojos);
},
init: function() {
this.colorOjos();
this.colorPelo();
}
}
// acme.emlpeado.ojos = 'negros';
acme.init();
</script>
</body>
</html>