Skip to content

Instantly share code, notes, and snippets.

View cletrix's full-sized avatar

Cleyton Pedroza de Almeida cletrix

View GitHub Profile
@cletrix
cletrix / CompleteHaxeLimeInstall_Menu_RPi.sh
Created August 23, 2024 18:59 — forked from gepatto/CompleteHaxeLimeInstall_Menu_RPi.sh
Install Haxe,Lime and OpenFL on a Raspberry Pi running PiOS (raspbian bullseye)
#!/bin/bash
##########################################
# Gepatto 2023 #
# find me on openfl or haxe discord #
##########################################
### Color Variables ###
BLACK="\e[30m"
RED="\e[31m"

Testing using Pygal to render plots server-side and embed them in a web page via a <canvas>.

@SadatAnwar
SadatAnwar / simple_websocket.html
Last active December 6, 2024 13:04
A working implementation of the super simple websocket python server
<!DOCTYPE html>
<html lang="en">
<head>
<title>WebSocket Client</title>
<style>
#output {
border: solid 1px #000;
}
</style>
</head>
@dpeek
dpeek / gist:6043433
Created July 20, 2013 01:23
Haxe, Neko and OpenFL on Raspberry Pi
mkdir ~/source
# dependencies
sudo apt-get update
sudo apt-get install libgc-dev bzip2 git-core make gcc g++ gnuplot glade imagemagick libusb-dev python-usb python-lxml python-wxgtk2.8 speech-dispatcher libgnomecanvas2-dev m4 libsdl1.2-dev
# neko
git clone https://github.com/HaxeFoundation/neko.git ~/source/neko
cd ~/source/neko
make
@geoffb
geoffb / simple_websocket_client.html
Created October 7, 2010 23:37
Super simple websockets client/server using Python. Compatible with the draft 76 challenge/response.
<!DOCTYPE html>
<html lang="en">
<head>
<title>WebSocket Client</title>
<style>
#output {
border: solid 1px #000;
}
</style>
</head>