Skip to content

Instantly share code, notes, and snippets.

const fs = require('fs/promises');
const filePath = 'lineup.tsv';
const transformDay = (day) => day === 'חמישי' ? '13/11/2025' : day === 'שישי' ? '14/11/2025' : '15/11/2025'
async function getData() {
const url = 'https://app.base44.com/api/apps/68e6282c3dbfb582588bf8d0/entities/Artist?sort=order&limit=500';
try {
const response = await fetch(url);
@shayh
shayh / bootstrap-tables2.css
Last active December 14, 2016 14:34
bootstrap3 django-tables2 based on this gist https://gist.github.com/dyve/5458209 I created a template that works wtih https://github.com/dyve/django-bootstrap3 make sure you have 'django.core.context_processors.request' in your TEMPLATE_CONTEXT_PROCESSORS
.table-container th.asc:after {
content: '\0000a0\0025b2';
}
.table-container th.desc:after {
content: '\0000a0\0025bc';
}
.pagination {
text-align: center;
}