Skip to content

Instantly share code, notes, and snippets.

View modernmediagrp's full-sized avatar

Royce modernmediagrp

  • Modern Media Group
View GitHub Profile
@modernmediagrp
modernmediagrp / Import.csv
Last active March 12, 2021 20:21
ifloortape.com native CSV Import
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 2.
"post_title","Parent ID","Parent","Type","SKU","Published","Is featured?","Visibility in catalog","Short description","Description","Date sale price starts","Date sale price ends","Tax status","In stock?","Backorders allowed?","Sold individually?","Weight (lbs)","Length (in)","Width (in)","Height (in)","Allow customer reviews?","Regular price","Categories","Shipping class","Images","Grouped products","Position","Attribute 1 name","Attribute 1 value(s)","Attribute 1 visible","Attribute 1 global","Attribute 2 name","Attribute 2 value(s)","Attribute 2 visible","Attribute 2 global","Attribute 3 name","Attribute 3 value(s)","Attribute 3 visible","Attribute 3 global"
"duramark-durable-adhesive-shapes-large-dot","","","variable","IFT_631-dots","1","1","visible","Water based adhesive for non residue removal. Ideal for retail shop, school, gymnasium, civic center on any smooth surface. Matte surface is easy to write on, mark locations, color code or polka dot design.","Water based adhesive for non residue removal. Ide
@modernmediagrp
modernmediagrp / Dockerfile
Created December 6, 2019 00:48 — forked from Irio/Dockerfile
GCP Serverless scrapers
FROM golang:1.12 as build
WORKDIR $GOPATH/src/github.com/Irio/wohnung
COPY scraper scraper
COPY main.go .
RUN go get -d -v ./...
RUN go install
FROM gcr.io/distroless/base