Skip to content

Instantly share code, notes, and snippets.

View dasparadoxon's full-sized avatar
😊
the sun rises in the east

dasparadoxon dasparadoxon

😊
the sun rises in the east
View GitHub Profile
@dasparadoxon
dasparadoxon / gist:1dac4fd17b5a3fb71f841149a4e71b67
Created December 27, 2018 08:26
## Little Script to use two columns for image websites with skeleton boilerplate
## Little Script to use two columns for image websites with skeleton boilerplate
from os import listdir
from os.path import isfile, join
mypath = ""
onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]
openRow = "<div class='row'>"