Skip to content

Instantly share code, notes, and snippets.

View ilesinge's full-sized avatar
🐒

Alexandre G.-Raymond ilesinge

🐒
View GitHub Profile
@ilesinge
ilesinge / generateStrudelJSON.sh
Created May 9, 2023 21:10
Command line tool to generate samples JSON list file for the Strudel livecoding platform.
#/bin/sh
# Forked from https://raw.githubusercontent.com/dktr0/estuary/dev/generateAudioResources.sh to support Strudel
printf "{\n"
printf " \"_base\":\"https://raw.githubusercontent.com/username/repository/master/\",\n"
dircount=0
find $1 -mindepth 1 -maxdepth 1 -iname "*" | sort | while read d; do
if [ -d "$d" ]
then
dirname=`basename "$d"`
@ilesinge
ilesinge / EstuarySamples.md
Last active May 31, 2022 13:19
Available Estuary Samples on https://estuary.mcmaster.ca/

Available Estuary Samples

808 (6 samples)
808bd (25 samples)
808cy (25 samples)
808hc (5 samples)
808ht (5 samples)
808lc (5 samples)
# Define the base image on which your image is
FROM php:7.1-cli-alpine
# Optionally install additionnal packages / extensions or customize
RUN docker-php-ext-install pdo_mysql
# Include and commit your project files
ADD ./ /zero
# Define the full path of the base command that will be executed
<?php
return [
'with-migrations' => false,
'connections' => [
'default' => [
'driver' => 'mysql',
'host' => '127.0.0.1',
<?php
namespace App\Commands;
use LaravelZero\Framework\Commands\Command;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Storage;
class Profit extends Command
{

Keybase proof

I hereby claim:

  • I am ilesinge on github.
  • I am ilesinge (https://keybase.io/ilesinge) on keybase.
  • I have a public key whose fingerprint is 0C9F 5017 E3A5 BEB1 FD12 5AA1 0468 EBDC F7F6 642A

To claim this, I am signing this object:

@ilesinge
ilesinge / index.html
Created February 1, 2014 11:04
PeerJS Test
<html>
<body>
<script src="http://cdn.peerjs.com/0.3/peer.js"></script>
<style>
body {
margin: 0;
padding: 0;
}
textarea {
padding: 20px;