Skip to content

Instantly share code, notes, and snippets.

@isms
isms / django-htmx-triggers-alpine.html
Last active April 5, 2023 14:10
Django HTMX triggers frontend Alpine event
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div x-data='{"text": "default"}'>
<button class='btn btn-info' hx-get='{% url "test" %}'>GET</button>
<!--
@isms
isms / marketing_lp.py
Last active June 21, 2021 16:05
Marketing Linear Program
# Modeling the LP described at http://www.marketingdistillery.com/2014/08/30/marketing-optimization-with-linear-programming/
# in Python with the PuLP library
import numpy as np
import pulp
prob = pulp.LpProblem('SEO Optimization', pulp.LpMaximize)
tv = pulp.LpVariable('tv', lowBound=0)
seo = pulp.LpVariable('seo', lowBound=0)