Search this site
Embedded Files
Networks
  • Página inicial
  • FRONT END LIBRARIES
  • python fundamentos
  • GIT
  • Documentacao
  • APPS SCRIPTS
  • Nornir Automation python
  • LINGUAGEM R
  • ia
  • DART FLUTTER
  • django fileds opctions
  • DART FLUTTER
  • Google calendar API
  • Eletrica residencial
  • NODE JS SERVER HTTP
  • API NODE JS EXPRESS JAVASCRIPT
  • python Async
  • Cython
  • Algebra para machine learning
  • Algebra-Linear Machine learning
  • Python Financas Analise fundamentalista
  • Threads em Python
  • Programacao assincrona
  • UseFull Libraries Python
  • SQL INJECT
  • Minishift OCK REDHAT
  • Minishift instalation
  • Google cloud Kubernetes
  • AZURE AKS
  • NETBOX
  • CI CD Git Actions
  • REG EXP
  • deploymongo+python
  • Kubernetes Mongo python flask
  • STACKSTORM
  • Python OOB
  • GIT
  • Mongo DB
  • NLP Linguagem natural IA
  • PYTHON + MONGO + FLASK
  • Junos Devops Netconf
  • Juniper Automatin certification
  • Flask socket io
  • chat python
  • OPENIA API
  • Algoritimos de classificacao
  • Flet python
  • Google sheets + email script
  • Criar app no google sheets
  • FAST API E SGAWER
  • Networkx python
  • Extrair_video_youtube
  • C#
  • VB.NET
  • C++
  • REACT NATIVE
  • REGEXPR CISCO
  • NETPLAN UBUNTU
  • React js
  • Machine learning scikit
  • Email com python
  • Mongo DB Atlas
  • css
  • Django
  • Python Classes estudos
  • JavaScript
  • Lendo arquivo com node JS
  • Django
  • Docker
  • Docker - Deploy python application
  • Docker compose script
  • Irb
  • L2TP-SERVER
  • EEM IPSEC OSPF
  • Wireless controller
  • NOVO
  • palo alto firewall
  • Asterisk
  • samba instalação e configuração
  • linux commands centos
  • LINUX COMMANDS
  • gunicorn
  • Eigrp ODR
  • Ansible + jinja2
  • Pfsense firewall
  • EVE-NG
  • Looking glasses
  • RFC 1918
  • STP
  • ospfv3 - Fundamentals
  • OSPF -FUNDAMENTALS
  • VLAN
  • Ansible - Automation
  • Laboratorio Ansible + cisco
  • Ansible-cisco.backup
  • Ansible - cisco sandbox
  • JUNOS + ANSIBLE
  • IP-sec
  • Acess-list (Listas de Acesso)
  • Rip ng ipv6
  • Login - senhas cisco
  • Generic Routing Encapsulation GRE TUNNEL
  • Lab GRE
  • Códigos server http
  • Virtual routing and Forwarding (VRF)
  • Ansible automation with cisco routers
  • Laboratorio ansible nokia sros
  • HUAWEI NE40
  • configurando ssh ubuntu
  • Rip v2 fundamentos
  • Eigrp
  • Eigrp named mode
  • MP-BGP AND MPLS
  • Rip v2
  • Progamability
  • AWS
  • Kubernetes
  • Vagrant estudos
  • Bridge configuration
  • Tkinter Python
  • Python estudos
  • Python Methods
  • Python programability
  • VLAN-MAPPING TRANSLATE
  • Virtualbox
  • Headers
  • Cisco switches fundamentals and commands
  • Forwarding Processes
  • Versa - Deployment
  • Versa - Commands
  • VPNL2 CISCO MPLS
  • l2circuit JUNOS
  • Ansible - Manipulando arquivos
  • Backup junos via ansible
  • JUNOS-OLIVE
  • Junos vpnl3
  • Juniper l3vpn com redundância BGP
  • RSTP-PV
  • VTP
  • NOKIA MTU
  • MIKROTIK
  • Mikrotik - Bonding
  • MIKROTIK EOIP
  • MPLS
  • MPLS + MP-BGP NOKIA E HUAWEI
Networks

https://dartpad.dev/? 


TIPOS  DE VASRIAVEL 

void main() {

  

 int idade = 10; 

 String nome = 'Lucas'; 

 List<String> ips = ['192.168.1.1', '192.168.1.2'] ; 

 print(ips);

 print(idade);

 print(nome);

}


LISTAS , tem que definir o tipo de dado 

 List<String> ips = ['192.168.1.1', '192.168.1.2'] ; 


Lista dinamica - aceita varios tipos de dados

void main() {

  


 List<dynamic> ips = [10, true, '192.168.1.1'] ; 

  print(ips);



}

void main() {

  


 List<dynamic> ips = [true, "192.168.1.1"] ; 


  if (ips.length != 0 ){

    print("lista cheia ");

  } else {

    print("lista vazia");

  }

  

  for (int i = 0 ; ips.length > 0;i++){

    print(ips[i]);

  };

}

SWITCH CASE 


void main() {

 var grade = "A";


 switch (grade) {

   case "A":

     {

       print("Excellent");

     }

     break;


   case "B":

     {

       print("Good");

     }

     break;


   case "C":

     {

       print("Fair");

     }

     break;


   case "D":

     {

       print("Poor");

     }

     break;


   default:

     {

       print("Invalid choice");

     }

     break;

 }

} 

PRINT MEIA ARVORE DE NATAL 

void main() {

  


int a = 1;

String b = "#";

  

  while(a < 10){

    a++;

    b += "*";

    print(b);


  }

      print("||");

    print("||");

  

}

nullsafaty 


https://www.alura.com.br/artigos/flutter-null-safety?_gl=1*12wi6ui*_ga*MTM2NjQzOTg4MC4xNjgyNzkxMjg3*_ga_1EPWSW3PCS*MTcwMTYyNTkzNS4xMzkuMS4xNzAxNjI3MDU5LjAuMC4w*_fplc*QVI4UUZvSlMxN1kyNjZQMnVHMDNmV3pxSm1EcFh1Y2VWMm0zVHNBejN2TCUyQlhoeW43bHFhcVJiM2tIZmN3dG9IbldyTWQ5a1Q1UktHTlJ6bnlsQmxQcVRVcW5VOWs5Z0FkMW8yQlJEJTJGJTJCazJVb3pFdFB2NTdJbjI4VHpRU05BJTNEJTNE

Google Sites
Report abuse
Page details
Page updated
Google Sites
Report abuse