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
<script language="JScript" runat="server"> | |
var JSON; | |
if (!JSON) { | |
JSON = {}; | |
} | |
(function () { | |
'use strict'; | |
function f(n) { |
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
<%@ Language="VBScript" %> | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title></title> | |
</head> | |
<body> | |
<!--#include file="json.asp"--> | |
<% |
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
all: | |
valac --thread --save-temps -g --pkg purple app.vala |
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
program console; | |
{$mode objfpc}{$H+} | |
uses | |
sysutils, pango, Glib2, Gdk2, Gtk2; | |
procedure Shabb_Print (Line : String); | |
begin |
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 | |
class instant_notice { | |
public $sid = ''; | |
public $host = 'example.com'; | |
public $port = '1337'; | |
public function connect() { | |
//---------------------------------------------------------------- | |
//-- Get Handshack | |
//---------------------------------------------------------------- | |
$opts = array('http' => |
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
all: | |
valac --version | |
valac --vapidir=vapi --pkg libsoup-2.4 --pkg libxml-2.0 --thread -g --save-temps main.vala | |
./main |
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
ghc -XPackageImports pong.hs |
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
------------------------------------------------------------------------------ | |
-- Ada Web Server -- | |
-- -- | |
-- Copyright (C) 2000-2009, AdaCore -- | |
-- -- | |
-- This library is free software; you can redistribute it and/or modify -- | |
-- it under the terms of the GNU General Public License as published by -- | |
-- the Free Software Foundation; either version 2 of the License, or (at -- | |
-- your option) any later version. -- | |
-- -- |
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 | |
$socket = stream_socket_server ('tcp://0.0.0.0:2000', $errno, $errstr); | |
stream_set_blocking($socket, 0); | |
$base = event_base_new(); | |
$event = event_new(); | |
event_set($event, $socket, EV_READ | EV_PERSIST, 'ev_accept', $base); | |
event_base_set($event, $base); | |
event_add($event); | |
event_base_loop($base); |
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
CREATE TABLE `movies`.`movies_movie` ( | |
`id` INT NOT NULL AUTO_INCREMENT, | |
`title` VARCHAR(255) NOT NULL, | |
`year` SMALLINT NOT NULL, | |
PRIMARY KEY (`id`) | |
) | |
ENGINE = InnoDB | |
CHARACTER SET utf8 COLLATE utf8_general_ci; |