Skip to content

Instantly share code, notes, and snippets.

@sarvar
sarvar / responsive.php
Created January 16, 2017 17:43
Force bootstrap responsive image to be square
<div class="col-sm-6">
<a href="#" class="thumbnail">
<div class="caption">
title<br/>3 x bekeken
</div>
<div class="image">
<img src="" class="img img-responsive full-width" />
</div>
</a>
</div>
@joneskoo
joneskoo / table_to_sqlite3.py
Last active May 12, 2023 03:20
Parse HTML table to CSV
#!/usr/bin/env python3.4
import sys
import sqlite3
from html.parser import HTMLParser
class TableParser(HTMLParser):
def __init__(self):