Fonctionnalites et performances des cni pour Kubernetes - devops d-day 2018Alexis Ducastel
Présentation par Alexis Ducastel du résultat d'un benchmark de CNIs (plugin de gestion de réseau) sur Kubernetes lors du Devops D-DAY 2018 à Marseille le 15 Novembre 2018.
Node.js and Oracle Database: New Development TechniquesChristopher Jones
These slides are from the AUSOUG webinar viewable at https://www.ausoug.org.au/event/node-js-and-oracle-database-new-development-techniques/
The session covered the best node-oracledb data access features for building great Node.js applications with Oracle Database. Spanning topics from the latest connection pooling advances, right through to efficient ways to access your data, all the best tips are demonstrated. After another busy year of node-oracledb releases, don’t miss the latest on this rapidly growing ecosystem.
This is a technical talk with code snippets demonstrating efficient use of the Node.js node-oracledb driver for Oracle DB. There have been several key releases of node-oracledb over the last year so there is plenty to talk about.
(1) O documento apresenta uma introdução à linguagem Java, abordando sua história, características da plataforma e fundamentos da linguagem como variáveis, operadores e estruturas condicionais;
(2) São apresentados conceitos como tipos primitivos, declaração de classes e variáveis, operadores unários, incremento/decremento e representação de sinal;
(3) O documento também explica conceitos importantes como escopo de variáveis e realiza um exercício prático para fixação dos conceitos apresentados.
This document provides an overview of the SOLID principles for designing maintainable object-oriented code. It discusses each principle - Single Responsibility, Open/Closed, Liskov Substitution, Interface Segregation, and Dependency Inversion - and gives examples of how to apply them. The principles aim to create code that is flexible, reusable, and understandable by dividing programs into independent parts that are easy to maintain and modify. The document stresses that code should be written for humans to read and change, keep things simple, and use object-oriented best practices like design patterns and low coupling.
The document describes the FIDO2 specification which includes two new standards: WebAuthn for authentication in browsers and CTAP for platform authentication. It provides overviews and code snippets for how credentials can be registered and used for authentication on websites using public key cryptography with FIDO2 compliant security keys or platform authenticators on devices. The specification also covers credential management APIs and the processes of decommissioning credentials.
O documento descreve o SQLite, um banco de dados SQL leve e open source. Ele define o SQLite como uma biblioteca que armazena e recupera dados diretamente de um arquivo no disco, sem necessidade de configuração ou servidor. O documento também discute a história, características, instalação e uso do SQLite.
O documento discute princípios de Clean Code e boas práticas de programação, destacando a importância de:
1) Dar nomes significativos às variáveis, métodos e classes;
2) Manter métodos pequenos e focados em uma única tarefa;
3) Escrever código de forma limpa e legível através da formatação e organização;
4) Criar objetos e classes coesas seguindo princípios como SRP.