Last active
December 11, 2015 18:28
-
-
Save gideondsouza/4641895 to your computer and use it in GitHub Desktop.
A welcome script that is loaded on www.tryperl.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
############################################ | |
#__ __ _____ _ _ _____ _ _ _____ | |
#\ \ / /\ | __ \| \ | |_ _| \ | |/ ____| | |
# \ \ /\ / / \ | |__) | \| | | | | \| | | __ | |
# \ \/ \/ / /\ \ | _ /| . ` | | | | . ` | | |_ | | |
# \ /\ / ____ \| | \ \| |\ |_| |_| |\ | |__| | | |
# \/ \/_/ \_\_| \_\_| \_|_____|_| \_|\_____| | |
# TryPerl is an attempt at writing a CloudIDE for perl. | |
# Currently this app doesn't execute code. (I know this seems very pointless). | |
# I did however, make it work in the past with FreeBSD jails, Linux Containers and other crazy things | |
# but (like you guessed) there were security holes and I couldn't fix them. | |
# I'm not giving up though, I'm learning something new everyday and hopefully in sometime I will have enough | |
# expertise to write a debugger/tracer executor program that will use ptrace to inspect and run a program and | |
# shut down anything malicous. | |
############################################ | |
print "Welcome to tryperl.com"; | |
# Instructions | |
# >> Click 'NEW' to create a new gist on github, 'SAVE' will save the CURRENTLY OPENED gist into it's id.' | |
# >> Click 'RUN' on the top to run the program. You'll see your output below.' | |
# >> Click 'VALIDATE' to just *only compile* your code, | |
# >> On the left you will see any perl (.pl) files from your github gists. | |
# >>>> Double click, or click the edit buton to open them | |
################ | |
# DO NOT FORGET to click the big Orange bar on the right and give me some feedback :) | |
# Help me make this app awesome | |
################ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment