ArnoldC
ArnoldC es un lenguaje de programación basado en algunas líneas dichas (de sus películas) por el actor Arnold Schwarzenegger.
IT'S SHOWTIME
TALK TO THE HAND "Hola, mundo!!"| import java.util.ArrayList; | |
| import java.util.List; | |
| import java.util.concurrent.ExecutorService; | |
| import java.util.concurrent.Executors; | |
| // Clases Tornillo y Tuerca | |
| class Tornillo { | |
| private String numSerie; | |
| public String getNumSerie() { |
| import com.google.cloud.bigquery.*; | |
| import com.google.cloud.storage.*; | |
| import java.io.BufferedReader; | |
| import java.io.InputStreamReader; | |
| import java.nio.channels.Channels; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import java.util.concurrent.ExecutorService; | |
| import java.util.concurrent.Executors; | |
| import java.util.concurrent.TimeUnit; |
| import java.util.List; | |
| import java.util.concurrent.ExecutorService; | |
| import java.util.concurrent.Executors; | |
| public class Main { | |
| public static void main(String[] args) { | |
| String strFecha = "2024-01-01"; // Ejemplo de fecha | |
| List<Tabla> listaTabla = getDatosTabla(strFecha); // Método que obtiene datos de la tabla |
| package main; | |
| // Leer un CSV y guardar el contenido en una tabla BigQuery | |
| import com.google.cloud.bigquery.*; | |
| import org.apache.commons.csv.*; | |
| import java.io.*; | |
| public class App { |
| Commands Powershell | |
| -- Get Version | |
| Get-Host | Select-Object version | |
| # Change execution policy | |
| Set-ExecutionPolicy RemoteSigned | |
| Copy-Item -Path "C:\Source\Powershell" -Destination "C:\Testumgebung" |
| #!/bin/python | |
| # coding=utf-8 | |
| import os | |
| from math import ceil | |
| def celsius(value): | |
| return ceil((value - 32)*(5/9)) | |
| def fahrenheit(value): |