Skip to content

Instantly share code, notes, and snippets.

Disable search from addres bar

Mozilla Firefox

  1. Open about:config
  2. Disable both keyword.enabled and browser.fixup.alternate.enabled by setting them to false
  3. Success!

Google Chrome

@hholst80
hholst80 / app.py
Created January 23, 2021 19:34
SSE events
import sys
import queue
import threading
import time
import datetime
import uuid
from concurrent.futures import ThreadPoolExecutor
import flask
@hholst80
hholst80 / app.py
Created January 23, 2021 18:05
SSE events
import sys
import queue
from concurrent.futures import ThreadPoolExecutor
import flask
app = flask.Flask(__name__)
executor = ThreadPoolExecutor(max_workers=3)
def format_sse(data, event=None):
@hholst80
hholst80 / Dockerfile
Last active December 30, 2020 14:09
Docker signal
FROM python:3 as base
FROM base as target2
COPY main2.py /
CMD python3 -u main2.py
FROM base as target1
COPY main.py /
CMD python3 -u main.py

Largest submatrix problem

A problem found on Linkedin.

Find the submatrix with the largest sum.

Example given:

A =
@hholst80
hholst80 / sumprod.m
Created August 14, 2018 11:44
summa produkt pussel
K = 100;
A = zeros(K);
B = zeros(K);
for x = 2:K
for y = 2:K
A(x,y) = x + y;
B(x,y) = x * y;
end
end
import time
import concurrent.futures
def worker(n):
time.sleep(n)
return 42
with concurrent.futures.ThreadPoolExecutor() as extor:
@hholst80
hholst80 / README-dev.md
Last active January 29, 2017 22:07
Development

Python

pip install a github repository

pip install git+https://github.com/hholst80/gym-air

It is also possible to pip install from a private repository using deploy keys, see:

@hholst80
hholst80 / dos
Created January 28, 2017 23:24
Docker on Steriods
#!/bin/bash
# trap "{ echo killing $$ > $HOME/test.log; }" SIGHUP
CID=$(docker run -tid alpine:latest /bin/sh -c "/bin/sleep 3600")
trap "{ docker stop $CID && docker rm $CID; }" SIGHUP
docker attach $CID
@hholst80
hholst80 / README-centos7.md
Last active January 28, 2017 15:32
Centos 7 notes