Skip to content

Instantly share code, notes, and snippets.

@bill-auger
bill-auger / gst-browser-error
Last active November 1, 2024 20:10
gst-browser-error
as an update - the issue is not specific to debian and it is not clear that the problem lies in gnu-smalltalk - the same versions of gst-browser run fine on some distros but not on others
================ SUMMARY ================
* gst-browser fails to run on debian, ubuntu - neither from binary packages nor compiled from git source
* gst-browser runs as expected on parabola from the both binary packages and compiled from git source
* gst-browser fails to run on fedora from binary package but runs as expected when compiled from git source
* gst-browser runs as expected on opensuse from (un-maintained) binary packages but fails to run when compiled from git source
* the REPL appears to be working correctly in all cases
@nilportugues
nilportugues / react-lumen.php
Last active December 8, 2018 18:33
React+Lumen
<?php
// bootstrap/react.php
// Remember, we need to do first: composer require react/react!
$app = include('app.php');
$host = 'localhost';
$port = 9000;
$reactApp = function (\React\Http\Request $request, \React\Http\Response $response) use ($app, $host, $port) {
@padcom
padcom / install-git.sh
Created June 19, 2011 10:23
Automated install of Git host on Ubuntu 10.04 with authorization and web interface for browsing
#!/bin/sh
#
# install required packages
#
apt-get install apache2 git-core gitweb
#
# create folder to host the repositories
#