Apache Beam https://beam.apache.org/
Airbyte https://airbyte.com/
Stitch https://www.stitchdata.com/
Keboola
Apache Beam https://beam.apache.org/
Airbyte https://airbyte.com/
Stitch https://www.stitchdata.com/
Keboola
import pgzrun | |
import random | |
import math | |
import os | |
import time | |
# Configurações do jogo | |
WIDTH = 800 | |
HEIGHT = 600 | |
FPS = 60 |
LOAD DATA LOCAL INFILE 'C:/Users/Gladson/Downloads/users.csv' | |
INTO TABLE test_db.users_tb | |
FIELDS TERMINATED BY '|' | |
OPTIONALLY ENCLOSED BY '' | |
LINES TERMINATED BY '\n' | |
IGNORE 1 LINES | |
(@name,@email,@password,@age,@gender,@created_at,@updated_at,@deleted_at) | |
SET name = @name, email = @email, password = @password, age = @age, | |
gender = @gender, created_at = @created_at, updated_at = @updated_at, | |
deleted_at = @deleted_at; |
COND_A = NO | |
COND_B = YES | |
all: | |
# AND condition | |
ifeq ($(COND_A) $(COND_B), YES YES) | |
@echo "A and B is true" | |
else | |
@echo "A and B is false" | |
endif |
{ | |
"mcu": [ | |
{ | |
"adult": false, | |
"backdrop_path": "/yFuKvT4Vm3sKHdFY4eG6I4ldAnn.jpg", | |
"genre_ids": [ | |
28, | |
12, | |
878 | |
], |
podman machine ssh
version: '3.7' | |
services: | |
backend_npm: | |
container_name: backend_npm | |
image: jc21/nginx-proxy-manager:latest | |
restart: always | |
ports: | |
# Public HTTP Port: | |
- 6000:80 | |
# Public HTTPS Port: |