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
/usr/share/saffire/modules | |
/usr/share/saffire/modules/sfl | |
/usr/share/saffire/modules/sfl/io.sf | |
/usr/share/saffire/modules/sfl/saffire.sf | |
/usr/share/saffire/modules/Framework.sf | |
/usr/share/saffire/modules/Framework | |
/usr/share/saffire/modules/Framework/View.sf | |
/usr/share/saffire/modules/Framework/Http.sf |
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
vagrant@vagrant:/var/www$ cat index.sf | |
import io; | |
io.print("Hello, world!\n"); | |
vagrant@vagrant:/var/www$ saffire exec index.sf | |
vagrant@vagrant:/var/www$ |
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
<?php | |
// Require authentication password | |
require_once("auth.php"); | |
class TS3Radio | |
{ | |
protected $_clientHost; | |
protected $_clientPort; |
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
<?php | |
namespace Protec\Stdlib; | |
use \Zend\EventManager\EventManagerInterface; | |
use \Zend\ServiceManager\ServiceLocatorAwareInterface; | |
trait EventManagerAwareTrait | |
{ | |
protected $event_manager; |
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
Function Explode(Separator, S : String) : TStringList; | |
Var | |
PrevPos, x : Integer; | |
strLen, | |
delimLen : Integer; | |
Begin | |
If (Separator = '') Then | |
Raise Exception.Create('Empty separator'); | |
Result := TStringList.Create(); |
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
<HTML> | |
<HEAD> | |
<TITLE>Volume Discount</TITLE> | |
<SCRIPT LANGUAGE = "JavaScript"> | |
// A program to tell a customer what volume discount they can expect. | |
var numberOfGiftBoxes = window.prompt('Please enter now many boxes you are purchasing.', ''); | |
var boxes = parseFloat(numberOfGiftBoxes); | |
if (isNaN(boxes)) |
NewerOlder