Serverless Architectures - 0 views
-
Serverless was first used to describe applications that significantly or fully depend on 3rd party applications / services (‘in the cloud’) to manage server-side logic and state.
-
‘rich client’ applications (think single page web apps, or mobile apps) that use the vast ecosystem of cloud accessible databases (like Parse, Firebase), authentication services (Auth0, AWS Cognito), etc.
-
‘(Mobile) Backend as a Service’
- ...33 more annotations...
Blog Tutorial - Adding a layer - CakePHP Cookbook v2.x documentation - 1 views
-
Cake views are just presentation-flavored fragments that fit inside an application’s layout. For most applications they’re HTML mixed with PHP, but they may end up as XML, CSV, or even binary data.
-
Layouts are presentation code that is wrapped around a view, and can be defined and switched between
-
if the HTTP method of the request was POST, try to save the data using the Post model.
- ...6 more annotations...
javascript - How do I "think in AngularJS" if I have a jQuery background? - Stack Overflow - 0 views
-
in AngularJS, we have a separate model layer that we can manage in any way we want, completely independently from the view.
-
keep your concerns separate
-
do DOM manipulation and augment your view with directives
- ...34 more annotations...
Getting Started with Docker - Servers for Hackers - 0 views
-
Docker is an isolated portion of the host computer, sharing the host kernel (OS) and even its bin/libraries if appropriate.
-
the Docker Container contains the parts that make Ubuntu different from CoreOS.
-
A Docker container only stays alive as long as there is an active process being run in it.
- ...10 more annotations...
https://www.conventionalcommits.org/en/v1.0.0-beta.2/ - 0 views
-
standardized commit message
-
fix patches a bug in your codebase
-
feat introduces a new feature to the codebase
- ...11 more annotations...
dry-rb - Home - 0 views
The Twelve-Factor App - 0 views
-
The twelve-factor app is completely self-contained
-
using dependency declaration to add a webserver library to the app, such as Tornado for Python, Thin for Ruby, or Jetty for Java and other JVM-based languages.
-
the port-binding approach means that one app can become the backing service for another app
Top 5 Kubernetes Best Practices From Sandeep Dinesh (Google) - DZone Cloud - 0 views
-
Best Practices for Kubernetes
-
#1: Building Containers
-
Don’t Trust Arbitrary Base Images!
- ...29 more annotations...
-
-
The Twelve-Factor App - 0 views
-
Libraries installed through a packaging system can be installed system-wide (known as “site packages”) or scoped into the directory containing the app (known as “vendoring” or “bundling”).
-
A twelve-factor app never relies on implicit existence of system-wide packages.
-
declares all dependencies, completely and exactly, via a dependency declaration manifest.
- ...8 more annotations...
Getting Started with MariaDB Galera Cluster - MariaDB Knowledge Base - 0 views
-
most users are not going to bootstrap a server by executing "mysqld --wsrep-new-cluster" manually.
-
galera_new_cluster
-
Prerequisites
- ...7 more annotations...
What's the difference between Prometheus and Zabbix? - Stack Overflow - 0 views
-
Zabbix has core written in C and webUI based on PHP
-
Zabbix stores data in RDBMS (MySQL, PostgreSQL, Oracle, sqlite) of user's choice.
-
Prometheus uses its own database embedded into backend process
- ...8 more annotations...
RolifyCommunity/rolify: Role management library with resource scoping - 0 views
-
authentication gem
-
authorization gem
-
Role and User classes are the default
- ...2 more annotations...
Helm | - 0 views
-
A chart is a collection of files that describe a related set of Kubernetes resources.
-
A single chart might be used to deploy something simple, like a memcached pod, or something complex, like a full web app stack with HTTP servers, databases, caches, and so on.
-
Charts are created as files laid out in a particular directory tree, then they can be packaged into versioned archives to be deployed.
- ...170 more annotations...
Helm | - 0 views
-
Helm is a tool for managing Kubernetes packages called charts
-
Install and uninstall charts into an existing Kubernetes cluster
-
The chart is a bundle of information necessary to create an instance of a Kubernetes application.
- ...12 more annotations...
ruby-grape/grape: An opinionated framework for creating REST-like APIs in Ruby. - 0 views
-
Grape is a REST-like API framework for Ruby.
-
designed to run on Rack or complement existing web application frameworks such as Rails and Sinatra by providing a simple DSL to easily develop RESTful APIs
-
Grape APIs are Rack applications that are created by subclassing Grape::API
- ...54 more annotations...
library/mariadb - Docker Hub - 0 views
The Exhaustive Guide to Rails Time Zones - Alexander Danilenko - 0 views
-
you can use "wrong" methods in development and fairly often get valid results. But then you'll face with unexpected problems on production.
-
Ruby provides two classes to manage time: Time and DateTime
-
that's in Ruby! When it comes to Rails things get a bit more complicated
- ...15 more annotations...
thoughtbot/paperclip: Easy file attachment management for ActiveRecord - 0 views
-
Paperclip is intended as an easy file attachment library for ActiveRecord.
-
treat files as much like other attributes as possible
-
they aren't saved to their final locations on disk, nor are they deleted if set to nil, until ActiveRecord::Base#save is called.
« First
‹ Previous
41 - 60 of 68
Next ›
Showing 20▼ items per page