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
| const spreadSheetId = '1H8E5u0F2hCZwSpCOggtJ8a8xb0hSFaBFJWVAyfUi74s'; | |
| const templateId = '1UaYHhjogu07NIZSW-tR24IyfA2JsdJHpx5I-OjoUaPM'; | |
| const reportsFolderId = '12bo7GpJ4IrAzC_tp5A9AMI40Wg9p8RLb'; | |
| /** | |
| * Gets last row with data inside a spreadsheet. | |
| * @returns a number indicating the last row that contains data inside the spreadsheet | |
| */ | |
| function getLastRowWithData() { |
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
| if $COLORTERM == 'gnome-terminal' | |
| set t_Co=256 | |
| endif | |
| set number | |
| filetype plugin indent on | |
| syntax on | |
| "HighLight in Search | |
| set hlsearch |
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
| # If you come from bash you might have to change your $PATH. | |
| # export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| # Path to your oh-my-zsh installation. | |
| export ZSH="/Users/ignacioillanes/.oh-my-zsh" | |
| # Set name of the theme to load --- if set to "random", it will | |
| # load a random theme each time oh-my-zsh is loaded, in which case, | |
| # to know which specific one was loaded, run: echo $RANDOM_THEME | |
| # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes |
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
| /* | |
| INPUT: | |
| 3 | |
| 4 4 | |
| 12 345 | |
| 50 139 | |
| OUTPUT: | |
| 1 | |
| 83 |
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
| package com.company; | |
| import javax.swing.*; | |
| import java.io.*; | |
| import java.util.Scanner; | |
| import javax.swing.JFrame; | |
| import javax.swing.JOptionPane; | |
| public class Main { | |
| public static void main(String[] args) { |
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
| package com.company; | |
| import javax.swing.*; | |
| import java.io.*; //Corregir | |
| import java.util.Scanner; | |
| public class Utils { | |
| JFrame jFrame = new JFrame(); | |
| private String filename; |
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
| package com.company; | |
| public class Main { | |
| public static void main(String[] args) { | |
| Menu menu = new Menu(); | |
| menu.runMenu(); | |
| } | |
| } |
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
| package objetos; | |
| import java.util.Scanner; | |
| public class Alfombra | |
| {String nombre; | |
| double alto; | |
| double largo; | |
| double parteenrrollada; | |
| double partedesenrrollada; | |
| double superficie; |
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
| package com.company.dado; | |
| public class Main { | |
| public static void main(String[] args) { | |
| Dado dado1 = new Dado(); | |
| dado1.mostrar(); | |
| Dado dado2 = new Dado(); | |
| dado2.mostrar(); |
NewerOlder