Skip to content
View marcelo-reis's full-sized avatar
  • São Paulo-SP/Brasil

Block or report marcelo-reis

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Python - A great way to start! Python - A great way to start!
    1
    URL = 'https://pt.wikipedia.org/wiki/Programa_Ol%C3%A1_Mundo'
    2
    hw = ''
    3
    import urllib.request
    4
    
                  
    5
    try:
  2. Arduino - Faz um pequeno piano de 3 ... Arduino - Faz um pequeno piano de 3 Botões, onde cada botão toca um trecho de musica em um Buzzer e acende um LED correspondente.
    1
    const int BUZZER  = 10; // Buzzer
    2
    const int LED_RED = 13; // Led Vermelho
    3
    const int LED_YLW = 12; // Led Amarelo
    4
    const int LED_GRN = 11; // Led Verde
    5
    const int BTN_RED = 9;  // Botão Vermelho
  3. Python - Para abrir várias páginas w... Python - Para abrir várias páginas web através da classe "webbrowser" lendo arquivo ".txt" com os endereços
    1
    import webbrowser
    2
    
                  
    3
    with open ('.../myscripts/myadress.txt') as f:
    4
        for url in f.readlines():
    5
            webbrowser.open(url)
  4. C - Uma calculadora simples, recebe ... C - Uma calculadora simples, recebe 2 numerais e efetua operações matemáticas básicas.
    1
    #include <stdio.h >
    2
    #include <stdlib.h>
    3
    
                  
    4
    int main(){
    5
        // Declaração de variáveis