100 lines
4.4 KiB
HTML
100 lines
4.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<title>SlideScript ~ The Lazy Language</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="description" content="SlideScript is a micro stripting language with the intent to give the world an effective shell like experience with the ability to use a sloppy syntax! SlideScript can do simple every day shell tasks like manipulating and working with files, and directories, piping, variable support, and backquoting, with a bit of spice like: built-in md5, and encoder / decoder, webserver, networking functions, tar and compression functions, PLUS MORE!" />
|
|
<link href="style.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<table><tr><td>
|
|
<div class="header">
|
|
<img src="sslogo.png" class="logoimg" title="SlideScript logo" alt="SlideScript" />
|
|
</div>
|
|
</td></tr><tr><td>
|
|
<div class="menu"><!--
|
|
--><a href="index.html">Home</a><!--
|
|
--><a href="api/">Documentation</a><!--
|
|
--><a href="https://notabug.org/Pentium44/slidescript">Git</a><!--
|
|
--></div>
|
|
</td></tr></table>
|
|
|
|
<div class="container">
|
|
<p>Welcome to the world of SlideScript! To make it simple, SlideScript
|
|
is the lazy language and has a very laid-back script parser. What does
|
|
that mean for you? Well, you can take what's comfortable with you and
|
|
implement it into a SlideScript ready form-factor with just a bit of
|
|
behind the scenes information on how SlideScript works!<br /><br />
|
|
|
|
SlideScript is early in development but supports a heap of features
|
|
right out the gate:
|
|
<ul>
|
|
<li>Dynamic memory management, it's extremely lightweight</li>
|
|
<li>Supports variables, in an adaptive way *wink*</li>
|
|
<li>Piping support, just like your average *nix shell</li>
|
|
<li>Supports backquoting</li>
|
|
<li>Supports perl-like variable dumping, for reuse of same variables</li>
|
|
<li>Supports *nix local file execution for access to personal programs</li>
|
|
<li>Supports file read, write, catenation, and deletion</li>
|
|
<li>Built-in lightweight grep-like support</li>
|
|
<li>Built-in calculation functions w/ floating decimal</li>
|
|
<li>Built-in networking functions for machine to machine file toss</li>
|
|
<li>Built-in micro web server, because why not? :)</li>
|
|
<li>[WIP] Built-in tar & compression algorithm based on local
|
|
LZ77 projects (proof-of-concept)</li>
|
|
</ul>
|
|
<br />
|
|
|
|
As of being just shy of 8,000 lines of C, with this much functionality,
|
|
my goal is to bring SlideScript up to par as a functioning language
|
|
and Shell implementation along the way! Flexibility, power, and
|
|
lightweight is what we strive for in the future development of
|
|
SlideScript, yet be as independent as possible. SlideScript requires
|
|
next to nothing in terms of dependencies, and has proven to be quite
|
|
cross-platform compatible!
|
|
</p>
|
|
|
|
<h3>Get SlideScript:</h3>
|
|
<p>
|
|
SlideScript is available as source on
|
|
<a href="https://notabug.org/Pentium44/slidescript">NotABug</a>. In
|
|
due time, I will start compiling binaries for SlideScript for a range
|
|
of operating systems from *Nix 32/64 bit, Windows, OSX, Android (Termux),
|
|
and more! But due to rapidly changing in features, and bugfixes, its
|
|
just too unstable and... well... outdated after a week or two :D
|
|
<pre><code>
|
|
git clone https://notabug.org/Pentium44/slidescript
|
|
</code></pre>
|
|
OR download from source: <a href="https://notabug.org/Pentium44/slidescript/archive/master.zip">ZIP</a> &
|
|
<a href="https://notabug.org/Pentium44/slidescript/archive/master.tar.gz">Tar.GZ</a><br />
|
|
</p>
|
|
|
|
<h3>IRC server</h3>
|
|
<p>
|
|
IP/Port: cddo.cc/1337<br />
|
|
Main hang channel: <b>#theroot</b><br />
|
|
FreeBox channel: <b>#freebox</b><br />
|
|
FreonLinux channel: <b>#freonlinux</b>
|
|
</p><br />
|
|
|
|
</div>
|
|
|
|
<div class="footer">
|
|
© Chris Dorman, 2021 <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode">CC BY-NC-SA 4.0</a> - Software GPLv2 licensed<br />
|
|
<p>
|
|
Powered by:<br />
|
|
<a href="https://freedns.afraid.org/">
|
|
<img style="width:100px;" src="https://freedns.afraid.org/images/freedns_crop.png" />
|
|
</a>
|
|
<a href="https://letsencrypt.org/">
|
|
<img style="width: 100px;" src="https://letsencrypt.org/images/le-logo-wide.png" />
|
|
</a>
|
|
<a href="http://jigsaw.w3.org/css-validator/check/referer">
|
|
<img style="border:0;width:80px" src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS!" />
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|