Skip to content

Instantly share code, notes, and snippets.

@stesie
stesie / Dockerfile
Created December 6, 2021 07:00
Dockerfile behind stesie/libv8-xxx containers
FROM ubuntu:focal AS builder
RUN apt-get update && apt-get -y install build-essential curl git python libglib2.0-dev
RUN git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git /depot_tools
# export PATH=`pwd`/depot_tools:"$PATH"
ARG V8VER_FULL
RUN test "$V8VER_FULL" != ""
WORKDIR /tmp
package btools.mapcreator;
import btools.expressions.BExpressionContextWay;
import btools.expressions.BExpressionMetaData;
import btools.util.DenseLongMap;
import btools.util.TinyDenseLongMap;
import com.mongodb.MongoClient;
import com.mongodb.client.MongoCollection;
import org.bson.Document;
Index: batman-adv-2013.4.0/bridge_loop_avoidance.c
===================================================================
--- batman-adv-2013.4.0.orig/bridge_loop_avoidance.c
+++ batman-adv-2013.4.0/bridge_loop_avoidance.c
@@ -351,7 +351,6 @@ static void batadv_bla_send_claim(struct
batadv_inc_counter(bat_priv, BATADV_CNT_RX);
batadv_add_counter(bat_priv, BATADV_CNT_RX_BYTES,
skb->len + ETH_HLEN);
- soft_iface->last_rx = jiffies;
{ config, lib, pkgs, ... }:
let
extlinux-conf-builder =
import <nixpkgs/nixos/modules/system/boot/loader/generic-extlinux-compatible/extlinux-conf-builder.nix> {
pkgs = pkgs.buildPackages;
};
in
{
imports = [
@stesie
stesie / serverless-azure-functions-auth.patch
Created October 9, 2018 11:31
Patch against serverless-azure-functions to use credentials from ~/.azure/accessTokens.json
diff -ur a/node_modules/serverless-azure-functions/provider/azureProvider.js b/node_modules/serverless-azure-functions/provider/azureProvider.js
--- a/node_modules/serverless-azure-functions/provider/azureProvider.js 2018-10-09 11:53:42.151689784 +0200
+++ b/node_modules/serverless-azure-functions/provider/azureProvider.js 2018-10-09 13:18:20.771792944 +0200
@@ -5,6 +5,8 @@
const resourceManagement = require('azure-arm-resource');
const path = require('path');
const fs = require('fs');
+const os = require('os');
+const msRestAzure = require('ms-rest-azure');
const request = require('request');
@stesie
stesie / scan2pdf+ocr.sh
Created February 16, 2017 12:02
Shell script to scan pdf, tesseract (ocr) it and create pdf with down-sampled image with text overlay
#!/usr/bin/env bash
set -e
## SCAN settings
FORMAT="-l 0 -t 0 -x 210 -y 297"
MODE=color
RESOLUTION=300
LANG=deu
postprocess_scan() {
@stesie
stesie / index.html
Created April 1, 2016 22:28
AWS IoT-based serverless JS-Webapp Pub/Sub demo
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>AWS IoT Pub/Sub Demo</title>
</head>
<body>
<h1>AWS IoT Pub/Sub Demo</h1>
<form>
<button type="button" id="connect">connect!</button>
<?php
require_once __DIR__.'/V8JsNodeModuleLoader_FileAccessInterface.php';
require_once __DIR__.'/V8JsNodeModuleLoader_NormalisePath.php';
/**
* Simple Node.js module loader for use with V8Js PHP extension
*
* This class understands Node.js' node_modules/ directory structure
* and can require modules/files from there.
*
@stesie
stesie / config.m4
Last active August 29, 2015 14:08
PHP get_method/call_method leak?
PHP_ARG_ENABLE(hello, whether to enable Hello
World support,
[ --enable-hello Enable Hello World support])
if test "$PHP_HELLO" = "yes"; then
AC_DEFINE(HAVE_HELLO, 1, [Whether you have Hello World])
PHP_NEW_EXTENSION(hello, hello.c, $ext_shared)
fi
@stesie
stesie / karma-compile.el
Last active December 24, 2015 00:09
Little helper for GNU Emacs to "karma run"
(require 'ansi-color)
(defvar karma-buffer
"*karma-node-specs-buffer*")
(defun karma-compile ()
"Run Karma"
(interactive)
(shell-command "karma run" (get-buffer-create karma-buffer))
(display-buffer karma-buffer)
(with-current-buffer karma-buffer