Skip to content

Instantly share code, notes, and snippets.

View manobi's full-sized avatar

Gabriel de Oliveira Barbosa manobi

View GitHub Profile
@manobi
manobi / index.html
Last active March 2, 2020 17:24
cart io prototype
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {padding: 0; margin: 0; text-decoration: none;border: 0; font-family: sans-serif}
.actions {
cursor:pointer;
@manobi
manobi / docker-plugin.yml
Created June 24, 2020 12:51
Google artifact Registry with Drone
steps:
- name: magento2:latest
image: plugins/docker
settings:
repo: us-central1-docker.pkg.dev/biz-stores/onion/magento2
registry: us-central1-docker.pkg.dev
dockerfile: ./docker/magento2/Dockerfile
use_cache: false
build_args:
- VERSION=2.3.4
@manobi
manobi / download-images.sh
Last active July 6, 2020 18:40
Baixar imagens
foreach($line in Get-Content .\file.txt) {
if($line -match $regex){
curl -O $line
}
}