Skip to content

Instantly share code, notes, and snippets.

@Ovid
Ovid / cor.md
Last active September 12, 2021 08:02
Cor—A minimal object system for the Perl core

NAME

Cor — A minimal OO proposal for the Perl core

VERSION

This is version 0.10 of this document.

AUTHOR

@regdog
regdog / phonegap_install.sh
Last active May 5, 2016 05:57
How to Install PhoneGap in Ubuntu 12.04 LTS
# 1. install java
# 2. install ant
# 3. install npm and nodejs
# 4. install android sdk
# 5. install phonegap
# 6. create a hello world phonegap app
# 7. lunch android avd(emulator)
# 8. run the app
# 9. add pluins
@brianmed
brianmed / datachannel.pl
Created October 10, 2013 23:40
WebRTC DataChannel two user chat. Signaling included using websockets.
#!/opt/perl
use Mojolicious::Lite;
use JSON;
get '/' => sub {
my $self = shift;
$self->render("index");
};