This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Blender v2.76 (sub 0) OBJ File: '' | |
| # www.blender.org | |
| mtllib Mypodiumedit.mtl | |
| o Cube1_Cube1_auv | |
| v -1.441176 -0.531250 -0.500000 | |
| v -0.441176 -0.531250 -0.500000 | |
| v -0.441176 -0.531250 0.500000 | |
| v -1.441176 -0.531250 0.500000 | |
| v -1.441176 0.468750 0.500000 | |
| v -1.441176 0.468750 -0.500000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Blender v2.70 (sub 0) OBJ File: '' | |
| # www.blender.org | |
| o Cube_Cube.001 | |
| v -1.000000 -0.357042 2.947965 | |
| v -0.947965 -0.335488 3.000000 | |
| v -0.857042 -0.500000 2.947965 | |
| v -0.835488 -0.447965 3.000000 | |
| v -0.857042 -0.500000 -2.947965 | |
| v -0.835488 -0.447965 -3.000000 | |
| v -1.000000 -0.357042 -2.947965 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Blender v2.70 (sub 0) OBJ File: '' | |
| # www.blender.org | |
| o Cube_Cube.001 | |
| v -1.000000 -0.357042 2.947965 | |
| v -0.947965 -0.335488 3.000000 | |
| v -0.857042 -0.500000 2.947965 | |
| v -0.835488 -0.447965 3.000000 | |
| v -0.857042 -0.500000 -2.947965 | |
| v -0.835488 -0.447965 -3.000000 | |
| v -1.000000 -0.357042 -2.947965 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.lang.Exception | |
| class CalculadoraController { | |
| fun executarOperacao(text: String): Int { | |
| if(text.contains('*')){ | |
| val split = text.split('*') | |
| if(split.size > 2) | |
| throw Exception("Multiplicação inválida") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| node_modules | |
| npm-debug.log |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; multi-segment executable file template. | |
| FINAL_PONTOS equ 33 | |
| PONTOS_NORMAL equ 1 ; quando acerta um W | |
| PONTOS_ESPECIAL equ 3 ; quando acerta um * | |
| data segment | |
| ; add your data here! | |
| NAVES_SPACE: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; multi-segment executable file template. | |
| #start=robot.exe# | |
| r_port equ 9 | |
| n_lamps equ 3 | |
| data segment | |
| ; add your data here! | |
| n_lamps_on db ? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| data segment | |
| zero: | |
| db " 000000000 ",10 | |
| db " 00:::::::::00 ",10 | |
| db " 00:::::::::::::00 ",10 | |
| db "0:::::::000:::::::0 ",10 | |
| db "0::::::0 0::::::0 ",10 | |
| db "0:::::0 0:::::0 ",10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| label | category | |
|---|---|---|
| Apolo | h | |
| Bailey | h | |
| Bandit | p | |
| Bella | h | |
| Bella-Kappel | h | |
| Bella-Theresa | h | |
| Bu-chan | p | |
| Chloe | p | |
| Clara | p |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import requests | |
| import io | |
| import matplotlib.pyplot as plt | |
| import matplotlib.image as mpimg | |
| def show_images_side_by_side(left_images_path, right_images_path): | |
| if len(left_images_path) != len(right_images_path): | |
| raise Exception("Size must be identical") |
NewerOlder